2009-01-26 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2
3         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
4         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5         klass->min_align, since klass->min_align contains the managed alignment,
6         while the native alignment can be different, like for longs on x86.
7         Fixes #469135.
8
9         * class-internals.h (MonoMarshalType): Add a min_align field.
10
11 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
12
13         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
14         the 1.0 format.
15
16 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
17
18         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
19         some comments about the usage of the used_regs field.
20
21         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
22         Fixes #469217.
23
24 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
25
26         * appdomain.c: return NULL instead of throwing FileNotFoundException
27         when LoadAssembly() fails.
28
29 2009-01-23  Mark Probst  <mark.probst@gmail.com>
30
31         * metadata.c (mono_metadata_generic_param_equal): Only compare the
32         image if the owner is NULL.  Fixes the AOT failures.
33
34 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
35
36         * metadata.c (mono_metadata_load_generic_params): Initialize the 
37         MonoGenericParam structure using memset so the image field is initialized
38         as well.
39
40 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
41
42         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
43         a plain store.
44
45 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
46
47         * class.c (mono_class_setup_vtable_general): In the generic instance
48         optimization, set method->slot for abstract virtual methods. Fixes part of
49         #467834.
50
51 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
52
53         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
54         which signals that the unloading has started but all appdomain services must
55         remain operational.
56
57         * appdomain.c (mono_domain_unload): The initial state for unloading now
58         is unloading_start and we switch to unloading after the managed call to
59         AppDomain::DomainUnload has finished.
60
61         The new unloading state has to be created because managed code in the
62         DomainUnload event can depend on things like the threadpool still working.
63         The domain must remain fully functional while the event executes.
64
65         This shown as an issue due to Process::WaitForExit, which waits for
66         async reads of stdout and stderr to complete. Since those are processed
67         in the threadpool the code deadlocks because the DomainUnload callback 
68         waits for the async read finished event, which should have been set by a
69         threadpool job but has been discarded due to the domain been in unload
70         state.
71
72 2009-01-21  Mark Probst  <mark.probst@gmail.com>
73
74         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
75         image must match.
76
77 2009-01-21  Mark Probst  <mark.probst@gmail.com>
78
79         * reflection.c (resolve_object): For fields, inflate the class and
80         then get the field in the inflated class.
81
82 2009-01-20  Mark Probst  <mark.probst@gmail.com>
83
84         * object-internals.h (struct _MonoException): Added a comment
85         explaining the new use of trace_ips.
86
87 2009-01-20  Mark Probst  <mark.probst@gmail.com>
88
89         * generic-sharing.c (inflate_other_data): Inflate array methods
90         correctly.
91
92         * loader.c, class-internals.h: Rename search_in_array_class() to
93         mono_method_search_in_array_class() and make it non-static.
94
95 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
96
97         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
98         Hopefully fixes #458168.
99
100 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
101
102         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
103         as it is performed elsewhere.
104
105         Code is contributed under MIT/X11 license
106
107 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
108
109         * mono-perfcounters-def.h: Add counters for asp.net requests total and
110         requests queued.
111         * object.c (mono_raise_exception): Increment the exceptions total
112         counter when an exception is thrown.
113         * class-internals.h: Add a location for storing the total number of
114         asp.net requests served.
115         * mono-perfcounters.c: Implement update support for asp.net counters
116         from the class libraries. Implement read support for asp.net counters
117         and exceptions total counter.
118
119 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
120
121         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
122         accessing klass->methods. Fixes #467385.
123
124 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
125
126         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
127         for byval arguments without an [Out] attribute. Fixes #467212.
128
129         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
130         Fix compilation under android.
131         
132         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
133         processed, scan them directly after they are copied, to achieve better locality
134         and cache usage.
135
136         * socket-io.c: Applied patch from Koushik Dutta
137         (koush@koushikdutta.com). Disable IPV6 when running under android.
138
139 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
140
141         * icall.c (ves_icall_InternalExecute): Add write barriers.
142
143         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
144         the GC code.
145
146         * sgen-gc.c: Implement write barriers in IL code.
147
148 2009-01-17  Geoff Norton  <gnorton@novell.com>
149
150         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
151
152 2009-01-17  Geoff Norton  <gnorton@novell.com>
153
154         * image.c: When unloading the image->references table, there can be gaps
155         in it.  Ensure that we iterate every entry to avoid leaking assembly references
156         when unloading an appdomain.
157
158 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
159
160         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
161         speed up ptr-in-nursery checks.
162
163         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
164         threads_lock () to prevent deadlocks.
165
166         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
167         does not need to be scanned during minor collections, since writes to it
168         must use write barriers.
169
170 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
171
172         * metadata-verify.c: Add pe nt header verification.
173         
174 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
175
176         * gc.c: Fix a few warnings when using SGEN.
177
178 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
179
180         * metadata-verify.c: Add pe optional header verification.
181
182 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
183
184         * sgen-gc.c: Add support for user defined marker functions, used by
185         MonoGHashTable to avoid registering a GC root for every hash node.
186
187 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
188
189         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
190         non-pinned roots into separate hashes to avoid having to traverse them
191         in functions which are only interested in one kind.
192
193 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
194
195         * metadata-verify.c: Add pe header machine field verification.
196         
197 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
198
199         * metadata-verify.c: Add pe header size verification.
200
201 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
202
203         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
204         using the GC, they don't contain references.
205
206         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
207
208 2009-01-13  Geoff Norton  <gnorton@novell.com>
209
210         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
211         AppDomains created on the native side can be cleaned up on the native side.
212
213 2009-01-13  Geoff Norton  <gnorton@novell.com>
214
215         * appdomain.c: Ensure that we call mono_context_init for the embedding api
216         as well as the managed api.
217
218 2009-01-13  Geoff Norton  <gnorton@novell.com>
219
220         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
221         with a MonoAppDomain initialized against it.
222
223 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
224
225         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
226         
227         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
228
229         * marshal.c: Avoid setting the exception clauses after a method has been entered 
230         into the wrapper caches. Fixes #465700.
231
232         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
233         method builder.
234         (mono_mb_create_method): Set the clauses from the method builder.
235
236 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
237
238         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
239         Patch from Makoto Kishimoto.
240
241 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
242
243         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
244         encoding them as ROOT_DESC_COMPLEX.
245         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
246
247 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
248
249         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
250         no longer point to the nursery.
251
252         * sgen-gc.c: Add a few comments/FIXMEs.
253         
254         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
255
256         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
257         initialization of the various _method variables thread safe. Fixes
258         #465377.
259
260 2009-01-12  Mark Probst  <mark.probst@gmail.com>
261
262         * domain.c, domain-internals.h: Remove the shared_generics_hash
263         and its lookup functions.
264
265 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
266
267         * socket-io.c:  Fixing the MSVC build. 
268
269         Code is contributed under MIT/X11 license.
270
271 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
272
273         * metadata-verify.c: Add pe header watermark verification.
274
275 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
276
277         * metadata-verify.c: Add lfanew verification.
278
279 2009-01-12  Jb Evain  <jbevain@novell.com>
280
281         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
282         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
283
284 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
285
286         * socket-io.c: Fix the build.
287
288         * environment.c: Fix an #ifdef.
289
290 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
291
292         * threadpool.c (async_invoke_thread): Handle the wait function returning
293         WAIT_IO_COMPLETION as well.
294         (async_invoke_io_thread): Ditto.
295
296 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
297
298         * threads.c: Fixing the Windows build.
299
300         Code is contributed under MIT/X11 license.
301
302 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
303  
304         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
305         interrupt a wait.
306         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
307         the thread to wait again.
308
309 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
310
311         * metadata-verify.c: Initial skeleton of the metadata verifier.
312
313         * pedump.c: Add support for the metadata verifier.
314
315         * verify-internal.h: Export the whole assembly metadata verifier function.
316
317 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
318
319         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
320
321 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
322
323         * Makefile.am: Upgrade dtrace-prelink.sh location.
324
325 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
326
327         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
328         well. Otherwise the shutdown deadlock that happens on unix will can happen
329         as well.
330         If the main thread code finishes too fast it's possible that the finalizer
331         thread won't have executed yet, won't record itself as the finalizer thread
332         and the shutdown sequence will wait on it forever.
333
334 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
335
336         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
337         with MSVC.
338
339 2009-01-08  Miguel de Icaza  <miguel@novell.com>
340
341         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
342         Robert Jordan for pointing this out.
343
344 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
345
346         * icall.c
347         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
348         ves_icall_System_IO_DriveInfo_GetDriveType.
349
350 2009-01-07  Miguel de Icaza  <miguel@novell.com>
351
352         * icall.c: Wrap calls to mono_strtod in CriticalSection
353         invocations when using eglib, to work around #464316.
354
355 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
356
357         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
358         return value of GetCurrentDirectory to never access unitialized memory.
359
360 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
361
362         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
363         return value of GetCurrentDirectory and expand the buffer if needed.
364
365         Fixes #459094.
366
367 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
368
369         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
370           Adding a call to mono_init_com_types.
371
372         Code is contributed under MIT/X11 license.
373
374 2009-01-07  Geoff Norton  <gnorton@novell.com>
375
376         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
377         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
378         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
379         be the value of the ip buffer.
380
381 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
382
383         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
384         interfaces_packed here.
385
386         Fixes part of #463294.
387
388 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
389
390         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
391
392         Fixes part of #463294.
393
394 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
395
396         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
397         is a boxed complex as well.
398
399         Fixes part of #463294.
400
401 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
402
403         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
404         control if a methodspec should be created for the generic method definition from external assemblies.
405         Caching of methodspec is done using the handleref hash table.
406
407         Fixes #462592.
408
409 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
410
411         * loader.c (find_method): When searching the interfaces of a class
412         check the transitive closure of implemented interfaces.
413
414         Fixes #463303.
415
416 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
417
418         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
419         
420 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
421
422         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
423         interfaces calculation to fill_valuetype_array_derived_types.
424
425         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
426         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
427         for example.
428
429         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
430         interfaces for valuetypes if needed.    
431
432         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
433         for their basetype as well. Types are array expanded if rank is > 0.
434
435         Fixes #400716.
436
437 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
438
439         * socket-io.h : Changing the signature of
440           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
441           the blocking state.
442
443         * icall-def.h :  Changing the signature of
444           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
445
446         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
447           For Windows only.  Avoid blocking when calling accept by
448           querying for a connection via select.  The loop also queries
449           the thread state every 1000 micro seconds for the thread
450           stop state.  This will avoid the process hanging on shutdown
451           when using a TcpChannel that is never connected to.
452
453         Code is contributed under MIT/X11 license.
454
455 2008-12-30  Marek Safar  <marek.safar@gmail.com>
456
457         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
458
459 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
460
461         * class.c (get_implicit_generic_array_interfaces): Extract common
462         code to a helper function making it a lot easier on the eyes.
463
464 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
465
466         * class.c (get_implicit_generic_array_interfaces): If the internal
467         enumerator is an interface inflate System.Object instead of itself.
468
469         Fixes #461261.
470
471 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
472
473         * object.c (mono_runtime_invoke_array): Don't assert with
474         byref nullable types.
475
476         * marshal.c (mono_marshal_get_runtime_invoke): To handle
477         byref nullables we unbox the object and store it on the
478         stack. 
479         We can't use the boxed object since it is the T of Nullable<T>
480         and the boxed representation of a nullable it's underlying type
481         or null.
482         We could cheat and create a boxed nullable and use the same
483         machinery of other byref VTs but this feels like a hack and
484         using the stack has the bonus of reducing heap pressure.
485
486         Fixes #461941.
487
488 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
489
490         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
491         return value.
492
493         Fixes #461867.
494
495 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
496
497         * icall-def.h : Adding an internal call definition for 
498           System.Environment.internalBroadcastSettingChange.
499
500         * icall.c : Adding a Windows only implementation to broadcast a 
501           WM_SETTINGCHANGE when an environment variable has changed.
502
503         Code is contributed under MIT/X11 license.
504
505 2008-12-19  Mark Probst  <mark.probst@gmail.com>
506
507         * class.c, class-internals.h: Made
508         mono_class_has_parent_and_ignore_generics() non-static.
509
510 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
511
512         * image.c: deal with the mmap failing when loading an image.
513
514 2008-12-17  Geoff Norton  <gnorton@novell.com>
515
516         * threadpool.c: Ensure that the io_queue_lock is initialized
517         in all circumstances, as we always attempt to cleanup against it.
518
519 2008-12-17  Miguel de Icaza  <miguel@novell.com>
520
521         * icall.c (ves_icall_System_Environment_get_Platform): For
522         compatibility reasons for existing client code we will keep
523         returning 4 for a while.   
524
525         For how long will depend on the documentation being updated, and
526         for us to give client code a chance to be updated.
527
528         This reverts the original decison on #433108 since we did not
529         catch roughly 33 instances of the broken code in our own source
530         code base, we did not catch failures on the buildbots, and QA did
531         not bring this as a problem.
532
533         Only today I found some customer's code breaking due to our own
534         class libraries not being fully updated and tracked it down to
535         this change.  I am reverting it because if we could not even get
536         our story straight in our own code base, how can we hope that our
537         end user code be fixed?
538
539         As of this morning, our Wiki page that documents how to detect
540         Unix had not been fixed.    
541
542 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
543
544         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
545
546         * class.c (mono_class_get_fields): Handle loading errors.
547
548 2008-12-12 Mark Mason <mmason@upwardaccess.com>
549
550         * 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.
551         
552 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
553
554         * mono-perfcounters.c: avoid warning.
555
556 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
557
558         * reflection.c (ensure_runtime_vtable): Work on generic instances and
559         make sure all interfaces have MonoClass::interface_id set.
560
561         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
562         method table is property set.
563
564 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
565
566         * class.c: New function mono_class_setup_interface_id that setup
567         MonoClass::interface_id if needed.
568
569         * class-internals.h: Export new function.
570
571 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
572
573         * class.c: Add code to sanity check the vtable after setup_vtable_general
574         has done it's work.
575
576 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
577
578         * icall.c: make Assembly.GetExecutingAssembly work properly when
579         reflection is used to invoke the method.
580         Bug #321781 fixed.
581
582 2008-12-11  Mark Probst  <mark.probst@gmail.com>
583
584         * metadata/generic-sharing.c: Look for constraints in all type
585         arguments, not just the first one.
586
587 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
588
589         * appdomain.c: return the correct CodeBase for an Assembly instance
590         that was loaded from the shadow-copy directories.
591         Bug #458190 fixed.
592
593 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
594
595         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
596
597         * sgen-gc.c (check_object): New debugging helper function.
598
599         * object.c: Fix calls to mono_value_copy_array ().
600
601 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
602
603         * class.c (mono_class_setup_fields): If working on an inflated class
604         first check if the generic definition did init with success.
605
606         Fixes #445361.
607
608 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
609
610         pedump.c (main): Fix a warning.
611
612 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
613
614         * object-internals.h : Adding a definition for 
615           MonoReflectionComVisibleAttribute.
616
617         * marshal.c (cominterop_com_visible) :  Method added to check the 
618           ComVisible attribute of a class.
619
620         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
621           cominterop_raise_hr_exception added to consolidate common code 
622           to raise hr exceptions.
623
624         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
625           if a managed class should support IDispatch.
626
627         * marshal.c 
628           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
629           Added additional checks for managed object when getting 
630           an IDispatch interface.
631
632         Code is contributed under MIT/X11 license.
633
634 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
635
636         pedump.c (main): Handle mono_get_method () returning NULL. 
637
638 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
639
640         * marshal.h: Fix a warning.
641
642 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
643
644         * marshal.c : Adding cominterop_release_all_rcws to release all
645           runtime callable wrappers held by the runtime.
646
647         * marshal.h : Adding declaration for cominterop_release_all_rcws.
648           
649         Code is contributed under MIT/X11 license.
650
651 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
652
653         * metadata.c (mono_image_alloc_lock): New helper function.
654         (mono_image_alloc0_lock): Ditto.
655
656         * metadata.c: Use the alloc_lock () helper functions for allocating
657         memory from the image mempool.
658
659 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
660
661         * class.c (mono_class_from_generic_parameter): Document it's
662         locking behavior. Fix double checked locking here, we stored in
663         param->pklass a partially initialized MonoClass and no membar was used.
664
665 2008-12-05  Marek Habersack  <mhabersack@novell.com>
666
667         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
668         (3) functions are present in the C library use them to do the
669         job. If they are absent, make sure that the sum of int_part and
670         dec_part is rounded before returning. This is necessary due to the
671         division of dec_part by the power of 10 before the final addition
672         is performed - if the result is not rounded in some cases it will
673         yield invalid results.
674
675 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
676
677         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
678         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
679         instruction instead of a pointer constant.
680
681 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
682
683         * loader.c (mono_method_get_header): Do most of the work outside the
684         loader lock, to avoid assembly load hook deadlocks.
685
686         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
687         (mono_metadata_parse_type_full): Ditto.
688
689 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
690
691         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
692         Make the stack depth fixed. Ensure proper argument passing to the backtrace
693         funtions. Finally, use a lock to produce well ordered output.
694
695         The lock looks silly, as all calls to the corlib mempool should be guarded
696         with the loader lock, but for some reason this fact doesn't help. 
697
698         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
699
700 2008-12-02  Mark Probst  <mark.probst@gmail.com>
701
702         * socket-io.c: 64 bit big-endian fixes.
703
704 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
705
706         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
707         targets that require strict compatibility between the types.
708
709         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
710         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
711         Kill the strict argument and create a new one valuetype_must_be_boxed.
712
713         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
714         state that all valuetypes must be boxed.
715
716         Fixes #448560.
717
718 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
719
720         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
721         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
722
723         Contributed under MIT/X11 license.
724
725 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
726
727         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
728         the inflate_generic_type machinery should handle it.
729
730         This avoids a crash when the field's flags is zero and it's type is
731         a primitive.
732         What happens is that mono_metadata_parse_type_full will see that opt_attrs
733         is zero and will return one of the cached built-in primitive types. Since
734         those types live in read-only memory, the code that copies it crashes.  
735
736 2008-11-28  Mark Probst  <mark.probst@gmail.com>
737
738         * object.c: Don't put function descriptors into generalized IMT
739         thunks.
740
741 2008-11-28  Mark Probst  <mark.probst@gmail.com>
742
743         * class.c: Enable generic code sharing on PPC64.
744
745 2008-11-27  Mark Probst  <mark.probst@gmail.com>
746
747         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
748         from mini/mini.c.
749
750         * generic-sharing.c: Allocate the method template slists from the
751         image mempool so it doesn't leak.
752
753 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
754
755         * class.c (generic_array_methods): Release the linked list.
756
757 2008-11-27  Mark Probst  <mark.probst@gmail.com>
758
759         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
760         invocation to g_utf16_to_utf8().
761
762 2008-11-26  Mark Probst  <mark.probst@gmail.com>
763
764         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
765         arguments on big endian archs.
766
767 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
768
769         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
770         the type name (test added in corlib).
771
772 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
773
774         * pedump.c: initialize perf. counters. Fixes a segv.
775
776 2008-11-25  Martin Baulig  <martin@ximian.com>
777
778         * mono-debug-debugger.c
779         (mono_debugger_runtime_invoke): Return the exception object if an
780         exception was thrown.  Visual Studio displays the exception object
781         in the locals window.
782
783 2008-11-24  Mark Probst  <mark.probst@gmail.com>
784
785         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
786         ftnptr.
787
788 2008-11-24  Mark Probst  <mark.probst@gmail.com>
789
790         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
791         MONO_TYPE_U are sizeof (gpointer), too.
792
793 2008-11-24  Mark Probst  <mark.probst@gmail.com>
794
795         * marshal.c (mono_type_native_stack_size): Fixed size and
796         alignment for reference types.
797
798 2008-11-23  Mark Probst  <mark.probst@gmail.com>
799
800         * class.c (mono_class_generic_sharing_enabled): Disable generic
801         code sharing for PPC64.
802
803 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
804
805         * icall.c (mono_method_get_equivalent_method): Make sure
806         method->klass->methods is inited before looping over it.
807
808 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
809
810         * object.c: when calling ExecuteAssembly in a newly created domain,
811         the configuration file and application base are already set up.
812         Bug #446353 take 2 fixed.
813
814 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
815
816         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
817         Fixes #444715. Fix a warning.
818
819 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
820
821         * appdomain.c: write the full path of the assembly to the .ini file
822         created when "shadow-copying"
823         Bug #446353 fixed.
824
825 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
826
827         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
828         if signature==FALSE.
829
830 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
831
832         * marshal.h : Fix the cygwin build.
833            marshal.c:12442: undefined reference to `_IID_IMarshal'
834           
835         Code is contributed under MIT/X11 license.
836
837 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
838
839         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
840           free threaded marshaler when QueryInterface is called on a COM callable
841           wrapper requesting the IMarshal interface.
842           
843         Code is contributed under MIT/X11 license.
844
845 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
846
847         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
848
849         * reflection.c (mono_type_get_object): Special case the very common
850         void type.
851
852         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
853         hold typeof(void).
854
855 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
856
857         * process.h : Adding method declaration for
858           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
859           
860         * process.c : Adding implementation for
861           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
862           
863         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
864           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
865
866         Code is contributed under MIT/X11 license.
867
868 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
869
870         * appdomain.c (unload_thread_main): Clean up threadpool by
871         calling mono_thread_pool_remove_domain_jobs.
872
873         * domain-internals.h (struct _MonoDomain): Add new fields to
874         help coordinate the cleanup of the threadpool.
875
876         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
877         that cleans up the threadpool of all jobs associated with an appdomain.
878         It does that by cleaning up the queues and making sure all active
879         threads are accounted.
880
881         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
882         unloaded or in the process of. Take this is such way that there is
883         no race condition between another thread starting the unload and the
884         current thread acknowledging it.
885
886         * threadpool.c (async_invoke_thread): Same.
887
888         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
889         firing the new thread.
890
891         * threadpool.c (start_tpthread): Same.
892
893         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
894
895         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
896
897 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
898
899         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
900         Add support for DuplicateHandle.
901         
902         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
903         Add support for DuplicateHandle.
904         
905         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
906         Add support for DuplicateHandle.
907
908         Code is contributed under MIT/X11 license.
909
910 2008-11-06  Mark Probst  <mark.probst@gmail.com>
911
912         * class-internals.h: Make min_align into a whole byte.
913
914         * class.c: Set min_align for SIMD types to 16.
915
916 2008-11-05  Geoff Norton  <gnorton@novell.com>
917
918         * attach.c: Default the attacher to enabled for all cases including
919         embedded.
920
921 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
922
923         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
924         change r117650.
925
926 2008-11-04  Mark Probst  <mark.probst@gmail.com>
927
928         * monitor.c, monitor.h: New function for querying offsets of
929         members of MonoThreadsSync.
930
931 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
932
933         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
934         to speed up this function and to avoid the boundless memory growth caused by
935         the signature_dup () calls.
936
937 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
938
939         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
940         wrapper.
941
942         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
943         by 1 bit.
944
945         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
946
947 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
948
949         * appdomain.c:
950         * domain-internals.h: made mono_set_private_bin_path_from_config()
951         "internal".
952         * object.c: call the above function after setting the configuration
953         file path for the root domain.
954         Fixes bug #314478.
955
956 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
957
958         * assembly.c: when the assembly is loaded from an absolute path, end
959         basedir with a directory separator.
960         Bug #440781 fixed.
961
962 2008-10-30  Mark Probst  <mark.probst@gmail.com>
963
964         * monitor.c (mono_monitor_get_fast_enter_method): If
965         CompareExchange is not available, don't create the fastpath
966         instead of asserting.  (The method is missing in the 1.1 profile.)
967
968 2008-10-30  Mark Probst  <mark.probst@gmail.com>
969
970         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
971
972         * monitor.c, monitor.h: Code for generating Monitor.Enter and
973         Monitor.Exit IL fastpaths.
974
975 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
976
977         * class.c (mono_class_create_from_typedef): Added Vector2ul.
978
979 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
980
981         * class.c (mono_class_create_from_typedef): Added Vector2l.
982
983 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
984
985         * class.c (mono_class_create_from_typedef): Added Vector2d.
986
987 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
988
989         * appdomain.c: translate \ into / for cache_path.
990         * domain-internals.h: new mono_is_shadow_copy_enabled().
991         * icall.c: (fill_reflection_assembly_name) do the same path
992         manipulations that get_code_base does.
993         (get_code_base) use mono_is_shadow_copy_enabled.
994
995 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
996
997         * appdomain.c: shadow-copied assemblies go to CachePath +
998         ApplicationName when both are set. DynamicBase has nothing to do with
999         shadow copies.
1000         Bug #406877 fixed.
1001
1002 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
1003
1004         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
1005         STANDALONESIG table.
1006
1007         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
1008         standalone signatures.
1009
1010         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
1011         comparison code: instead of comparing the signatures using a custom
1012         equals function, transform them to a common signature and compare that. This
1013         works better with AOT.
1014
1015 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
1016
1017         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
1018
1019         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
1020         call for generic instances.
1021         (mono_class_setup_properties): Call setup_properties () before accessing
1022         gklass->properties.
1023
1024         * class.c (mono_class_get_virtual_methods): New helper function to iterate
1025         over the virtual methods of a class using metadata if possible, avoiding the
1026         creation of MonoMethod's for non-virtual methods.
1027         
1028         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
1029         get_virtual_methods () to iterate over the virtual methods of classes.
1030
1031 2008-10-25  Martin Baulig  <martin@ximian.com>
1032
1033         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
1034
1035 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
1036
1037         * class.c (mono_class_create_from_typedef): Added Vector4i.
1038
1039 2008-10-24  Mark Probst  <mark.probst@gmail.com>
1040
1041         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
1042         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
1043         special-casing applies to eliminate the call completely.
1044
1045 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
1046
1047         * class.c (mono_class_create_from_typedef): Added Vector8s.
1048
1049 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1050
1051         * class.c (mono_class_create_from_typedef): Added Vector16sb.
1052
1053 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1054
1055         * icall.c: get rid of annoying warning.
1056
1057 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1058
1059         * threadpool.c: in 1.x, if you change the background status of the
1060         threadpool thread, it's not reset.
1061         Remove unnecessary calls to SetState.
1062
1063 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1064
1065         * threadpool.c: asynchronously create a set of idle threads upon first
1066         use of the threadpool. SetMinThreads will now start the appropriate
1067         number of idle threads if they are not already running. The default is
1068         1 threadpool thread per CPU. Increased the maximum number of threads
1069         per CPU to 10.
1070
1071 2008-10-22  Martin Baulig  <martin@ximian.com>
1072
1073         Revert r116521 from Zoltan, it breaks the debugger:
1074
1075         * class.c (mono_class_get_virtual_methods): New helper function to iterate
1076         over the virtual methods of a class using metadata if possible, avoiding the
1077         creation of MonoMethod's for non-virtual methods.
1078         
1079         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
1080         get_virtual_methods () to iterate over the virtual methods of classes.
1081
1082 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1083
1084         * threads.c: when creating a threadpool thread, set its state to
1085         'background'.
1086         * threadpool.c: reset the background state of a threadpool thread
1087         after finishing each work item
1088         Bug #437888 fixed.
1089
1090 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
1091
1092         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
1093         
1094         * class.c (mono_class_setup_vtable_general): Add an optimized version for
1095         generic instances which works by inflating the methods in the container
1096         class's vtable.
1097
1098         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
1099         variant which doesn't make a copy if no inflation was done.
1100         (mono_class_setup_fields): Use it.
1101
1102         * metadata.c (mono_metadata_get_shared_type): New helper function to
1103         return a shared instance of a given MonoType.
1104
1105         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
1106         a copy of most non-generic types.
1107
1108 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
1109
1110         * threadpool.c: remove one more GetSystemInfo () call.
1111
1112 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
1113
1114         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
1115         use the code in mono-proclib.h to get processor information.
1116
1117 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1118
1119         * appdomain.c: fixed the logic that determines whether assemblies in a
1120         directory are "shadow-copied" or not. Bug #433483 fixed.
1121
1122 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
1123
1124         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
1125         warning.
1126
1127 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
1128
1129         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
1130         returning a vtype.
1131
1132         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
1133         reflection.c: Use mono_field_get_name () for accessing a field's name.
1134
1135         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
1136         class.c
1137
1138         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
1139         field.
1140
1141         * loader.c (find_method_in_class): Reenable the metadata optimization by
1142         not using it for generic instances.
1143
1144         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
1145         data/def_type fields from MonoClassField into a separate structure.
1146         (struct MonoClassField): Remove data/def_type fields.
1147         (struct _MonoClass): Add a 'field_def_values' array to store the default
1148         values/RVA for fields.
1149
1150         * class.c reflection.c: Update after the changes.
1151         
1152         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
1153         for accessing field->data.
1154
1155         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
1156
1157         * loader.c (find_method_in_class): Revert the last change for now as
1158         it breaks Mono.C5 unit tests.
1159
1160         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
1161         'field_generic_types' and 'field_objects' which contain the information
1162         previously stored in MonoInflatedField.
1163         (MonoInflatedField): Delete.
1164         (struct _MonoClassField): Delete 'generic_info' field.
1165
1166         * reflection.c: Store the information which was previously in 
1167         field->generic_info in MonoDynamicGenericClass instead.
1168
1169         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
1170         MonoClassField changes.
1171
1172 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
1173
1174         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
1175         store the value inside the data array of the MonoMethodWrapper.
1176         This saves memory, is faster and fixes the lifetime issues (methods
1177         were never removed from the hash previously). May also fix bug#436996.
1178
1179 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
1180
1181         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
1182         generic instances, compute the type from the generic definition instead of
1183         looking in field->generic_info.
1184
1185         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
1186         for inflated fields, the only user was get_fieldref_token () which no
1187         longer needs it.
1188
1189         * class.c (mono_class_init): Revert the last change as it seems to cause
1190         crashes.
1191
1192         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
1193         bytes on 64 bit platforms.
1194
1195         * object.c (mono_class_create_runtime_vtable): Fix a warning.
1196         
1197         * object.c (mono_class_create_runtime_vtable): Don't initalize
1198         field->data/field->def_type here, it is done lazily by 
1199         mono_class_get_field_default_value ().
1200
1201         * icall.c (ves_icall_get_enum_info): Call 
1202         mono_class_get_field_default_value () instead of directly accessing
1203         field->data and field->def_type.
1204
1205         * object.c (get_default_field_value): Ditto.
1206
1207         * class.c (mono_field_get_data): Ditto.
1208         
1209         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
1210         call for generic instances.
1211
1212         * loader.c (find_method_in_class): If klass != from_class, then inflate
1213         the method with the context of from_class, since the caller assumes this.
1214
1215 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
1216
1217         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
1218         for accessing method->slot.
1219
1220 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
1221
1222         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
1223
1224 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
1225
1226         * class.c (mono_method_get_vtable_index): Use
1227         mono_method_get_vtable_slot () for accessing method->slot.
1228
1229         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
1230         accessing klass->methods.
1231
1232         * class.c (mono_method_get_vtable_slot): New helper function.
1233         (mono_class_get_vtable_entry): Ditto.
1234         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
1235         accessing method->slot.
1236
1237         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
1238         method to get_inflated_method ().
1239
1240         * class.c (mono_class_get_inflated_method): New helper method to obtain
1241         a method of an inflated class without calling setup_methods ().
1242         (mono_class_get_cctor): Use get_inflated_method.
1243
1244         * generic-sharing.c (mono_class_get_method_generic): Ditto.
1245         
1246         * marshal.c image.c: Lazily create all the marshal caches.
1247
1248         * image.c (mono_image_init): Move initialization of runtime_invoke
1249         caches to marshal.c.
1250
1251         * marshal.c (get_cache): New helper function to lazily initialize a 
1252         wrapper cache.
1253         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
1254
1255         * debug-helpers.c (mono_method_full_name): Include generic arguments.
1256
1257 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
1258
1259         * loader.c: fixed check for interface type.
1260
1261 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
1262
1263         * appdomain.c: check for NULL setup before it's referenced.
1264
1265 p
1266 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
1267
1268         * class.c: remove the unused old vtable setup code.
1269
1270 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
1271
1272         * class.c: don't depend on interface order in
1273         setup_interface_offsets (bug #435777).
1274         * reflection.c: sort the InterfaceImpl table (patch from
1275         Jb Evain  <jbevain@novell.com>).
1276
1277 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
1278
1279         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
1280         the low level assemblies lock.
1281
1282 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
1283
1284         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
1285         object.c, reflection.c, socket-io.c, threads.c: introduced
1286         mono_framework_version () to return the major framewrok version,
1287         changed the code that was using more complex patterns to use it.
1288         Return the correct value for PlatformID for OSX.
1289
1290 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
1291
1292         * icall-def.h, process.h, process.c: added an icall to get info about
1293         processes using mono-proclib.
1294
1295 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
1296
1297         * mono-perfcounters.c: use the mono-proclib functions to
1298         access process information.
1299
1300 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
1301
1302         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
1303         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
1304         reflection.c: remove rawbuffer usage: mmap support is more sanely
1305         provided by utils/mono-mmap.
1306
1307 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
1308
1309         * gc.c: use posix semaphores when possible so that
1310         mono_gc_finalize_notify() is signal safe.
1311
1312 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
1313
1314         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
1315         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
1316         be #ifdef-ed out, the linker will remove the rest.
1317
1318         * marshal.c: Implement DISABLE_COM.
1319
1320         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
1321
1322 2008-10-11  Miguel de Icaza  <miguel@novell.com>
1323
1324         * locales.c (string_invariant_compare_char): Optimization: do not
1325         call g_unichar_type unless we actually need the information.
1326
1327 2008-10-10  Mark Probst  <mark.probst@gmail.com>
1328
1329         * object.c, class-internals.h: Also create remoting trampolines
1330         for generic methods.  Pass the domain to the remoting trampoline
1331         creation function, too.
1332
1333 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
1334
1335         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
1336
1337 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1338
1339         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
1340         Vector4ui.
1341
1342 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1343
1344         * assembly.c:
1345         * locales.c: remove the use of g_strdown. Fixes bug #322313.
1346
1347 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
1348
1349         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
1350         for the least possible amount of time (extending the fix in r113458).
1351
1352 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
1353
1354         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
1355
1356 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
1357
1358         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
1359         as possible simd intrinsic types.
1360         Optimized the test to check for the common prefix first.
1361
1362 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
1363
1364         * class.c: back out part of a broken optimization committed on
1365         May 23th (bug #433908).
1366
1367 2008-10-09  Mark Probst  <mark.probst@gmail.com>
1368
1369         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
1370         Win32.  Should fix #432388 for most cases until we have the new
1371         profiler on Win32.
1372
1373 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
1374
1375         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
1376         instead of using inst->id so the hash is stable for AOT.
1377
1378 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1379
1380         * appdomain.c:
1381         * icall.c: create a .ini file for shadow-copied assemblies that
1382         contains the location of the original assembly. Use this to return the
1383         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
1384         Also fix the number of '/' for windows when returning the CodeBase.
1385         Fixes bug #430920.
1386
1387 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1388
1389         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
1390
1391         Code is contributed under MIT/X11 license.
1392
1393 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1394
1395         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
1396           if if the class vtable needs initialized.
1397
1398         Code is contributed under MIT/X11 license.
1399
1400 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
1401
1402         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
1403           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
1404           STRING->BSTR, and CLASS->INTERFACE.
1405
1406         Code is contributed under MIT/X11 license.
1407
1408 2008-10-07  Marek Habersack  <mhabersack@novell.com>
1409
1410         * sysmath.h: changed the declaration of the
1411         ves_icall_System_Math_Round2 icall by adding an extra
1412         away_from_zero parameter.
1413
1414         * sysmath.c (ves_icall_System_Math_Round2): added support for
1415         away from zero rounding. The icall now takes an extra boolean
1416         parameter to signal that away from zero operation is requested.
1417
1418 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
1419
1420         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
1421         the delegate klass so it can work with full-aot.
1422         (mono_marshal_get_delegate_end_invoke): Ditto.
1423         (mono_marshal_get_delegate_invoke): Ditto.
1424
1425 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
1426
1427         * gc.c, attach.h, attach.c: remove a bad pattern:
1428         add_finalizer_callback () is not implemented correctly, it can't
1429         without adding more overhead to the finalizer loop and it's not
1430         even needed, since we know exactly what we need to call, so there is
1431         no need to do so through an expensive function pointer.
1432
1433 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
1434
1435         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
1436         for the no-gc case.
1437         * attach.c (mono_attach_init): Remove the #ifdef.
1438
1439 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
1440
1441         * attach.c (mono_attach_init): Don't use
1442         mono_gc_add_finalizer_thread_callback when compiling without GC.
1443         Fixes #432306.
1444         
1445         Code is contributed under MIT/X11 license.
1446
1447 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
1448
1449         * class.c (mono_class_create_from_typedef): Remove the 
1450         #ifndef DISABLE_SIMD stuff.
1451
1452 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
1453
1454         * class-internals.h (MonoClass): Added simd_type bit field.
1455
1456         * class.c (mono_class_create_from_typedef): Check if type is a simd
1457         intrinsic.
1458
1459 2008-10-03  Mark Probst  <mark.probst@gmail.com>
1460
1461         * object.c (mono_method_add_generic_virtual_invocation): Only add
1462         instantiations to the thunk whose count is at least as large as
1463         the threshold.
1464
1465 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1466
1467         * icall.c: changed the Type of the exception thrown when trying to
1468         invoke a constructor on an abstract class. Part of the fix for bug
1469         #324185.
1470
1471 2008-10-02  Mark Probst  <mark.probst@gmail.com>
1472
1473         * class.c, class-internals.h (mono_method_get_vtable_index): New
1474         function which returns the index into the vtable and properly
1475         handles inflated virtual generic methods.
1476
1477 2008-10-01  Mark Probst  <mark.probst@gmail.com>
1478
1479         * object.c, domain.c, object-internals.h, domain-internals.h:
1480         Generalize IMT thunk machinery to also handle thunks for virtual
1481         generic method invokes.  When a virtual generic method is invoked
1482         more than a number of times we insert it into the thunk so that it
1483         can be called without lookup in unmanaged code.
1484
1485         * generic-sharing.c, class-internals.h: Fetching a
1486         MonoGenericInst* for a method from an (M)RGCTX.
1487
1488 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
1489
1490         * marshal.c (emit_marshal_string): Applied a variant of a patch by
1491         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
1492         marshalling. Fixes #431304.
1493
1494 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
1495
1496         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1497           handle when ref is specified without In or Out.
1498
1499         Code is contributed under MIT/X11 license.
1500
1501 2008-09-30  Mark Probst  <mark.probst@gmail.com>
1502
1503         * loader.c (mono_get_method_constrained): Don't expand method with
1504         the class's context, because it's already a method of that class.
1505
1506 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
1507
1508         * attach.c : should be correct build fix.
1509
1510 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
1511
1512         * attach.c: Fix the previous change.
1513
1514 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
1515
1516         * attach.c : quick w32 build fix.
1517
1518 2008-09-27  Miguel de Icaza  <miguel@novell.com>
1519
1520         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
1521         crashes MonoDevelop: #430455.
1522
1523 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
1524
1525         * domain-internals.h (struct _MonoDomain): Move most fields used only by
1526         the JIT do MonoJitDomainInfo in ../mini/mini.h.
1527
1528         * domain.c: Remove initialization/cleanup of the removed fields.
1529
1530 2008-09-27  Mark Probst  <mark.probst@gmail.com>
1531
1532         * class.c (mono_class_generic_sharing_enabled): Enable generic
1533         code sharing for PPC.
1534
1535 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
1536
1537         * attach.c : Fixing the Windows builds.
1538
1539         Code is contributed under MIT/X11 license.
1540
1541 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
1542
1543         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
1544         the default generic sharing mode to 'all'.
1545
1546 2008-09-25  Mark Probst  <mark.probst@gmail.com>
1547
1548         * generic-sharing.c, class-internals.h: New function for checking
1549         whether a method needs a static RGCTX invoke wrapper.  A few
1550         funtions moved from mini/generic-sharing.c.
1551
1552         * icall.c: New function used.
1553
1554 2008-09-25  Mark Probst  <mark.probst@gmail.com>
1555
1556         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
1557         Static RGCTX invoke wrapping applies to value type methods, too.
1558
1559         * class.c (mono_class_setup_vtable_general): In generic-shared
1560         value types, wrap methods with a static RGCTX invoke wrapper.
1561
1562 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
1563
1564         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
1565         osx build.
1566
1567 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
1568
1569         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
1570         register a callback which is called when the finalizer thread is woken
1571         up.
1572         (finalizer_thread): Call the callback if it exists.
1573
1574         * attach.h attach.c: New files, implementing the attach mechanism.
1575
1576         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
1577         
1578         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
1579         by the previous change.
1580
1581 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
1582
1583         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
1584         loader.c, marshal.c, metadata-internals.h, metadata.c,
1585         method-builder.c, object.c, reflection.c: introduced specific functions
1586         to allocate from the domain and image mempools and cleaned up most of
1587         the code to use them (still missing a few in reflection.c).
1588         Keep the loader bytes counter updated.
1589
1590 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
1591
1592         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
1593         loader-related counters.
1594
1595 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
1596
1597         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
1598         added more MS-compatible counters.
1599
1600 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
1601
1602         * class.c (mono_class_setup_fields): Call setup_fields before accessing
1603         class->blittable. Fixes #428217.
1604
1605 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
1606
1607         * reflection.c (mono_image_get_field_on_inst_token): Call 
1608         field_encode_signature () since that handles custom modifiers too.
1609         Fixes #424663.
1610
1611 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
1612
1613         * reflection.c (add_custom_modifiers): New helper function to merge custom
1614         modifiers stored in objects to a MonoType.
1615         (fieldref_encode_signature): Encode custom modifiers.
1616         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
1617         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
1618
1619 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
1620
1621         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
1622         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
1623         64-bit IL only images because imports are not resolved for IL only images.
1624         Special thanks to Bill Holmes for finding this bug and testing the patch.
1625         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
1626
1627         Contributed under MIT/X11 license.
1628
1629 2008-09-19  Miguel de Icaza  <miguel@novell.com>
1630
1631         * mono-config.c (dllmap_start): Add support for the bits keyword
1632         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
1633
1634 2008-09-19  Mark Probst  <mark.probst@gmail.com>
1635
1636         * reflection.c (inflate_mono_method): When the class the method is
1637         to be inflated for is itself not inflated, just return the method.
1638
1639 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
1640
1641         * mono-perfcounters.c: use more user friendly process instance names.
1642
1643 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
1644
1645         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
1646           handle "[in] ref" and "[in][out] ref" cases.
1647
1648         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
1649           to mono_mb_create_method.  This was causing problems calling native to
1650           managed passing Variants by value.
1651
1652         Code is contributed under MIT/X11 license.
1653
1654 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
1655
1656         * class.c (can_access_internals): Call mono_assembly_load_friends ()
1657         before accessing the friend_assembly_names field.
1658
1659         * assembly.c (mono_assembly_load_friends): Make this callable multiple
1660         times.
1661         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
1662         called lazily when it is needed.
1663
1664         * metadata-internals.h (struct _MonoAssembly): Add 
1665         'friend_assembly_names_inited' flag.
1666
1667 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
1668
1669         * mono-perfcounters-def.h: fix the types of a few counters.
1670         * mono-perfcounters.c: implemented the instance names getter
1671         and a few bugfixes.
1672
1673 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
1674
1675         * culture-info-table.h : regenerated.
1676
1677 2008-09-17  Robert Jordan  <robertj@gmx.net>
1678
1679         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
1680         context bound objects. Fixes #415577.
1681
1682         Code is contributed under MIT/X11 license.
1683
1684 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
1685
1686         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
1687         implementation (bug #423582).
1688
1689 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
1690
1691         * object.c (mono_object_get_virtual_method): Handle the case method->slot
1692         is not set. Fixes #426309.
1693
1694 2008-09-16  Jb Evain  <jbevain@novell.com>
1695
1696         * class.c (mono_class_from_name): fix the exported type look up
1697         when the type is defined in a referenced assembly.
1698
1699 2008-09-16  Jb Evain  <jbevain@novell.com>
1700
1701         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
1702         increment the next index counter on each iteration to make that work
1703         for more than one type forwarder. Unmanaged part to fix #422929.
1704
1705 2008-09-15  Mark Probst  <mark.probst@gmail.com>
1706
1707         * object-internals.h: enum ComInterfaceType in
1708         MonoInterfaceTypeAttribute is guint32, not guint16.
1709
1710 2008-09-12  Mark Probst  <mark.probst@gmail.com>
1711
1712         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
1713         writing code.
1714
1715 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1716
1717         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
1718         not gboolean.
1719
1720 2008-09-11  Mark Probst  <mark.probst@gmail.com>
1721
1722         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
1723         Endianness fixes for MonoSymbolFileOffsetTable.
1724
1725 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1726
1727         * process.c (complete_path) : Removing quotes from the 
1728           input path.  The glib file routines do not handle file paths
1729           that have quotes around them.
1730
1731         Code is contributed under MIT/X11 license.
1732
1733 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
1734
1735         * socket-io.h : Adding a comment to provide locations where 
1736           changes to MonoSocketAsyncResult need to be synced.
1737
1738         Code is contributed under MIT/X11 license.
1739
1740 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
1741
1742         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
1743         parameters as well. Fixes #425001.
1744
1745 2008-09-08  Miguel de Icaza  <miguel@novell.com>
1746
1747         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
1748         windows build.
1749
1750 2008-09-07  Miguel de Icaza  <miguel@novell.com>
1751
1752         * console-io.c: Add support for tracking the window size if it
1753         changes.
1754
1755         The setup is very simple: the TtySetup function will now return a
1756         pointer to a location in memory that tracks the current console
1757         size.  The managed code checks its current value every time its
1758         queried against the last value set, and updates accordingly.
1759
1760         With this setup we can work with multiple consoles, and we do not
1761         require to poke into managed code from a signal handler.
1762
1763         Additionally, the environment for COLUMNS and LINES is now handled
1764         in unmanaged code.
1765
1766         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
1767
1768 2008-09-07  Mark Probst  <mark.probst@gmail.com>
1769
1770         * marshal.c (mono_type_native_stack_size): Treat
1771         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
1772
1773 2008-09-04  Jb Evain  <jbevain@novell.com>
1774
1775         * class.c (mono_class_is_assignable_from): fix assignability of nullables
1776         to nullables.
1777
1778 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
1779
1780         * verify.c (verify_type_compatibility_full): Revert change
1781         to allow converting a native int to unmanaged pointer be verifiable
1782         under non-strict mode.
1783         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
1784
1785         * verify.c: Added some TODOs.
1786
1787 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
1788
1789         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
1790           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
1791           Changed to use GlobalAlloc for the memory returned on Windows platforms.
1792
1793         Code is contributed under MIT/X11 license.
1794
1795 2008-09-02  Jb Evain  <jbevain@novell.com>
1796
1797         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
1798
1799 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
1800
1801         reflection.c (typebuilder_setup_fields): Handle classes with
1802         explicit size.
1803
1804 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
1805
1806         class.c (mono_class_setup_events): Add memory barrier due to
1807         double checked locking.
1808         
1809         class.c (mono_class_setup_properties): Same.
1810
1811 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
1812
1813         * class.c (mono_class_is_assignable_from): Fix the build.
1814         
1815         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
1816         before accessing klass->interface_bitmap. Fixes #421744.
1817
1818 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
1819
1820         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
1821         the runtime into no-exec mode, useful when running the AOT compiler.
1822
1823         * appdomain.c gc.c object.c: Avoid executing managed code when running
1824         in no-exec mode.
1825         
1826         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
1827
1828         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
1829         special case when the mono_assembly_loaded () returns NULL because the 
1830         search hook is not installed.
1831
1832 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
1833
1834         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
1835         crashes in bstr marshalling on linux.
1836
1837 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1838
1839         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
1840         with more than one parameter.
1841
1842 2008-08-24  Miguel de Icaza  <miguel@novell.com>
1843
1844         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
1845         start/stop flow control as well when turning off ICANON (allows
1846         C-s and C-q to be read by Console.ReadKey).
1847
1848 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
1849
1850         * class.c (mono_class_init): Move the initialization of nested classes
1851         into mono_class_get_nested_types (). Fixes #418433.
1852
1853         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
1854         flag.
1855
1856         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
1857         iterating tough the nested classes of a class.
1858
1859 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
1860
1861         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
1862         on arm.
1863
1864 2008-08-22  Miguel de Icaza  <miguel@novell.com>
1865
1866         * console-io.c (sigcont_handler): Support signal chaining for
1867         SIGCONT.
1868
1869         (console_set_signal_handlers): Use best practices with sigaction,
1870         clear the structure before using it. 
1871
1872 2008-08-22  Robert Jordan  <robertj@gmx.net>
1873
1874         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
1875         Fix the Windows build.
1876
1877 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
1878
1879         * class.c (mono_class_generic_sharing_enabled): Make the default
1880         sharing mode 'corlib'.
1881
1882 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
1883
1884         * console-io.c (console_set_signal_handlers): Fix a warning.
1885
1886         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
1887         method normally, the JIT will take care of avoiding recursion.
1888
1889 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
1890
1891         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
1892
1893         Code is contributed under MIT/X11 license.
1894
1895 2008-08-20  Miguel de Icaza  <miguel@novell.com>
1896
1897         * console-io.c (sigcont_handler): We need to restore the entire
1898         termios state, not only the original settings, as things like echo
1899         can be controlled after this (Booish exposes this issue with its
1900         own ReadLine implementation).
1901
1902         Additionally, we need to set the terminal back into keypad_xmit
1903         mode.
1904         
1905         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
1906         string as a paramter as well.   Otherwise we get different
1907         keyboard sequences.
1908
1909 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
1910
1911         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
1912         delegates with byref out parameter passing. Fixes #351520.
1913
1914         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
1915         a generic context.
1916         (mono_type_get_desc): Add the type arguments for GENERICINST.
1917         (mono_method_full_name): Stringify the class name using mono_type_full_name
1918         so it picks up generic arguments.
1919
1920 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
1921
1922         * console-io.c: Removed debug output.
1923
1924 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
1925
1926         reflection.c (mono_reflection_create_runtime_class): Alloc
1927         the nested classes linked list using the dynamic image mempool.
1928         Fixes leak in corlib compilation.
1929
1930 2008-08-19  Miguel de Icaza  <miguel@novell.com>
1931
1932         * console-io.c: Fix incredibly annoying behavior on the console
1933         after resuming execution after control-z.   This affected every
1934         console application.
1935
1936 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
1937
1938         * mempool-internals.h: Header for mono private mempool functions. The first
1939         two function are for allocating glib linked lists using pools.
1940
1941         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
1942
1943         * Makefile.am: Added mempool-internals.h.
1944
1945 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
1946
1947         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
1948         (mono_domain_free): Ditto.
1949
1950         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
1951         be used by the JIT to store its domain-specific information, instead of putting
1952         it directly into MonoDomain.
1953
1954         * domain.c (mono_install_create_domain_hook): New helper function to install
1955         a hook which initializes domain->runtime_info.
1956
1957         * domain.c (mono_install_free_domain_hook): Ditto.
1958         
1959 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
1960
1961         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
1962         asserting if the ares parameter is null.
1963
1964         * mono-perfcounters.c: Fix warnings.
1965
1966         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
1967         is not needed, don't check for interruptions either.
1968         (mono_marshal_get_delegate_end_invoke): Ditto.
1969
1970 2008-08-15  Marek Habersack  <mhabersack@novell.com>
1971
1972         * mono-perfcounters.c (predef_readonly_counter): added support for
1973         reading the ASP.NET Requests Queued counter from another process.
1974
1975 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
1976
1977         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
1978         MonoImage to simplify the AOT code.
1979
1980 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
1981
1982         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
1983         marshalling. Fixes #416078.
1984
1985 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1986         
1987         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
1988         it is set, looking up the icall address is deferred to the JIT, since 
1989         in embedded scenarios, the icall might not be registered in the runtime
1990         doing the AOT compilation. Backported from the 2.0 branch.
1991
1992 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
1993
1994         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
1995         Fixes #415621.
1996
1997 2008-08-05  Marek Habersack  <mhabersack@novell.com>
1998
1999         * Makefile.am: added support for cross-compilation.
2000
2001 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
2002
2003         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
2004
2005 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
2006
2007         * mono-perfcounters.c: jitted methods and jitted bytes counters.
2008
2009 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
2010
2011         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
2012         mono-perfcounters.c: performance counters implementation.
2013
2014 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
2015
2016         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
2017         to gpointer, letting the AOT code decide what to store in it.
2018
2019 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
2020
2021         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
2022           mono_class_setup_methods if the methods are not initialized.
2023
2024         Code is contributed under MIT/X11 license.
2025
2026 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
2027
2028         * verify.c: Remove some debug code I commited by accident.
2029
2030         * verify.c (mono_method_is_valid_in_context): Change the return value
2031         to make possible to distinguish between invalid and unverifiable.
2032
2033         * verify.c (verifier_load_method): Don't return NULL for unverifiable
2034         methods.
2035
2036 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
2037
2038         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
2039         constraints. Fixes regression in gtest-253.
2040
2041 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
2042
2043         * verify.c (mono_verifier_verify_class): Don't allow generic types
2044         with explicit layout.
2045
2046         * verify.c (mono_method_verify): Check locals and argument types.
2047
2048 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
2049
2050         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
2051         wait if the thread is in StopRequested state.
2052
2053         * class.c (mono_class_from_name): Refactor the module searching code into
2054         a separate function so it can be reused in the AOT case too.
2055
2056 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2057
2058         * verify.c (mono_type_is_valid_in_context): Improve the error message.
2059         Check both the type and it's generic type definition for loader errors.
2060         
2061         * verify.c (mono_method_is_valid_in_context): Don't generate another
2062         error when a type errors occur, this leads to the wrong exception been
2063         thrown.
2064
2065 2008-07-28  Dick Porter  <dick@ximian.com>
2066
2067         * icall-def.h
2068         * process.c
2069         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
2070         New internal calls to duplicate and close a process handle.
2071
2072 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
2073
2074         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
2075
2076 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
2077
2078         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
2079
2080 2008-07-27  Robert Jordan  <robertj@gmx.net>
2081
2082         * class.c (mono_class_init): Don't compute class.has_finalize for
2083         valuetypes. Fixes #412477.
2084
2085 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
2086
2087         * verify.c: Implement constraint equivalence checking.
2088         This is required when a generic parameter is used as
2089         argument to a constrained one.
2090
2091         Fixes #410637.
2092
2093 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
2094
2095         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2096
2097         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
2098
2099         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
2100         synch with managed object layout.
2101
2102 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
2103
2104         * verify.c (do_branch_op): Handle valuetypes and generic
2105         arguments properly.
2106
2107         * verify.c (do_cmp_op): Same.
2108
2109         Fixes #410383.
2110
2111 2008-07-24  Mark Probst  <mark.probst@gmail.com>
2112
2113         * generic-sharing.c: Fix memory leaks.
2114
2115         * class.c, class-internals.h: Make
2116         mono_class_inflate_generic_type_with_mempool() non-static.
2117
2118 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
2119
2120         * pedump.c (dump_verify_info): Dump full class name.
2121
2122 2008-07-24  Mark Probst  <mark.probst@gmail.com>
2123
2124         * generic-sharing.c: Removed some old code that didn't do anything.
2125
2126 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
2127         * profiler.c: Added runtime_initialized_event,
2128         mono_profiler_install_runtime_initialized and
2129         mono_profiler_runtime_initialized. This new hook tells the profiler
2130         when the runtime is sufficiently initialized to be able to call
2131         mono_thread_attach on the root appdomain.
2132         * profiler.h, profiler-private.h: Likewise.
2133
2134 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
2135
2136         * verify.c (do_cast): Do boxing for generic arguments as well.
2137
2138         * class.c (is_nesting_type): Drop generic instantiations before
2139         checking for nesting.
2140
2141         * class.c (can_access_instantiation): Allow access to generic
2142         arguments.
2143
2144 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
2145
2146         * verify.c (verify_class_for_overlapping_reference_fields):
2147         On some cases, the field size might be zero, guard against that.
2148         Fix the explicit layout check to work as expected.
2149
2150 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
2151
2152         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
2153         mono_thread_resume () during shutdown, since the thread we want to abort
2154         might be suspended.
2155
2156 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
2157
2158         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
2159         warning.
2160
2161         * debug-mono-symfile.c: Fix a warning.
2162
2163         * mono-perfcounters.c (get_cpu_times): Fix a warning.
2164
2165         * object.c (mono_class_vtable): Check if exception_type is set, and return
2166         NULL as defined by the function comments.
2167
2168 2008-07-22  Mark Probst  <mark.probst@gmail.com>
2169
2170         * mempool.c: Use malloc for every single mempool allocation if the
2171         configure option is set.  This makes it easier to track mempool
2172         allocations with tools like Valgrind.
2173
2174 2008-07-22  Jb Evain  <jbevain@novell.com>
2175
2176         * reflection.c (create_dynamic_mono_image): emit the same
2177         metadata version that SL2 does when creating a SL2 image.
2178
2179 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
2180
2181         * icall-def.h:
2182         * icall.c: New icall System.Enum:get_hashcode. This function
2183         avoids the overhead of boxing the enum to the underlying type.
2184
2185 2008-07-21  Mark Probst  <mark.probst@gmail.com>
2186
2187         * reflection.c (mono_method_get_object): Don't let static RGCTX
2188         invoke wrappers get into MonoReflectionMethods.
2189
2190 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
2191
2192         * object-internals.h:
2193         * object.c: New mono_runtime_class_init_full function
2194         that makes throwing the exception optinal.
2195
2196         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
2197         for the case where the exception object is supplied.
2198
2199 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
2200
2201         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
2202         old ld versions.
2203
2204         Contributed under MIT/X11 license.
2205
2206 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2207
2208         * string-icalls.c (ves_icall_System_String_InternalSplit):
2209         Optimize array allocation by caching the MonoClass of the
2210         array type.
2211
2212         * icall.c (ves_icall_Type_GetMethodsByName): Same.
2213
2214         * reflection.c (mono_param_get_objects): Same.
2215
2216 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2217
2218         * icall-def.h:
2219         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
2220         It inflates the given type using the class context.
2221
2222 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2223
2224         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
2225         the vtable if it already exists.
2226
2227         * object-internals.h: Add mono_class_try_get_vtable as part of the
2228         internal API.
2229
2230         * reflection.c (mono_type_get_object): Use the MonoObject from the
2231         vtable when possible. Reduces locking contention on reflection heavy
2232         code.
2233
2234 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
2235
2236         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
2237         g_bit_nth_msf () since that macro is not implemented in eglib.
2238
2239 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
2240
2241         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
2242         on platforms which do not support it.
2243
2244 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
2245
2246         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
2247
2248 2008-07-11  Martin Baulig  <martin@ximian.com>
2249
2250         * mono-debug-debugger.h
2251         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
2252
2253         * mono-debug-debugger.c
2254         (_mono_debugger_interruption_request): New global volatile variable.
2255         (mono_debugger_check_interruption): New public function.
2256
2257         * threads.c
2258         (mono_thread_current_check_pending_interrupt): Call
2259         mono_debugger_check_interruption().
2260         (mono_thread_interruption_checkpoint_request): Likewise.
2261
2262 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2263
2264         * verify.c: Add more type checks for loaded types. Verify the result
2265         handle from ldtoken.
2266
2267 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2268
2269         * loader.c (field_from_memberref): Don't crash if the field
2270         wasn't found.
2271
2272 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2273
2274         * verify.c: Verify if type and method instantiations
2275         don't have invalid VAR or MVAR arguments.
2276
2277 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2278
2279         * verify.c: Fix double free of function pointer list.
2280
2281 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
2282
2283         * object.c (mono_string_to_utf8): Comment the new code as it
2284         breaks under eglib.
2285
2286 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
2287
2288         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
2289
2290 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
2291
2292         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
2293           is not throw too many times.
2294
2295         Code is contributed under MIT/X11 license.
2296
2297 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
2298
2299         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
2300         debugging is turned off.
2301
2302 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
2303
2304         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
2305
2306 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2307
2308         * class-internals.h, class.c: Added new generic sharing option:
2309         Share only stuff in System.Collections.Generic, which is now the
2310         default.
2311
2312 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2313
2314         * generic-sharing.c, class-internals.h: New function for getting a
2315         generic method in a generic class given the corresponding method
2316         for a different instantiation of the class.  Partly refactored
2317         from mini-trampolines.c.
2318
2319         * class.c: Make sure generic methods have a class_inst if they are
2320         part of a generic class.
2321
2322         * metadata.c (mono_type_stack_size_internal): Handle type
2323         variables.
2324
2325 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2326
2327         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
2328         Signifies whether information on the this/vtable/mrgctx variable
2329         is available.
2330
2331 2008-07-04  Mark Probst  <mark.probst@gmail.com>
2332
2333         * object.c, object-internals.h, icall.c: New function
2334         mono_delegate_ctor_with_method(), which does the same as
2335         mono_delegate_ctor(), but takes an explicit method argument
2336         instead of taking the method from the jit info.
2337
2338         * marshal.c: When creating a delegate with an inflated method take
2339         the "this" argument as the target class for the castclass.
2340
2341 2008-07-03  Mark Probst  <mark.probst@gmail.com>
2342
2343         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
2344         mono_jit_info_table_find() to perform very badly in some cases.
2345
2346 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
2347
2348         * icall.c (type_from_typename): Handle 'string'.
2349
2350         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
2351         wrappers into the wrapper_hash, since the key is not a MonoMethod.
2352
2353 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
2354
2355         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
2356
2357         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
2358         number of available managed allocator types.
2359
2360         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
2361         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
2362
2363 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
2364
2365         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
2366         which is a low level lock protecting just the 'jit_code_hash' hash table.
2367
2368         * domain.c: Initialize+cleanup jit_code_hash_lock.
2369         
2370 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
2371
2372         * coree.c (mono_load_coree): Set coree_module_handle global variable only
2373         after initialization.
2374
2375         * coree.h: Make MonoFixupExe internal.
2376
2377         Contributed under MIT/X11 license.
2378
2379 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
2380
2381         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
2382         because that is platform independent. Check NumberOfRvaAndSizes in PE32
2383         as well.
2384         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
2385         image being loaded is a CLI image and _CorValidateImage gets called.
2386
2387         * coree.h: Add MonoLoadImage.
2388
2389         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
2390         instead of LoadLibrary.
2391
2392         Contributed under MIT/X11 license.
2393
2394 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
2395
2396         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
2397         for any primitive type.
2398
2399 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
2400
2401         * object.c (mono_array_new_specific): Optimize this and the other allocation
2402         functions a bit.
2403         
2404         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
2405         domains too if mono_dont_free_domains is set.
2406
2407         * domain-internals.h (mono_dont_free_domains): New internal option controlling
2408         whenever to free appdomain data after it has been unloaded.
2409
2410         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
2411         
2412 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
2413
2414         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
2415         (mono_method_get_equivalent_method): Fix a warning.
2416
2417         * object.c (mono_message_init): Avoid looking up array types for each call.
2418
2419 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
2420
2421         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
2422         call.
2423
2424         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
2425         even more.
2426
2427         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
2428         each iteration.
2429
2430         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
2431         fields of an enum.
2432
2433 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2434
2435         * object.c (mono_value_box): Fix boxing of nullables.
2436
2437 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
2438
2439         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
2440         mono_module_handle that is defined by the linker; no initialization required.
2441         * coree.h: Remove mono_module_handle, add __ImageBase, update
2442         mono_image_open_from_module_handle.
2443         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
2444         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
2445         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
2446         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
2447         to 4 GB away from image base address. IA64 version is not tested but was very
2448         easy to implement and should work if we ever need it.
2449         * domain.c (mono_init_internal): Avoid system error message boxes.
2450         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
2451         with has_entry_point. Handle do_mono_image_load fauilre correctly.
2452         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
2453         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
2454         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
2455
2456         Contributed under MIT/X11 license.
2457
2458 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2459
2460         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
2461         as part of the private mono API.
2462         
2463         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
2464         Do proper argument checking for methods that belong to generic classes.
2465         Do proper type resolution for GMFH/2.
2466         Fixes #377324.
2467         
2468 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2469
2470         * verify.c (do_switch): Fix a memory corruption bug with
2471         the jump index is out of bound.
2472
2473 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2474
2475         * verify.c: Disable debug code.
2476
2477 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2478
2479         * reflection.c (mono_image_get_methodbuilder_token): Use
2480         mono_image_get_methodspec_token_for_generic_method_definition
2481         instead of mono_image_get_memberref_token. We cache more memberef
2482         entries now.
2483
2484 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2485
2486         * verify.c: Inflate exception clause types.
2487         Fixes #402606.
2488         
2489 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2490
2491         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
2492         name.
2493
2494         * reflection.c (mono_image_get_ctorbuilder_token): Same.
2495
2496         * reflection.c (mono_image_create_method_token): Same.
2497
2498 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2499
2500         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
2501         It does the same as mono_image_get_methodref_token but works on
2502         MethodBuilder.
2503
2504         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
2505         and always generate a methodspec. This follows the old behavior and fixes
2506         the regressions in System.Core. 
2507
2508 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
2509
2510         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
2511         don't event mono_class_get () succeeds. Fixes #402182.
2512
2513 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
2514
2515         * metadata-internals.h: Added MonoDynamicImage::methodspec
2516         hashtable to store methodspec tokens created for MethodBuilders.
2517
2518         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
2519         MethodBuilders as open instantiations if a methodspec was requested.
2520
2521         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
2522
2523         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
2524
2525         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
2526
2527         Fixes bug #349190.
2528
2529 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
2530
2531         * loader.c (method_from_methodspec): Avoid crashing if the
2532         method lookup fails.
2533
2534 2008-06-20  Dick Porter  <dick@ximian.com>
2535
2536         * socket-io.c (get_socket_assembly): Cope with Moonlight network
2537         classes being in a different assembly.  Fixes bug 399184.
2538
2539 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
2540
2541         * loader.c (mono_loader_init): Make this callable multiple times.
2542         (mono_dllmap_insert): Call mono_loader_init () so this works even before
2543         the runtime is initialized. Fixes #401755.
2544
2545 2008-06-19  Dick Porter  <dick@ximian.com>
2546
2547         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
2548         Fixes bug 349688.
2549
2550 2008-06-19  Dick Porter  <dick@ximian.com>
2551
2552         * socket-io.c:
2553         * icall-def.h: Implement Socket generic Send() and Receive()
2554         methods.  Fixes bug 395168.
2555
2556 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
2557
2558         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
2559
2560         Contributed under MIT/X11 license.
2561
2562 2008-06-18  Martin Baulig  <martin@ximian.com>
2563
2564         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
2565         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
2566         set to 80.0.  The debugger <-> runtime interface is now frozen as
2567         well.   
2568
2569         * mono-debug.c
2570         (mono_debug_debugger_version): Bump to 4.
2571
2572 2008-06-18  Martin Baulig  <martin@ximian.com>
2573
2574         * debug-mono-symfile.c
2575         (load_symfile): Don't check the minor version.
2576
2577         * debug-mono-symfile.h: Bump the version number to 50.0.
2578
2579 2008-06-18  Martin Baulig  <martin@ximian.com>
2580
2581         * debug-mono-symfile.c
2582         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
2583         minimum required version.
2584
2585 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
2586
2587         * reflection.c (mono_custom_attrs_from_property): Fix support for
2588         retriveving cattrs of dynamic inflated generic types.
2589
2590         * reflection.c (mono_custom_attrs_from_event): Same.
2591
2592         * reflection.c (mono_custom_attrs_from_field): Same;
2593
2594         * reflection.c (typebuilder_setup_events): Same cattrs of events.
2595
2596         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
2597         Moved to metadata.c.
2598
2599         * metadata.c: New functions to retrive the equivalent field, event
2600         of property from the generic type definition.
2601
2602         * metadata-internals.h: Added new functions from metadata.c.
2603
2604 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
2605
2606         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
2607         to cached in a mempool is used.
2608
2609         * metadata.c (free_generic_class): In some situations field generic_info type
2610         is not properly dup'ed and leads to double free'ing.
2611
2612         Fixes #400643.
2613
2614 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2615
2616         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
2617         this arguments (will be needed later for generic methods).
2618         Collect stats.
2619
2620 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2621
2622         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
2623         Create a static RGCTX invoke wrapper for methods which require it.
2624
2625 2008-06-17  Mark Probst  <mark.probst@gmail.com>
2626
2627         * object.c, class-internals.h: New function for checking whether
2628         an individual field is special static.
2629
2630 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
2631
2632         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
2633         linear search since the table is sorted.
2634
2635         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
2636         Fixes #324180.
2637
2638 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
2639
2640         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
2641         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
2642
2643         * gc.c (mono_domain_finalize): Allow an infinite timeout.
2644
2645         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
2646         
2647         * threads.c (mono_thread_request_interruption): Get rid of locking, use
2648         InterlockedCompareExchange to query and modify 
2649         thread->interruption_requested.
2650
2651         * object-internals.h (struct _MonoThread): Change interruption_requested
2652         to a gint32 so it can be modified by atomic operations. Add 
2653         'critical_region_level' from the managed side, change small_id to a guint32,
2654         add new set of 'unused' fields.
2655
2656         * appdomain.c: Bump corlib version.
2657
2658 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
2659
2660         * class.c (mono_class_from_name): Search modules as well. Fixes
2661         #322332.
2662
2663 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2664
2665         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
2666         templates.  Templates are generalized with an additional type_argc
2667         argument.  RGCTX templates have type_argc==0, MRGCTX templates
2668         have type_argc>0.
2669
2670         * domain-internals.h, domain.c: New hash table for looking up
2671         MRGCTXs.
2672
2673         * metadata.c, metadata-internals.h: Rename hash and equal
2674         functions for MonoGenericInst's and make them public.
2675
2676         * class-internals.h: New data structures for the MRGCTX.  Macros
2677         for distinguishing slots in the RGCTX and the MRGCTX.
2678
2679 2008-06-13  Mark Probst  <mark.probst@gmail.com>
2680
2681         * object.c (mono_method_get_imt_slot): Put the same methods of
2682         different instantiations of the same generic interface in the same
2683         IMT slots, to make generic sharing simpler.
2684
2685 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2686
2687         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
2688
2689         * metadata.c (mono_metadata_field_info_with_mempool): Added.
2690         This function works just like mono_metadata_field_info, but
2691         accept a mempool as argument to be used allocating memory.
2692
2693         * marshal.c (mono_marshal_load_type_info): Use new function
2694         to load marshal data into image mempool.
2695
2696 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2697
2698         * class.c (mono_class_inflate_generic_type_with_mempool):
2699         This function allows to inflate a generic type using
2700         a mempool.
2701
2702         * class.c (inflate_generic_type): Take a mempool as argument
2703         and use it to do type dup'ing.
2704
2705         * class.c (mono_class_setup_fields): Field type for generic
2706         generic classes are allocated from the image mempool.
2707
2708         * metadata.c (free_generic_class): Inflated field type is
2709         now allocated in the image mempool.
2710
2711 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
2712
2713         * threads.c (thread_cleanup): Free MonoThread::name.
2714
2715 2008-06-12  Marek Habersack  <mhabersack@novell.com>
2716
2717         * appdomain.c (ensure_directory_exists): avoid unnecessary
2718         mkdir(2) calls when the shadow directory already exists.
2719         (mono_make_shadow_copy): copy also satellite assemblies from the
2720         private bin directories.
2721
2722 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2723
2724         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
2725         
2726         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
2727         a page boundary. Fixes #396219.
2728
2729 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2730
2731         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
2732         due to double-checked locking.
2733
2734 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2735
2736         * assembly.c (build_assembly_name): Release memory on failure.
2737
2738         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
2739
2740 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2741
2742         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
2743         memory on failure.
2744
2745 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2746
2747         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
2748         memory on failure.
2749
2750 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2751
2752         * loader.c (field_from_memberref): Check if field signature type is equal
2753         to the non-inflated type of the field. Fixes #398980.
2754
2755 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
2756
2757         * assembly.c (mono_assembly_load_from_full): Call 
2758         mono_assembly_load_friends () outside the assemblies lock, since it can
2759         acquire the loader lock. Fixes #323696.
2760
2761         * reflection.c (resolve_object): Inflate the inst with the context for
2762         FieldOnTypeBuilderInst. Fixes #399010.
2763
2764 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2765
2766         * reflection.c (mono_image_get_field_on_inst_token): Don't
2767         inflate the field to encode it's signature. If it's a
2768         VAR or MVAR it should stay that way in the signature.
2769         Fixes #399047.
2770
2771 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2772
2773         * reflection.c (resolve_object): Release memory of inflated types.
2774
2775 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2776
2777         * loader.c (mono_method_get_signature_full): Remove assert about
2778         loading a methodspec to a generic method. We have such methods, such as
2779         System.Threading.Interlocked::CompareExchange<T>.
2780         This assert was removed since it crashes the verifier when it checks
2781         methods calling CompareExchange<T>.
2782
2783 2008-06-10  Marek Safar  <marek.safar@gmail.com>
2784
2785         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
2786         of Type array and not MonoType.
2787
2788 2008-06-10  Marek Habersack  <mhabersack@novell.com>
2789
2790         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
2791         <lupus@ximian.com>
2792
2793 2008-06-10  Martin Baulig  <martin@ximian.com>
2794
2795         * debug-mono-symfile.h
2796         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
2797         changes to the file format, but we were generating incorrect
2798         source file indices in the line number table due to a bug, which
2799         made backtraces report an incorrect source file.
2800
2801 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2802
2803         * mono-debug.c: Moved mono_debug_free_method_jit_info from
2804         mini/debug-mini.c to here.
2805
2806         * mono-debug.c (il_offset_from_address): Free memory from find_method.
2807
2808         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
2809         use it to release structs returned by mono_debug_find_method.
2810
2811 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
2812
2813         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
2814         since it needs to set method->slot for all interface methods.
2815
2816 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2817
2818         * class-internals.h: Forgot to add.
2819
2820 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2821
2822         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
2823
2824         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
2825         Lookup the custom attributes from property_hash.
2826
2827         * reflection.c (mono_save_custom_attrs): Save the custom attributes
2828         in property_hash. Allocate all data using the image mempool.
2829
2830         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
2831         for dynamic_custom_attrs to checks if the image is dynamic.
2832
2833 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2834
2835         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
2836         assemblies array.
2837         
2838         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
2839         runtime functions while holding the domain assemblies lock.
2840
2841 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2842
2843         * verify.c: Reapplied the last bit of the reverted changes.
2844
2845 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2846
2847         * verify.c: Reapplied more of the reverted changes.
2848
2849 2008-06-09  Martin Baulig  <martin@ximian.com>
2850
2851         * debug-mono-symfile.c (load_symfile): Check the major version
2852         first; if it's wrong, don't print the minor version in the error message.
2853
2854 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
2855
2856         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
2857         lock instead of the domain lock to avoid deadlocks, since the thread might
2858         already hold the loader lock.
2859
2860         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
2861         (mono_thread_attach): Ditto.
2862
2863         * monitor.c: Use a TLS variable for holding the current thread id instead
2864         of calling pthread_self ().
2865         (mono_monitor_init_tls): New internal function to initialize the TLS
2866         variable.
2867         (mono_monitor_try_enter_internal): Put the owner == id check after the
2868         owner == 0 check.
2869
2870         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
2871         missed optimizations when using gcc-4.3.
2872
2873 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
2874
2875         * reflection.c (mono_dynamic_image_free): Free the memory
2876         used by MonoGenericParam in MonoDynamicImage::gen_param.
2877
2878         * reflection.c (mono_reflection_setup_generic_class): Allocate
2879         container from mempool.
2880
2881         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
2882         container from mempool.
2883
2884 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2885
2886         * threads.c (mono_set_pending_exception): New internal function to set the
2887         pending exception of the current thread.
2888         (mono_thread_get_and_clear_pending_exception): Check for 
2889         thread->pending_exception as well.
2890
2891         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
2892
2893         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
2894         it can trigger a collection.
2895
2896 2008-06-06  Martin Baulig  <martin@ximian.com>
2897
2898         Merged the `debugger-kahalo' branch.
2899
2900         * mono-debug.h
2901         (MONO_DEBUGGER_VERSION): Bumped to 72.
2902
2903         * debug-mono-symfile.h
2904         (MonoSymbolFileMethodIndexEntry): Removed.
2905         (MonoSymbolFileMethodEntry): New public typedef.
2906         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
2907         (MonoSymbolFileSourceEntry): Remove everything except `index' and
2908         `data_offset'.
2909         (MonoSymbolFileMethodEntry): Removed.
2910         (MonoSymbolFileLexicalBlockEntry): Removed.
2911         (MonoSymbolFileLineNumberEntry): Removed.
2912         (MonoDebugLexicalBlockEntry): Removed.
2913         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
2914         removed `num_il_offsets' and `il_offsets'.
2915         (MonoSymbolFile): Replace `version' with `major_version' and
2916         `minor_version'.
2917         (MONO_SYMBOL_FILE_VERSION): Replace with
2918         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
2919         `MONO_SYMBOL_FILE_MINOR_VERSION'.
2920
2921         * debug-mono-symfile.c
2922         (mono_debug_symfile_lookup_location): Add support for the new line
2923         number table format.
2924
2925 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2926
2927         * metadata.c (free_generic_class): Release the inflated
2928         MonoClass of dynamic generic classes if it's not a generic
2929         type definition.
2930
2931 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2932
2933         * verify.c: Reapplied more of the reverted changes.
2934
2935 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2936
2937         * reflection.c (lookup_custom_attr): Clean the cached flag or
2938         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
2939         for SRE types.
2940
2941 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
2942
2943         * verify.c: Reapplied a small part of the reverted changes.
2944
2945 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
2946
2947         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2948
2949         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
2950         previously in managed code.
2951         (mono_monitor_exit): Ditto.
2952         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
2953
2954         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
2955         the managed definition.
2956
2957 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2958
2959         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
2960
2961 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2962
2963         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
2964         
2965         * monitor.c: Add some micro optimizations.
2966
2967         * icall.c (type_from_typename): Handle 'bool'.
2968
2969 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
2970
2971         * verify.c: Implement constructor verification per P III 1.8.1.4.
2972         Fixes #396716.
2973
2974 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
2975
2976         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
2977         holding the assemblies lock here too.
2978
2979 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2980
2981         * verify.c: Kill stack_top function.
2982
2983 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2984
2985         * verify.c: Kill stack_get function.
2986
2987 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2988
2989         * verify.c (mono_method_verify): Last change broke the build. Fixed.
2990
2991 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2992
2993         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
2994         more reliable.
2995
2996         * verify.c (mono_method_verify): Inflate params and locals to avoid
2997         mismatch when checking for compatibility.
2998
2999 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
3000
3001         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
3002         Length prefix should be size in bytes. Fix bug #339530.
3003         
3004         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
3005         Length prefix should be size in bytes. Fix bug #339530.
3006
3007         Code is contributed under MIT/X11 license.
3008
3009 2008-06-05  Bill Holmes <billholmes54@gmail.com>
3010
3011         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
3012
3013         Contributed under MIT/X11 license.
3014
3015 2008-06-05  Martin Baulig  <martin@ximian.com>
3016
3017         * mono-debug-debugger.c
3018         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
3019
3020 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
3021
3022         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
3023         while holding the assemblies lock to prevent deadlocks. Handle the case
3024         where the search hook returns NULL but the assembly was still loaded.
3025         Fixes #323696.
3026
3027         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
3028         modify domain state.
3029
3030 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
3031
3032         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
3033         * Makefile.am (pedump_LDADD): Post-process object files and
3034         add dtrace-generated object file, if necessary.
3035
3036         Code is contributed under MIT/X11 license.
3037
3038 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3039
3040         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
3041
3042 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3043
3044         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
3045
3046 2008-06-04  Mark Probst  <mark.probst@gmail.com>
3047
3048         * threads.c: Try to free everything from the delayed free table
3049         when shutting down threads, and set the variable to NULL after the
3050         table is freed so that calling
3051         mono_thread_hazardous_try_free_all() when shutting down the root
3052         domain doesn't crash.
3053
3054 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3055
3056         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
3057         the caller if resulting type was inflated.
3058
3059         * class.c (mono_class_create_from_typespec): Free the MonoType if it
3060         was inflated.
3061
3062         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
3063
3064
3065 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
3066
3067         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
3068         class library tests.
3069
3070         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
3071         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
3072         #396989.
3073
3074 2008-06-04  Mark Probst  <mark.probst@gmail.com>
3075
3076         * domain.c, domain-internals.h: The JIT infos are now freed by the
3077         JIT info table code.  They are freed immediately if there only a
3078         single JIT info table in circulation.  If there is more, the free
3079         is delayed via a queue.
3080
3081         * threads.c, threads-types.h: New hazard pointer function for
3082         freeing all freeable delayed items in one sitting.
3083
3084 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3085
3086         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
3087
3088         * reflection.c (typebuilder_setup_properties): Same.
3089
3090         * reflection.c (typebuilder_setup_events): Same.
3091
3092 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3093
3094         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
3095         and use it for allocating memory.
3096
3097         * reflection.c (mono_marshal_spec_from_builder): Same.
3098
3099         * reflection.c: Change code to use new signatures.
3100
3101         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
3102
3103 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3104
3105         * decimal.c (rescale128): Put back one line which was accidently commented
3106         out.
3107         
3108         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
3109         to cause crashes.
3110
3111 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3112
3113         * reflection.c (mono_reflection_generic_class_initialize): Name must
3114         be always malloc'ed so we can free it later on. Do this for field, property
3115         and event.
3116
3117         * metadata.c (free_generic_class): Free field, property and event names.
3118
3119 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3120
3121         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
3122         instead of g_memdup.
3123
3124         * reflection.c (typebuilder_setup_fields): Same.
3125
3126 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3127
3128         * decimal.c (rescale128): Optimize this function a bit more.
3129
3130 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3131
3132         * metadata.c (free_generic_class): Release some memory from
3133         SRE generic classes.
3134
3135 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3136
3137         * reflection.c (mono_image_get_generic_field_token): No reference
3138         to name is kept, free it.
3139
3140         * reflection.c (mono_reflection_generic_class_initialize): Free
3141         more memory of the inflated field.
3142
3143 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
3144
3145         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
3146         code.
3147
3148 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
3149
3150         * reflection.c (mono_dynamic_image_free): Release memory used by
3151         MonoDynamicImage::array_methods elements.
3152
3153         * reflection.c (assembly_add_win32_resources): Release memory after
3154         encoding.
3155
3156 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
3157
3158         * decimal.c (log2_32): Use an optimized version for this function too.
3159         
3160         * decimal.c (log2_64): Fix this on 32 bit machines.
3161
3162 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
3163
3164         * class.c (mono_dup_array_type): Implement allocation using a mempool.
3165
3166         * class.c (mono_metadata_signature_deep_dup): Same.
3167
3168         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
3169         a mempool.
3170
3171         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
3172
3173         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
3174
3175         * metadata-internals.h: Added mono_metadata_signature_dup_full.
3176
3177         * class-internals.h: Update signatures to take a MonoMemPool.
3178
3179 2008-06-02  Dick Porter  <dick@ximian.com>
3180
3181         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
3182         * icall-def.h: Add
3183         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
3184         FormatMessage API to get the error text.  Fixes bug 321827.
3185
3186 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
3187
3188         * decimal.c: Add some micro optimizations to make decimal operations faster.
3189
3190 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3191
3192         * reflection.c (method_encode_clauses): Take a mempool
3193         as parameter and use it to allocate the clause array.
3194
3195         * reflection.c (mono_image_get_field_on_inst_token): Free
3196         the inflated type after encoding it.
3197
3198         * reflection.c (mono_dynamic_image_free): Free each element
3199         of MonoDynamicImage::gen_params.
3200
3201         * reflection.c (reflection_methodbuilder_to_mono_method):
3202         Allocate the generic param array from the mempool.
3203         Allocate signature params from the mempool.
3204
3205         * reflection.c (mono_reflection_generic_class_initialize):
3206         Free inflated fields after been used.
3207
3208 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
3209
3210         * icall.c: Reapply the memory leak fixes as they no
3211         longer make mono crash.
3212
3213 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
3214
3215         * reflection.c (mono_type_get_object): Don't store the suplied
3216         MonoType with type_hash. A caller which pass a type that
3217         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
3218         might end with a pointer to freed memory.
3219         The solution is to use byval_arg or this_arg from the associated
3220         MonoClass of the supplied type.
3221
3222 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
3223
3224         * icall.c: Revert the rest of the last change as it breaks the build too.
3225
3226 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3227
3228         * icall.c: Revert a leak fix as it's breaking the build.
3229
3230 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3231
3232         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
3233
3234 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3235
3236         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
3237
3238 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3239
3240         * icall.c: Fix some memory leaks.
3241
3242 2008-05-29  Dick Porter  <dick@ximian.com>
3243
3244         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
3245         async socket operations from the pending list when a socket
3246         closes.  Leaving it until the threadpool services the event
3247         exposes a race condition when a socket descriptor is reused.
3248         Fixes bug 377589.
3249
3250 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3251
3252         * object.c: Fix negative index check for array alocation.
3253
3254 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3255
3256         * icall.c, marshal.c: Delegate wrappers should skip visibility.
3257         This check is performed by the verifier for IL created delegates
3258         and by Delegate::CreateDelegate for programatically created ones.
3259         Fixes #372406.
3260
3261 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3262
3263         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
3264         Fix code to use mono_array_size_t instead of int.
3265
3266         Based on patch by Luis F. Ortiz.
3267         Contributed under X11 license.
3268         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3269
3270 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3271
3272         * icall.c: Added ves_icall_System_Array_GetLongLength and
3273         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
3274         arrays.
3275
3276         * icall.h: Export both new functions.
3277
3278         Based on patch by Luis F. Ortiz.
3279         Contributed under X11 license.
3280         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3281
3282 2008-05-28  Martin Baulig  <martin@ximian.com>
3283
3284         The debugger now requires exactly r103463.
3285
3286         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
3287         This version is not supported by the debugger, wait for 72.
3288
3289 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3290
3291         * object.h: Changed array related functions to use
3292         mono_array_size_t instead of guint32. Forgot to commit this file.
3293
3294         Patch by Luis F. Ortiz.
3295         Contributed under X11 license.
3296         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3297
3298
3299 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3300
3301         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
3302         don't define it. Use the number literal instead.
3303
3304 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3305
3306         * icall.c: Changed array related functions to use
3307         mono_array_size_t instead of guint32.
3308
3309         * icall.c (ves_icall_System_Array_GetLength): Check for length
3310         overflow under MONO_BIG_ARRAYS.
3311
3312         Based on patch by Luis F. Ortiz.
3313         Contributed under X11 license.
3314         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3315
3316 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3317
3318         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
3319
3320         Based on patch by Luis F. Ortiz.
3321         Contributed under X11 license.
3322         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3323
3324 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3325
3326         * object.c, object.h: Changed array related functions to use
3327         mono_array_size_t instead of guint32.
3328
3329         Patch by Luis F. Ortiz.
3330         Contributed under X11 license.
3331         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3332
3333 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3334
3335         * object.h: Introduced mono_array_size_t typedef. This must be used
3336         in all places an array length is expected. This is 64bits wide if
3337         MONO_BIG_ARRAYS is enabled.
3338
3339         Patch by Luis F. Ortiz.
3340         Contributed under X11 license.
3341         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
3342
3343 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
3344
3345         * security-manager.c class.c: Set the class exception info by calling
3346         mono_class_set_failure ().
3347
3348         * class.c (mono_class_get_exception_data): New accessor function.
3349         (mono_class_set_failure): Store exception_data in the property hash.
3350
3351         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
3352         the struct as a property.
3353
3354         * loader.c (mono_get_method_full): Store the lookup result for method
3355         tokens in method_cache, the others in methodref_cache to decrease the memory
3356         usage of hash tables.
3357
3358         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
3359         (mono_image_init): method_cache is lazy inited now.
3360
3361         * metadata-internals.h (struct _MonoImage): Change method_cache to
3362         a MonoValueHashTable, add a separate methodref_cache.
3363
3364 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
3365
3366         * number-formatter.h: Fix tables to avoid arithemtic overflow in
3367           Double.ToString as exposed by Bug #383531.
3368
3369 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
3370
3371         * number-formatter.h: Make some tables static.
3372
3373         * class.c (mono_method_set_generic_container): New accessor function.
3374         (mono_method_get_generic_container): Ditto.
3375
3376         * class-internals.h (struct _MonoMethod): Remove rarely used 
3377         'generic_container' field, store it in the property hash instead. Add 
3378         'is_generic' boolean field instead.
3379
3380         * image.c (mono_image_init): Initialize property_hash.
3381         (mono_image_close): Destroy property_hash.
3382
3383         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
3384         hold rarely used fields of runtime structures belonging to this image.
3385
3386         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
3387         to get/set method->generic_container.
3388
3389         * loader.c (mono_get_method_from_token): Avoid loading the method header for
3390         generic methods.
3391
3392 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
3393
3394         * class.c (mono_class_inflate_generic_method_full): Don't increase
3395         mono_stats.inflated_method_count for methods found in the cache.
3396
3397         * threads.c (mono_thread_request_interruption): Add a comment about 
3398         QueueUserAPC ().
3399
3400 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
3401
3402         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
3403         interface_offsets_packed table.
3404         
3405         * class.c (mono_class_init): Remove some dead code.
3406
3407         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
3408         mono_class_setup_vtable () when CAS is active to detect security problems.
3409
3410 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
3411
3412         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
3413
3414         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
3415         parameters as it's irrelevant for delegate checking.
3416
3417 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
3418
3419         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
3420
3421         * class.c (mono_class_init): Control the creation of a generic vtable using
3422         a global which is true by default, but set to false by the runtime startup code.
3423         
3424         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
3425         Disabled for now since it breaks the embedding API.
3426         Move the setup of class->methods for arrays to mono_class_setup_methods ().
3427         (mono_class_setup_methods): Add a memory barrier.
3428
3429         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
3430         when mono_class_init () doesn't compute the generic vtable.
3431         
3432 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
3433         * profiler.c: Added mono_profiler_install_statistical_call_chain,
3434         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
3435         to support call chains (backtrace) in the stat profiler.
3436         * profiler.c, profiler-private.h: Likewise.
3437
3438 2008-05-22  Mark Probst  <mark.probst@gmail.com>
3439
3440         * generic-sharing.c: Init generic class when a method of it is
3441         requested via a runtime generic context.
3442
3443 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
3444
3445         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
3446
3447         * reflection.c (mono_type_get_object): Add a FIXME.
3448
3449         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
3450
3451         * class.c (mono_class_get_method_by_index): New helper function, returning an
3452         entry in the class->methods array.
3453
3454 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
3455
3456         * class.c (mono_class_init): Only do the array optimization for szarrays. 
3457         Avoid creating a generic vtable for generic instances as well.
3458         (mono_class_get_method_from_name_flags): Don't search in the metadata for
3459         generic instances.
3460
3461 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
3462
3463         * loader.c (mono_get_method_constrained): Inflate the signature
3464         with class context. Fix #325283.
3465
3466 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
3467
3468         * object.c (mono_class_create_runtime_vtable): Add a comment.
3469
3470         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
3471         where needed.
3472         (setup_interface_offsets): Handle the case when this is called twice for arrays.
3473         (mono_class_setup_vtable_general): Add an assert.
3474         (mono_class_init): Avoid creating a generic vtable for arrays.
3475
3476         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
3477         here, let mono_class_init () do that.
3478
3479         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
3480         interfaces in mscorlib.
3481
3482         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
3483         interfaces. Add some comments.
3484         (mono_class_init): Call mono_class_setup_methods () here since it is no
3485         longer called by mono_class_setup_vtable ().
3486
3487         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
3488         not set in class->vtable.
3489         (mono_class_create_runtime_vtable): Reenable the disabled code.
3490
3491         * object.c (mono_class_create_runtime_vtable): Disable the last change for
3492         now as it causes some test failures.
3493
3494         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
3495         if using the vtable trampoline. Also remove some strange code which put the
3496         generic methods themselves into the vtable slots. Remove the AOT init_vtable
3497         stuff as it is no longer needed.
3498
3499 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3500
3501         * pedump.c: Give make --verify all option check code as well.
3502         Using --verify code won't check for metadata now.
3503
3504 2008-05-19  Martin Baulig  <martin@ximian.com>
3505
3506         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
3507
3508         * mono-debug.c
3509         (_mono_debug_using_mono_debugger): New global variable; it's set
3510         directly by the debugger, so mono_debug_using_mono_debugger() also
3511         works after attaching.
3512
3513 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3514
3515         * object.c (mono_class_create_runtime_vtable): Use memory barriers
3516         as we do double checked locking on MonoClass::runtime_info and
3517         MonoClassRuntimeInfo::domain_vtables.
3518
3519 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
3520
3521         * debug-helpers.c (print_field_value): Fix a warning.
3522
3523 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
3524
3525         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
3526         set in the AOT case.
3527
3528 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
3529
3530         * class.c (mono_class_setup_vtable_general): Use memory barriers
3531         as we do double checked locking on MonoClass::vtable.
3532
3533 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
3534
3535         * reflection.c (resolve_object): Inflate only if the generic context
3536         is not null. Fixes #389886.
3537
3538 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
3539
3540         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
3541         instead of g_free.
3542
3543         Code is contributed under MIT/X11 license.
3544
3545 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3546
3547         * class.c: Revert unrelated change.
3548
3549 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3550
3551         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
3552         a generic instantiation, use mono_class_from_mono_type instead of playing
3553         with MonoType directly.
3554
3555 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
3556
3557         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
3558         checks must ignore generic instantiations, so mono_class_has_parent is not
3559         suitable. Fixes #390128.
3560
3561 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
3562
3563         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
3564         it to avoid registering tokens during metadata generation. Fixes #390023.
3565
3566 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
3567
3568         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
3569         consistent.
3570
3571         Contributed under MIT/X11 license.
3572
3573 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
3574
3575         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
3576         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
3577         to fixup the EXE image.
3578         (mono_cleanup): Use mono_close_exe_image.
3579         (mono_close_exe_image): New function.
3580         * image.c: Include "marshal.h".
3581         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
3582         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
3583         counting when the image is loaded outside of mono_image_open_full. Set status
3584         based on GetLastError.
3585         * coree.c: Include required headers. Add init_from_coree.
3586         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
3587         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
3588         (_CorExeMain): Set init_from_coree.
3589         (CorExitProcess): Only call ExitProcess for now.
3590         (CorBindToRuntimeEx): New stub implementation.
3591         (CorBindToRuntime): New function.
3592         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
3593         (MonoFixupExe): ILONLY executables require no fixups.
3594         (mono_set_act_ctx): New function to set activation context.
3595         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
3596         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
3597         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
3598         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
3599         as MONO_INTERNAL.
3600         * domain-internals.h: Add mono_close_exe_image.
3601
3602         Contributed under MIT/X11 license.
3603
3604 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3605
3606         * metadata.c (mono_metadata_compute_size): Correctly calculate field
3607         size for generic param and event tables. Fixes #388977.
3608
3609 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
3610
3611         * loader.c (mono_method_signature): Use memory barriers because of the double
3612         checked locking pattern.
3613
3614         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
3615         aborting or aborted as well. Fixes #376391.
3616         
3617         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
3618         existing runtime state in the Suspend handler during shutdown.
3619
3620 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
3621
3622         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
3623
3624         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
3625         which are starting up or shutting down.
3626
3627         * threads.c (mono_threads_set_shutting_down): Don't return a value since
3628         this function never returns if the runtime is already shutting down.
3629
3630         * icall.c (ves_icall_System_Environment_Exit): Update after 
3631         mono_threads_set_shutting_down () signature change.
3632         
3633 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
3634
3635         * class.c: Added can_access_instantiation to verify if the instantiation
3636         is visible. Fix access check for nested types as they returned TRUE
3637         before doing type and generic instantiation visibility checks.
3638
3639 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3640
3641         * reflection.c (mono_reflection_create_generic_class): The created type
3642         must have a different container from its TypeBuilder. Otherwise they
3643         will end sharing generic arguments, which is wrong.
3644
3645         Due to the sharing, making a generic instance of the created type using
3646         the TypeBuider generic arguments resulted in the generic type definition
3647         been returned, which is wrong as well.
3648
3649         As a bonus the code was leaking the type_params array. This memory should
3650         be allocated from the image mempool.
3651
3652         This fixes bug #354047.
3653
3654 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
3655
3656         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
3657         to here         as they are now used in assembly.c new code.
3658         Added a skipverification flag to MonoAssembly.
3659         New internal function mono_assembly_has_skip_verification.
3660
3661         * assembly.c: New function mono_assembly_has_skip_verification. It checks
3662         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
3663         part of #387274.
3664
3665 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3666
3667         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
3668         needed. Fixes #387034.
3669
3670         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
3671
3672 2008-05-06  Miguel de Icaza  <miguel@novell.com>
3673
3674         * assembly.c (mono_assembly_load_reference): Prevent crash while
3675         disassembling Silverlight 2.0 executables while we still do not
3676         have GACed libraries.
3677
3678 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
3679
3680         * reflection.c: Special case generic type definitions as well. Fixes #383444.
3681
3682 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
3683
3684         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
3685         of the dynamic case. Fixes #387404.
3686
3687 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3688
3689         *verify.c (mono_verifier_is_class_full_trust): If under
3690         verify_all and the verifier mode was not set, only
3691         gac and corlib types are fulltrust. This makes --verify-all
3692         usable to detect unverifiable code, which is the expected
3693         use case.
3694
3695 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3696
3697         * verify.h: Ops, commited the header with debug
3698         enabled.
3699
3700 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3701
3702         * verify.c (merge_stack): Use the new value on unverifiable
3703         stack merges.
3704
3705         * verify.c (verify_type_compatibility_full): Comparison
3706         of nullable types can't use mono_class_is_assignable_from.
3707
3708         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
3709         that makes all verification errors be reported.
3710
3711         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
3712         mono_method_verify.
3713
3714 2008-05-05  Robert Jordan  <robertj@gmx.net>
3715
3716         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
3717         support for value types. See #386415.
3718
3719         * object.c: comments.
3720
3721         Code is contributed under MIT/X11 license.
3722
3723 2008-05-05  Martin Baulig  <martin@ximian.com>
3724
3725         * debug-mono-symfile.h
3726         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
3727         for old pre-terrania symbol files.
3728
3729 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3730
3731         * mono-config.c: Add ppc64 architecture.
3732
3733         Code is contributed under MIT/X11 license.
3734
3735 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
3736
3737         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
3738           PPC64 uses function descriptors as well.
3739
3740         Code is contributed under MIT/X11 license.
3741
3742 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
3743
3744         * object.c (compute_class_bitmap): Ignore literal static fields.
3745
3746         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
3747         var has an invalid format.
3748         (describe_ptr): Add some sanity checks for the vtable.
3749         (add_nursery_frag): Clear unused nursery fragments.
3750         (major_collection): Clear all remaining nursery fragments.
3751
3752 2008-05-03  Robert Jordan  <robertj@gmx.net>
3753
3754         * image.c, metadata-internals.h: add thunk_invoke_cache.
3755
3756         * marshal.c, marshal.h: implement
3757         mono_marshal_get_thunk_invoke_wrapper ().
3758
3759         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
3760
3761         Code is contributed under MIT/X11 license.
3762
3763 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3764
3765         * verify.c (do_leave): Empty the stack.
3766
3767 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
3768
3769         * class.c (mono_class_is_assignable_from): Variance
3770         doesn't work between reference and value types. For example,
3771         given type C<T+>, C<int32> is not assignable to C<object>.
3772         Break the argument checking loop on first error. 
3773
3774 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
3775
3776         * icall.c : base64_to_byte_array() needs some more strict
3777           check for sequence of '=' characters. Patch by Santa
3778           Marta (http://deee.g.hatena.ne.jp/santamarta).
3779
3780           Contributed under MIT/X11 license.
3781           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
3782
3783 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
3784
3785         * domain.c: Disable LoadLibrary support to fix Win32 build.
3786
3787         Code is contributed under MIT/X11 license.
3788
3789 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
3790
3791         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
3792         to help with cache behaviour.
3793
3794 2008-05-01  Miguel de Icaza  <miguel@novell.com>
3795
3796         * appdomain.c (mono_domain_from_appdomain): Add new accessor
3797         method. 
3798
3799 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
3800
3801         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
3802
3803 2008-05-01  Dick Porter  <dick@ximian.com>
3804
3805         * process.c (process_get_fileversion): Only pass 16 bits of
3806         language ID to VerLanguageName.  Fixes bug 381204.
3807
3808 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3809
3810         * verify.c (mono_method_verify): Fix the comparison
3811         operator for code bounds check.
3812
3813 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3814
3815         * verify.c (mono_method_verify): Check the bounds of
3816         all access of the code array.
3817
3818 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
3819
3820         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
3821
3822 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
3823
3824         * image.c (mono_image_strong_name_position): Fix return value when the rva is
3825         not valid.
3826
3827 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
3828
3829         * loader.c (mono_get_method_from_token, mono_method_signature): Add
3830         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
3831         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
3832         fixup main EXE images when using mono.exe for mixed-mode assembly support.
3833         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
3834         mono_runtime_load.
3835         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
3836         runtime initialization from metadata.
3837         * assembly.c: Remove obsolete ceGetModuleFileNameA.
3838         (mono_set_rootdir): Use mono_get_module_file_name.
3839         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
3840         handles.
3841         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
3842         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
3843         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
3844         MonoCLIImageInfo. Add support for module handles.
3845         (load_cli_header): Update mono_cli_rva_image_map signature.
3846         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
3847         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
3848         (mono_image_rva_map): Add support for module handles.
3849         (mono_image_ensure_section_idx): Add support for module handles.
3850         (mono_image_close): Add support for module handles.
3851         (do_load_header): Add support for module handles.
3852         (mono_image_open_from_module_handle): New function for internal use.
3853         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
3854         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
3855         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
3856         handles.
3857         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
3858         * image.h: Add mono_image_fixup_vtable.
3859         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
3860         support.
3861         * coree.h: New file.
3862         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
3863         unsupported native code.
3864         (mono_marshal_set_callconv_from_modopt): New function splitted from
3865         mono_marshal_get_managed_wrapper.
3866         (mono_marshal_get_managed_wrapper): Use
3867         mono_marshal_set_callconv_from_modopt.
3868         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
3869         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
3870         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
3871         that results in a deadlock when the runtime is loaded in _CorDllMain.
3872         * Makefile.am: Add coree.c and coree.h.
3873
3874         Contributed under MIT/X11 license.
3875
3876 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3877
3878         * generic-sharing.c: Search for type arguments in array element
3879         types as well.
3880
3881 2008-04-28  Mark Probst  <mark.probst@gmail.com>
3882
3883         * class-internals.h, generic-sharing.c: New, small runtime generic context.
3884
3885         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
3886
3887         * object.c: Don't setup the RGCTX when the vtable is created,
3888         because we're setting it up lazily now.
3889
3890 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
3891
3892         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
3893         64 bit support.
3894
3895 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3896
3897         * verify.c (verify_class_for_overlapping_reference_fields): 
3898         If class is under fulltrust allow reference types to overllap
3899         if they have the same RVA.
3900
3901 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3902
3903         * pedump.c: Added new flag valid-only, that makes the verifier
3904         behaves just like --security=validil. It won't fail type load
3905         due to unverifiable restrictions.
3906
3907 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3908
3909         * class-internals.h (struct MonoMethod): Added a verification_success
3910         field to cache verifier executions. Reduced MonoMethod:slot size by
3911         one bit.
3912
3913 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
3914
3915         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
3916         instead of a 'vt' argument to save an indirection and to allow these to be used
3917         for valuetypes.
3918         (scan_vtype): New helper function to scan an area using a gc descriptor.
3919         (mono_gc_wbarrier_value_copy): Implement this.
3920         (handle_remset): Add support for REMSET_VTYPE.
3921         (find_in_remset_loc): Ditto.
3922         (mono_gc_base_init): Allow some debugging options to be controlled through the
3923         use of the MONO_GC_DEBUG env variable.
3924         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
3925         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
3926
3927 2008-04-23  Martin Baulig  <martin@ximian.com>
3928
3929         * domain.c (mono_domain_create): Move the call to
3930         mono_debug_domain_create() down, after allocating the domain id.
3931
3932 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3933
3934         verify.c (verify_class_for_overlapping_reference_fields): Skip
3935         static fields while verifying for overlapping fields as they
3936         don't matter at all.
3937
3938 2008-04-23  Marek Habersack  <mhabersack@novell.com>
3939
3940         * domain-internals.h: added a declaration of
3941         mono_make_shadow_copy.
3942
3943         * assembly.c (mono_assembly_open_full): shadow copying of
3944         assemblies moved to here, so that all the assemblies within the
3945         application domain's private binary directories can be
3946         processed. Fixes bug #380546
3947
3948         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
3949         mono_make_shadow_copy and made non-static. The decision whether
3950         to shadow-copy an assembly is made based on its location - it's
3951         copied if it's in one of the private application domain binary
3952         directories and its different to the target file in the shadow
3953         directory. Fixes bug #380546
3954
3955 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
3956
3957         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
3958
3959         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
3960         types.
3961
3962         * reflection.c (mono_image_create_token): Handle 
3963         Method/ConstructorOnTypeBuilderInst.
3964         (resolve_object): Ditto.
3965         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
3966         so it can be called from resolve_object. Also handle the case when the inflated
3967         class already has its methods setup.
3968
3969 2008-04-21  Martin Baulig  <martin@ximian.com>
3970
3971         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
3972
3973 2008-04-20  Geoff Norton  <gnorton@novell.com>
3974
3975         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
3976         pointer dereference.
3977
3978 2008-04-15  Marek Habersack  <mhabersack@novell.com>
3979
3980         * appdomain.c (try_load_from): if IOMAP is in effect, call the
3981         portability API to look up the assembly file. Fixes behavior in
3982         situations when the application has a bin/ directory, but the
3983         assembly search patch refers to Bin/ (and thus the requested file
3984         name is Bin/SomeLibrary.dll). Fixes bug #379888
3985
3986 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3987
3988         verify.c (mono_type_is_generic_argument): Extracted this check
3989         from a dozen places to here.
3990
3991         verify.c: Fixed all issues related to boxing generic arguments
3992         and their constraints.
3993
3994 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3995
3996         verify.c (mono_class_interface_implements_interface): Fix win32 build.
3997
3998 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
3999
4000         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
4001         isn't finished yet. Fixes #363447.
4002
4003 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
4004
4005         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
4006         Fixes #346419.
4007
4008 2008-04-13  Jb Evain  <jbevain@novell.com>
4009
4010         * domain.c: update the 2.1 profile versions.
4011         Merged from the Moonlight 2 branch.
4012
4013 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
4014
4015         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
4016         mscorlibs for the non-refonly case as well.
4017
4018         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
4019         in mono_assembly_load_from_full (). Fixes #378924.
4020
4021 2008-04-11  Geoff Norton  <gnorton@novell.com>
4022
4023         * icall.c: The global extern environ doesn't exist on Mac.  We
4024         need to call NSGetEnviron instead.
4025
4026 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4027
4028         verify.c: Add generic method constraint verification.
4029
4030 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4031
4032         class.c (mono_class_inflate_generic_method_full): Add a long
4033         explanation to the is_mb_open hack. Remove the FIXME.
4034
4035 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4036
4037         * verify.c (mono_method_verify): Mark all unknown opcodes
4038         as invalid. Mark jmp as unverifiable.
4039
4040 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4041
4042         * verify.c: Add code to do type constraint verification on class instances.
4043
4044         * verify.c (mono_verifier_verify_class): Use the type constraint 
4045         verification code.
4046
4047 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
4048
4049         * class.c (mono_class_get_field_default_value): Don't pass cindex
4050         as hint to mono_metadata_get_constant_index. The local is not initialized
4051         and should contain garbage most of the time. This could only work
4052         with a lot of luck.
4053
4054 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4055
4056         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
4057
4058 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4059
4060         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
4061
4062         * class.c (mono_class_from_generic_parameter): Save the token of the
4063         generic param in MonoClass::sizes.generic_param_token.
4064
4065         * reflection.c (mono_custom_attrs_from_class): If the class type is
4066         VAR or MVAR retrieve the attributes of the generic param.
4067
4068 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4069
4070         * class.c (mono_class_init): Do class verification if the verifier
4071         is enabled.
4072
4073 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4074
4075         * verify-internal.h: Added mono_verifier_verify_class.
4076
4077         * verify.c: Added mono_verifier_verify_class. It checks for
4078         classes with explicit layout that have overlapping reference fields.
4079
4080         * pedump.c: Init the verifier state prior to verification. Fixed
4081         command line arguments.
4082
4083 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4084
4085         * Makefile.am: Added verify-internals.h, hopefully fix the build.
4086
4087 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
4088
4089         * verify-internals.h: Fix a warning.
4090
4091 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4092
4093         * verify-internals.h: New header with the verifier configuration
4094         extracted from mini.c.
4095
4096         * verify.c: Implemented the new functions exported by verify-internals.h.
4097
4098 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4099
4100         * verify.c: Add proper verification of ckfinite.
4101
4102 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4103
4104         * verify.c (do_conversion): Improved error message to something
4105         more meanfull.
4106
4107         * verify.c (check_is_valid_type_for_field_ops): Fix to work
4108         with primitive types.
4109
4110 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4111
4112         * verify.c: Added tail prefix checking. Marked icall
4113         as unverifible.
4114
4115 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
4116
4117         * verify.c: Fix the detection of branches to the middle
4118         of an instruction.
4119
4120 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4121
4122         * verify.c: Implemented verification of volatile. and
4123         unaligned. prefix. Check if a type is valid after retrieving it.
4124
4125 2008-04-01  Dick Porter  <dick@ximian.com>
4126
4127         * process.c (process_get_fileversion): If there's no string block,
4128         set the file language to en_US.  Fixes the other new part of bug
4129         374600.
4130
4131 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
4132
4133         * class.c: New functions mono_method_can_access_field_full and
4134         mono_method_can_access_method_full. They perform type visibility
4135         and type site check.
4136
4137         * class-internal.h: Added exported functions.
4138
4139         * verify.c: Use new functions to implement proper visibility checks.
4140
4141 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
4142
4143         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
4144
4145 2008-03-28  Dick Porter  <dick@ximian.com>
4146
4147         * process.c (process_get_fileversion): Use the first language ID
4148         we see, rather than insisting on an invariant language.  Fixes bug
4149         374600.
4150
4151 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
4152
4153         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
4154         the streams to fix reading of invalid memory later.
4155
4156         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
4157         to ease debugging.
4158
4159 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
4160
4161         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
4162         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
4163
4164 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
4165         * threads.h: Added MonoThreadManageCallback type and
4166         mono_thread_set_manage_callback prototype
4167         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
4168         (used to store the mono_thread_manage callback).
4169         * threads.c: Added mono_thread_set_manage_callback, and handle
4170         "MonoThread->manage_callback" in build_wait_tids.
4171
4172 2008-03-26  Dick Porter  <dick@ximian.com>
4173
4174         * process.c (process_get_fileversion): Set FileVersionInfo strings
4175         to Empty when the resource doesn't have the particular info.
4176         Fixes bug 355717.
4177
4178 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
4179
4180         * verify.c (mono_method_verify): Proper prefix validation.
4181
4182 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
4183
4184         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
4185         itself in a separate argument instead of throwing them. Fixes #373448.
4186
4187         * appdomain.c: Bump corlib version.
4188
4189 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4190
4191         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
4192
4193 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
4194
4195         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
4196         version macros.
4197
4198 2008-03-20  Mark Probst  <mark.probst@gmail.com>
4199
4200         * generic-sharing.c, class-internals.h: Code for putting
4201         reflection types into the runtime generic context.
4202
4203 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4204
4205         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
4206         Fixes #340662. 
4207
4208
4209 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
4210
4211         * verify.c (VerifyContext): Added instruction prefix data to the struct.
4212
4213         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
4214
4215         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
4216
4217         * verify.c (do_cast): Let the result value keep the boxed status.
4218
4219         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
4220
4221 2008-03-17  Jb Evain  <jbevain@novell.com>
4222
4223         * reflection.c: when running on a 2.0 runtime, emit
4224         unconditionally the #~ header version as 2.0, and the
4225         CLI header version as 2.5, for symmetry's sake with csc.
4226
4227 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
4228
4229         * class.c: Remove the unused cache_interface_offsets stuff.
4230
4231         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
4232         profiler.c: Fix warnings.
4233
4234 2008-03-16  Mark Probst  <mark.probst@gmail.com>
4235
4236         * generic-sharing.c, class-internals.h: Support for putting
4237         methods into the runtime generic context.
4238
4239 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
4240
4241         * class.c (mono_class_setup_fields): Ignore calls made to this function for
4242         classes which are generic instances of not-yet finished typebuilders. Fixes
4243         #351172.
4244
4245         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
4246
4247 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
4248
4249         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
4250
4251         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
4252         field, replace it with a hash table in MonoDynamicImage.
4253
4254         * reflection.c (inflate_mono_method): Access the generic definition object from
4255         image->generic_def_objects instead of imethod->reflection_info.
4256
4257         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
4258
4259         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
4260         
4261         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
4262         function in reflection.c so it is easier to keep in sync with the dynamic image
4263         creation code.
4264
4265         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
4266         mono_image_close ().
4267
4268 2008-03-15  Mark Probst  <mark.probst@gmail.com>
4269
4270         * class.c (mono_class_generic_sharing_enabled): Disable generic
4271         sharing for all architectures except AMD64 and x86 to fix build.
4272
4273 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
4274
4275         * verify.c: Use the generic definition MonoGenericContext when available.
4276         Remove code for checking generics instance compatibility in favor of
4277         mono_class_is_assignable_from.
4278
4279 2008-03-14  Mark Probst  <mark.probst@gmail.com>
4280
4281         * marshal.c, marshal.h, metadata-internals.h, image.c,
4282         wrapper-types.h: New wrapper for invoking a shared static method
4283         without having to pass the runtime generic context argument.
4284
4285 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
4286
4287         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
4288
4289 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
4290
4291         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
4292         
4293         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
4294         create a token from a FieldOnTypeBuilderInst.
4295         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
4296         (resolve_object): Ditto.
4297
4298         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
4299         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
4300
4301 2008-03-14  Martin Baulig  <martin@ximian.com>
4302
4303         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
4304
4305         * debug-mono-symfile.h
4306         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
4307         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
4308
4309 2008-03-10  Martin Baulig  <martin@ximian.com>
4310
4311         * debug-mono-symfile.h
4312         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
4313         `lexical_block_table_offset'.
4314         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
4315         `lexical_blocks'.
4316         (MonoSymbolFile): Added `version'.
4317
4318         * mono-debug.h
4319         (MonoDebugLexicalBlockEntry): Removed.
4320         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
4321         `lexical_blocks'.
4322
4323         * mono-debug.c (mono_debug_add_method): Don't compute lexical
4324         blocks here; the debugger now does this internally.
4325
4326 2008-02-27  Martin Baulig  <martin@ximian.com>
4327
4328         * object.c (mono_runtime_exec_main): Call
4329         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
4330         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
4331
4332 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4333
4334         * verify.c (verify_type_compatibility_full): Allow native int to be converted
4335         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
4336
4337 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4338
4339         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
4340         ldftn with a virtual method.
4341
4342 2008-03-13  Geoff Norton  <gnorton@novell.com>
4343
4344         * decimal.c:  Only include memory.h if the platform has it.
4345
4346 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
4347
4348         * assembly.c, class.c, metadata-internals.h: make sure public key
4349         tokesns are compared in a case-insensitive way. Also, all
4350         the lookups in the GAC use a lowercase public key token
4351         (gaacutil already does the lowercasing on install). Fixes
4352         bug #369541.
4353
4354 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
4355
4356         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
4357         and return value.
4358
4359 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
4360
4361         * image.c: when someone loads a mscorlib from a file, return the
4362         currently loaded mscorlib (fixes bug #369253).
4363
4364 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
4365
4366         * class.c: handle types with no parents by forcing them to have
4367         System.Object as a parent and marking them as broken (this currently
4368         allows the first part of bug #369173 to work as well, likely because
4369         we don't check for typeload exceptions everywhere yet).
4370
4371 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
4372
4373         * class.c: more complete check that types belong to corlib
4374         (fixes second part of bug #369173).
4375
4376 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
4377
4378         * generic-sharing.c:  Including glib.h for the MSVC builds to define
4379           "inline" to "__inline" before including mono-membar.h.
4380           
4381         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
4382           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
4383           MSVC builds.
4384
4385         Contributed under MIT/X11 license.
4386
4387 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
4388
4389         * verify.c (do_invoke_method): Remove return type validation.
4390
4391         * verify.c (do_ret): Do return type validation at return site instead of
4392         call site.
4393
4394 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
4395
4396         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
4397
4398         * verify.c: Some todos cleaned and improved a few error messages.
4399
4400 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
4401
4402         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
4403
4404 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
4405
4406         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
4407         system types correctly.
4408
4409         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
4410         function.
4411
4412 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
4413
4414         * assembly.c (build_assembly_name): Fix a warning.
4415
4416 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
4417
4418         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
4419         the called function takes an object type argument. Fixes storing or
4420         valuetypes across remoting as well as reducing memory usage.
4421         * image.c, metadata-internals.h: remove now unused ldfld_remote and
4422         stfld_remote wrapper caches.
4423
4424 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
4425
4426         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
4427         is not found.
4428
4429         * reflection.c (mono_image_register_token): New helper function to save
4430         a token->object mapping.        
4431
4432         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
4433         managed code.
4434
4435         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
4436         one dimension arrays. Fixes #367670.
4437         (mono_reflection_get_type_internal): Ditto.
4438
4439 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
4440
4441         * marshal.c: mono_load_remote_field_new() always returns object.
4442         so use the proper signature (fixes bug #366445).
4443
4444 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
4445         
4446         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
4447         add an 'inline_failure' flag instead.
4448
4449 2008-03-04  Mark Probst  <mark.probst@gmail.com>
4450
4451         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
4452         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
4453         contains the location of "this", used for exception handling.
4454
4455 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
4456
4457         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
4458         their size on all platforms for perf reasons.
4459
4460 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4461
4462         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
4463         object-internal.h
4464
4465         * object-internal.h: Same.
4466
4467 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4468
4469         * reflection.h: Fix the build I just broke.
4470
4471 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4472
4473         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
4474         Test if a token is valid, this remove explicit usage of 
4475         MonoDynamicImage::tokens from the verifier code.
4476
4477         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
4478
4479         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
4480         instead of direct access to MonoDynamicImage::tokens.
4481
4482 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4483
4484         * verify.c (token_bounds_check): Fix the build I just broke.
4485
4486 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4487
4488         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
4489
4490         * verify.c (verifier_load_method): Fixed the errors message.
4491
4492         * verify.c (mono_method_verify): Fixed a debug message.
4493
4494 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
4495
4496         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
4497         mono-perfcounters.h, class-internals.h: support for predefined
4498         writable counters, query of categories and counters, bugfixes.
4499
4500 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
4501
4502         * verify.c (do_refanytype): Verify the refanytype opcode.
4503
4504         * verify.c (mono_method_verify): Use do_refanytype.
4505
4506 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
4507
4508         * verify.c (do_mkrefany): Verify the mkrefany opcode.
4509
4510         * verify.c (mono_method_verify): Use do_mkrefany.
4511
4512 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
4513
4514         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
4515         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
4516         implementation.
4517
4518 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
4519
4520         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
4521         the type load exception.
4522
4523 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4524
4525         * verify.c: Added a few FIXME for method signatures
4526
4527         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
4528         of mono_method_get_signature and get vararg call working. Removed unused
4529         checks for return value.
4530
4531         * verify.c (do_refanyval): Verify the refanyval opcode.
4532
4533         * verify.c (mono_method_verify): Implemented verification of arglist and
4534         use do_refanyval.
4535
4536 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
4537
4538         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
4539         vtypes to marshal.c.
4540
4541         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
4542         it works for AOT as well.
4543
4544 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
4545
4546         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
4547         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
4548         the system time is adjusted.
4549
4550 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
4551
4552         * icall.c, icall-def.h: use the new time functions (fixes the
4553         non-monotonic behaviour of TickCount).
4554
4555 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
4556
4557         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
4558         it breaks the build.
4559         
4560         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
4561         cattr is not finished yet.
4562
4563 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
4564
4565         * verify.c: Proper token validation for field, method and type.
4566
4567 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
4568
4569         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
4570
4571         * loader.c (method_from_memberref): Generate type load error instead of method missing
4572         if the type is not found.
4573
4574 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
4575
4576         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
4577         some of the conversions caused the generation of a marshal directive exception.
4578
4579 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
4580
4581         verify.c: Report which exception should be thrown by the JIT.
4582         Added a lot of FIXME notes.
4583
4584 2008-02-22  Mark Probst  <mark.probst@gmail.com>
4585
4586         * generic-sharing.c: Runtime generic context slots are not
4587         instantiated on init anymore.  Instead, provide function to do the
4588         instantiating on demand.
4589
4590         * class-internals.h: Added vtable to runtime generic context.
4591         Macros for encoding direct and indirect slot offsets in one
4592         guint32.
4593
4594 2008-02-21  Mark Probst  <mark.probst@gmail.com>
4595
4596         * object.c, generic-sharing.c: Moved some generic sharing code
4597         from object.c to generic-sharing.c.
4598
4599         * generic-sharing.c: Added support for extensible runtime generic
4600         context.
4601
4602         * metadata-internals.h: Two new hash tables in MonoImage for
4603         extensible runtime generic context support.
4604
4605         * domain.c: Unregister generic vtables upon domain unloading.
4606
4607         * image.c: Destroy new hash tables upon image unloading.
4608
4609         * metadata.c: Unregister generic subclasses upon image unloading.
4610
4611         * class-internals.h: New data structure for runtime generic
4612         context template.  New fields in the runtime generic context for
4613         extensible part.
4614
4615         * Makefile.am: Added generic-sharing.c.
4616
4617 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
4618
4619         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
4620         there is a pending loader exception, raise it.
4621
4622         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
4623         same.
4624
4625         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
4626         same.
4627
4628         Fixes #363450.
4629
4630 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
4631
4632         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
4633
4634         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
4635         
4636         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
4637         ref-only requests for compatibility with MS.
4638
4639 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4640
4641         * reflection.c (mono_custom_attrs_from_method): Don't silently
4642         return an empty list for generic method instances.
4643         (mono_custom_attrs_from_param): Likewise.
4644
4645 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
4646             Raja R Harinath  <harinath@hurrynot.org>
4647
4648         Fix #354757
4649         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
4650         * class.c (mono_class_inflate_generic_method_full): Initialize it
4651         when a fully-open method is instantiated.
4652         * metadata.c (inflated_method_equal, inflated_method_hash): Update
4653         to new field.
4654         * reflection.c (inflate_mono_method): Don't create a temporary context.
4655
4656 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
4657
4658         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
4659         Compute correct value, to prepare for imethod->reflection_info going away.
4660
4661 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
4662
4663         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
4664
4665 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4666
4667         * verify.c: Implement skip visibility flag.
4668
4669 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4670
4671         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
4672         which contains an extra field to tell the kind of exception that should be thrown.
4673
4674         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
4675
4676 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
4677
4678         * loader.c (mono_method_get_param_names): Initialize 'klass' after
4679         'method' is updated.
4680
4681 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
4682
4683         * class.c (mono_class_layout_fields): Set class->min_align for classes using
4684         explicit layout as well. Fixes #360375.
4685
4686 2008-02-11  Geoff Norton  <gnorton@novell.com>
4687
4688         * loader.c: Guard and dereference against inflated generic methods
4689
4690 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
4691
4692         * class.c: Include Retargetable spec in assembly name.
4693         * assembly.c: Always include PublicKeyToken spec in assembly name
4694         (with value "null" if assembly is not signed), and include
4695         Retargetable spec.
4696         * icall-def.h: Added icall for Assembly.get_fullname.
4697         * icall.c: Added icall returning the fullname of an assembly.
4698
4699 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
4700
4701         * class.c (mono_class_setup_vtable_general): Add a missing call to
4702         mono_class_setup_methods () which is needed in the AOT case.
4703
4704 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
4705
4706         * verify.c (mono_type_get_stack_name): Added. Return the name for the
4707         stack type of the given MonoType.
4708
4709         * verify.c (verify_type_compatibility_full): Handle the void type.
4710
4711         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
4712         way stack merging works.
4713
4714         * verify.c (store_local): Improved verification message.
4715
4716         * verify.c (do_branch_op): If the merging is invalid, the method
4717         is unverifiable and not invalid. Improved error message.
4718
4719         * verify.c (merge_stacks): Properly merge a boxed valuetype and
4720         a reference type diferent than System.Object. Improved error
4721         message.
4722
4723 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
4724
4725         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
4726
4727         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
4728         type of an enum even if the argument is byref.
4729
4730         * verify.c: Replace all explicit uses of enumtype and enum_basetype
4731         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
4732
4733         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
4734
4735         *verify.c (verify_type_compatibility_full): Make enum types
4736         compatible with their base types.
4737
4738         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
4739         types are compatible for the special case of a boxed valuetype and
4740         System.Object.
4741
4742         * verify.c (verify_stack_type_compatibility): The function
4743         is_compatible_boxed_valuetype was extracted from here.
4744
4745         * verify.c (push_arg): Only set ctx->has_this_store if the method
4746         is not static.
4747
4748         * verify.c (do_ldelem): Fixed a typo in an error message and added
4749         strict check for mixing int32 and native int as the array type
4750         and ldelem type.
4751
4752         * verify.c (merge_stacks): Consider boxed valuetypes in the
4753         compatibility checks.
4754
4755 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
4756         * profiler.h: (MonoGCEvent): Added start-stop the world events.
4757
4758 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4759         *class.c: use_new_interface_vtable_code: renamed the env var to have
4760         a "MONO_" prefix, and fix the logic to enable it by default.
4761
4762 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
4763         *class.c:
4764         mono_class_setup_vtable_general: rewrote the way in which interface
4765         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
4766         makes the code more maintainable.
4767         For now the old code is still there, and can be activated setting
4768         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
4769
4770 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
4771
4772         * verify.c: guarded some debug functions around and #ifdef.
4773
4774         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
4775
4776 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
4777
4778         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
4779         changes for now since they seem to break too many things.
4780
4781 2008-02-05  Mark Probst  <mark.probst@gmail.com>
4782
4783         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
4784         mono_marshal_find_nonzero_bit_offset): Added macro and function
4785         for finding the byte- and bit-offset of a bitfield within a
4786         struct.
4787
4788 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
4789
4790         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
4791         (mono_marshal_get_struct_to_ptr): Ditto.
4792
4793         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
4794         cctor_signature.
4795
4796 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
4797
4798         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
4799         between methods for non-corlib types.
4800
4801 2008-02-02  Geoff Norton  <gnorton@novell.com>
4802
4803         * loader.c (mono_method_get_param_names): Populate the parameter name for 
4804         generic parameters as well. (Fixes #342536)
4805
4806 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
4807
4808         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
4809
4810         * verify.c (do_invoke_method): Fix for calling with byref structs.
4811
4812         * verify.c (do_cast): push a boxed value type based on the type token and not
4813         the type of stack.
4814
4815 2008-01-31  William Holmes  <billholmes54@gmail.com>
4816
4817         * process.c (process_module_string_read): Check the size returned form 
4818           VerQueryValue to avoid out of memory exception. 
4819
4820 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
4821
4822         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4823         Handle properly modules which are not in the moduleref table. Fixes
4824         #356938.
4825
4826 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
4827
4828         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
4829         the dynamic case which is now in managed code.
4830         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
4831
4832         * marshal.c (mono_string_to_bstr): Fix a warning.
4833         (init_com_provider_ms): Ditto.
4834
4835         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
4836
4837         * exception.c (mono_get_exception_out_of_memory): New helper function.
4838
4839 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
4840
4841         * marshal.c: Add support for BSTR marshalling
4842         using other COM systems.
4843
4844         Code is contributed under MIT/X11 license.
4845
4846 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4847
4848         * object.c (mono_runtime_invoke_array): reverted previous
4849         commit as it breaks the build.
4850
4851 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4852
4853         * object.c (mono_runtime_invoke_array): Verify arguments for
4854         invalid types. Fixes #348522.
4855
4856 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
4857
4858         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
4859         non-final virtual calls using call. 
4860
4861         * verify.c (do_invoke): fixed some TODOs.
4862
4863         * verify.c (push_arg): set has_this_store for "ldarga 0".
4864
4865 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
4866
4867         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
4868         which belong to an inflated class. Fixes #356531.
4869
4870 2008-01-26  Robert Jordan  <robertj@gmx.net>
4871
4872         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
4873         which resort to FindFirstFile when a certain error condition
4874         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
4875         Code is contributed under MIT/X11 license.
4876
4877 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
4878
4879         * marshal.c (emit_marshal_string): Fix out string marshalling
4880         to use specified encoding. Fixes #323900.
4881
4882         Code is contributed under MIT/X11 license.
4883
4884 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
4885
4886         * class.c (mono_class_inflate_generic_method_full): Don't modify
4887         iresult->context after cache check.
4888
4889 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
4890
4891         * class.c (mono_class_inflate_generic_method_full): Change the
4892         struct assignments to memcpy for better visibility and add some comments.
4893
4894 2008-01-23  Dick Porter  <dick@ximian.com>
4895
4896         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
4897         procedure, and make it work on windows.
4898
4899 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
4900
4901         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
4902         a MonoReflectionTypeBuilder since it is always of that type.
4903
4904         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
4905
4906         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
4907
4908         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
4909         
4910         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
4911
4912         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
4913
4914         * reflection.c (mono_reflection_create_runtime_class): Remove already created
4915         instantiations from the type cache.
4916
4917 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4918
4919         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
4920
4921         * verify.c (do_unbox_value): push a controled mutability managed pointer.
4922
4923 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4924
4925         * verify.c (do_ldstr): added, verifies if the #US token is valid.
4926
4927         * verify.c (mono_method_verify): removed old TODO
4928
4929 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4930
4931         * verify.c (do_newobj): add visibility check.
4932
4933 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
4934
4935         * verify.c (do_load_function_ptr): add visibility check.
4936
4937 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
4938         *class.c:
4939         mono_generic_class_get_class: hook profiler events.
4940         mono_field_get_offset: added to support heap-shot in the new profiler.
4941         *class.h: exported mono_field_get_offset.
4942         * reflection.c:
4943         mono_reflection_setup_internal_class: hook profiler events.
4944
4945 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
4946
4947         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
4948         argument here too and use it to avoid checking for pending exceptions if 
4949         possible.
4950
4951 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
4952
4953         * assembly.c (build_assembly_name): add arg for passing the assembly
4954         flags. Do not consider a PublicKey with value "null" valid.
4955         (mono_assembly_name_parse_full): added boolean argument that will be
4956         set if the assembly name contains a PublicKeyToken spec. Added support
4957         for the Retargetable spec for which only Yes or No are allowed as valid
4958         value. Consider assembly name invalid if Retargetable spec is set, but
4959         either version, culture or public key (token) are not specified.
4960         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
4961         with implementation in assembly.c.
4962         * icall.c (fill_reflection_assembly_name): also copy assembly flags
4963         from MonoAssemblyName.
4964         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
4965         introduced argument for mono_assembly_name_parse_full to know if the
4966         assembly name has a PublicKeyToken spec, and if it has instruct
4967         fill_reflection_assembly_name to use default value for keyToken (if
4968         PublicKeyToken is null).
4969
4970 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4971
4972         * verify.c (mono_method_verify): fixed ovf ops with
4973         float values. They are unverifiable now.
4974
4975 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
4976
4977         * class.c (set_failure_from_loader_error): add BadImageException to the
4978         list of exceptions that can cause a type to fail to load.
4979
4980         * class.c (mono_class_get_exception_for_failure): same.
4981
4982 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
4983
4984         * verify.c (in_any_exception_block): added, check if offset
4985         is part of any exception handling clause.
4986
4987         * verify.c (get_stack_type): added VAR and MVAR types.
4988
4989         * verify.c (do_stobj): better error messages.
4990
4991         * verify.c (do_cpobj): added, check cpobj.
4992
4993         * verify.c (do_initobj): added, check initobj.
4994
4995         * verify.c (do_sizeof): added, check sizeof.
4996
4997         * verify.c (do_localloc): added, check localloc.
4998
4999         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
5000
5001 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
5002
5003         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
5004         save_lmf/restore_lmf opcodes.
5005
5006         * threads.c (mono_threads_install_notify_pending_exc): New function to
5007         install a callback notifying the JIT there is a pending exception on a thread.
5008         (mono_thread_request_interruption): Call the new callback.
5009         (mono_thread_get_and_clear_pending_exception): New function to return the
5010         exception pending on a thread.
5011
5012         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
5013         to turn off checking for pending exceptions.
5014         (mono_marshal_get_native_wrapper): Ditto.
5015
5016 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
5017
5018         * threads-types.h: Get rid of the unnecessary extern declarations.
5019
5020 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
5021
5022         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
5023         return field from parent class if not private.
5024         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
5025         returns fields from parent class if they are not private.
5026         (method_nonpublic): added function to determine if a given method
5027         should be considered non-public. Returns false for private methods
5028         on parent class, and internal methods from parent on the 1.0 profile.
5029         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
5030         use method_nonpublic function to determine whether method should be
5031         returned.
5032         (property_accessor_public): use newly introduced method_nonpublic
5033         function to determine whether accessor is non-public. 
5034         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
5035         event from parent class if not private. Only return static event if
5036         Static flag is set, and only return static event from parent class if
5037         FlattenHierarchy flag is set.
5038         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
5039         include non-private events from parent class.
5040
5041 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
5042
5043         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
5044         warning.
5045
5046 2008-01-16  Wade Berrier <wberrier@novell.com>
5047
5048         * security.c: Add assembly.h header to appease some warnings
5049
5050 2008-01-16  Dick Porter  <dick@ximian.com>
5051
5052         * process.c (process_module_string_read): Remove trailing null
5053         when saving string.
5054
5055 2008-01-16  Mark Probst  <mark.probst@gmail.com>
5056
5057         * class-internals.h: A new data structure describing the layout of
5058         a runtime generic context (MonoRuntimeGenericContextTemplate).
5059
5060         * metadata-internals.h: Added a hash table to MonoDomain that maps
5061         from open generic classes to their runtime generic context
5062         templates.
5063
5064         * object.c: Building of the runtime generic context, including
5065         proper handling of generic type arguments of superclasses.
5066         Building of the runtime generic context according to the template.
5067
5068 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
5069
5070         * class.c (mono_class_setup_fields): Set field.count for generic instances.
5071         Fixes #350856.
5072
5073         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
5074         mono_portability_find_file (). Fixes #325466.
5075         (mono_image_get_public_key): Fix a warning.
5076
5077 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
5078
5079         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
5080         Fixes #353550.
5081         (mono_class_from_name_case): Ditto.
5082
5083 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
5084
5085         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
5086           common storage for the tables used in the System/NumberFormatter class.
5087
5088 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
5089
5090         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
5091
5092 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
5093
5094         * verify.c (get_boxable_mono_type): check if the token is valid.
5095
5096         * verify.c (set_stack_value): changed to add an error if an
5097         invalid type is set on stack. Changed all callers due to signature change.
5098
5099         * verify.c (do_stobj): implement stobj validation.
5100
5101 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
5102
5103         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
5104         set container->is_method, it was set earlier.
5105
5106         * metadata.c (type_in_image): Handle MVARs which belong to not finished
5107         generic methods.
5108
5109         * reflection.c (mono_reflection_initialize_generic_parameter): Set
5110         is_method of the generic container to TRUE for methods.
5111
5112 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
5113
5114         * metadata.c (type_in_image): Handle type parameters properly.
5115
5116         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
5117         memory ownership of this structure.
5118
5119 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
5120
5121         * verify.c (get_boxable_mono_type): make typedref types been just
5122         unverifiable. check for void type.
5123
5124         * verify.c (do_unbox_any): added, verify opcode unbox.any.
5125
5126         * verify.c (do_load_function_ptr): accept method spec tokens.
5127
5128 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
5129
5130         * marshal.c (mono_class_native_size): Always set *align even if this is called
5131         recursively.
5132
5133 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
5134
5135         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
5136         out-of-date.
5137
5138 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
5139
5140         * verify.c: removed some old unused tables. A huge bunch of small fixes
5141         to things found while testing the verifier with mono basic.
5142
5143         * verify.c (dump_stack_value): dump null literal flag to.
5144
5145         * verify.c (verify_type_compatibility_full): fix comparison
5146         for types that have a generic super type.
5147
5148         * verify.c (verify_stack_type_compatibility): fix compatibility
5149         between null literals and reference types. fix compatibility between
5150         boxed valuetypes and object. fix corner case test for enums.
5151
5152         * verify.c (do_cmp_op): proper verification of cgt.un in case
5153         of reference types.
5154
5155         * verify.c (do_invoke_method): fix error message.
5156
5157         * verify.c (do_store_indirect
5158
5159         * verify.c (check_is_valid_type_for_field_ops): proper verification
5160         of managed pointers to valuetypes and boxed valuetypes. proper verification
5161         of null literals.
5162
5163         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
5164         allow token to be a reference type.
5165
5166         * verify.c (do_cast): proper handling of boxes valuetypes.
5167
5168         * verify.c (do_stelem): proper handling of storing a boxed valuetype
5169         in object[].
5170
5171         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
5172         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
5173         fixed the decoding of unbox_any
5174
5175 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
5176
5177         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
5178
5179 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
5180
5181         * verify.c (do_newobj): do delegate verification.
5182
5183         * verify.c (verify_delegate_compatibility): perform delegate
5184         verification.
5185
5186         * verify.c (verify_ldftn_delegate): perform tests related to
5187         ldftn delegates.
5188
5189         * verify.c (mono_delegate_signature_equal): perform the
5190         slightly diferent signature comparison required by delegates.
5191
5192         * metadata.c (mono_metadata_type_equal_full): added and exported
5193         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
5194         allows signature only comparison.
5195
5196         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
5197         as MONO_INTERNAL.
5198
5199 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
5200
5201         * verify.c: added a bunch of stack_slot_* functions to
5202         make access to stack slot type easier. This is required to
5203         allow optional flags, like null literal, boxed value and
5204         this pointer.
5205         All access paths to IlStackDesc::stype have been changed 
5206         to use these new funcions.
5207         Removed a bunch of unused functions and cleared all warnings.
5208         This patch introduces the usage of the this pointer and 
5209         boxed value flags.
5210
5211 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
5212
5213         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
5214
5215 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
5216
5217         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
5218         match managed version.
5219
5220         * appdomain.c: Bump corlib version.
5221         
5222         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
5223         argument.
5224
5225 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
5226
5227         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
5228         Set public key token to zero-length byte array if assembly is not
5229         strongnamed.
5230
5231 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
5232
5233         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
5234         writing a vtype array elem.
5235
5236 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
5237
5238         * assembly.c (build_assembly_name): return FALSE if length of token is
5239         not 16 (if not "null").
5240         (mono_assembly_name_parse_full): return FALSE if value of version,
5241         culture, token or key is 0.
5242         * icall.c (fill_reflection_assembly_name): add boolean arguments to
5243         specify whether public key and public key token must be set to default
5244         value (zero-length byte array) if not available. Set versioncompat to
5245         SameMachine. If public key is available or the default is set, then
5246         set PublicKey flag.
5247         (ves_icall_System_Reflection_Assembly_FillName): if no public key
5248         is available, use empty byte array as default value. On the 2.0
5249         profile, use default value for public key token if not set.
5250         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
5251         profile, use default value for public key if not set. On the 2.0
5252         profile, use default value for public key token if not set.
5253         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
5254         default values for public key and public key token.
5255
5256 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
5257
5258         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
5259         field to keep it in synch with the managed object.
5260
5261         * marshal.c (emit_marshal_object): Add support for byref marshalling of
5262         delegates. Fixes #351520.
5263
5264         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
5265         contains defined memory.
5266         
5267         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
5268
5269         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
5270         
5271         * sgen-gc.c (check_consistency): New helper function to do a consistency check
5272         of the GC data structures.
5273
5274         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
5275
5276         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
5277         
5278         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
5279         barrier.
5280         (mono_array_clone_in_domain): Ditto.
5281         (mono_array_clone_in_domain): Ditto.
5282
5283         * threads.c (start_wrapper): Register the thread start argument as a GC root.
5284         (cache_culture): Use a write barrier.
5285
5286         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
5287         (ves_icall_get_property_info): Ditto.
5288
5289         * object.h (MONO_STRUCT_SETREF): New macro.
5290
5291         * class-internals.h (MonoStats): Add some GC statistics.
5292
5293         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
5294
5295 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
5296
5297         * exception.c (mono_exception_from_name_two_strings):
5298         Break from loop after method is found.
5299
5300 2008-01-04  Dick Porter  <dick@ximian.com>
5301
5302         * process.c (process_module_string_read): Rename variable to
5303         reflect correct usage, after fixing bug 345972.
5304
5305 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
5306
5307         * verify.c (mono_type_create_fnptr_from_mono_method): 
5308         created a MonoType function pointer instance to be used during
5309         verification. The verifier releases this memory at end.
5310
5311         * verify.c (mono_method_is_constructor): extracted repeated
5312         checks for constructor into a single class.
5313
5314         * verify.c (do_push_field): use new extracted method
5315         for constructor check.
5316
5317         * verify.c (do_newobj): same.
5318
5319         * verify.c (do_ldftn): renamed to do_load_function_ptr
5320         and make it verify ldvirtftn too.
5321
5322         * verify.c (mono_method_verify: proper verification
5323         of ldvirtftn. release created MonoMethod instances.
5324
5325 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
5326
5327         * verify.c (token_bounds_check): added.
5328
5329         * verify.c (do_ldftn): added.
5330
5331         * verify.c (mono_method_verify): proper verificartion of ldftn.
5332
5333 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
5334
5335         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
5336         than the table row count. It's the resposibility of the caller to
5337         make the bounds check and raise the correct error.
5338
5339         * metadata.c (mono_metadata_decode_row_col): Same.
5340
5341         * loader.c (mono_get_method_from_token): perform bounds check
5342         on token for methoddef table.
5343
5344 2007-12-29  Miguel de Icaza  <miguel@novell.com>
5345
5346         * icall.c
5347         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
5348         assert into a negative result, the managed code already coped with
5349         that.
5350
5351         Some folks on Windows reported this error. 
5352
5353 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
5354
5355         * appdomain.c: Bump corlib version.
5356         * icall.c:
5357         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
5358         CultureInfo.CreateCulture to create CultureInfo for name.
5359         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
5360         create CultureInfo for name. Fixes bug #347174.
5361
5362 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
5363
5364         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
5365         flags.
5366
5367         * verify.c (is_valid_branch_instruction): allow branching to the
5368         first instruction of the protected block.
5369
5370         * verify.c (is_valid_cmp_branch_instruction): same.
5371
5372         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
5373         avoid double initialization.
5374
5375         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
5376         detect which cases the eval stack should just be copied.
5377
5378         * verify.c (mono_method_verify): check if the eval stack
5379         is empty when entering a protected block.
5380
5381 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
5382
5383         * verify.c: added is_clause_in_range, is_clause_inside_range,
5384         is_clause_nested and verify_clause_relationship. They perform
5385         the verifications stated in P1 12.4.2.7.
5386
5387         * verify.c (mono_method_verify): remove some unused variables,
5388         add the new exception clause checks, add instruction border
5389         checks for protected block start/end, improved some error 
5390         messages and fixed a bug in the way invalid instruction access
5391         is detected.
5392
5393 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
5394
5395         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
5396         from GC 7.0 if available.
5397
5398         * object.c: Remove an unused define.
5399         
5400         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
5401
5402         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
5403
5404         * null-gc.c (mono_gc_make_descr_for_array): Implement.
5405
5406         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
5407
5408         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
5409         to take the same arguments as the other make_descr functions.
5410
5411         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
5412
5413         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
5414         directly.
5415
5416         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
5417         mini.c.
5418
5419         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
5420         call to boehm-gc.c.
5421
5422         * boehm-gc.c (mono_gc_register_root): Fix a warning.
5423
5424         * null-gc.c (mono_gc_register_root): Fix a warning.
5425
5426         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
5427
5428         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
5429         (mono_gc_base_init): Call GC_init ().
5430
5431         * null-gc.c: Define mono_gc_register_root () as a no-op.
5432
5433         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
5434
5435 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
5436
5437         * verify.c: add prototype for merge_stacks at top
5438
5439         * verify.c (do_switch): added.
5440
5441         * verify.c (merge_stacks): on some cases the stack merging
5442         was not happening properly. Unequal stack sizes at merge
5443         points should be invalid.
5444
5445         * verify.c (mono_method_verify): added more debug info on stack state.
5446         verify switch properly.
5447
5448 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
5449
5450         * method-builder.h: New file, moved the mono_mb_ declarations here from 
5451         marshal.h.
5452
5453         * boehm-gc.c marshal.c: Include method-builder.h.
5454
5455         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
5456
5457         * marshal.c: Remove some code which is now in method-builder.c.
5458
5459 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
5460
5461         * method-builder.c: New file, extraction of the method builder functionality 
5462         from marshal.c.
5463
5464         * marshal.c: Move the mb functions into method-builder.c.
5465
5466         * marshal.h marshal.c: Export some mono_mb_... functions.
5467
5468         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
5469
5470         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
5471         the caller.
5472
5473         * class.c (mono_class_get_full): Check the token type in the dynamic case.
5474
5475         * loader.c (mono_field_from_token): Ditto.      
5476
5477         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
5478         type as well.
5479         
5480         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
5481         Fixes #342565.
5482
5483         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
5484         a helper function for setting it.
5485
5486         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
5487
5488         
5489         * assembly.c: Significally simplify code now that referenced assemblies are 
5490         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
5491
5492         * threads.h: Don't include  the internal threads-types.h header file. Fixes
5493         #349952.
5494
5495 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
5496
5497         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
5498         instructions that were target of branches or are at protected block boundaries.
5499
5500         * verify.c (in_same_block): handle filter clauses.
5501
5502         * verify.c (is_valid_branch_instruction): added. checks the target of
5503         instructions br or brtrue/false.
5504
5505         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
5506         binary branch instructions such as beq and bge.
5507
5508         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
5509         and made it pin the instruction as been part of the exception block.
5510
5511         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
5512         of in_same_block.
5513
5514         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
5515         of in_same_block.
5516
5517         * verify.c (do_ret): ret from a protected block is unverifiable and
5518         not invalid.
5519
5520         * verify.c (do_static_branch): verify br and br.s instructions.
5521
5522         * verify.c (merge_stacks): add extra param to support detection
5523         of branches in the middle of instructions.
5524         
5525         * verify.c (mono_method_verify): verify branches and exception blocks
5526         that target the middle of instructions. Proper verification of br and br.s.
5527
5528 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
5529
5530         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
5531         skip_visibility field.
5532         (reflection_methodbuilder_from_dynamic_method): Ditto.
5533
5534         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
5535         registrations. Fixes #348193.
5536
5537         * threads.h: Move the internal mono_thread_get_pending_exception () to
5538         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
5539
5540 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
5541
5542         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
5543         icall registration. Fixes #348193.
5544
5545         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
5546         for corlib classes into object. Fixes #349621.
5547
5548 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
5549
5550         * icall.c (property_accessor_nonpublic): new function to determine
5551         whether an accessor allows a property to be considered non-public.
5552         Returns false for private accessor(s) from parent class, and internal
5553         accessor(s) from parent on 2.0 profile (and higher).
5554         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
5555         to determine whether property should be included if NonPublic flag
5556         is set. Fixes bug #349078.
5557
5558 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
5559
5560         * verify.c (init_stack_with_value): added.
5561
5562         * verify.c (mono_method_verify): extracted common
5563         code for exception initialization into init_stack_with_value.
5564
5565         * verify.c (mono_method_verify): initialize the exception
5566         for handler clauses as well.
5567
5568         * verify.c (mono_method_verify): fix the exception clause
5569         ordering rules, it should use handler end offset and not
5570         start offset.
5571
5572 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
5573
5574         * rawbuffer.c: remove useless warning.
5575
5576 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
5577
5578         * threads.h, threads-types.h: move functions to the correct header
5579         (fixes bug#349952).
5580
5581 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5582
5583         * verify.c (mono_method_verify): proper verification
5584         of exception handling clauses ranges and fallthru in
5585         and out of protected blocks.
5586
5587 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5588
5589         * verify.c (mono_method_verify): fixed compilation issue.
5590
5591 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
5592
5593         * verify.c (mono_method_verify): a printf slipped in, changed
5594         to use verifier debug macro.
5595
5596 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
5597
5598         * verify.c (is_correct_leave): check for filter clauses.
5599
5600         * verify.c (do_filter): added.
5601
5602         * verify.c (mono_method_verify): property verification of leave.
5603
5604
5605 2007-12-18  Mark Probst  <mark.probst@gmail.com>
5606
5607         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
5608         Win32 build, until we figure out how to do the proper thing on
5609         Win32.
5610
5611 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
5612
5613         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
5614         by the previous patch.
5615         
5616         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
5617         the assembly resolve handler for refonly assemblies.
5618
5619 2007-12-17  Mark Probst  <mark.probst@gmail.com>
5620
5621         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
5622         Make sure only one thread is allowed to commence shutdown, and
5623         don't allow new threads to be started once shutdown is in
5624         progress.
5625
5626 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
5627
5628         * verify.c (is_correct_endfilter): added.
5629
5630         * verify.c (is_unverifiable_endfilter): added.
5631
5632         * verify.c (do_endfilter): added.
5633
5634         * verify.c (mono_method_verify): property verification of endfilter
5635         and fixed a corner case or endfinally.
5636
5637 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
5638
5639         * verify.h: new flags to support fail fast of unverifiable code and
5640         do non-strict verification. Non-strict verification is required to
5641         have MS runtime compatibility. There are a huge amount of unverifiable
5642         code that it accepts as verifiable. The strict mode verifies the code
5643         as the specs says.
5644         Non-strict mode will be required in cases where code needs to be
5645         accepted as verifiable but fails under strict mode.
5646
5647         * pedump.c: added support to fail fast and non-strict verification.
5648
5649         * verify.c: added support for both fail fast and non-strict verification.
5650
5651 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
5652
5653         * verify.c (is_correct_endfinally): added.
5654
5655         * verify.c (mono_method_verify): property verification of endfinally.
5656
5657 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5658
5659         * verify.c (in_any_block): check for filter clauses.
5660
5661         * verify.c (is_correct_rethrow): added.
5662
5663         * verify.c (mono_method_verify): property verification of rethrow.
5664
5665         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
5666
5667 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
5668
5669         * verify.c (do_throw): added.
5670
5671         * verify.c (mono_method_verify): property verification of throw
5672
5673 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
5674
5675         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
5676         assemblies. Fixes #346425.
5677
5678 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
5679
5680         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
5681         FieldBuilders.
5682
5683         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
5684
5685         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
5686         prevent asserts when this is called with a token which might not be valid.
5687
5688         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
5689         lookup_dynamic_token_class with valid_token == FALSE.
5690
5691         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
5692
5693         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
5694
5695         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
5696         
5697 2007-12-10  Mark Probst  <mark.probst@gmail.com>
5698
5699         * gc.c: Don't delay threadpool thread finalization unless Mono is
5700         shutting down.
5701
5702 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
5703
5704         * threads.c: turn an assert into a non-fatal warning.
5705
5706 2007-12-09  Robert Jordan  <robertj@gmx.net>
5707
5708         * icall.c (GetVirtualMethod): Add missing argument validation.
5709
5710 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5711
5712         * verify.c (do_cast): added.
5713
5714         * verify.c (mono_method_verify): property verification of castclass and isinst.
5715
5716
5717 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5718
5719         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
5720
5721         * verify.c (do_stelem): added.
5722
5723         * verify.c (mono_method_verify): property verification of stelem.X.
5724
5725 2007-12-07  Mark Probst  <mark.probst@gmail.com>
5726
5727         * class.c, class-internals.h: Introduce an environment variable
5728         (MONO_GENERIC_SHARING) through which the extent of generic code
5729         sharing can be controlled (share all classes, share only corlib
5730         classes, or share nothing).
5731
5732         * object.c: Only create runtime generic context for classes for
5733         which sharing is enabled.
5734
5735 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5736
5737         * verify.c (do_ldelem): refactor it to work with ldelem.any.
5738
5739         * verify.c (mono_method_verify): property verification of ldelem.any.
5740
5741 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
5742
5743         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
5744         added ldelem.X opcodes.
5745
5746         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
5747
5748         * verify.c: proper verification of ldelem.X 
5749
5750 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
5751
5752         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
5753
5754 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5755
5756         * verify.c (mono_method_verify): null literal requires special handling,
5757         the value pushed on stack need to be flagged as so.
5758
5759         * verify.c (do_ldelema): Verify ldelema properly.
5760
5761 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
5762
5763         * verify.c: Verify ldlen properly.
5764
5765 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
5766
5767         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
5768         to the target object's type. Fixes #346160.
5769
5770 2007-12-05  Dick Porter  <dick@ximian.com>
5771
5772         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
5773         Solaris needs the same workaround as BSD-derived systems.  Fixes
5774         bug 323524, patch by Burkhard Linke
5775         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
5776
5777 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
5778
5779         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
5780         handle to use when error dialog is shown; otherwise, update mask
5781         to show no error dialog when an error occurs.
5782
5783 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
5784
5785         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
5786
5787         * class.c (mono_class_get_field_default_value): New helper function to initialize
5788         field->def_type and field->data.
5789
5790 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
5791
5792         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
5793         the general one.
5794
5795         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
5796
5797         * marshal.c: Avoid depending on delegate->method_info being set.
5798
5799         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
5800         
5801         * object.c (mono_delegate_ctor): Set delegate->method.
5802
5803         * object-internals.h (struct _MonoDelegate): Add 'method' field.
5804
5805         * appdomain.c: Bump corlib version.
5806
5807 2007-11-27  Raja R Harinath  <harinath@gmail.com>
5808
5809         * metadata.c (mono_generic_inst_equal_full): Short-circuit
5810         equality check if we're comparing canonicalized MonoGenericInsts.
5811
5812 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
5813
5814         * class.c (generic_array_methods): Call mono_class_setup_methods () before
5815         accessing class->methods.
5816
5817 2007-11-22  Dick Porter  <dick@ximian.com>
5818
5819         * threads.c: Ensure that the synch_cs is set before trying to use
5820         it.
5821
5822 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
5823
5824         * profiler.c: r89126 broke the statistial profiler, unbreak.
5825
5826 2007-11-22  Martin Baulig  <martin@ximian.com>
5827
5828         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
5829
5830         * mono-debug.c
5831         (mono_debug_debugger_version): Bump to 3.
5832         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
5833         -> mono_debugger_class_initialized().
5834
5835         * mono-debug-debugger.c
5836         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
5837
5838         * class.c
5839         (mono_debugger_start_class_init_func): Removed.
5840         (mono_debugger_class_loaded_methods_func): Added.
5841         (mono_class_setup_methods): Call it here.
5842
5843 2007-11-22  Martin Baulig  <martin@ximian.com>
5844
5845         * mono-debug.c
5846         (mono_debug_add_delegate_trampoline): New public method.
5847         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
5848
5849         * mono-debug.h
5850         (MonoSymbolTable): Added `global_data_table'.
5851         (MonoDebuggerTypeKind): Removed.
5852
5853 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
5854
5855         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
5856         these methods.
5857
5858         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5859         
5860 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
5861
5862         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
5863
5864 2007-11-20  Martin Baulig  <martin@ximian.com>
5865
5866         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
5867
5868         * mono-debug-debugger.c
5869         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
5870         (mono_debugger_remove_breakpoint): Likewise.
5871         (mono_debugger_check_breakpoints): Likewise.
5872         (mono_debugger_register_class_init_callback): New public method.
5873         (mono_debugger_remove_class_init_callback): Likewise.
5874         (mono_debugger_add_type): Likewise.
5875
5876         * mono-debug-debugger.h
5877         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
5878
5879 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
5880
5881         * class.c: more interface implementations needed for the
5882         array enumerator (fixes bug #341112).
5883
5884 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
5885
5886         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
5887         fix ParamName of ArgumentNullExceptions.
5888
5889 2007-11-17  Miguel de Icaza  <miguel@novell.com>
5890
5891         * reflection.c (mono_reflection_encode_sighelper): Generate the
5892         modopts and modreqs.   I have a useless test that crashes monodis,
5893         but that shows the code working.
5894
5895 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
5896
5897         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
5898         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
5899
5900 2007-11-15  Dick Porter  <dick@ximian.com>
5901
5902         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
5903         When joining a thread, it's the thread that's calling Join that
5904         gets WaitSleepJoin state not the target.  Fixes the standalone
5905         test case in bug 334740, and hopefully the whole bug too.
5906
5907 2007-11-15  Dick Porter  <dick@ximian.com>
5908
5909         * process.c: Read file version info from the files pointed at by
5910         process modules, not the current process.  Fixes bug 315969.
5911
5912         Use windows typedef names in some places to fix warnings on the
5913         windows build.
5914
5915 2007-11-15  Mark Probst  <mark.probst@gmail.com>
5916
5917         * image.c, metadata-internals.h: Added a generic_class_cache hash
5918         to MonoImage for looking up generic classes when sharing generics.
5919
5920 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
5921
5922         * sgen-gc.c: warning cleanups.
5923
5924 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
5925
5926         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
5927         inherited properties.
5928
5929 2007-11-14  Mark Probst  <mark.probst@gmail.com>
5930
5931         * object.c, class-internals.h: Added more information to the
5932         runtime generic context.
5933
5934 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
5935
5936         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
5937         instead of just the target method. Generalize the abstract method handling to
5938         handle any non-static method.
5939
5940         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5941         mono_marshal_get_delegate_invoke () signature change.
5942
5943 2007-11-13  Mark Probst  <mark.probst@gmail.com>
5944
5945         * class.c, class-internals.h: Made
5946         mono_type_get_basic_type_from_generic () public.  Fixed member
5947         access check for shared generics.
5948
5949         * loader.c: Don't insert field into field cache if it's part of a
5950         non-inflated generic class.
5951
5952         * domain.c, domain-internals.h: The generic sharing context is now
5953         part of the jit info data structure.  Added two accessor
5954         functions.
5955
5956 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
5957
5958         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
5959         the array Get/Set/Address methods, since the JIT inlines them.
5960
5961         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
5962
5963         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
5964         (mono_image_init): Initialize runtime_invoke_direct_cache.      
5965
5966         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
5967         mono_marshal_get_delegate_invoke signature change.
5968
5969         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
5970         an additional argument. Add support for invoking abstract methods.
5971
5972         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
5973
5974         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
5975
5976 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5977
5978         * class.c: Do field layout for open generic classes as well.
5979
5980 2007-11-09  Mark Probst  <mark.probst@gmail.com>
5981
5982         * gc.c, gc-internal.h: Don't finalize threadpool threads with
5983         other objects, because the threadpool is still around.  Put them
5984         in a list instead and after finalizing all other objects in the
5985         root domain shut down the thread pool and then finalize the
5986         threads.  Fixes bug #337383.
5987
5988         * threads.c, thread-types.h: New mono_thread_create_internal()
5989         function for marking a thread with the threadpool flag before it
5990         started.  Set synch_cs to NULL after freeing it.
5991
5992         * threadpool.c: Mark threadpool threads before they start.
5993
5994 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
5995
5996         * reflection.h, reflection.c: don't export random functions
5997         and lazy load dbnull and missing objects.
5998
5999 2007-11-07  Jonathan Chambers <joncham@gmail.com>
6000
6001         * class.c: Initialize COM types if COM interfaces
6002         are present (not just COM classes).
6003         
6004         Code is contributed under MIT/X11 license.
6005
6006 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
6007         * reflection.c:
6008         create_dynamic_mono_image: hook module profiler events (dynamic case).
6009         mono_image_basic_init: hook assembly profiler events (dynamic case).
6010
6011 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
6012         * profiler.c:
6013         simple_appdomain_unload: completely terminate the profiler
6014         instead of only processing the statistical samples.
6015         simple_shutdown: make sure this is really called exactly once,
6016         even in multithreaded applications, and always listen to
6017         appdomain events.
6018         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
6019         here, the "[un]load" functions will do it.
6020         Fixes bugs #333791 and #325261.
6021
6022 2007-11-07  Geoff Norton  <gnorton@novell.com>
6023
6024         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
6025         rather than depend on __APPLE__.
6026
6027 2007-11-07  Mark Probst  <mark.probst@gmail.com>
6028
6029         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
6030
6031 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
6032
6033         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
6034         UTF16 MonoString. Fix the crash from bug #335488
6035
6036 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
6037
6038         * marshal.c: Correct (for non-Win32 OS) length != size in 
6039         mono_string_from_bstr. Fix #339530.
6040
6041 2007-11-06  Geoff Norton  <gnorton@novell.com>
6042
6043         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
6044         to succeed
6045
6046 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
6047
6048         * process.c: Added run-time GetProcessId API detection for Windows.
6049
6050 2007-11-04  Miguel de Icaza  <miguel@novell.com>
6051
6052         * reflection.c  (mono_param_get_objects): If a parameter has the
6053         attribute [System.Runtime.InteropServices.Optional] we should
6054         set the DefaultValue of the ParameterInfo to be
6055         System.Reflection.Missing instead of DBNull.
6056
6057         See bug #339013.
6058
6059         (mono_get_reflection_missing_object): New method,
6060         returns the System.Reflection.Missing.Value singleton instance.
6061
6062 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
6063
6064         * culture-info-table.h : regenerated.
6065
6066 2007-11-02  Jonathan Chambers <joncham@gmail.com>
6067
6068         * icall.c: Use GetEnvironmentStrings on windows
6069         so we are using the same environment block as 
6070         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
6071         #333740.
6072         
6073         Code is contributed under MIT/X11 license.
6074
6075 2007-10-31  Martin Baulig  <martin@ximian.com>
6076
6077         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
6078
6079         * mono-debug-debugger.h
6080         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
6081
6082 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
6083
6084         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
6085         classes.
6086
6087 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
6088
6089         * culture-info-table.h : regenerated.
6090
6091 2007-10-30  Robert Jordan  <robertj@gmx.net>
6092
6093         * icall-def.h, icall.c:
6094         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
6095
6096         Code is contributed under MIT/X11 license.
6097
6098 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
6099
6100         * class.c (mono_class_setup_vtable): Find the inflated methods in the
6101         inflated class instead of inflating them again.
6102         
6103         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
6104         dynamic case.
6105
6106         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
6107         Call setup_supertypes () after klass->parent is set.
6108         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
6109
6110         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
6111         for inflated instances of not yet created dynamic generic classes.
6112         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
6113         times from inflated_method.
6114         (methodbuilder_to_mono_method): Ditto.
6115
6116 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
6117
6118         * gc.c: code cleanup and removed old untested option of not creating the
6119         finalizer thread.
6120
6121 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
6122
6123         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
6124         creating a jump trampoline for dynamic methods.
6125
6126 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
6127
6128         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
6129         generic TypeBuilders when called from another method of the same type (bug #335131).
6130
6131
6132 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
6133
6134         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
6135         doesn't seem to work perfectly.
6136         
6137         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
6138         called multiple times.
6139         (methodbuilder_to_mono_method): Ditto.
6140         (resolve_object): Inflate FieldBuilder's.
6141
6142 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6143
6144         * string-icalls.c, string-icalls.h, appdomain.c: patch from
6145         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
6146         RemoveEmptyEntries in the string.Split implementation (bug #322375).
6147
6148 2007-10-26  Dick Porter  <dick@ximian.com>
6149
6150         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
6151         Thread initialisation changes
6152
6153 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
6154
6155         * verify.c: fix compatibility check between arrays and System.Array
6156
6157 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
6158
6159         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
6160         too. Fixes #336999.
6161
6162 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
6163
6164         * object.c (mono_value_box): Use typed allocation here.
6165
6166 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
6167
6168         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
6169         trampoline instead of compiling the method right away.
6170
6171         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
6172
6173 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
6174
6175         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
6176         related fields for dynamic classes. Fixes #334493.
6177
6178 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
6179
6180         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
6181         
6182         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
6183
6184         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
6185         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
6186
6187         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
6188
6189         * reflection.c (create_generic_typespec): Initialize klass->generic_container
6190         if needed.
6191         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
6192
6193 2007-10-18  Jonathan Chambers <joncham@gmail.com>
6194
6195         * marshal.c: Use correct key when removing item
6196         from ccw_hash.
6197         
6198         Code is contributed under MIT/X11 license.
6199
6200 2007-10-17  William Holmes  <billholmes54@gmail.com>
6201
6202         *marshal.c: Adding a case to marshal booleans to U1
6203
6204         Code is contributed under MIT/X11 license.
6205
6206 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
6207
6208         * class.c (mono_class_from_name): Search the modules compromising dynamic
6209         assemblies. Fixes #331601.
6210
6211 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
6212
6213         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
6214         exception if the type name contains an assembly component. Fixes #334203.
6215
6216         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
6217         modules inside dynamic assemblies. Fixes #334200.
6218         
6219         * reflection.c: Set image->public_key and image->public_key_length;
6220
6221         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
6222         fields.
6223
6224         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
6225         
6226 2007-10-16  Mark Probst  <mark.probst@gmail.com>
6227
6228         * metadata.c: Implemented correct comparing of generic classes.
6229         An inflated generic class can be equal to a non-inflated one if it
6230         is inflated with generic type variables as type arguments.  Fixes
6231         bug #333798.
6232
6233 2007-10-15  Dick Porter  <dick@ximian.com>
6234
6235         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
6236         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
6237         81646.
6238
6239         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
6240         instead of a monitor lock.  This means that monitor_try_enter and
6241         co can set the thread state safely.
6242         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
6243         thread_interrupt_requested, so interrupt actually works.
6244
6245         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
6246         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
6247         state accessor function
6248
6249 2007-10-15  Martin Baulig  <martin@ximian.com>
6250
6251         * mono-debug.h
6252         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
6253         the debugger with the current runtime.
6254
6255 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
6256
6257         * object.c, object-internals.h: added the ability to set a single
6258         trampoline for all the slots in a vtable.
6259
6260 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6261
6262         * marshal.c: deal with a possible race condition during multicast
6263         delegate invocation.
6264
6265 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6266
6267         * class.c: ensure value type methods don't have the synchronized
6268         flag set.
6269
6270 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
6271
6272         * string-icalls.c, string-icalls.h: reverted unapproved patch that
6273         breaks the build.
6274
6275 2007-10-11  Joel Reed  <joelwreed@comcast.com>
6276
6277         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
6278         to take an options parameter so that empty entries can be removed during
6279         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
6280
6281 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6282
6283         * marshal.c: make sure we don't store the signature from a dynamic
6284         method into the runtime invoke cache (bug #327189).
6285
6286 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6287
6288         * marshal.c: make sure the wrapper methods are properly initialized.
6289
6290 2007-10-11  Mark Probst  <mark.probst@gmail.com>
6291
6292         * metadata.c, metadata-internals.h: Generalized
6293         mono_type_stack_size() to mono_type_stack_size_internal() which
6294         takes an additional argument specifying whether it allows open
6295         types.
6296
6297 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6298
6299         * verify.c (do_invoke_method): handle typedbyref params
6300         correctly and check for unverifiable return values.
6301
6302         * verify.c (do_newobj): fix a warning.
6303
6304 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * verify.c: don't tread typedbyref as allways unverifable,
6307         so uses, like (ld/st)loc.0 are valid. verify for the cases
6308         that it matters, like boxing related operations.
6309
6310 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6311
6312         * verify.c: add verification of the newobj opcode. verification
6313         of delegate instantation still missing due ldftn and virldftn not
6314         pushing the function type on stack
6315
6316 2007-10-08  Mark Probst  <mark.probst@gmail.com>
6317
6318         * class-internals.h: Runtime generic context data structure
6319         definition.
6320
6321         * object.c: Initialization of runtime generic context at runtime
6322         vtable creation time.
6323
6324 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
6325         * class.c (mono_class_create_from_typedef,
6326         mono_class_from_generic_parameter, mono_ptr_class_get,
6327         mono_fnptr_class_get, mono_bounded_array_class_get)
6328         * domain.c (mono_domain_create, mono_domain_free)
6329         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
6330         * image.c (do_mono_image_load, mono_image_close):
6331         Hooked up load-unload profiler events.
6332
6333 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
6334
6335         * domain.c: track statistics about the actual amount of native code
6336         allocated.
6337
6338 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
6339
6340         * class.c: the valuetype enumerators don't have the additional
6341         supertypes interfaces.
6342
6343 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6344
6345         * class.c: need more interfaces setup for the IEnumerator<T>
6346         object created for arrays (tests/ienumerator-interfaces.2.cs).
6347
6348 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
6349
6350         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
6351
6352 2007-10-05  Alp Toker  <alp@atoker.com>
6353
6354         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
6355         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
6356         #315863.
6357
6358 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
6359
6360         * verify.c (verify_type_compatibility_full): verification of
6361         compatibility improved, validates correctly non-strict checks between
6362         native int and I4 types different than (unsigned)int32.
6363
6364         * verify.c (do_store_indirect): added, do all verification of
6365         ldind.X opcodes. 
6366
6367         * verify.c (get_load_indirect_mono_type): renamed to
6368         get_indirect_op_mono_type, as it now returns the MonoType for 
6369         ldind.X and stind.X opcodes.
6370
6371 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
6372
6373         * reflection.c: Fix the encoding of generic type definition for
6374         TypeBuilders.
6375
6376         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
6377         mono_image_typedef_or_ref but allows to specify if typespec lookups should
6378         be made. Typespec check is done prior to typeref cache lookup.
6379
6380         * reflection.c (mono_image_typedef_or_ref): now just delegate to
6381         mono_image_typedef_or_ref_full.
6382
6383         * reflection.c (encode_generic_class): encode the generic class
6384         directly instead of calling encode_type.
6385
6386         * reflection.c (encode_type): encode the generic type definition
6387         MonoClass as a generic instantiation.
6388
6389         * reflection.c (create_typespec): cache typespec tokens in
6390         the assembly->typespec cache. Don't create typespec for a generic
6391         instance MonoClass. Create typespec for the generic type defintion.
6392
6393         * reflection.c (create_generic_typespec): encode the generic
6394         class directly instead of calling encode_type.
6395
6396         * reflection.c (mono_image_create_token): encode the generic
6397         type definition not using a typespec for MonoType instances.
6398
6399
6400 2007-10-04  Raja R Harinath  <rharinath@novell.com>
6401
6402         Fix #328812
6403         * class.c (mono_image_init_name_cache): Don't return nested
6404         'protected internal' classes.
6405         (mono_class_from_name_case): Likewise.
6406
6407 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6408
6409         * icall-def.h, icall.c : get_bundled_machine_config() is now the
6410           common function used by both DefaultConfig in System.dll and
6411           InternalConfigurationHost in System.Configuration.dll.
6412
6413 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6414
6415         * class.c: automatically add to vectors only a few essential explicit
6416         generic interfaces. The rest of the interfaces that arrays should
6417         provide are currently implicitly added (but still not lazily, see the
6418         design in the discussion of bug#325495 for the details of what is
6419         needed for that). Additionally, implicit interfaces are assigned the
6420         same vtable slot as the explicit interfaces (as they are compatible):
6421         this enables huge memory savings since we don't need to instantiate
6422         as many memthods and as large vtables anymore. Also, Since
6423         GetEnumerator<T> returns an instance of a type that is required to
6424         support a similarly large set of interfaces as arrays, we add
6425         implicit interfaces and interface offset sharing support to those
6426         types, too. This change adds all the required interfaces so that
6427         the anonarray.cs test case in the bug report works (we don't add
6428         all the interfaces to arrays of arrays 3-level deep and more because
6429         of the memory requirements explained in the bug and since they are much
6430         less common: the lazy-loading support will enabled them to work, too).
6431
6432 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
6433
6434         * verify.c (merge_stacks): major clean up, all type compatibility
6435         checks are done by verify_type_compatibility. This fix my earlier lack
6436         of understanding of the CLR type system and merge_stacks no longer looks
6437         scary.
6438
6439         * verify.c: fixed some bad spelling.
6440
6441 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
6442
6443         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
6444         a given stack slock.
6445         
6446         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
6447         verify_type_compatibility_full. This removed a near indentical function and fixed
6448         handling of Int32 and IntPtr across all opcodes.
6449
6450 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6451
6452         * class.c: only vectors have the additional generic interfaces.
6453
6454 2007-10-01  Jonathan Chambers <joncham@gmail.com>
6455
6456         * mono-config.c: Use g_strcasecmp instead of
6457         strcasecmp like everywhere else to fix
6458         compilation with MSVC.
6459         
6460         Code is contributed under MIT/X11 license.
6461
6462 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
6463
6464         * object.c, object-internals.h: refactored the IMT code to enable
6465         building a single slot at a time and lazily creating the IMT trampolines
6466         and thunks.
6467
6468 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
6469
6470         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
6471
6472         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
6473         Fixes #328501.
6474         
6475 2007-09-29  Raja R Harinath  <harinath@gmail.com>
6476
6477         * loader.c (method_from_methodspec): Rearrange to avoid
6478         un-necessary exposition.  Don't assert out if the method's
6479         declaring type is a generic type definition.
6480
6481 2007-09-28  Martin Baulig  <martin@ximian.com>
6482
6483         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
6484
6485 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
6486
6487         * class-internals.h: optimize field layout of MonoClass to
6488         requires less cachelines at runtime and save a few bytes on 64 bit
6489         systems.
6490
6491 2007-09-28  Jb Evain  <jbevain@novell.com>
6492
6493         * reflection.c: when encoding type names in custom attributes,
6494         if the type is a closed generic type, its generic arguments
6495         have to be serialized as AssemblyQualifiedName, so that when
6496         they are deserialized, it's possible to re-create them properly.
6497         Fixes #329450.
6498
6499
6500 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
6501
6502         * object.c, class-internals.h: added delegate-creation counter.
6503
6504 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
6505
6506         * class.c: cleanup of the code that synthetizes interfaces for
6507         arrays in 2.0: saves quit a bit of corlib mempool memory.
6508         Code to fix bug #325495 ifdeffed out for now until the issues
6509         with memory usage and O(n^2) behaviour are fixed.
6510
6511 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
6512
6513         * marshal.c: when possible, do not duplicate the name of the methods
6514         in the method builder and in the generated MonoMethod.
6515
6516 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
6517         * verify.c: added support for type checking ldind_* opcodes.
6518
6519 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
6520
6521         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
6522         which is used to distinguish the fully open instantiation of a TypeBuilder
6523         with the rest. This temporary hack is required to restore the property that
6524         the fully open instantiation is the same type of the generic type definition.
6525
6526         * class-internals.h (mono_generic_class_is_generic_type_definition):
6527         new function as part of the internal API.
6528
6529         * class.c (inflate_generic_type): return NULL when the generic inst is
6530         fully open. The fully open generic type is now the same as the generic type
6531         definition for non TypeBuilder types.
6532
6533         * class.c (mono_generic_class_get_class): removed assert since it is
6534         no longer valid, gklass->cached_class can point to the generic type definition.
6535
6536         * class.c (mono_generic_class_is_generic_type_definition): new.
6537
6538         * metadata.c (mono_generic_class_hash): added is_tb_open field
6539         to the hash calculation.
6540
6541         * metadata.c (free_generic_class): if the generic class is associated
6542         with the generic type definition, its field will come from the mempool and
6543         must not be freed.
6544
6545         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
6546         new, this function identifies the corner case of a TypeBuilder fully open
6547         instantiation.
6548
6549         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
6550         for lookup. Set gclass->cached_class to be the container class in case of
6551         the fully open instantiation of non TypeBuilder types.
6552
6553         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
6554         to compare generic classes.
6555
6556         * reflection.c (method_encode_methodspec): remove assert that
6557         no longer is valid.
6558
6559         * reflection.c (mono_reflection_generic_class_initialize): add
6560         an aditional assert to ensure the proper type is used.
6561
6562 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
6563
6564         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
6565         to enjoy it.
6566
6567 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
6568
6569         * verify.c (push_arg): Fixed support for ldarga
6570         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
6571         MonoType used as first arg in case of instance calls.
6572
6573 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
6574
6575         * verify.c: Support for verifying VAR and MVAR types, 
6576
6577 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
6578
6579         * icall.c (ves_icall_get_property_info): Set the reflected type of the
6580         accessors correctly.
6581
6582 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
6583
6584         * threads.c: support OSX and other systems in
6585         mono_thread_get_stack_bounds (bug #328026).
6586
6587 2007-09-25  Martin Baulig  <martin@ximian.com>
6588
6589         * mono-debug.h
6590         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
6591
6592 2007-09-24  Martin Baulig  <martin@ximian.com>
6593
6594         * mono-debug.h
6595         (MonoDebugClassEntry): Moved the definition of this struct into
6596         mono-debug.c to make it private.
6597
6598         * mono-debug.c
6599         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
6600         type table per symbol file, we don't need to store the symfile id
6601         any longer.
6602
6603 2007-09-24  Martin Baulig  <martin@ximian.com>
6604
6605         Create one type table per symbol file, since a `MonoClass *' gets
6606         invalid when its image is unloaded.
6607
6608         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
6609         (MonoDebugHandle): Added `type_table'.
6610
6611 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
6612
6613         * mempool.c, mempool.h: added mono_mempool_new_size () API
6614         to be able to specify a smaller initial size for the pool.
6615         Adjusted the code to slowly increase pool size before using
6616         the previous default size.
6617         * image.c: use a small initial size for image mempools.
6618
6619 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
6620
6621         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
6622         Fixes ##320990.
6623
6624         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
6625         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
6626
6627 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
6628
6629         * metadata.c (mono_type_create_from_typespec): Remove an invalid
6630         free. Fixes #327438.
6631
6632 2007-09-21  Raja R Harinath  <harinath@gmail.com>
6633
6634         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
6635         generic instantiations, etc.
6636         <MONO_TYPE_ARRAY>: Likewise.
6637
6638 2007-09-21  Martin Baulig  <martin@ximian.com>
6639
6640         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
6641         these structs were never defined.
6642         (MonoDebugHandle): Removed the `_priv' field, it was never used.
6643
6644 2007-09-21  Martin Baulig  <martin@ximian.com>
6645
6646         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
6647
6648 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
6649
6650         * image.c: removed the guid hash tables: we can get the same info
6651         without the additional memory usage hit (partially fixes also bug #327052).
6652
6653 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6654
6655         * profiler.h, profiler-private.h, profiler.c: add a new profiler
6656         event to handle unloading methods. After the event is called, the
6657         corresponding MonoMethod* must be considered invalid.
6658         * loader.c (mono_free_method): call the new mono_profiler_method_free
6659         event.
6660
6661 2007-09-20  Mark Probst  <mark.probst@gmail.com>
6662
6663         * domain-internals.h: New flag in MonoJitInfo which marks shared
6664         generic methods.  New hash table (shared_generics_hash) in
6665         MonoDomain to keep track of shared generic methods.  Prototypes
6666         for functions to register and lookup shared generic methods.
6667
6668         * domain.c: Support for registering and looking up shared generic
6669         methods via a hash table (shared_generics_hash) in MonoDomain.
6670
6671         * class-internals.h: New exception to signal failure of shared
6672         compilation of a generic method.  New counters for generics
6673         sharing in MonoStats.
6674
6675 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
6676
6677         * image.c, metadata-internals.h: don't keep a file descriptor open
6678         for loaded assemblies (bug#325988).
6679
6680 2007-09-19  Raja R Harinath  <rharinath@novell.com>
6681
6682         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
6683         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
6684         use the corresponding datatypes.
6685         (type_in_image): Update to changes.
6686         (CleanForImageUserData): Simplify.
6687         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
6688         Avoid quadratic behaviour in handling the "stolen" list by
6689         separating the filter predicate out, and by prepending the stolen
6690         items rather than appending them.
6691         (steal_ginst_in_image): Likewise.
6692         (mono_metadata_clean_for_image): Update to changes.
6693
6694 2007-09-19  Martin Baulig  <martin@ximian.com>
6695
6696         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
6697
6698 2007-09-19  Martin Baulig  <martin@ximian.com>
6699
6700         * mono-debug.c (mono_debug_cleanup): Don't call
6701         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
6702
6703 2007-09-19  Raja R Harinath  <harinath@gmail.com>
6704
6705         Fix crash on 'make run-test' in mcs/errors
6706         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
6707         Avoid more potential allocations in mono_class_from_mono_type.
6708         (ginst_in_image): Update to changes.
6709         (gclass_in_image): Rearrange slightly.
6710
6711 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6712
6713         * class.c (mono_class_init): Move the code that sets up class->methods to 
6714         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
6715
6716         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
6717         canonical instance of an inflated generic signature.
6718         (mono_type_create_from_typespec): Remove an invalid free.
6719
6720         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
6721
6722 2007-09-18  Marek Habersack  <mhabersack@novell.com>
6723
6724         * domain-internals.h: added a declaration of the
6725         mono_assembly_load_full_nosearch internal function.
6726
6727         * assembly.c (mono_assembly_load_with_partial_name): use
6728         mono_try_assembly_resolve return value properly.
6729         (mono_assembly_load_full_nosearch): copied the function body from
6730         mono_assembly_load_full, without the code to invoke assembly
6731         search hooks.
6732         (mono_assembly_load_full): calls the above new function and if the
6733         assembly is not resolved, invokes the search hooks.
6734
6735         * appdomain.c (mono_runtime_init): restore the global postload
6736         assembly search handlers.
6737
6738 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
6739
6740         * class.c (mono_class_init): Make sure class->methods and class->properties
6741         are never NULL in the generics case.
6742
6743         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
6744
6745 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
6746
6747         * metadata.c (free_generic_class): Disable some code to fix the build.
6748
6749         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
6750
6751         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
6752         from the image mempool.
6753
6754         * metadata.c (free_generic_class): Free more data from the inflated class.
6755
6756         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
6757
6758         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
6759         mempool.
6760         (mono_type_create_from_typespec): Ditto.
6761
6762         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
6763         MonoImage to the caller.
6764         (mono_init_internal): Save the opened image in a global variable.
6765         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
6766
6767         * reflection.c (resolve_object): Fix a leak.
6768
6769         * metadata.c: Fix the freeing of data in the generics caches.
6770         
6771         * metadata.c (free_generic_inst): Comment this out to fix the build.
6772         (free_generic_class): Ditto.
6773
6774         * metadata.c: Free cached generic methods, instantinations and classes when
6775         they are removed from the caches.
6776         (mono_metadata_free_type): Free the type itself.
6777
6778         * class.c: Free the result of mono_class_inflate_generic_type () in a few
6779         places.
6780
6781 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
6782
6783         * boehm-gc.c: restrict managed allocs to __thread supporting
6784         architectures.
6785
6786 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
6787
6788         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
6789         (mono_generic_class_get_class): Fix a leak.
6790
6791         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
6792         mono_metadata_free_type ().
6793         (mono_metadata_inflate_generic_inst): Fix a leak.
6794
6795 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6796
6797         * mono-debug.c (free_header_data): Fix a leak missed earlier.
6798
6799         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
6800         mempool.
6801
6802         * mono-debug.c (mono_debug_close_image): Fix call to 
6803         g_hash_table_remove ().
6804
6805 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
6806
6807         * icall-def.h: redirect all the string ctor to the managed
6808         CreateString () methods.
6809         * string-icalls.c, string-icalls.h: removed dead code for string
6810         ctors and icalls.
6811
6812 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6813
6814         * mono-debug.c: Fix memory leaks.
6815
6816 2007-09-14  Jonathan Chambers <joncham@gmail.com>
6817
6818         * threads-types.h: Implement mono_hazard_pointer_set and 
6819         mono_hazard_pointer_clear macros using do/while(0) to fix
6820         compilation with MSVC.
6821         
6822         Code is contributed under MIT/X11 license.
6823
6824 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
6825
6826         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
6827         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
6828
6829 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6830
6831         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
6832         icalls.
6833
6834 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
6835
6836         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
6837         managed-code allocated as well.
6838
6839 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6840
6841         * class.c (mono_class_is_assignable_from): Add support for generic variance.
6842
6843 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
6844
6845         * boehm-gc.c: fixed the build after the AOT changes.
6846
6847 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
6848
6849         * wrapper-types.h: Add an ALLOC wrapper type.
6850
6851         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
6852         reference managed allocator methods.
6853
6854 2007-09-12  Marek Safar  <marek.safar@gmail.com>
6855
6856         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
6857         of Type array and not MonoType, a fix suggested by Hari.
6858         
6859 2007-09-12  Jonathan Chambers <joncham@gmail.com>
6860
6861         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
6862         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
6863         
6864         Code is contributed under MIT/X11 license.
6865
6866 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6867
6868         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
6869
6870 2007-09-12  Marek Habersack  <mhabersack@novell.com>
6871
6872         * image.c (do_mono_image_open): if assembly file fails to open and
6873         MONO_IOMAP is in effect, try to find the path in a
6874         case-insensitive way.
6875
6876         * appdomain.c (mono_runtime_init): do not install postload hooks -
6877         tests show that MS.NET doesn't use anything of that sort to
6878         trigger the AppDomain.AssemblyResolve event.
6879         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
6880         made non-static.
6881         (mono_runtime_init): init portability helpers here.
6882
6883         * assembly.c (mono_assembly_load_with_partial_name): if other   
6884         attempts fail, trigger the AppDomain.AssemblyResolve event handler
6885         to resolve the assembly.
6886
6887         * domain-internals.h: added mono_try_assembly_resolve and marked
6888         it as internal.
6889
6890 2007-09-11  Jb Evain  <jbevain@novell.com>
6891
6892         * object-internals.h (MonoReflectionDynamicMethod): add
6893         a `MonoReflectionType *owner` field. The owner is used
6894         * reflection.c:
6895         (mono_reflection_create_dynamic_method): use the owner of the dynamic
6896         method as the class declaring the dynamic method.
6897         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
6898         dynamic method to the declaring type of the methodbuilder.
6899
6900 2007-09-11  Mark Probst  <mark.probst@gmail.com>
6901
6902         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
6903         rules for calling methods via reflection.
6904
6905 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
6906
6907         * reflection.c (resolve_object): Add support for MonoGenericClass. 
6908         Inflate MonoType's.
6909
6910 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
6911
6912         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
6913         provide a managed method that does fast allocations without needing
6914         a managed->unmanaged transition. Boehm GC implementation currently
6915         enabled for ptrfree objects on sane architectures.
6916
6917 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
6918
6919         * marshal.c, marshal.h: exported a couple of useful functions and
6920         added mono_mb_get_label () to easily handle backward branches.
6921
6922 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
6923
6924         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
6925
6926 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
6927
6928         * loader.c (find_method): Fixed the regression introduced while
6929         fixing bug #81466.
6930
6931 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
6932
6933         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
6934         well.
6935         
6936         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
6937         icall.c reflection.c: Pass a MonoGenericContext argument to 
6938         mono_lookup_dynamic_token ().
6939
6940         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
6941         #82744.
6942         
6943 2007-09-09  Robert Jordan  <robertj@gmx.net>
6944
6945         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
6946         for generic methods.
6947
6948         * object.c (mono_object_get_virtual_method): Handle generic methods.
6949         Fixes bug #78882.
6950
6951         Code is contributed under MIT/X11 license.
6952
6953 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
6954
6955         * image.c: fix locking in mono_image_load_file_for_image ().
6956
6957 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
6958
6959         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
6960         used only as a cache: added an icall to fill it.
6961
6962 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
6963
6964         * reflection.h: exposed mono_reflection_free_type_info
6965         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
6966         since mono_reflection_bind_generic_parameters makes a copy of it.
6967         * reflection.c (free_type_info): subinfos should be freed.
6968         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
6969         made non static.
6970         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
6971         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
6972         this fixes #82695 and #81726.
6973    
6974
6975 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
6976
6977         * process.h, process.c:  added support for user profile/info in
6978           ProcessStartInfo. For now only Windows works.
6979
6980 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
6981
6982         * metadata.c: consider the generic arguments when comparing
6983         signatures (bug #82614).
6984
6985 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6986
6987         * cil-coff.h, image.c: updated assembly loader to cope with the
6988         PE32+ 64 bit file format.
6989
6990 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
6991
6992         * assembly.c, class.c, domain.c, loader.c: remove useless
6993         inclusion of cil-coff.h.
6994
6995 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
6996
6997         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
6998         if interface is marked with CoClassAttribute. 
6999    
7000         Code is contributed under MIT/X11 license.
7001
7002 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7003
7004         * sgen-gc.c: ensure no object from the to space is copied again or finalized
7005         if it's seen twice in major collections.
7006
7007 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
7008
7009         * sgen-gc.c: big objects are not copied to the gray area, but they
7010         need to be considered for scanning, too, if they are brought alive
7011         by an object ready for finalizations or a survived one.
7012
7013 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
7014
7015         * sgen-gc.c: properly account the number of disappearing links when
7016         they are nullified.
7017
7018 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
7019
7020         * sgen-gc.c: share the code to scan the registered roots between the
7021         different types of collections.
7022
7023 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
7024
7025         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
7026
7027 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
7028
7029         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
7030         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
7031
7032 2007-08-28  Mark Probst  <mark.probst@gmail.com>
7033
7034         * security-manager.c (mono_security_manager_get_methods):
7035         LinkDemandSecurityException now has 2 arguments instead of 3.
7036
7037 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
7038
7039         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
7040         platforms which need it.
7041
7042 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
7043
7044         * sgen-gc.c: unregister thread data structures with a pthread_key_t
7045         dtor.
7046
7047 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
7048
7049         * threads.c: free the thread static data on thread exit.
7050
7051 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
7052
7053         * class.c: walk the hierarchy to find the generic definition for
7054         a class (fixes runtime part of bug #82498).
7055
7056 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
7057
7058         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
7059         ...
7060
7061         * image.c (mono_image_close): Here. Hopefully fixes #82510.
7062
7063 2007-08-24  Mark Probst  <mark.probst@gmail.com>
7064
7065         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
7066
7067 2007-08-24  Robert Jordan  <robertj@gmx.net>
7068
7069         * appdomain.c: don't perform the ':'->';' substitution on Win32.
7070
7071 2007-08-24  Jb Evain  <jbevain@novell.com>
7072
7073         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
7074         for byref types.
7075
7076 2007-08-24  Mark Probst  <mark.probst@gmail.com>
7077
7078         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
7079         #82286.
7080
7081 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
7082
7083         * assembly.c: Fix a warning.
7084         
7085 2007-08-23  Marek Habersack  <mhabersack@novell.com>
7086
7087         * appdomain.c: parse the <runtime> section looking for the probing
7088         element with the 'privatePath' attribute, which sets additional
7089         directories in which the runtime should look for assemblies.
7090
7091 2007-08-23  Robert Jordan  <robertj@gmx.net>
7092
7093         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
7094         Fixes #82499.
7095
7096 2007-08-23  Martin Baulig  <martin@ximian.com>
7097
7098         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
7099         _mono_debug_init_corlib() and remove it from the header file.
7100
7101 2007-08-23  Martin Baulig  <martin@ximian.com>
7102
7103         * mono-debug-debugger.c
7104         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
7105         don't notify the debugger about it.
7106
7107         * mono-debug-debugger.h
7108         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
7109
7110 2007-08-23  Robert Jordan  <robertj@gmx.net>
7111
7112         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
7113         Code is contributed under MIT/X11 license.
7114
7115 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
7116
7117         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
7118
7119 2007-08-22  Martin Baulig  <martin@ximian.com>
7120
7121         * mono-debug.c: Store debugging info on a per-domain basis and
7122         free it on domain unload.  Add support for unloading symbol files.
7123
7124         * mono-debug.h
7125         (MonoDebugList): New typedef.
7126         (MonoSymbolTable):
7127         - add `data_tables and `type_table'.
7128         - replace 'symbol_files' and `num_symbol_files' with a
7129           `MonoDebugList *'.
7130         (mono_debug_data_table): Removed.
7131         (mono_debug_list_add): New public function.
7132         (mono_debug_list_remove): New public function.
7133         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
7134         (mono_debug_init_2_memory): Renamed into
7135         mono_debug_open_image_from_memory().
7136         (mono_debug_close_image): New public function.
7137         (mono_debug_domain_create): Likewise.
7138         (mono_debug_domain_unload): Likewise.
7139         (MONO_DEBUGGER_VERSION): Bump to 60.
7140
7141         * mono-debug-debugger.h
7142         (MonoDebuggerEvent):
7143         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
7144         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
7145         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
7146         - rename `THREAD_CREATED' and `THREAD_EXITED' into
7147           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
7148         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
7149           meaning.
7150         (mono_debugger_add_symbol_file): Removed.
7151         (mono_debugger_add_type): Removed.
7152         (mono_debugger_lookup_type): Removed.
7153         (mono_debugger_lookup_assembly): Removed.
7154
7155         * domain.c
7156         (mono_domain_create): Call mono_debug_domain_create().
7157         (mono_init_internal): Call mono_debug_init_corlib().
7158
7159         * assembly.c
7160         (mono_assembly_close): Call mono_debug_close_image().
7161
7162 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
7163
7164         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
7165         mmap call.
7166
7167 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
7168
7169         * sgen-gc.c: ensure section->pin_queue_end is initialized
7170         correctly when non pinning objects in the section have been found.
7171
7172 2007-08-22  Marek Habersack  <mhabersack@novell.com>
7173
7174         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
7175         containing a list of directories separated by ':'. MSDN docs say
7176         the directories should be separated with ';'. Part of a bugfix for
7177         bug #81446
7178
7179 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
7180
7181         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
7182         it should MonoType and not MonoClass.
7183
7184 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
7185
7186         * culture-info-table.h : regenerated.
7187
7188 2007-08-20  William Holmes  <billholmes54@gmail.com>
7189
7190         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
7191          to call ReplaceFile Kernel32 on windows or in io-layer.
7192         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
7193         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
7194          as an internal call.
7195
7196         Code is contributed under MIT/X11 license.
7197
7198 2007-08-20  Jb Evain  <jbevain@novell.com>
7199
7200         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
7201         and MONO_EXCEPTION_FIELD_ACCESS.
7202
7203         * debug-helpers.[c|h]: new mono_field_full_name function.
7204
7205 2007-08-20  Mark Probst  <mark.probst@gmail.com>
7206
7207         * class.c: Removed class_security_level() and moved it to
7208         security-core-clr.c.
7209
7210         * security-core-clr.c, security-core-clr.h: class_security_level()
7211         is now public and renamed to mono_security_core_clr_class_level().
7212         It also looks for security attributes in the classes a class is
7213         nested in.
7214
7215 2007-08-20  Mark Probst  <mark.probst@gmail.com>
7216
7217         * security-core-clr.c, security-core-clr.h: CoreCLR security
7218         utility functions.
7219
7220         * Makefile.am: Added security-core-clr.[ch].
7221
7222         * security-manager.c, security-manager.h: Functions and enum for
7223         setting and getting the security mode.
7224
7225         * class.c: CoreCLR security checks.
7226
7227 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
7228
7229         * icall-def.h, process.c, process.h: implemented icall to get
7230         user/system processor times.
7231
7232 2007-08-17  Mark Probst  <mark.probst@gmail.com>
7233
7234         * domain.c, threads.c, class-internals.h, domain-internals.h: New
7235         reader-lock-free jit_info_table.
7236
7237 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
7238
7239         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
7240
7241         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
7242
7243         * object-internals.h (MonoException): Add missing _data member.
7244
7245 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
7246
7247         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
7248         checking that only methods with matching qname or fqname are picked
7249         from implemented interfaces.
7250
7251 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7252
7253         * verify.c (do_newarr):added, do type verification of
7254         newarr ops, push the right value on the eval stack.
7255         * verify.c (mono_method_verify): use do_newarr
7256
7257
7258 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7259
7260         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
7261         factored the common code into get_boxable_mono_type, which
7262         is now using mono_type_get_full, this fixed byref related tests.
7263
7264 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
7265
7266         * class.c: added mono_type_get_full, this function has the same
7267         behavior of mono_class_get_full but the returned MonoType has
7268         all metadata of the associated token in case of a typespec token.
7269         * class.c: added mono_type_retrieve_from_typespec, used by 
7270         mono_type_get_full to retrieve the token type.
7271         * class.c (mono_class_create_from_typespec): changed to use
7272         mono_type_retrieve_from_typespec.
7273         * class.c (mono_ldtoken): changed to use mono_type_get_full
7274         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
7275         * class-internals.h: exported mono_type_get_full for internal use.
7276
7277 2007-08-16  Jb Evain  <jbevain@novell.com>
7278
7279         * domain.c (supported_runtimes): add entry for
7280         the 'moonlight' runtime version.
7281
7282 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7283
7284         * verify.c (mono_method_verify): small typo sliped in.  
7285
7286 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7287
7288         * verify.c (do_unbox_value): added, do type verification of
7289         unboxing ops
7290         * verify.c (mono_method_verify): use do_unbox_value
7291
7292
7293 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7294
7295         * verify.c (dump_stack_value): fixed typo, was printing string
7296         instead of object on stack.
7297         * verify.c (do_box_value): moved the byref check up as it leads
7298         to invalid code and should be done earlier.
7299         * verify.c: improved error messages for and ldobj
7300
7301 2007-08-15  William Holmes  <billholmes54@gmail.com>
7302
7303         * marshal.c (emit_marshal_custom): Omit the call to 
7304           marshal_native_to_managed when calling native to managed 
7305           and the argument is specified as an out argument.
7306
7307         Code is contributed under MIT/X11 license.
7308
7309 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
7310
7311         * verify.c: fixed the type checks for generics, function pointers and vectors.
7312         Added type verification for ldobj and ldtoken. The verifier
7313         would segfault if header or signature of a method contained references
7314         to non-existant types.
7315
7316 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
7317
7318         * marshal.c (cominterop_get_ccw): Patch from
7319         Bill Holmes to no walk up interface hierarchy. 
7320         All parent methods should be present in the interface for COM.
7321    
7322         Code is contributed under MIT/X11 license.
7323
7324 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
7325
7326         * marshal.c (emit_marshal_com_interface): Patch from
7327         Bill Holmes to handle COM Interfaces as return values
7328         for native->managed calls.
7329    
7330         Code is contributed under MIT/X11 license.
7331
7332 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
7333
7334         * marshal.c (cominterop_get_idispatch_for_object): Implement
7335         for runtime callable wrappers.
7336    
7337         Code is contributed under MIT/X11 license.
7338
7339 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
7340
7341         * pedump.c (main): changed from mono_init to mono_init_from_assembly
7342         so 2.0 types are accessible
7343
7344
7345 2007-08-13  Miguel de Icaza  <miguel@novell.com>
7346
7347         * domain.c (mono_init_internal): Call mono_assembly_load_friends
7348         once we load mscorlib.   Due to the order in which we initialize,
7349         the mono_assembly_load_full routine that loads mscorlib did not
7350         load friends.   We now load it once we load the
7351         mono_defaults.internals_visible_class class. 
7352
7353         * assembly.c: Expose the mono_load_friend_assemblies method.
7354
7355 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
7356
7357         * verify.c: improved the handling of boxing, better
7358         type checking for unary ops and conversion. Fix bug
7359         regarding managed pointer compatibility checking
7360
7361 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
7362
7363         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
7364
7365         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
7366
7367 2007-08-09  Raja R Harinath  <rharinath@novell.com>
7368
7369         * reflection.c (dup_type): Remove.
7370         * class.c (dup_type): Remove.
7371         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
7372         instead of the dodgy 'dup_type'.
7373         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
7374         handle the case where 'dup_type' needed the second argument.
7375
7376 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
7377
7378         * domain.c: Fix a warning.
7379
7380 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
7381
7382         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
7383         checking that methods with the same fqname are not overridden
7384         with a method from an ancestor.
7385
7386 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
7387
7388         * threads.c (free_thread_static_data_helper): Avoid a crash if
7389         thread->static_data is not yet set.
7390
7391 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
7392
7393         * marshal.c: Use correct image when emitting
7394         native wrapper for COM calls.
7395    
7396         Code is contributed under MIT/X11 license.
7397
7398 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
7399
7400         * icall-def.h, security.c, security.h :
7401           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
7402
7403 2007-08-07  Martin Baulig  <martin@ximian.com>
7404
7405         * mono-debug-debugger.h
7406         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
7407
7408         * domain.c (mono_domain_free): Call
7409         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
7410
7411 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
7412
7413         * verify.c (check_underflow, check_overflow): error message now returns IL offset
7414         * verify.c (in_same_block): code should test if either offset is inside the clauses
7415         * verify.c (mono_method_verify): push the exception into the eval stack of exception
7416         and filter blocks
7417
7418 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
7419
7420         * image.c (mono_image_close): Fix a leak.
7421
7422         * object.c (mono_runtime_invoke_array): Avoid using alloca.
7423
7424         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
7425
7426 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
7427
7428         * domain.c, threads.c, threads-types.h: fix memory retention issue
7429         with thread static variables not being cleared on domain unload.
7430         Reuse thread static slots after domain unload.
7431
7432 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
7433
7434         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
7435         nullable type.
7436
7437         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
7438         now done in mono_runtime_invoke_array.
7439
7440         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
7441         receiver is a nullable type.
7442
7443         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
7444         generic parameter.
7445
7446 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
7447
7448         * marshal.c: Implement COM Objects as return type for 
7449         managed->unmanaged calls. Added Release calls for COM Object
7450         out/return values in managed->unmanaged calls.
7451
7452         Code is contributed under MIT/X11 license.
7453
7454 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
7455
7456         * threads.h, threads-type.h: move the hazard pointer declarations
7457         to the private header.
7458
7459 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
7460
7461         * file-io.c, appdomain.c: memory leak fixes.
7462
7463 2007-08-02  Dick Porter  <dick@ximian.com>
7464
7465         * socket-io.c
7466         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
7467         SO_REUSEADDR setting into io-layer/sockets.c.
7468
7469 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
7470
7471         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
7472         from Object when called on a generic parameter. Fixes #82211.
7473
7474 2007-08-01  Dick Porter  <dick@ximian.com>
7475
7476         * file-io.c (convert_share): Test FileShare values bit-by-bit.
7477         Fixes bug 79250 yet again.
7478
7479 2007-07-30  Martin Baulig  <martin@ximian.com>
7480
7481         Merged the `debugger-dublin' branch.
7482
7483         * mono-debug.h
7484         (MonoDebugDataTable): New typedef.
7485         (MonoDebugMethodAddressList): New typedef.
7486         (MonoDebugWrapperData): Removed.
7487         (MonoDebugSymbolTable): Removed `current_data_table',
7488         `current_data_table_size', `current_data_table_offset'.
7489         (MonoDebugDataItemType): Moved into mono-debug.c.
7490         (MonoDebugMethodJitInfo): Remove `address'.
7491         (mono_debug_data_table): New global variable.
7492         (mono_debug_lookup_method_addresses): New public function.
7493         (mono_debug_find_method): Take a `MonoMethod *', not a
7494         `MonoDebugMethodInfo *'.
7495
7496         * mono-debug.c: Drop support for the old symbol tables.
7497
7498 2007-06-28  Martin Baulig  <martin@ximian.com>
7499
7500         * mono-debug.c (mono_debug_debugger_version): New public variable.
7501
7502 2007-07-31  William Holmes  <billholmes54@gmail.com>
7503
7504         * metadata.c Changed mono_type_create_from_typespec to not insert
7505           the type into the hash map until after
7506           do_mono_metadata_parse_type has completed.
7507         Fixes Bug #82194
7508         Code is contributed under MIT/X11 license.
7509
7510 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
7511
7512         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
7513         generic parameter. Fixes #82211.
7514
7515 2007-07-27  Jb Evain  <jbevain@novell.com>
7516
7517         * pedump.c (dump_metadata, dump_metadata_header): dump
7518         versions contained in the metadata header.
7519
7520 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
7521
7522         * threads.c: register small_id_table with the GC.
7523
7524 2007-07-27  Mark Probst  <mark.probst@gmail.com>
7525
7526         * threads.c, threads.h, class-internals.h, object-internals.h:
7527         Hazard pointers, to be used by lock-free parallel algorithms.
7528
7529 2007-07-26  Dick Porter  <dick@ximian.com>
7530
7531         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
7532         routine on non-windows platforms, as I've not managed to think of
7533         a non-kludgy way of doing this.  Finishes off bug 78739.
7534
7535 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
7536
7537         * object.c: properly setup interface_bitmap in proxy vtables.
7538
7539 2007-07-25  Marek Habersack  <mhabersack@novell.com>
7540
7541         * appdomain.c (get_shadow_assembly_location): do not use TickCount
7542         to create unique shadow copy target directories, use the domain's
7543         serial number instead. Each domain gets a unique target directory
7544         that way.
7545
7546         * domain.c (mono_domain_create): added code to increment domain
7547         shadow copy serial number and cache the value in the current
7548         domain structure.
7549
7550         * domain-internals.h (struct _MonoDomain): added a new field -
7551         shadow_serial to hold the serial number used in generation of
7552         shadow-copy directories. This is to make sure that the directory
7553         name is unique for each and every domain created. We avoid a race
7554         condition with overriding assemblies already in use by other app
7555         domains.
7556
7557 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
7558
7559         * class.c (mono_bounded_array_class_get): fixed memory leak when 
7560         binding generic parameters.
7561
7562 2007-07-24  Raja R Harinath  <rharinath@novell.com>
7563
7564         * metadata.c (do_mono_metadata_parse_generic_class): Use
7565         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
7566         error.
7567
7568 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
7569
7570         * loader.c, class-internals.h, reflection.c: removed the per-method
7571         generics hashtable: we use the global one through the call of
7572         mono_class_inflate_generic_method ().
7573
7574 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
7575
7576         * class.c, metadata.c, class-internals.h: introduce yet another
7577         generics global cache for inflated methods (fixes 98% of the perf
7578         issue in bug #81806).
7579
7580 2007-07-23  Raja R Harinath  <rharinath@novell.com>
7581
7582         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
7583         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
7584         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
7585         return a MonoGenericInst containing (a copy) of those types.
7586         (mono_metadata_inflate_generic_inst): Update to changes.
7587         (mono_metadata_parse_generic_inst): Likewise.
7588         (mono_get_shared_generic_inst): Likewise.
7589         * reflection.c (mono_class_bind_generic_parameters): Likewise.
7590         (mono_reflection_bind_generic_method_parameters): Likewise.
7591         * metadata-internals.h: Likewise.
7592         * icall.c (free_generic_context): Kill.
7593         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
7594
7595         * reflection.c (reflection_methodbuilder_to_mono_method): Use
7596         mono_metadata_type_dup.
7597         * marshal.c (mono_mb_create_method): Likewise.
7598
7599         * metadata.c (mono_metadata_type_dup): Rename from
7600         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
7601         MonoImage.  Handle a few more cases, esp. when no mempool is given.
7602         * marshal.c, metadata-internals.h: Update to changes.
7603
7604 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
7605
7606         * class.c: fixed a small leak for array classes and removed warning.
7607
7608 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
7609
7610         * loader.c (mono_method_get_param_token): Make this work on generic methods.
7611         Return 0x8000000 for return parameters. Fixes #82161.
7612
7613 2007-07-21  Marek Habersack  <grendello@gmail.com>
7614
7615         * appdomain.c (get_shadow_assembly_location): append the current
7616         ticks value to the path. Avoids overwriting the same assemblies by
7617         several threads at the same time.
7618
7619 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
7620         and Raja R Harinath  <rharinath@novell.com>
7621
7622         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7623         Simplify slightly.
7624         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
7625         property for testing if a method is a generic method definition.
7626
7627 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
7628
7629         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
7630
7631 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7632
7633         * verify.c: used function from private branch, reverted to the one in class.h 
7634
7635 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7636
7637         * verify.c: a typo slipped in and the code wont compile
7638
7639 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7640
7641         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
7642         disabled box instruction as it is doing the wrong thing
7643         improved stack dump messages, now it is easier to debug type related issues
7644
7645
7646 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
7647
7648         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
7649
7650 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7651
7652         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
7653         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
7654         grouped with class and valuetype. This change will simply 
7655         the code as it should be handled just like unmanaged pointers.
7656
7657 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7658
7659         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
7660
7661 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
7662
7663         * verify.c: several stack merge issues fixed, reference comparisons now
7664         check the type size. strict type check now works correctly.
7665         added more uses of IS_MANAGED_POINTER macro.
7666         fixed issues pointed by running the test suite against .net.
7667         
7668
7669 2007-07-19  Mark Probst  <mark.probst@gmail.com>
7670
7671         * class.c, loader.c, class-internals.h: Removed the
7672         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
7673         defines.
7674
7675         * icall.c: Better error checking in some internal reflection
7676         methods.
7677
7678 2007-07-18  William Holmes  <billholmes54@gmail.com>
7679
7680         * filewatcher.c : removed unused variable 'filename' in 
7681           ves_icall_System_IO_FSW_SupportsFSW
7682
7683 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
7684
7685         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
7686         obsolete, removed.
7687
7688 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
7689
7690         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
7691         
7692         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
7693
7694 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
7695
7696         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7697         Implement generics support.
7698         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7699
7700         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
7701         type_args and method_args arguments.
7702         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
7703         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
7704         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
7705
7706 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
7707
7708         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
7709           It adds a rootimage parameter to mono_reflection_get_type_internal,
7710           adds new function mono_reflection_get_type_with_rootimage and use
7711           the rootimage to resolve the types instead of the current image
7712
7713 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7714
7715         * culture-info-table.h: Forgot to update after r78304.
7716
7717 2007-07-13  Raja R Harinath  <rharinath@novell.com>
7718
7719         * class.c (mono_class_is_open_constructed_type)
7720         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
7721
7722 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
7723
7724         * class.c (mono_bounded_array_class_get):  method fails if used with
7725         an incomplete TypeBuilder enum (no basetype field), fixed it by 
7726         avoiding calculating the size for such array as it cannot be instantiated.
7727         Fix bug #82015
7728
7729 2007-07-12  Raja R Harinath  <rharinath@novell.com>
7730
7731         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
7732         field.
7733         * metadata.c, reflection.c: Update to changes.
7734
7735 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
7736
7737         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
7738         mono_class_is_valid_enum, they are used to valide a enum when loading.
7739         * reflection.c: used new functions to throw TypeLoadException when and
7740         invalid enum is build with TypeBuilder. Fixes #82018
7741   
7742 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7743
7744         * object.c: forgot commit of mono_class_setup_methods () to access
7745         iface->methods.
7746         * object-internals.h: added a few more handy fields to
7747         MonoIMTCheckItem.
7748
7749 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
7750
7751         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
7752         iface->methods.
7753
7754 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
7755
7756         * class-internals.h, object-internals.h, object.c: IMT-based
7757         interface invocation core from Massimiliano Mantione
7758         (massi@ximian.com) with a reworked arch-specific interface,
7759         bsearch implementation and a few bugfixes and memory savings by me.
7760
7761 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
7762
7763         * class.c (mono_class_create_from_typedef): mono would segfault if 
7764         an enum did not have a __value field. It now throws a TypeLoadException
7765         for such cases. Fix bug #82022
7766
7767 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7768
7769         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
7770
7771 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7772
7773         * class.c (mono_class_init): If a class is already inited but has
7774         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
7775
7776 2007-07-09  Mark Probst  <mark.probst@gmail.com>
7777
7778         * class.c: Properly handle the case of an unimplemented interface
7779         method.  Fixes: 81673.
7780
7781 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
7782
7783         * class-internals.h, object.c: cleanup patch from massi: use
7784         MonoVTable->interface_bitmap since the vtable interfaces offset array
7785         is going away.
7786
7787 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
7788
7789         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
7790         GetMDStreamVersion icall instead.
7791
7792 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
7793
7794         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
7795         not use mono_dl_build_path() with a full library name: makes
7796         fallbacks to libgaim and libfam work.
7797
7798 2007-07-06  William Holmes  <billholmes54@gmail.com>
7799
7800         * assembly.c: Added a continue statement in probe_for_partial_name when
7801          parse_assembly_directory_name fails.  Fixes : 82002
7802
7803 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
7804
7805         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
7806         and added a verification  for TYPEDBYREF.
7807         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
7808         make native int interchangeable with int32 and some small cleanup and formating.
7809         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
7810         handle byref of byref.
7811         * verify.c (push_local): handle byref of byref.
7812         * verify.c (do_binop): invalid mix of values is unverifiable
7813         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
7814         added visibility checks
7815         * verify.c (field related method): added visibility checks
7816         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
7817
7818 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
7819
7820         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
7821         string.
7822
7823 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
7824
7825         * profiler.c (mono_profiler_load): Fix an off-by-one error.
7826
7827         * marshal.c (emit_marshal_string): When returning a string from managed code,
7828         allways make a copy even for unicode strings. Fixes #81990.
7829
7830 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
7831
7832         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
7833         of byref generic inst types (bug #81997).
7834
7835 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
7836
7837         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
7838         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
7839
7840 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
7841
7842         * marshal.c (emit_marshal_string): Add support for unicode strings in
7843         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
7844
7845 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
7846
7847         * verify.c: field load/store are now verified, missing only access checks now
7848
7849 2007-06-28  Martin Baulig  <martin@ximian.com>
7850
7851         * mono-debug.c (mono_debug_debugger_version): New public variable.
7852
7853 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
7854
7855         * locales.c: When constructing DateTimeFormat or NumberFormat for
7856         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
7857         MonoCultureInfo contructed from the current locale is always
7858         read-only and has UseUserOverride set to true. All MonoCultureInfo
7859         instances returned for GetCultures have both IsReadOnly and
7860         UseUserOverride set to true. Fixes part of bug #81930.
7861
7862 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
7863
7864        * icall-def.h: Update System.__ComObject icalls
7865        * marshal.c: Avoid managed transition (and object creation)
7866        when looking up COM interface in RCW.
7867        * marshal.h: Ditto.
7868        
7869        Code is contributed under MIT/X11 license.
7870
7871 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
7872
7873         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
7874         to avoid crashes during assembly unloading.
7875
7876 2007-06-22  Raja R Harinath  <rharinath@novell.com>
7877
7878         Fix MethodInfo.IsGenericMethodDefinition
7879         * reflection.c (mono_reflection_bind_generic_method_parameters):
7880         Rearrange code to ensure we always uses a generic method definition.
7881         * class.c (mono_class_inflate_generic_method_full): Set
7882         'generic_container' field only for generic method definitions.
7883         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
7884         Use presense of 'generic_container' field as indication of being a
7885         generic method definition.
7886
7887 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
7888
7889         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7890
7891         * object-internals.h: Reflect changes in the layout of the managed Delegate
7892         class.
7893         
7894         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
7895         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
7896         runtime memory used by the dynamic method. Fixes #77146.
7897
7898 2007-06-21  Dick Porter  <dick@ximian.com>
7899
7900         * file-io.h: 
7901         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
7902         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
7903         81767.
7904
7905 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7906
7907         * reflection.c (method_encode_methodspec): Add a tripwire.
7908         * class.c (inflate_generic_type): The fully open generic type is
7909         not the same as the generic type definition.
7910
7911 2007-06-21  Martin Baulig  <martin@ximian.com>
7912
7913         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
7914
7915         * mono-debug-debugger.h
7916         (MonoDebuggerBreakpointInfo): Removed.
7917         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
7918         (mono_debugger_remove_breakpoint): Likewise.
7919         (mono_debugger_breakpoint_callback): Likewise.
7920         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
7921
7922 2007-06-21  Raja R Harinath  <rharinath@novell.com>
7923
7924         * metadata.c (mono_metadata_lookup_generic_class): The fully open
7925         generic type is not the same as the generic type definition.
7926         * class.c (mono_generic_class_get_class): Likewise.
7927
7928 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
7929
7930         * icall.c: The second argument to 
7931         System.Reflection.MethodBase.GetMethodFromHandleInternalType
7932         is a MonoType not a MonoClass.
7933
7934 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7935
7936         * verify.c: support for function pointers in the verifier
7937
7938 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
7939
7940         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
7941
7942 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
7943
7944         * assembly.c: removed Mono.Data.SqliteClient from the list of
7945         forward-compatible assemblies as it breaks the ABI (bug #81899).
7946
7947 2007-06-19  Raja R Harinath  <rharinath@novell.com>
7948
7949         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
7950         lookup/update with the loader lock.
7951         * reflection.c (mono_class_bind_generic_parameters): No need to
7952         protect mono_metadata_lookup_* with the loader lock.
7953         * class.c (inflate_generic_type): Likewise.
7954         
7955         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
7956         on a generic instantiated type.
7957
7958 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
7959
7960         *verify.c: produce meanfull error messages on verification error
7961         *verify.c: fixed some cases of verification errors reported as validation errors
7962         *pedump.c: fixed the error name array, now it shows validation errors properly
7963         *verify.h: fixed the contant that should be used for verification errors
7964
7965 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
7966
7967         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
7968         for bug #77596, 81858 and 80743 (generics data structures on domain
7969         unload).
7970
7971 2007-06-15  Raja R Harinath  <rharinath@novell.com>
7972
7973         Avoid allocating 'MonoGenericContext' on the heap.
7974         * class-internals (_MonoMethodInflated::context): Make field
7975         inline, not a pointer.
7976         * loader.c (method_from_methodspec): Allocate 'new_context' on the
7977         stack.  Use the context embedded within the inflated method as the
7978         hash key, rather than 'new_context'.
7979         * class.c (inflate_generic_context): Simplify.  Return a struct
7980         rather than allocating on the heap.
7981         (mono_class_inflate_generic_method_full): Update to changes.  Now,
7982         doesn't salt away a copy of the context -- simplifying the
7983         lifetime rules of a 'MonoGenericContext *'.
7984         (mono_method_get_context): Return pointer to embedded context.
7985         (setup_generic_array_ifaces): Allocate temporary context on stack.
7986         * reflection.c (inflate_mono_method): Likewise.
7987         (mono_reflection_bind_generic_method_parameters): Likewise.
7988         Use the context embedded within the inflated method as the hash key.
7989
7990         Avoid a source of allocation of 'MonoGenericContext'.
7991         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
7992         and 'cached_context' fields into embedded 'MonoGenericContext' field.
7993         * class.c: Update to changes.
7994         (mono_generic_class_get_context): Simplify drastically.  Now just
7995         returns a pointer to the field.
7996         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
7997         argument as a const pointer.
7998         (mono_metadata_generic_context_equal): Likewise.
7999         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
8000         Update to changes.
8001
8002 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
8003
8004         * verify.c improved the handling of brtrue/brfalse, factored out common code
8005
8006 2007-06-14  Raja R Harinath  <rharinath@novell.com>
8007
8008         Kill MonoGenericMethod.
8009         * class-internals.h (MonoGenericContext::method_inst): Rename from
8010         'gmethod' and convert to a MonoGenericInst.
8011         (MonoGenericMethod): Remove.
8012         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
8013         * loader.c (method_from_methodspec): Update to changes.  Use a
8014         MonoGenericContext as the key to the hashtable.
8015         * metadata.c (mono_metadata_generic_context_equal): Rename from 
8016         'mono_metadata_generic_method_equal' and take MonoGenericContext.
8017         (mono_metadata_generic_context_hash): Likewise from
8018         'mono_metadata_generic_method_hash'.  Change hash function.
8019         (mono_metadata_load_generic_params): Update to changes.
8020         (mono_get_shared_generic_method): Remove.
8021         * metadata-internals.h (mono_get_shared_generic_method): Remove.
8022         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
8023         (inflate_generic_context): Likewise.
8024         (mono_class_inflate_generic_method_full): Likewise.
8025         (setup_generic_array_ifaces): Likewise.
8026         (mono_class_create_from_typespec): Likewise.
8027         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
8028         (method_encode_methodspec): Update callsite.
8029         (reflection_methodbuilder_to_mono_method): Update to changes.
8030         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
8031         MonoGenericContext as the key to the hashtable.
8032         (inflate_mono_method): Update to changes.
8033
8034         * class-internals.h (MonoGenericMethod::container): Remove.
8035         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
8036
8037 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
8038
8039         * profiler-private.h, profiler.c, profiler.h: added API to profile
8040         exception events.
8041
8042 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
8043
8044         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
8045
8046 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
8047
8048         * verify.c: method invocation is now validated, now we verify parameter types on stack.
8049         Fixed overflow and underflow not aborting the verification process.
8050
8051 2007-06-13  Mark Probst  <mark.probst@gmail.com>
8052
8053         * class-internals.h (MonoStats): Added stats entries for dynamic
8054         code allocations.
8055
8056 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
8057
8058         * loader.c (mono_free_method): Free header->locals and header->clauses.
8059
8060         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
8061         dynamic case.
8062
8063         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
8064
8065         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
8066
8067 2007-06-12  Raja R Harinath  <rharinath@novell.com>
8068
8069         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
8070         the tables.
8071
8072 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8073
8074         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
8075
8076 2007-06-11  Raja R Harinath  <harinath@gmail.com>
8077
8078         MonoGenericMethod on a diet
8079         * class-internals.h (_MonoMethodInflated::reflection_info): Move
8080         here ...
8081         (_MonoGenericMethod::reflection_info): ... from here.
8082         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
8083         Update to changes.
8084         * reflection.c (inflate_mono_method): Likewise.
8085         (mono_reflection_bind_generic_method_parameters): Likewise.
8086
8087 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8088
8089         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
8090         *verify.c: factored long ldarg forms to share code with short forms
8091
8092 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
8093
8094         *verify.c: fixed code formating factored some duplicate code
8095         into a new function
8096
8097         *verify.h: fixed binary incompatibility introduced earlier
8098
8099         *pedump.c: fixed formating
8100
8101 2007-06-11  Raja R Harinath  <harinath@gmail.com>
8102
8103         Fix assertion when disassembling Mono.C5.dll
8104         * loader.c (method_from_methodspec): Avoid inflating a method
8105         twice with the same context.  If the methodref is inflated, use
8106         the declaring method instead.
8107
8108         * class.c (mono_class_from_generic_parameter): Fix case similar to
8109         bug #81830 handled below, but for method containers.
8110
8111 2007-06-10  Raja R Harinath  <harinath@gmail.com>
8112
8113         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
8114         get_shared_generic_class.  Directly inflate the instance.
8115         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
8116         (inflate_generic_class): Delete.
8117         (get_shared_generic_class): Delete.  Move setting of
8118         'cached_class' and 'cached_context' ...
8119         * metadata.c (mono_metadata_lookup_generic_class): ... here.
8120
8121         * metadata.c (mono_metadata_lookup_generic_class): Change
8122         signature to take the components of a MonoGenericClass rather than
8123         an allocated MonoGenericClass.  Change semantics to be intern-like.
8124         * reflection.c (mono_class_bind_generic_parameters): Update to
8125         changes.  Make locking region tighter.
8126         * class.c (inflate_generic_class): Update to changes.
8127         (get_shared_generic_class): Likewise.
8128         * metadata-internals.h: Likewise.
8129
8130         * reflection.c (mono_class_bind_generic_parameters): Take and
8131         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
8132         (mono_reflection_bind_generic_parameters): Use
8133         'mono_class_bind_generic_parameters' rather than duplicate the code.
8134         * class.c (mono_bounded_array_class_get): Update to changes.
8135         * object-internals.h: Likewise.
8136
8137         * reflection.c (mono_class_bind_generic_parameters): Only support
8138         parameterizing generic type definitions.  Remove support for other
8139         open types.
8140
8141 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
8142
8143         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
8144
8145         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
8146         in the dynamic case.
8147
8148 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
8149
8150         * threads.c: When cleaning up thread, reset the Background bit.
8151         Fixes bug #81720.
8152
8153 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
8154
8155        * metadata.c: Move variable declarations to top of scope.
8156        * verify.c: Move variable declarations to top of scope.
8157
8158        Code is contributed under MIT/X11 license.
8159
8160 2007-06-08  Raja R Harinath  <rharinath@novell.com>
8161
8162         * reflection.c (mono_class_bind_generic_parameters): Replace
8163         open-coded loop with mono_metadata_inflate_generic_inst.
8164
8165         * class.c (get_shared_generic_class): Don't call
8166         mono_get_shared_generic_inst.  Use the container's own
8167         'class_inst'.
8168
8169         * metadata.c (mono_metadata_load_generic_params): Move
8170         initialization of 'context' field here from ...
8171         * class.c (mono_class_create_from_typedef): ... here, and ...
8172         * loader.c (mono_get_method_from_token): ... here.
8173
8174         * class.c (get_shared_generic_class): Rename from
8175         mono_get_shared_generic_class and make static.
8176         (mono_get_shared_generic_inst): Move to metadata.c.
8177         * loader.c (mono_get_shared_generic_method): Likewise.
8178         * class-internals.h, metadata-internals.h: Update to changes.
8179
8180         Fix #81830
8181         * class.c (mono_class_from_generic_parameter): Don't assume a
8182         generic container owner exists.  Generic containers from monodis
8183         don't have any.
8184
8185 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
8186
8187         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
8188         * verify.h: new typedefs to returns the non-verifiable status
8189         * verify.c: initial implementation of generics, stack merging and object compatibility check
8190
8191 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8192
8193         * class.c, image.c, class-internals.h (MonoImage): class_cache is
8194         a MonoInternalHashTable again (fixed bug in internal hash table
8195         code).
8196
8197 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8198
8199         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
8200         MonoInternalHashTable again (fixed bug in internal hash table
8201         code).
8202
8203 2007-06-06  Mark Probst  <mark.probst@gmail.com>
8204
8205         * class.c, image.c, class-internals.h, domain.c,
8206         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
8207         changes.  Have to figure out what makes them break the SWF
8208         regression.
8209
8210 2007-06-04  Mark Probst  <mark.probst@gmail.com>
8211
8212         * class.c, image.c, class-internals.h (MonoImage): class_cache is
8213         a MonoInternalHashTable now.
8214
8215 2007-06-04  Mark Probst  <mark.probst@gmail.com>
8216
8217         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
8218         MonoInternalHashTable now.
8219
8220 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
8221
8222         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
8223         invoke_impl code.
8224
8225         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
8226
8227         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
8228         dependent trampoline.
8229
8230         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8231
8232         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
8233
8234 2007-05-29  Robert Jordan  <robertj@gmx.net>
8235
8236         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
8237
8238 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
8239
8240         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
8241
8242 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
8243
8244        * marshal.c: Fix interface lookup loops for
8245        cominterop_get_com_slot_for_method and 
8246        cominterop_get_method_interface. Only need to lookup
8247        if type is a class, else use interface type method is on.
8248
8249        Code is contributed under MIT/X11 license.
8250
8251 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
8252
8253         * reflection.c: HasSecurity can be present even if no specially 
8254         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
8255         SecurityAttribute). Fix CAS regression tests on buildbot.
8256
8257 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
8258
8259        * appdomain.c: Add configure checks for header files.
8260        * image.c: Add configure checks for header files.
8261        * file-io.c: Add configure checks for header files.
8262        * debug-mono-symfile.c: Add configure checks for header files.
8263        * threadpool.c: Add configure checks for header files.
8264        * console-io.c: Add configure checks for header files.
8265        * profiler.c: Add configure checks for header files.
8266        * rawbuffer.c: Add configure checks for header files.
8267        * icall.c: Add configure checks for header files.
8268        * rand.c: Add configure checks for header files.
8269        * socket-io.c: Add configure checks for header files.
8270
8271        Code is contributed under MIT/X11 license.
8272
8273 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
8274
8275         * reflection.c (mono_custom_attrs_from_builders): Remove the 
8276         assertion as it breaks the build.
8277         
8278         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
8279
8280         * reflection.c (lookup_custom_attr): Make a copy here too.
8281
8282         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
8283         dynamic images.
8284
8285         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
8286         images.
8287
8288         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
8289         info.
8290
8291 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
8292
8293         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
8294         (load_cattr_value): Ditto.
8295
8296 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
8297
8298         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
8299
8300 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
8301
8302         * threads.c: In "start_wrapper", set apartment_state to MTA if
8303         apartment_state is Unknown and we're running on 2.0 profile or
8304         higher.
8305         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
8306         to main method, then set apartment_state to Unknown on 1.0 profile,
8307         and MTA on 2.0 profile.
8308
8309 2007-05-16  Jb Evain  <jb@nurv.fr>
8310
8311         * class-internals.h (MonoDefaults): Add an attribute_class and
8312           customattribute_data_class.
8313         * domain.c (mono_init_internal): Populate them.
8314         * reflection.c: Use them to remove duplicates. Make a vew
8315         MonoClass variables `static'.
8316
8317 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
8318
8319         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
8320         step in implementing IMT, so that all isinst checks now can go
8321         through the bitmap.
8322         This was needed because vtables for TransparentProxy need to look
8323         like the vtable of the "target" class, so they need to point to
8324         its interface bitmap directly.
8325
8326         * object.c: inside "mono_class_create_runtime_vtable" and
8327         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
8328
8329 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8330
8331         * object-internals.h
8332           culture-info.h : added territory field in MonoCulture and
8333           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
8334         * locales.c : fill territory field above too.
8335         * culture-info-table.h : regenerated.
8336
8337 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
8338
8339         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
8340         Fixes #81599.
8341
8342 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
8343
8344         * object.c: Always initialize apartment, even if 
8345         there is no custom attributes on entry point.
8346         
8347         Code is contributed under MIT/X11 license.
8348
8349 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
8350
8351         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
8352         * metadata.c: If no encoding is set, check for unicode
8353         on class.
8354         
8355         Code is contributed under MIT/X11 license.
8356
8357 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
8358
8359         * threads.c: Handle if mono_thread_current returns NULL 
8360         
8361         Code is contributed under MIT/X11 license.
8362
8363 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
8364
8365         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
8366         in start_wrapper. Added mono_thread_init_apartment_state and
8367         mono_thread_cleanup_apartment_state.
8368         * object.c: Initialize thread apartment state on main thread
8369         by checking for STAThreadAttribute on entry point.
8370         * object-internals.h: Add apartment_state field to MonoThread.
8371         * threads-types.h: Add unmanaged definition of 
8372         System.Threading.ApartmentState, MonoThreadApartmentState.
8373         
8374         Code is contributed under MIT/X11 license.
8375         
8376 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
8377
8378         * class.c: Fix windows build.
8379         * class-internals.h: Fix windows build.
8380         
8381         Code is contributed under MIT/X11 license.
8382
8383 2007-05-08  Robert Jordan  <robertj@gmx.net>
8384
8385         * process.c (CreateProcess_internal):
8386         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
8387         .CreateNoWindow was specified. Fixes #81496.
8388
8389 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
8390
8391         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
8392         step in implementing IMT, replaced it with two compact arrays
8393         (interfaces_packed and interface_offsets_packed) and a bitmap that
8394         is used for isinst checks (interface_bitmap).
8395
8396         * class.c: (compare_interface_ids): compare function to pass to
8397         bsearch when looking for an interface with a given id.
8398         (mono_class_interface_offset): reimplemented using bsearch on
8399         interfaces_packed, getting the offset from interface_offsets_packed.
8400         (print_implemented_interfaces): utility debugging function.
8401         (setup_interface_offsets): reworked to initialize interfaces_packed,
8402         interface_offsets_packed and interface_bitmap.
8403
8404         * object.c: replaced all accesses to "MonoClass.interface_offsets"
8405         with uses of interfaces_packed and interface_offsets_packed.
8406
8407 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
8408
8409         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
8410         mono_class_interface_offset prototype to wrap all accesses to
8411         "MonoClass.interface_offsets".
8412
8413         * class.c: Implemented mono_class_interface_offset, and wrapped all
8414         accesses to "MonoClass.interface_offsets".
8415
8416         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
8417         "MonoClass.interface_offsets".
8418
8419 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
8420
8421         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
8422         GetMethodFromHandle overloads (bug #78637).
8423
8424 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8425
8426         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
8427         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
8428
8429 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
8430
8431         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
8432         #81498.
8433
8434         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
8435         gracefully.
8436         (mono_custom_attrs_from_index): Ditto.
8437
8438         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
8439         Fixes #81501.
8440
8441 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
8442
8443         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
8444         is now allocated from a mempool.
8445
8446 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
8447
8448         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
8449         caller holds threads_lock, leading to deadlocks. Fixes #81476.
8450
8451 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
8452
8453         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
8454         mono_loader_clear_error () too late. Fixes #81463.
8455
8456 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
8457
8458         * culture-info-table.h : regenerated.
8459
8460 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
8461
8462         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
8463         is missing.
8464
8465 2007-04-25  Dick Porter  <dick@ximian.com>
8466
8467         * Makefile.am: Put the mingw enforced-optimisation back into the
8468         PLATFORM_WIN32 section.
8469
8470 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
8471
8472         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
8473         patch.
8474
8475         * image.c (mono_image_load_module): New API function to load a module reference.
8476
8477         * image.c (load_modules): Load modules lazily. Fixes #80812.
8478
8479         * class.c (mono_class_from_typeref): Use mono_image_load_module.
8480         
8481         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
8482
8483         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
8484         to mono_image_load_module_dynamic.
8485
8486 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
8487
8488         * marshal.c: Fix calling convention for CCW on non-windows
8489         platforms. STDCALL on windows, CDECL everywhere else to work 
8490         with XPCOM and MainWin COM.
8491         
8492         Code is contributed under MIT/X11 license.
8493
8494 2007-04-23  Martin Baulig  <martin@ximian.com>
8495
8496         Fix #80969.
8497
8498         * loader.c
8499         (method_from_memberref): Added `gboolean *used_context' argument.
8500         (mono_get_method_from_token): Likewise.
8501         (mono_get_method_full): Don't insert the method in the cache when
8502         `used_context' is true.
8503
8504 2007-04-23  Raja R Harinath  <rharinath@novell.com>
8505
8506         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
8507
8508         * reflection.c (mono_reflection_bind_generic_parameters): Don't
8509         create new MonoTypes for returned types.
8510         * class.c (mono_generic_class_get_class): Export mono-internal.
8511         * class-internals.h: Update to changes.
8512
8513 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
8514
8515         * threadpool.c, threadpool.h, icall-def.h: patch from
8516         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
8517
8518 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
8519
8520         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
8521         
8522         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
8523
8524         * threads.c (mono_thread_get_stack_bounds): New helper function.
8525
8526         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
8527         Correctly compute stack bounds when attaching. Fixes #81394.
8528
8529 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
8530
8531         * reflection.c: fix handling of doubles in custom attributes
8532         for the arm-fpa format (bug #81368).
8533
8534 2007-04-18  Raja R Harinath  <rharinath@novell.com>
8535
8536         * reflection.c (assembly_add_win32_resources): Mildly relax an
8537         bounds check to let the end pointer point just past the end of the
8538         allocated buffer.  (may fix #81384)
8539
8540 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
8541
8542         * culture-info-table.h : regenerated.
8543
8544 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
8545
8546         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
8547         the thread is aborted early.
8548
8549 2007-04-05  Dick Porter  <dick@ximian.com>
8550
8551         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
8552         FindFirstFile()/FindNextFile() to find entries.  This lets the
8553         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
8554         81038.
8555
8556         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
8557         the parameters of
8558         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
8559
8560 2007-04-04  Martin Baulig  <martin@ximian.com>
8561
8562         * debug-helpers.c
8563         (mono_method_desc_full_match): Add support for nested classes.
8564
8565 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
8566
8567         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
8568
8569 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
8570
8571         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
8572         waiting for too many threads.
8573
8574 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
8575
8576         * environment.c: Fix return value check on uname so we can get the 
8577         executing version on Solaris operating systems.
8578
8579 2007-03-28  Jb Evain  <jbevain@gmail.com>
8580
8581         * class.c (mono_type_get_name_recurse): Complete the
8582         fix for the creation of assembly qualified names for
8583         pointer types. Fixes #81208.
8584
8585 2007-03-27  Dick Porter  <dick@ximian.com>
8586
8587         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
8588         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
8589         changed.
8590
8591         * threads.c
8592         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
8593         the value of ReleaseMutex().
8594
8595 2007-03-27  Dick Porter  <dick@ximian.com>
8596
8597         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
8598         in little-endian order, not network endian, so must be converted
8599         to host endian here.  Fixes bug 80593.
8600
8601 2007-03-22  Jb Evain  <jbevain@gmail.com>
8602
8603         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
8604         qualified names for pointer types. Fixes #81208.
8605
8606 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
8607
8608         * marshal.c: Add support for PreserveSigAttribute. 
8609         
8610         Code is contributed under MIT/X11 license.
8611
8612 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
8613
8614         * process.c: Fix endianness issues. Fixes #81126.
8615
8616         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
8617         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
8618
8619         * image.c (mono_image_lookup_resource): Make this work on big-endian
8620         machines.Change API contract so the caller needs to free the return value.
8621         
8622         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
8623         API change.
8624         
8625 2007-03-14  Martin Baulig  <martin@ximian.com>
8626
8627         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
8628         mono_type_get_desc() as well.
8629
8630 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
8631
8632         * icall.c:  Fix environ access in VS.  
8633         
8634 2007-03-13  Alp Toker  <alp@atoker.com>
8635
8636         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8637         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8638         #63841.
8639
8640 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
8641
8642         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
8643         circular references among dynamic methods. Fixes #81091.
8644
8645         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
8646
8647 2007-03-09  Martin Baulig  <martin@ximian.com>
8648
8649         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
8650
8651 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
8652
8653         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
8654         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
8655         
8656         Code is contributed under MIT/X11 license.
8657         
8658 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
8659
8660         * loader.c: Reapply patch for bug #79424.
8661
8662 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8663
8664         * metadata.c (mono_type_to_unmanaged): Only convert object to
8665         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
8666
8667 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
8668
8669         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
8670         (and incorrectly set) is_reference field from MonoGenericInst.
8671
8672 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
8673
8674         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
8675         a little earlier.
8676
8677         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
8678
8679         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
8680
8681 2007-03-05  Miguel de Icaza  <miguel@novell.com>
8682
8683         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
8684         FileOptions.1 value to mean "temporary", map that to
8685         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
8686
8687         Fixes 80688
8688
8689 2007-03-03  Marek Habersack  <mhabersack@novell.com>
8690
8691         * appdomain.c: implement MS .Net style shadow copying. Copies of
8692         the assemblies are made in a subdirectory of the dynamic base
8693         directory, the assembly names are preserved.
8694         Copy .mdb and .config files along with the assemblies being shadowed.
8695
8696 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8697
8698         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
8699         (emit_marshal_handleref): Ditto.
8700
8701         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
8702         on Visual C++. Fixes #80671.
8703
8704 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
8705
8706         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
8707         for clone operations.
8708
8709 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
8710
8711         * marshal.c: Fix warnings.
8712
8713 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
8714
8715         * loader.c: allow case-insensitive matching of the dll name
8716         in dllmap handling when prefixed with "i:".
8717
8718 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
8719
8720         * threads.c: Fix #ifdef for dummy_apc function for VS.
8721
8722 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
8723
8724         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
8725
8726 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
8727         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
8728         giving precedence to the methods with a fully qualified name
8729         (InterfaceName.MethodName) when building the interface sections
8730         of the vtable.
8731
8732 2007-02-16  Dick Porter  <dick@ximian.com>
8733
8734         * threadpool.c (append_job): Fix fast-path array handling, so it's
8735         less likely the array will grow exponentially when the load is
8736         heavy.
8737
8738 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8739
8740         * metadata-internals.h, loader.c: fix dllmap lookup order
8741         for non-function maps, too, and prepare for fallback code.
8742
8743 2007-02-12  Robert Jordan  <robertj@gmx.net>
8744
8745         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
8746         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
8747         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
8748         GlobalFree. Fixes a part of bug #77075.
8749
8750 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
8751
8752         * loader.c: implemented typedef parent in field memberref.
8753
8754 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
8755
8756         * marshal.c: Fix warnings and remember to call Release on
8757         IUnknown of RCW.
8758         
8759         Code is contributed under MIT/X11 license.
8760
8761 2007-02-10  Miguel de Icaza  <miguel@novell.com>
8762
8763         * class-internals.h: Add MonoHandleRef definition, and
8764         handleref_class to mono_defaults. 
8765
8766         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
8767         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
8768
8769         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
8770         (do nothing on this stage)
8771         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
8772         (emit_marshal_handleref): New method, used for argument handling
8773         of HandleRefs. 
8774
8775 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
8776
8777         * class.c (mono_class_setup_parent): Lazily init com types.
8778         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
8779         init com types.
8780         * object.c (mono_remote_class_vtable): Lazily init com types.
8781         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
8782         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
8783         * domain-internals.h: Expose mono_init_com_types.
8784         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
8785         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
8786         Add support for COM Callable Wrapper marshalling.
8787         * marshal.h: Add icall definitions.
8788         * gc.c: Handle freeing of CCWs in finalizer code.
8789         
8790         Code is contributed under MIT/X11 license.
8791
8792 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
8793
8794         * reflection.c: changed all the signature encoding code to use
8795         a variable-sized buffer.
8796
8797 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8798
8799         * marshal.c: locking fixes: never take the loader lock
8800         or other runtime locks when holding the marshal lock
8801         (fixes bug#80664).
8802
8803 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
8804
8805         * marshal.c: make the delegate function pointer mapping
8806         work for the moving GC.
8807
8808 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
8809
8810         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
8811         for bug #80618.
8812
8813 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8814
8815         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
8816         gmodule.
8817
8818 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
8819
8820         * threadpool.c: made the code moving-GC safe.
8821
8822 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8823
8824         * assembly.c, boehm-gc.c, class-internals.h, class.c,
8825         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
8826         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
8827         warning cleanup.
8828         * reflection.c: warning cleanup, some threading and moving GC fixes.
8829
8830 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
8831
8832         * class.c, loader.c: create the needed Set/Get/Address array methods
8833         as well as the .ctors in mono_class_init (), fixes bug #80567.
8834
8835 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
8836
8837         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
8838         we doesn't decrease its alignment. Should fix the sparc build.
8839
8840 2007-01-24  Dick Porter  <dick@ximian.com>
8841
8842         * socket-io.c
8843         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8844         Create the returned object if we need to ignore an unsupported
8845         socket option.  Fixes a segfault reported by Atsushi.
8846
8847 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8848
8849         * class.c, object.c: restrict GC-tracked fields to
8850         UIntPtr fields used inside corlib, so we provide better
8851         type info to the GC and also allow broken packing as in
8852         bug #80580.
8853
8854 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
8855
8856         * sgen-gc.c: removed duplicated function.
8857
8858 2007-01-19  Miguel de Icaza  <miguel@novell.com>
8859
8860         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
8861         value that means that the value is not supported, but that we
8862         should not return a failure, but instead report this as a
8863         successful operation.
8864
8865 2007-01-19  Raja R Harinath  <rharinath@novell.com>
8866
8867         Fix tests/bug79956.2.il
8868         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
8869         (mono_generic_class_get_class): If the generic definition in an
8870         enum, copy over other fields related to it.
8871
8872 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
8873
8874         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
8875         genericinst enums (bug #79215).
8876
8877 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
8878         * class.c: Fix bug 80307.
8879
8880 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
8881
8882         * image.c: if the file table is not present, try to load
8883         all the modules, since we don't have info about them
8884         having or not metadata (bug #80517).
8885         * assembly.c: allow mono_assembly_load_references () to
8886         work for netmodules.
8887
8888 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8889
8890         * image.c, metadata-internals.h, object.c: execute module
8891         cctors when running on the 2 runtime if present (bug #80487).
8892
8893 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8894
8895         * icall.c: optimized InitializeArray() on bigendian.
8896
8897 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
8898
8899         * icall.c: fix for the broken ARM FPA double format.
8900
8901 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
8902
8903         * icall.c: handle endian issues for r4 and r8 types, too, in
8904         the InitializeArray() icall.
8905
8906 2007-01-15  Miguel de Icaza  <miguel@novell.com>
8907
8908         * loader.c (mono_loader_error_prepare_exception): Clear the error
8909         once we have extracted the information from it, do this before we
8910         call into the JIT's class loading mechanisms.
8911
8912         * object.c (mono_class_create_runtime_vtable): Do not clear the
8913         loader error before calling mono_class_get_exception_for_failure
8914         as the loader error is needed inside
8915         mono_class_get_exception_for_failure to throw the error (thinko).
8916
8917         Fixes #80521
8918         
8919 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
8920
8921         * reflection.c: align fields rva data so it's faster to load at
8922         runtime.
8923
8924 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8925
8926         Prepare to simplify GenericMethod handling.
8927         * class-internals.h (mono_method_get_context): New accessor function.
8928         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
8929         rather than directly accessing '->context' field.
8930
8931         * class-internals.h (_MonoGenericParam.method): Move ...
8932         (_MonoGenericContainer): ... here.  Add into union with klass field.
8933         * class.c, icall.c, loader.c, metadata.c, reflection.c:
8934         Update to changes.
8935
8936 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
8937
8938         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
8939         the wrapper type enum and reduce relocations.
8940
8941 2007-01-12  Raja R Harinath  <rharinath@novell.com>
8942
8943         * reflection.c (inflate_mono_method): Reuse method instantiation
8944         from the generic method, if available.
8945
8946 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8947
8948         * marshal.c (emit_marshal_variant): Fix conv_arg
8949         type in last commit, based on whether parameter is byref.
8950         
8951 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8952
8953         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
8954         marshalling.
8955         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
8956         MONO_TYPE_OBJECT back for VARIANT support.
8957
8958 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
8959
8960         * marshal.c, marshal.h, icall-def.h: Implement 
8961         Marshal.ReAllocCoTaskMem.
8962
8963 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
8964
8965         * marshal.c: memory retention fixes: use the proper
8966         image cache for runtime_invoke method lookups.
8967
8968 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
8969
8970         * mempool.c: added code to help debug mempool allocations.
8971
8972 2007-01-11  Dick Porter  <dick@ximian.com>
8973
8974         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
8975         support (experimenting with faking it with IP_MTU_DISCOVER for
8976         systems that don't have IP_DONTFRAGMENT.)
8977         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
8978         icall.
8979
8980         * icall-def.h: new System.Net.Sockets.Disconnect icall.
8981
8982         * socket-io.h: Add new fields to MonoSocketAsyncResult
8983         corresponding to the new ones in Socket.cs.
8984
8985 2007-01-11  Raja R Harinath  <rharinath@novell.com>
8986
8987         Fix IronPython regression mentioned in #80249
8988         * metadata.c (do_mono_metadata_parse_generic_class): Clear
8989         'cached_context' field, since it may have been initialized as a
8990         side-effect of metadata parsing.
8991
8992         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
8993         (_MonoGenericClass.cached_class): Move here and rename from lone
8994         remaining field of ...
8995         (_MonoInflatedGenericClass): ... this.  Remove.
8996         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
8997         to changes.
8998
8999         Fix mcs/tests/test-128.cs regression.
9000         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
9001         2007-01-10 change below.
9002         [MONO_TYPE_OBJECT]: Recurse into array case.
9003
9004 2007-01-11  Raja R Harinath  <harinath@gmail.com>
9005
9006         * class-internals.h (mono_get_inflated_generic_class): Remove.
9007         * class.c (mono_get_inflated_generic_class): Remove.
9008         (mono_generic_class_get_class): Rename from
9009         mono_class_create_generic.
9010         (mono_class_from_mono_type) [GENERICINST]: Use it.
9011         * reflection.c, metadata.c: Update to changes.  Use
9012         'mono_class_from_mono_type'.
9013
9014 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
9015
9016         * reflection.c: use passed type when encoding an array element
9017         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
9018
9019 2007-01-09  Robert Jordan  <robertj@gmx.net>
9020
9021         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
9022         result arguments (someDelegate.EndInvoke (unrelatedAres)).
9023         Fixes bug #80392.
9024
9025 2007-01-09  Raja R Harinath  <rharinath@novell.com>
9026
9027         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
9028
9029         * object.c (set_value): Avoid aliasing between type->data.klass
9030         and type->data.generic_class.
9031
9032         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
9033
9034 2007-01-08  Raja R Harinath  <rharinath@novell.com>
9035
9036         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
9037         between type->data.klass and type->data.generic_class.
9038
9039 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
9040
9041         * marshal.c: In MS.NET, StringBuilder objects are not copied by
9042         value in out parameters.
9043
9044 2007-01-08  Raja R Harinath  <rharinath@novell.com>
9045
9046         Simplify invariant for MonoGenericClass::klass field.
9047         * class.c (mono_class_create_generic): Verify 'klass' is null.
9048         * metadata.c (do_mono_metadata_parse_generic_class): Don't
9049         initialize 'klass' field.
9050
9051 2007-01-05  Raja R Harinath  <rharinath@novell.com>
9052
9053         Ongoing work to avoid redundant data and simplify invariants.
9054         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
9055         'generic_class', and change type to a GenericInst.
9056         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
9057         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
9058
9059 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
9060
9061         * class.c : skip io-layer under PLATFORM_WIN32.
9062
9063 2007-01-03  Tor Lillqvist  <tml@novell.com>
9064
9065         Fix #80305: In a bundled executable, look in the bundled exe
9066         assembly to determine the runtime version. Add the possibility to
9067         bundle also the machine.config file.
9068         
9069         * assembly.c (mono_assembly_open_from_bundle): Make
9070         non-static. Allow being called even if we have no bundled
9071         assemblies, and return NULL right away in that case.
9072
9073         * domain-internals.h: Declare mono_assembly_open_from_bundle()
9074         here.
9075
9076         * domain.c (app_config_parse): Take an assembly exe file name as
9077         parameter instead of a config file name. Check for a bundled
9078         config file for that assembly by calling
9079         mono_config_string_for_assembly_file() (see below) before looking
9080         for one in the file system.
9081         (get_runtimes_from_exe): Corrsponding change to call of
9082         app_config_parse().
9083         (get_runtimes_from_exe): Check for bundled assembly exe file first
9084         by calling mono_assembly_open_from_bundle(). If no bundled
9085         assembly exe file is found, call mono_image_open() as before to
9086         look it up in the file system.
9087
9088         * mono-config.c: Add variable bundled_machinec_onfig.
9089         (mono_config_string_for_assembly_file): New function.
9090         (mono_config_for_assembly): Move code snippet that looks for a
9091         bundled assembly .config file into the above new function. Call
9092         it.
9093         (mono_register_machine_config, mono_get_machine_config): New
9094         functions to set and retrieve
9095
9096         * assembly.h: Declare mono_register_machine_config().
9097
9098         * mono-config.h: Declare mono_get_machine_config() and
9099         mono_config_string_for_assembly_file().
9100
9101         * icall.c: No declaration of environ necessary on Win32. It is
9102         declared (as a macro expanding to a function call) in stdlib.h.
9103         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
9104         New internal mono function. Returns the value of
9105         mono_get_machine_config() as a Mono string.
9106
9107         * icall-def.h: Add get_bundled_machine_config().
9108
9109 2007-01-04  Raja R Harinath  <rharinath@novell.com>
9110
9111         Remove redundant field
9112         * class-internals.h (_MonoGenericContext.container): Remove field.
9113         * loader.c (mono_method_get_signature_full): Don't parse a
9114         "container" for a signature parse when the signature is inflated
9115         immediately.
9116         (method_from_methodspec): Likewise, for a generic_inst.
9117         * class.c, metadata.c, reflection.c: Update to changes.
9118
9119 2006-01-04  Raja R Harinath  <rharinath@novell.com>
9120
9121         * class-internals.h (_MonoGenericClass): Rename 'context' field to
9122         'cached_context', and change semantics -- it starts off NULL, and
9123         is initialized on demand.
9124         * class.c (mono_generic_class_get_context): New accessor to
9125         replace 'context' field accesses.
9126         (mono_class_get_context): New helper.
9127         (*): Update to changes.
9128         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
9129
9130 2007-01-03  Miguel de Icaza  <miguel@novell.com>
9131
9132         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
9133         before the memcpy.   Fixes Marshal2 regression.
9134
9135 2007-01-02  Jb Evain  <jbevain@gmail.com>
9136
9137         * blob.h: add a MONO_TYPE_ENUM definition
9138         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
9139         fix the encoding of arrays of enums in custom attributes.
9140
9141         Fixes #79666.
9142
9143 2007-01-01  Miguel de Icaza  <miguel@novell.com>
9144
9145         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
9146         string is null terminated, but only cut the string short if it
9147         overflows the buffer.   
9148         
9149         (mono_string_to_byvalstr): Also fix this routine.   The code here
9150         was not properly terminating a string (it was only terminated
9151         because of the previous catch-all memset). 
9152
9153         I left the memset, because I do not know if applications expect
9154         the runtime to clear this region. 
9155
9156         Fixes #79944.
9157
9158         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
9159         Clear the error before returning to unmanaged code to prevent the
9160         runtime from being confused later on (fixes  80420).
9161         (ves_icall_type_from_name): Always call mono_loader_clear_error
9162         after parsing a type that could have failed.
9163         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
9164
9165         * loader.c (mono_loader_clear_error): Fix indentation.
9166
9167 2006-12-28  Martin Baulig  <martin@ximian.com>
9168
9169         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
9170
9171 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
9172
9173         * reflection.c: patch from Rolf Bjarne Kvinge to fix
9174         getting a token for an EnumBuilder.
9175
9176 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
9177
9178         * reflection.c: be more careful in case resource generation
9179         fails to create the data array.
9180
9181 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
9182
9183         * sgen-gc.c: write barrier for clone and fix unregister handles.
9184
9185 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
9186
9187         * reflection.c: some fixes needed in the generics code for the moving GC.
9188
9189 2006-12-22  Robert Jordan  <robertj@gmx.net>
9190
9191         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
9192         account. Fixes bug #80299.
9193
9194 2006-12-21  Raja R Harinath  <rharinath@novell.com>
9195
9196         Fix WaitHandle usage in delegates.
9197         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
9198         * object.c (mono_wait_handle_new): Use the property set method to
9199         initialize the handle.
9200         (mono_wait_handle_get_handle): New.
9201         * threadpool.c (mono_async_invoke): Use it.
9202         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
9203         Likewise.
9204         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
9205
9206 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
9207
9208         * marshal.c (emit_marshal): Call emit_marshal_variant and
9209         emit_marshal_com_interface when applicable.
9210         (emit_marshal_variant, emit_marshal_com_interface): Add
9211         methods for this case and remove if's from emit_marshal_object.
9212         
9213 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
9214
9215         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
9216
9217 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
9218
9219         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
9220         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
9221         and GlobalFree on Windows. Remove FIXME.
9222
9223 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
9224
9225         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
9226         implementation for managed objects.
9227
9228 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
9229
9230         * object.c: implemented code to be used for checking
9231         that no reference field overlaps with non-references.
9232
9233 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9234
9235         * threadpool.c: fix queue code to be compatible with the
9236         moving GC.
9237
9238 2006-12-18  Miguel de Icaza  <miguel@novell.com>
9239
9240         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
9241         in structures by throwing ArgumentNullException.
9242
9243         (emit_marshal_safehandle): Also when they are null parameters.
9244
9245         (emit_marshal_safehandle): Add support for ref
9246         SafeHandles parameters
9247
9248 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
9249
9250         * profiler.c: updated to use the mono-dl API instead of
9251         gmodule.
9252
9253 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9254
9255         * profiler.c: updated to use the mono-dl dynamic loading
9256         API instead of gmodule.
9257
9258 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
9259
9260         * profiler.c: use readlink, older versions of glib don't have
9261         g_file_read_link ().
9262
9263 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9264
9265         * profiler.c: try to detect the path to mono if libc fails to provide
9266         a useful name (bug #80286).
9267
9268 2006-12-16  Raja R Harinath  <rharinath@novell.com>
9269
9270         Fix #80242
9271         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
9272         instance, use the generic type definition instead.
9273         (ves_icall_Type_GetNestedTypes): Likewise.
9274         * class.c (mono_class_create_generic): Always set the
9275         nested_classes of a generic instance to NULL, even if the generic
9276         type definition has nested types.
9277
9278 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
9279
9280         * marshal.c (mono_string_from_bstr): Revert previous Windows change
9281         and fix on Linux.
9282         
9283 2006-12-15  Miguel de Icaza  <miguel@novell.com>
9284
9285         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
9286         my arguments were in the wrong order.   I also fixed the Windows
9287         version which seems to have had the same issue.
9288
9289         (mono_free_bstr): On Unix, this is g_free.
9290         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
9291         conversions (for the tests in corlib to pass).
9292
9293 2006-12-14  Miguel de Icaza  <miguel@novell.com>
9294
9295         * marshal.c (emit_ptr_to_object_conv): For now, ignore
9296         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
9297         exception if a ref SafeHandle in a struct has changed).
9298         
9299         (emit_struct_conv): Do not perform layout checks for classes
9300         derived from SafeHandle, as those are specially handled. 
9301
9302         (emit_object_to_ptr_conv): Add support for
9303         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
9304
9305         (emit_marshal_safehandle): Implement conversion of return values
9306         of safehandles (MARSHAL_ACTION_CONV_RESULT).
9307         
9308         * threads.c: WaitHandle now is compiled with two different handles
9309         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
9310         for 2.0.
9311         
9312         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
9313         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
9314         these routines to cope with both kinds of fields.
9315
9316 2006-12-12  Miguel de Icaza  <miguel@novell.com>
9317
9318         * metadata.c (mono_type_to_unmanaged): Handle the case where
9319         type->data.klass is a SafeHandle, and in that case, return the
9320         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
9321         MONO_MARSHAL_CONV_SAFEHANDLE. 
9322
9323 2006-12-11  Miguel de Icaza  <miguel@novell.com>
9324
9325         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
9326         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
9327         calling emit_marshal_object.
9328
9329         (emit_marshal_safehandle): Implement marshalling of
9330         SafeHandle parameters (no ref support yet).
9331
9332         (MarshalAction): Document the defines as I implement
9333         them for SafeHandle.
9334
9335         (emit_marshal_object): indentation police.
9336
9337         * class-internals.h: Define MonoSafeHandle.
9338         Add safehandle_class to MonoDefaults type.
9339
9340         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
9341         list of classes to check for fields. 
9342
9343         * domain.c (mono_init_internal): Add SafeHandle to the list of
9344         mono_defaults loaded.
9345
9346 2006-12-15  Raja R Harinath  <rharinath@novell.com>
9347
9348         Fix #80253
9349         * reflection.c (mono_reflection_bind_generic_parameters): If the
9350         generic type definition is a type builder, ensure that it is fully
9351         initialized before instantiating it.  Kill some dead code.
9352
9353 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
9354
9355         * object.c: clear the loader_error () before loading
9356         more metadata stuff (bug #80258).
9357
9358 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
9359
9360         * icall.c, icall-defs.h: type modifiers icalls for
9361         parameters and properties.
9362
9363 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
9364
9365         * object.c, icall.c: fixed warnings.
9366
9367 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
9368
9369         * marshal.c: fixed a couple of leaks and coding style in a few places.
9370
9371 2006-12-08  Dick Porter  <dick@ximian.com>
9372
9373         * process.c: Cope with NULL ProcessStartInfo arguments on windows
9374         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
9375         80173.
9376
9377 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
9378
9379         * process.c: ProcessStartInfo may have only filename set and
9380         arguments can be NULL.
9381
9382 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
9383
9384         * icall.c: fix leak found by Robert Jordan.
9385
9386 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
9387
9388         * marshal.c, marshal.h: generate managed method to access an element
9389         of a multi-dimensional array.
9390
9391 2006-11-30  Paolo Molaro (lupus@ximian.com)
9392
9393         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
9394
9395 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
9396
9397         * icall.c: back out GetFields () fix until the serialization code is
9398         fixed to not depend on the incorrect behaviour.
9399
9400 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
9401
9402         * profiler.c: provide defaults if none are set.
9403
9404 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
9405
9406         * Makefile.am, attrdefs.h: new public header file with
9407         constants for attributes for use by embedders.
9408
9409 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
9410
9411         * icall.c: GetFields () fix for bug #80064.
9412
9413 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
9414
9415         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
9416         removed long unused icalls.
9417
9418 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
9419   
9420         * marshal.c: 
9421                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
9422                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
9423                 can be generated without a delegate class.
9424                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
9425         
9426         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
9427
9428 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9429
9430         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
9431         #80069.
9432
9433 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
9434
9435         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
9436         icall-def.h: added icalls needed by System.GC.
9437
9438 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
9439
9440         * loader.c: ensure the class in catch clauses is handled
9441         correctly for generics methods (fixes bug#79980).
9442
9443 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
9444
9445         * monitor.h, monitor.c: added mono_locks_dump () function
9446         to help debug deadlocks involving managed locks.
9447
9448 2006-11-13  Dick Porter  <dick@ximian.com>
9449
9450         * file-io.c (get_file_attributes): If the file is a symlink try
9451         and get the stat data for the target, but also add the
9452         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
9453         the specs for the windows symlink support, but will probably have
9454         to be reworked when I have test data from a vista machine.  Fixes
9455         bug 79887.
9456
9457 2006-11-13  Dick Porter  <dick@ximian.com>
9458
9459         * gc.c (mono_domain_finalize): 
9460         * marshal.c (mono_delegate_begin_invoke): 
9461         * threadpool.c (socket_io_init, mono_thread_pool_init)
9462         (mono_thread_pool_finish): 
9463         * monitor.c (mono_monitor_try_enter_internal): 
9464         * threads.c (mono_thread_resume, mono_thread_init)
9465         (mono_thread_suspend_all_other_threads)
9466         (mono_thread_execute_interruption): 
9467         * appdomain.c (mono_domain_unload): Check for NULL error returns
9468         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
9469         75733.
9470
9471 2006-11-11  Miguel de Icaza  <miguel@novell.com>
9472
9473         * process.c
9474         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
9475         Only close the handle if the value of the handle is not
9476         INVALID_HANDLE_VALUE.  This just makes the process a bit more
9477         robust.
9478
9479         Improvement for #75733, so that we do not run into this problem. 
9480
9481         
9482         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
9483         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
9484         internal variables.  Fixes #79462 
9485         
9486
9487 2006-11-09  Dick Porter  <dick@ximian.com>
9488
9489         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9490         Use poll() not select().  Fixes bug 79397.
9491
9492 2006-11-09  Raja R Harinath  <rharinath@novell.com>
9493
9494         Fix #79872
9495         * assembly.c (mono_assembly_load_from_full): Check that the given
9496         image has an assembly manifest.
9497
9498 2006-11-09  Ankit Jain  <jankit@novell.com>
9499
9500         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
9501         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
9502         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
9503
9504 2006-11-07  Dick Porter  <dick@ximian.com>
9505
9506         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
9507         Put the old resolver behaviour back for pre-2.0 profiles.
9508
9509 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
9510
9511         * threadpool.c: precise GC and locking fixes.
9512
9513 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
9514
9515         * class.c: don't load types that have an explicit unaligned
9516         managed reference. Provide better info in the TypeLoad exception.
9517         Part of the fix for bug #79744.
9518         * object.c: use the correct check for class type load issues.
9519
9520 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
9521
9522         * class.c: enforce alignment of fields with managed references
9523         even when Pack=1 is forced by the user (bug #77788).
9524
9525 2006-11-03  Dick Porter  <dick@ximian.com>
9526
9527         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
9528         If the address reverse lookup fails, return it as the hostname
9529         anyway.  Fixes bug 79721.
9530
9531 2006-11-03  Dick Porter  <dick@ximian.com>
9532
9533         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
9534         Fix build on Windows.
9535
9536 2006-11-02  Dick Porter  <dick@ximian.com>
9537
9538         * icall-def.h: 
9539         * object-internals.h: 
9540         * exception.c (mono_get_exception_thread_interrupted): 
9541         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
9542         Fixes bug 74525.
9543
9544         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
9545         Check for pending Thread.Interrupt.
9546
9547 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
9548         * loader.c: Fixed bug 79684.
9549
9550 2006-10-27  Dick Porter  <dick@ximian.com>
9551
9552         * file-io.c (get_file_attributes): Force symlinks to directories
9553         to be returned as a regular file.  Fixes bug 79733.
9554 2006-10-26  Dick Porter  <dick@ximian.com>
9555
9556         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
9557         CreateFile to open a directory then we need to set the
9558         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
9559
9560 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
9561
9562         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
9563         friends.
9564
9565 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9566
9567         * sgengc.c: small cleanup of timer code.
9568
9569 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
9570
9571         * sgen-gc.c: fix some warnings and start adding support for
9572         complete object removal on domain unload.
9573
9574 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
9575
9576         * assembly.c: build_assembly_name should not consider a version
9577         number without build or revision number invalid. Fixes bug #79715.
9578
9579 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
9580
9581         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
9582         call kernel32 function OutputDebugString directly.
9583         
9584         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
9585         
9586 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
9587
9588         * reflection.c: small cleanup, using a function to insert a MonoString
9589         in the string heap.
9590
9591 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
9592
9593         * reflection.c: moving GC fixes.
9594
9595 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
9596
9597         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
9598         all the objects with finalizers belonging to an unloading appdomain.
9599
9600 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
9601
9602         * sgen-gc.c: added ability to allocate even when the nursery is fully
9603         pinned and fixed a couple of bugs.
9604
9605 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
9606
9607         * threads.h: Revert the last change for now.
9608
9609         * threads.h (mono_thread_get_pending_exception): Rename this to
9610         mono_thread_get_undeniable_exception ().
9611
9612 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
9613
9614         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
9615         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
9616         when fname does not refer to valid assembly. This result in a more
9617         meaningful error message.
9618         * exception.c: added mono_get_exception_bad_image_format2 which 
9619         constructs a BadImageFormatException using the ctor taking a custom
9620         message and the file name. Passing in a NULL msg results in a default
9621         message.
9622         * exception.h: define mono_get_exception_bad_image_format2 function.
9623         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
9624         when file name pointed to an invalid IL image. Use 
9625         mono_get_exception_file_not_found2 to construct FileNotFoundException,
9626         as this results in a more meaningful error message.
9627
9628 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
9629
9630         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
9631         #79465.
9632
9633 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
9634
9635         * metadata.c (mono_type_size): Change the align parameter to guint32 for
9636         consistency with the other _size functions.
9637         (mono_type_stack_size): Ditto.
9638
9639         * class.c object.c icall.c: Fix warnings caused by the above change.
9640
9641         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
9642
9643         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
9644
9645         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
9646
9647 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
9648
9649         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
9650         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
9651         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
9652         threadpool.h, threads-types.h: mark more internal functions.
9653
9654 2006-10-11  Dick Porter  <dick@ximian.com>
9655
9656         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
9657         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
9658         reproduce the bug even before applying the fix.)
9659
9660 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
9661
9662         * reflection.c: allow retrieving attributes for arguments in generic
9663         methods (bug #79241).
9664
9665 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
9666
9667         * debug-mono-symfile.c: properly check fopen () result (found by
9668         coverity).
9669
9670 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
9671
9672         * reflection.c: make error message clearer and fixed two
9673         issuelets found by Coverity.
9674
9675 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
9676
9677         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
9678
9679 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
9680
9681         * object-internals.h, gc-internal.h, profiler-private.h:
9682         mark internal functions.
9683
9684 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
9685
9686         * reflection.c: put data in the text section.
9687         * icall.c: recognize more types in type_from_typename ().
9688         * process.c, marshal.c: added some GC FIXMEs.
9689
9690 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9691
9692         * loader.c: check for NULL before initializing.
9693
9694 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
9695
9696         * gc.c (finalizer_thread): Use a non-alertable wait here.
9697
9698         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
9699         until the correct solution is found.
9700
9701 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9702
9703         * reflection.c (mono_module_get_object): Avoid an assert when operating on
9704         modules with no metadata. Fixes #79596.
9705
9706         * image.c (load_metadata_ptrs): Put back the error message when
9707         the #- heap is encountered since the support is not complete yet.
9708
9709 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
9710
9711         * gc.c: do not allow the user to SuppressFinalize () a
9712         delegate because it would leak the trampoline if present.
9713
9714 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
9715
9716         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
9717         PropertyPtr table.
9718
9719 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
9720
9721         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
9722
9723         * metadata.c (mono_metadata_get_param_attrs): Ditto.
9724
9725         * row-indexes.h: Add definitions for *Ptr tables.
9726
9727         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
9728
9729         * metadata.c (mono_metadata_translate_token_index): New helper function to
9730         translate table indexes used in uncompressed metadata.
9731         (mono_metadata_decode_table_row): Ditto.
9732         (mono_metadata_decode_table_row_col): Ditto.
9733
9734         * metadata.c: Add table schema for *Ptr tables.
9735
9736         * class.c loader.c: Use the new helper function to access the affected metadata
9737         tables.
9738         
9739         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
9740         #38532.
9741         
9742 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
9743
9744         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
9745         sequences which can be unbounded in size. Fixes #79583.
9746
9747 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
9748
9749         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
9750         static initialization.
9751
9752         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
9753
9754         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
9755
9756         * domain.c (mono_domain_free): Free up type_init_exception_hash.
9757
9758         * object.c (mono_runtime_class_init): Implement correct semantics when a static
9759         ctor fails, i.e. throw the same exception on subsequent accesses.
9760         
9761 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
9762
9763         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
9764         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
9765         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
9766         Handle marshalling of interfaces and VARIANTs contained in structs.
9767         
9768         Code is contributed under MIT/X11 license.
9769         
9770 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
9771
9772         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
9773         
9774         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
9775         mempool.
9776
9777 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9778
9779         * console-io.c: ignore previous SIGINT handler.
9780
9781 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
9782
9783         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
9784         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
9785         #79460, #79461, #79485.
9786
9787         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
9788
9789         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
9790         #79217.
9791
9792 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
9793
9794         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
9795         could be generated from it.
9796
9797 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
9798
9799         * rand.c: fix read loop to correctly handle EINTR.
9800
9801 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9802
9803         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
9804         internal calls are defined to keep methods closer to the declaring
9805         type and allow a significant reduction in runtime relocations and
9806         memory usage.
9807
9808 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
9809
9810         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
9811         exception message to have FileNotFoundException use the default
9812         assembly load error message. Fixes bug #79426.
9813         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
9814
9815 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9816
9817         * threadpool.c: (start_thread_or_queue) use the root domain when
9818         creating the thread instead of the async object one.
9819
9820 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
9821
9822         * class.c, object.c, class-internals.h, reflection.c:
9823         for arrays, store element_size inside MonoClass (speedup
9824         for array object creation).
9825
9826 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
9827
9828         * icall.c: fixed CodeBase to use the file name and not the module
9829         name (bug #79365).
9830
9831 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
9832
9833         * mono-debug.c, mono-debug.h: export find_method as
9834         mono_debug_find_method ().
9835
9836 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
9837
9838         * debug-helpers.c, class-internals.h: added a few functions useful
9839         when debugging under gdb.
9840
9841 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9842
9843         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
9844         characters that need special handling.
9845
9846 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
9847
9848         * mono-config.c: make the os/cpu specification more flexible,
9849         allowing lists and negation.
9850
9851 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
9852
9853         * marshal.c: COM Interop fixes. Handle case where method->klass.
9854         is interface. Handle BSTR/MonoString when null. Use CDECL as 
9855         calling convention on non-windows platforms. This is for
9856         compatibility with XPCOM and MainWin COM.
9857         
9858         Code is contributed under MIT/X11 license.
9859         
9860
9861 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
9862
9863         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
9864         correctly. Fixes #79217.
9865
9866         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
9867
9868 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
9869
9870         * mono-config.c: allow both an os and cpu attribute for dllmap
9871         and dllentry elemnets to enable a single config file to be used
9872         for multiple architectures.
9873
9874 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
9875
9876         * loader.c: MonoLoaderError was cleared too soon on load failure.
9877         Fixes bug #79424.
9878
9879 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
9880
9881         * icall.c: use the defining class vtable when accessing a
9882         static field, not a pobblibly derived class.
9883
9884 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
9885
9886         * icall.c string-icalls.c: Remove references to unicode.h.
9887
9888         * unicode.h unicode.c Makefile.am: Remove these unused source files.
9889
9890         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
9891
9892         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
9893         indicating the image where custom marshaller types should be looked up.
9894         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
9895         custom marshallers, instead of corlib. Fixes #79425.
9896
9897 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
9898
9899         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
9900
9901 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
9902
9903         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
9904         Implement Environment.ProcessorCount.
9905         
9906         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
9907         Implement Environment.ProcessorCount.
9908         
9909         * icall.c: 
9910         Add Environment.ProcessorCount icall.
9911         
9912         Patch by Jason McFall.
9913
9914 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9915
9916         * assembly.c: don't append .exe/.dll when the filename already contains
9917         one of those extensions.
9918
9919 2006-09-12  Martin Baulig  <martin@ximian.com>
9920
9921         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
9922         to array interfaces.
9923
9924 2006-09-11  Martin Baulig  <martin@ximian.com>
9925
9926         * reflection.c (mono_image_build_metadata): Create the
9927         MethodImpl's after emitting all types and methods, so we don't
9928         need another fixup pass for them.
9929
9930 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
9931
9932         * class.c (mono_class_from_name_case): Fix regression introduced by the last
9933         change.
9934
9935 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
9936
9937         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
9938         unload.
9939
9940 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
9941
9942         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
9943         args is not set. Fixes #78926.
9944
9945 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
9946
9947         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
9948
9949         * image.c (load_class_names): Move this to class.c, and rename it to 
9950         'mono_image_init_name_cache'.
9951         (load_modules): Fix a warning.
9952
9953         * class.c icall.c image.c: Initialize image->name_cache lazily.
9954
9955         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
9956         on its name using information in the AOT file.
9957
9958         * class.c (mono_class_from_name): Use the new hook function.
9959
9960 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
9961
9962         * reflection.c (mono_param_get_objects): Handle enum default parameter values
9963         correctly.
9964
9965         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
9966         Fixes #79289.
9967         
9968 2006-09-06  Martin Baulig  <martin@ximian.com>
9969
9970         * icall.c (mono_lookup_internal_call): Small fix.
9971
9972 2006-09-05  Raja R Harinath  <rharinath@novell.com>
9973
9974         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
9975         double g_free.
9976
9977 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
9978
9979         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
9980         when --debug is specified.
9981
9982 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
9983
9984         * class.c (setup_generic_array_ifaces): Fix a warning.
9985
9986 2006-09-04  Miguel de Icaza  <miguel@novell.com>
9987
9988         * Temporarily remove the patch to assemly.c that checks the
9989         assembly versions as it breaks our gacutil.
9990
9991 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
9992
9993         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
9994
9995         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
9996         a net 1.0 runtime.
9997
9998         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
9999         created using the default ctor. Fixes #79152.
10000         (mono_string_builder_to_utf16): Ditto.
10001
10002 2006-09-01  Martin Baulig  <martin@ximian.com>
10003
10004         Fix handling of the generic array interfaces.
10005
10006         * class-internals.h
10007         (MonoDefaults): Removed `generic_array_class' and added
10008         `generic_ilist' class.
10009
10010         * class.c
10011         (mono_bounded_array_class_get): Add the new generic array interfaces.
10012         (setup_generic_array_ifaces): New static method; create vtable
10013         entries for each method in the generic array interfaces.
10014
10015         * metadata.c
10016         (select_container): Allow "parent-less" generic methods.
10017
10018         * marshal.c
10019         (mono_marshal_get_generic_array_helper): New public method.
10020
10021         * icall.c
10022         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
10023         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
10024         moved the interncall into System.Array.
10025
10026 2006-09-01  Raja R Harinath  <rharinath@novell.com>
10027
10028         A few more cases of avoiding work on types with ->byref set.
10029         Has the real fix for #79238
10030         * icall.c (is_generic_parameter): New helper.
10031         (ves_icall_Type_GetGenericParameterPosition): Use it.
10032         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
10033         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
10034         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
10035         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
10036         reference types.
10037         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
10038         reference types.
10039         (ves_icall_Type_get_IsGenericInstance): Likewise.
10040         (ves_icall_Type_get_IsGenericType): Likewise.
10041
10042 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
10043
10044         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
10045         class if possible.
10046
10047         * mempool.h (mono_mempool_get_allocated): New helper function.
10048
10049         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
10050         change.
10051
10052         * mempool.c: Fix warnings and the calculation of stats.
10053
10054         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
10055
10056         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
10057
10058         * loader.c (mono_get_method_from_token): Update method_count stat.
10059
10060         * class-internals.h (MonoStats): Add some stats.
10061
10062 2006-08-31 Robert Jordan  <robertj@gmx.net>
10063
10064         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
10065         with managed variants.
10066         All code is contributed under the MIT/X11 license.
10067         
10068 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
10069
10070         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
10071         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
10072
10073         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
10074
10075         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
10076         with cycles in classes.
10077
10078         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
10079
10080         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
10081         missing a [MarshalAs] directive. Fixes #79203.
10082
10083         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
10084         klass->marshal_info. Fixes #79217.
10085
10086 2006-08-30  Martin Baulig  <martin@ximian.com>
10087
10088         Committing a patch from Joachim Ante <joe@otee.dk>:
10089         Add support for binary data symbol stores.
10090
10091         * debug-mono-symfile.c
10092         (mono_debug_open_mono_symbol_file): Renamed into
10093         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
10094         arguments.
10095
10096         * mono-debug.c
10097         (mono_debug_open_image): Added `raw_contents' and `size' args.
10098         (mono_debug_init_2_memory): New public function.
10099
10100 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
10101
10102         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
10103
10104 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10105
10106         * appdomain.c: implement support for ShadowCopyFiles.
10107
10108 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
10109
10110         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
10111         when value is NULL (and should remove CID #51).
10112
10113 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10114
10115         * image.c: moved 2 functions to ../utils.
10116
10117 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
10118
10119         * gc.c: cope with the target object of a GC handle being NULL
10120         (bug #78877).
10121
10122 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
10123
10124         * class.c: recursively check parent's explicit implementations
10125         of interface methods (fixes bug #79125).
10126
10127 2006-08-19  Miguel de Icaza  <miguel@novell.com>
10128
10129         * filewatcher.c: Avoid warnings when building, do not redefine
10130         constants that are defined.
10131
10132         Remove warnings.
10133
10134 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10135
10136         * image.c: don't fail when the link points to an absolute path.
10137
10138 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
10139
10140         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
10141         Fix CID #3.
10142
10143 2006-08-17  Miguel de Icaza  <miguel@novell.com>
10144
10145         * image.c (full_path): A new method used to obtain the actual path
10146         of an assembly even in the presence of symbolic links.  
10147
10148         This is necessary for the case where we are running a binary that
10149         has been GACed, but we are using the "published" path name
10150         ($prefix/mono/1.0/blah.exe) which happens to point to the real
10151         file in the GAC.
10152
10153         This was the source of the failure for the `xsp' command with the
10154         recent AppDomain changes, as far as the runtime was concerned,
10155         there were two different assemblies: $prefix/mono/1.0/blah.exe and
10156         $prefix/mono/gac/blah/version/blah.exe.
10157
10158         (do_mono_image_open): use full path
10159
10160 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10161
10162         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
10163
10164 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
10165
10166         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
10167         domain_id is supplied. Fix CID #241 and corlib's unit tests.
10168
10169 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10170
10171         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
10172         small structures. Fixes #78990.
10173
10174 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10175
10176         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
10177
10178         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
10179
10180 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10181
10182         * appdomain.c:
10183         * marshal.c: don't load all the assemblies from a domain into newly
10184         created ones. The new domains might have different rules and load
10185         assemblies from different locations. Fixes bug #76757.
10186
10187         Patch by Lluis. Conflicts resolved by Brian Crowell.
10188
10189 2006-08-16  Alp Toker  <alp@atoker.com>
10190
10191         * socket-io.c: First half of the fix for #79084.
10192         Set sa_size to the length of the content, not that of the struct.
10193         Don't add NULL suffix to the content, this should be done in
10194         managed code if needed.
10195
10196 2006-08-14  Raja R Harinath  <rharinath@novell.com>
10197
10198         Fix part of #79012
10199         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
10200         mono_metadata_parse_type returns NULL.
10201
10202 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
10203
10204         * normalization-tables.h : new file for string normalization data.
10205         * locales.c, locales.h, icall.c :
10206           added load_normalization_resource() for string normalization,
10207           and icall as well.
10208         * Makefile.am : added normalization-tables.h to the sources.
10209
10210 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
10211
10212         * marshal.c: Add more helper functions to reduce code duplication and use them
10213         everywhere.
10214
10215 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
10216
10217         * marshal.c: Fix non-x86 stdcall warnings.
10218         
10219         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
10220         them everywhere.
10221
10222 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
10223
10224         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
10225         type check on multi-dimensional arrays. Fixes #79000.
10226
10227 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
10228
10229         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
10230         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
10231         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
10232         * class-internals.h: add is_com_object to class structure.
10233         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
10234         null checks to COM object marshalling. Fix .ctor call on RCW.
10235         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
10236         
10237         All code is contributed under the MIT/X11 license.
10238
10239 2006-08-09  Dick Porter  <dick@ximian.com>
10240
10241         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
10242         racing mono_monitor_allocator_lock() somewhere, so don't delete
10243         the critical section for now.  Found by running and exiting
10244         monodevelop.
10245
10246 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
10247
10248         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
10249         (ves_icall_System_ComObject_FindInterface): Ditto.
10250         (ves_icall_System_ComObject_CacheInterface): Ditto.
10251
10252         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
10253         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
10254
10255 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10256
10257         * threadpool.c: treat pipes from process asynchronous reads as sockets
10258         when reading from them, so we get select/poll or epoll to wait for
10259         data.
10260
10261 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
10262
10263         * loader.c: Fix a typo (CID #233) in the null check.
10264
10265 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
10266
10267         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
10268         Hopefully fixes #78949.
10269         
10270         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
10271         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
10272         bytes. Fixes #78972.
10273
10274 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10275
10276         * filewatcher.c: we need to set errno here.
10277
10278 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10279
10280         * filewatcher.c: let Win32Exception get the error value.
10281
10282 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10283
10284         * filewatcher.c: translate errno into win32 errors for Win32Exception
10285         to know what happened.
10286
10287 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
10288
10289         * threadpool.c: Fix more warnings.
10290
10291         * assembly.c (search_loaded): Fix warnings.
10292
10293         * threadpool.c (mono_thread_pool_finish): Fix warnings.
10294         (mono_async_invoke): Ditto.
10295
10296 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
10297
10298         * object.c (mono_remote_class_vtable): Need to create proxy vtable
10299         entries for __ComObject type in addition to ComImport types.
10300         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
10301         about hash table.
10302         
10303         All code is contributed under the MIT/X11 license.
10304
10305 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
10306
10307         * image.c: avoid tentative loading of modulerefs that contain
10308         no metadata (P/Invoke library names).
10309
10310 2006-07-28  Dick Porter  <dick@ximian.com>
10311
10312         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
10313         mono_loader_lock() somewhere, so don't delete the critical section
10314         for now.  Found by running and exiting monodevelop.
10315
10316 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10317
10318         * filewatcher.c: define the inotify syscalls when we're building on
10319         linux and have sys/syscall.h. The build system might not have support
10320         for inotify but the target system might have it.
10321
10322 2006-07-26  Miguel de Icaza  <miguel@novell.com>
10323
10324         * domain.c: Documentation updates.
10325
10326         * loader.c (mono_free_method): Do not release the method
10327         information if we are being profiled, as profilers will use this
10328         information at shut down to present some data to the user.
10329
10330         This is needed so that the profiler does not crash, as the
10331         profiler tends to keep MonoMethods around, and they might become
10332         invalid if we free these.
10333
10334         (mono_get_method_constrained): Return the original CIL stream
10335         method as well, so verification can be performed against it.
10336
10337 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10338
10339         * filewatcher.[ch]: support for inotify file system watcher.
10340         * icall.c: add new internal calls for the inotify file system watcher.
10341
10342 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10343
10344         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
10345         #78888.
10346
10347 2006-07-20  Dick Porter  <dick@ximian.com>
10348
10349         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
10350         warning.
10351
10352 2006-07-20  Dick Porter  <dick@ximian.com>
10353
10354         * threads.c (start_wrapper): Do the thread cleanup while we still
10355         hold a reference to its object.  Fixes bug 78123.
10356
10357 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
10358
10359         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
10360         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
10361           "managed-to-managed".
10362         * icall.c: Redirect string constructors that take sbyte* to
10363           ves_icall_System_String_ctor_RedirectToCreateString.
10364         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
10365           to CreateString () methods with matching signature.
10366         * reflection.c: Use original security informations for
10367           MONO_WRAPPER_MANAGED_TO_MANAGED.
10368         * security-manager.c: Use original security informations for
10369           MONO_WRAPPER_MANAGED_TO_MANAGED.
10370         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
10371           that is a placeholder and only its address should be used.
10372         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
10373           that is a placeholder and only its address should be used.
10374
10375 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
10376
10377         Begin implementing COM Interop.
10378         * appdomain.c: Increment corlib version.
10379         * class.c: Set ComImport classes' parent to __ComObject.
10380         * loader.c: Mark cominterop methods as such.
10381         * domain.c: Add __ComObject class to MonoDefaults structure.
10382         * image.c: Add 2 hashtables to the image for COM Interop related methods
10383         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
10384         using the mempool allocator
10385         
10386         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
10387         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
10388         declaration for mono_metadata_type_dup_mp.
10389         
10390         * debug-helpers.c: Added strings for two additional wrapper types
10391         * object.c: Create proxy objects for ComImport classes
10392         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
10393         and added __ComObject class to MonoDefaults structure.
10394         
10395         * object-internals.h: Finish MonoRealProxy definition, and add definition of
10396         MonoComInteropProxy and MonoComObject.
10397         
10398         * marshal.c: Added support for COM Interop
10399         (signature_cominterop): Converts managed signature to corresponding
10400         unmanaged COM signature.
10401         (cominterop_get_function_pointer): gets unmanaged function pointer via
10402         COM object vtable
10403         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
10404         (cominterop_get_method_interface): returns interface type that method is defined on
10405         (mono_mb_emit_cominterop_call): emits native call to function pointer
10406         gotten from vtable
10407         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
10408         that matches signature of unmanaged function.
10409         (cominterop_get_native_wrapper): wrapper around adjusted method call.
10410         (cominterop_get_invoke): forwards call from proxy to __ComObject
10411         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
10412         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
10413         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
10414         
10415         * marshal.h: Added Marshal icall declarations.
10416         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
10417         so we can access them in finalizer
10418         
10419 2006-07-14  Dick Porter  <dick@ximian.com>
10420
10421         * object.c (mono_type_initialization_cleanup): Fix a race
10422         condition by temporarily commenting out the critical section
10423         deletion.
10424
10425 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
10426
10427         * reflection.c (create_custom_attr): Fix some warnings.
10428         (create_custom_attr_data): Ditto.
10429         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
10430         types. Fixes #78855.
10431
10432 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
10433
10434         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
10435
10436         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
10437
10438 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
10439
10440         * reflection.c (resolve_object): Add support for DynamicMethod.
10441
10442         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
10443         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
10444
10445 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
10446
10447         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
10448         don't leak GPtrArray's pdata has we have no use (nor free) for it.
10449
10450 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
10451
10452         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
10453         Fixes #77888.
10454
10455 2006-06-30  Raja R Harinath  <rharinath@novell.com>
10456
10457         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
10458         slightly: remove a shadow local variable.
10459
10460 2006-06-29  Raja R Harinath  <rharinath@novell.com>
10461
10462         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
10463         definition that introduces the virtual function slot.
10464         Also fix Coverity #105.
10465
10466 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
10467
10468         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
10469         for dynamic assemblies. Fixes #78724.
10470
10471 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
10472
10473         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
10474         Fixes #78722.
10475
10476 2006-06-21  Martin Baulig  <martin@ximian.com>
10477
10478         * reflection.c
10479         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
10480         fixes #76484.
10481
10482 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
10483
10484         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
10485
10486 2006-06-20  Raja R Harinath  <rharinath@novell.com>
10487
10488         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
10489         nor TYPEREFs.
10490         * class.c (mono_class_create_from_typespec): Add 'context' argument.
10491         Inflate result if necessary.
10492         (mono_class_get_full): Remove old version.  Rename from
10493         'mono_class_get' and add 'context' argument.  Pass it to
10494         ..._create_from_typespec.
10495         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
10496         (mono_ldtoken): Revert change below.
10497
10498 2006-06-20  Martin Baulig  <martin@ximian.com>
10499
10500         * class.c (mono_ldtoken): Don't pass the generic context to
10501         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
10502
10503 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
10504
10505         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
10506         and later freeing it. Fixes #78638.
10507
10508 2006-06-15  Miguel de Icaza  <miguel@novell.com>
10509
10510         * icall.c (mono_class_get_throw): Revert over-zealous error
10511         throwing, the caller for mono_class_get_throw will cope with
10512         errors when classes are not properly initialized already.
10513
10514         The code still copes with loader exceptions though.
10515
10516         Fixes the regression in reftype1 and reftype3 from the CAS tests.
10517         
10518 2006-06-14  Miguel de Icaza  <miguel@novell.com>
10519
10520         Fixes the `make run1' version of RuntimeAbort (to be commited,
10521         source is in Bugzilla).
10522         
10523         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
10524         FALSE on class loading failure instead of returning true.
10525
10526         * class.c (mono_class_create_from_typedef): It is possible for
10527         mono_metadata_interfaces_from_typedef_full to fail if a class is
10528         not found, cope with this.
10529         
10530
10531 2006-06-14  Dick Porter  <dick@ximian.com>
10532
10533         * socket-io.c: 
10534         * process.c: Fix a bunch of signed/unsigned warnings from gcc
10535         4.1.1
10536
10537 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
10538
10539         * culture-info-table.h : oops, forgot to make it nsync with r61548.
10540
10541 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10542
10543         * icall.c: Another fix for building mono in Visual Studio.
10544
10545 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10546
10547         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
10548         
10549 2006-06-09  Martin Baulig  <martin@ximian.com>
10550
10551         * debug-mono-symfile.c: Put this back and really fix it this
10552         time. Sorry for all the trouble.
10553
10554 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
10555
10556         * icall.c (mono_class_get_throw): Fix a warning.
10557         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
10558         ReflectionTypeLoadException if needed. Fixes #78606.
10559
10560         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
10561         (mono_class_init): Ditto.
10562
10563         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
10564         ref_only exceptions.
10565         (mono_loader_clear_error): Make this work even if there is no error.
10566
10567 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
10568
10569         * object-internals.h marshal.c marshal.h icall.c: Implement method 
10570         Marshal.GetComSlotForMethodInfo using internal call.
10571
10572 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
10573
10574         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
10575         a function for signalling it.
10576
10577         * class.c (mono_class_from_typeref): Use the new kind of loader error when
10578         a referenced assembly is not found.
10579
10580         * loader.c (mono_loader_error_prepare_exception): Add support for 
10581         LOADER_ERROR_ASSEMBLY. Fix formatting.
10582
10583 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
10584
10585         * domain.c appdomain.c class-internals.h marshal.c: Add support 
10586         for VARIANT marshalling on windows and increment corlib version
10587         since Variant struct was added.
10588
10589 2006-06-03  Miguel de Icaza  <miguel@novell.com>
10590
10591         * debug-mono-symfile.c: Revert Martin's previous patch which broke
10592         stack trace line information:
10593
10594         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
10595         (Martin) when looking up B which is between A and C, return A not C.
10596
10597         Bug is #78573.
10598
10599         Thanks to Alexander Olk for tracking this down.
10600
10601 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
10602
10603         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
10604         
10605         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
10606         avoid clobbering its value.
10607         (mono_string_to_lpstr): Fix a warning on windows.
10608
10609 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
10610
10611         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
10612
10613         * reflection.c loader.c: Removed references to 'dummy' flag.
10614
10615         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
10616
10617         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
10618         it gets GC tracking.
10619
10620         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
10621         GC tracking.
10622         
10623         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
10624
10625         * marshal.c threadpool.c: Update callers of mono_async_result_new.
10626
10627         * appdomain.c: Bump corlib version.
10628
10629 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10630
10631         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10632         CEE_STIND_REF when working with object references.
10633
10634 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
10635
10636         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
10637         Fixes #78539.
10638
10639 2006-05-30  Miguel de Icaza  <miguel@novell.com>
10640
10641         * loader.c (method_from_memberref): Fix argument value for
10642         mono_loader_set_error_method_load (I was passing the MonoClass
10643         instead of the class name char *).
10644
10645 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
10646
10647         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
10648         CEE_STIND_REF when working with object references.
10649
10650 2006-05-30  Martin Baulig  <martin@ximian.com>
10651
10652         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
10653         mono_method_full_name() change and replace the ':' with a '.'
10654         here.
10655
10656 2006-05-30  Martin Baulig  <martin@ximian.com>
10657
10658         * debug-mono-symfile.c
10659         (mono_debug_symfile_lookup_location): Fix the algorithm:
10660         when looking up B which is between A and C, return A not C.
10661
10662 2006-05-29  Martin Baulig  <martin@ximian.com>
10663
10664         * mono-debug.h
10665         (MonoDebugMethodInfo): Make the typedef public.
10666         (MonoDebugSourceLocation): New public struct.
10667
10668         * mono-debug.c
10669         (mono_debug_source_location_from_address): Removed.
10670         (mono_debug_source_location_from_il_offset): Removed.
10671         (mono_debug_il_offset_from_address): Removed.
10672         (mono_debug_address_from_il_offset): Removed.
10673         (mono_debug_lookup_method): New public function.
10674         (mono_debug_lookup_source_location): New public function; replaces
10675         the old mono_debug_source_location_from_*() functions; see the
10676         inline documentation.
10677         (mono_debug_free_source_location): New public function.
10678         (mono_debug_print_stack_frame): New public function; see the
10679         inline documentation.
10680
10681         * debug-mono-symfile.c
10682         (mono_debug_find_source_location): Renamed into
10683         mono_debug_symfile_lookup_location(); only take a
10684         `MonoDebugMethodInfo *' and an `offset' argument; added inline
10685         documentation.
10686         (mono_debug_find_method): Renamed into
10687         mono_debug_symfile_lookup_method().
10688
10689 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
10690
10691         * assembly.c (mono_assembly_open_full): Dont overwrite the status
10692         returned by mono_image_open_full ().
10693
10694         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
10695         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
10696         #78517.
10697
10698         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
10699         #78518.
10700
10701 2006-05-27  Miguel de Icaza  <miguel@novell.com>
10702
10703         * class.c (mono_class_from_typeref): handle missing images
10704         earlier, deals with bug #78418.   Refactor code; 
10705
10706         Fix a warning introduced in my previous commit (some stale code
10707         from before I revisited my patch).
10708
10709         * class.c (mono_class_create_from_typedef): On failure, remove the
10710         class from the MonoImage->class_cache as the class is not
10711         initialized;   Fixes the leak pointed out by Paolo.
10712
10713 2006-05-25  Dick Porter  <dick@ximian.com>
10714
10715         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
10716         DeleteCriticalSections until I figure out which one may still be
10717         sometimes locked when mono_thread_cleanup is called.
10718
10719 2006-05-24  Dick Porter  <dick@ximian.com>
10720
10721         * threads.c (mono_thread_cleanup): Move the threading cleanup out
10722         of mono_thread_manage and back into its own function, so it can be
10723         called after the finalizer thread has finished.
10724
10725         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
10726
10727 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
10728
10729         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
10730         Fixes #78495.
10731
10732         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
10733         with non-blittable elements.
10734         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
10735
10736 2006-05-24  Martin Baulig  <martin@ximian.com>
10737
10738         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10739         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
10740
10741         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
10742         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
10743         `mono_debugger_event_handler' to NULL.
10744
10745 2006-05-24  Martin Baulig  <martin@ximian.com>
10746
10747         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
10748
10749 2006-05-24  Martin Baulig  <martin@ximian.com>
10750
10751         * mono-debug-debugger.h
10752         (mono_debugger_create_notification_function): Added
10753         `MonoCodeManager *' argument.
10754
10755 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
10756
10757         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
10758
10759 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
10760
10761         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
10762         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
10763         implementation.
10764
10765 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
10766
10767         * icall.c: precise GC support: objects can't be stored in unmanaged
10768         memory anymore, even if they are kept alive by other references: since
10769         they can move the GC needs to be able to always find them.
10770
10771 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10772
10773         * object.c: precise GC support for static fields. Support
10774         for moving GCs: write barriers and pinned allocation for interned
10775         strings.
10776
10777 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
10778
10779         * domain.c, domain-internals.h: precise GC support for the MonoDomain
10780         structure.
10781
10782 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10783
10784         * class.c, gc.c: sgen and precise GC updates.
10785
10786 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10787
10788         * marshal.h, marshal.c: added write barrier wrapper and precise type
10789         fixes.
10790
10791 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
10792
10793         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
10794         support.
10795
10796 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
10797
10798         * reflection.c: precise and sgen GC updates.
10799
10800 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10801
10802         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
10803
10804 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
10805
10806         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
10807
10808 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
10809
10810         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
10811         MONO_TYPE_OBJECT. Fixes #78462.
10812
10813 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
10814
10815         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
10816         and blittable types.
10817
10818 2006-05-17  Miguel de Icaza  <miguel@novell.com>
10819
10820         * class.c (mono_class_get_exception_for_failure): Implement parts
10821         of a TODO: if the loader error is set (instead of the class
10822         error), we return a Loader exception that can be properly thrown
10823         elsewhere.
10824
10825         This was exposed by some Winforms 2.0 code that I tried to run
10826         (Atsushi pointed me to it).
10827
10828 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
10829
10830         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
10831         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
10832         
10833         * marshal.c (emit_marshal_vtype): Add limited support for 
10834         UnmanagedType.LPStruct. Fixes #78427.
10835
10836         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
10837         Applied a patch from kangaroo to fix #77523.
10838
10839 2006-05-17  Martin Baulig  <martin@ximian.com>
10840
10841         * threads.c
10842         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
10843         (debugger_thread_created): Removed.
10844         (debugger_thread_exited): Removed.
10845
10846 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
10847
10848         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10849
10850         * object-internals.h (MonoReflectionResource): Sync with managed version.
10851
10852 2006-05-12  Wade Berrier <wberrier@novell.com>
10853
10854         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
10855
10856 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
10857
10858         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
10859         functions try to allocate from the image mempool.
10860
10861 2006-05-12  Dick Porter  <dick@ximian.com>
10862
10863         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
10864
10865 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
10866
10867         * object.c: The FieldGetter and FieldSetter methods require the full
10868         name of the class, not only the name. Fixes bug #78277.
10869
10870 2006-05-11  Miguel de Icaza  <miguel@novell.com>
10871
10872         * loader.c (method_from_memberref): Do not pass the NULL klass to
10873         mono_loader_set_error_() methods.  Pass the non-NULL value
10874         (class). 
10875
10876 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
10877
10878         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
10879         (mono_assembly_close): Null out assembly->image->references after freeing it.
10880
10881         * image.c (mono_image_close): Free image->references.
10882         
10883         * reflection.c (mono_image_basic_init): Fix a small memory leak.
10884
10885 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10886
10887         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
10888         before checking if it's NULL (g_assert).
10889
10890 2006-05-10  Martin Baulig  <martin@ximian.com>
10891
10892         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
10893         I thought I already killed that two months ago, but now it somehow reappeared.
10894
10895 2006-05-10  Martin Baulig  <martin@ximian.com>
10896
10897         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
10898
10899 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
10900
10901         * reflection.c: Allocate memory for dynamically created methods in the image
10902         mempools.
10903
10904 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
10905
10906         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
10907         don't use the ad pointer before checking if it's NULL (g_assert).
10908
10909 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
10910
10911         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
10912         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
10913
10914         * marshal.c: Allocate all signatures from mempools.
10915
10916         * marshal.c: Allocate some more signatures from mempools.
10917
10918 2006-05-09  Miguel de Icaza  <miguel@novell.com>
10919
10920         * object.c (mono_load_remote_field): The code used to provide a
10921         temporary variable for returning results if the user did not
10922         provide a result pointer.  But our temporary variable was allocted
10923         on the satck.
10924
10925         Fix calling code to always pass a result area.   Coverity ID 103.
10926
10927 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
10928
10929         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
10930         value, not the old. Fixes #78312.
10931         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
10932
10933         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
10934         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
10935         per-image cache.
10936
10937         * assembly.c (mono_assembly_close): Free image->references.
10938
10939         * assembly.c (mono_assembly_names_equal): Fix a warning.
10940         (mono_assemblies_cleanup): Cleanup more global data.
10941
10942         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
10943
10944         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
10945         ptr_cache and image->modules.
10946
10947         * image.c (mono_image_init): Allocate array_cache lazily.
10948         
10949 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10950
10951         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
10952         behavior was changed recently and has bad side effects.
10953
10954 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
10955
10956         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
10957         
10958         * assembly.c (mono_assembly_close): Remove a debug printf.
10959
10960         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
10961
10962         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
10963         to also allow for temporary references between mono_image_open ()/close ().
10964
10965         * domain.c (get_runtimes_from_exe): Add a FIXME.        
10966
10967 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
10968
10969         * marshal.c: Fix support for dynamic methods.
10970
10971         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
10972
10973         * marshal.c (mono_marshal_cleanup): New cleanup function.
10974
10975         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
10976         image mempools.
10977
10978         * class.c (mono_class_init): Fix leaking class->nested_classes.
10979
10980         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
10981
10982         * image.c (mono_image_init): Initialize the new cashes.
10983
10984         * image.c (mono_image_close): Destroy the new cashes.
10985
10986         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
10987
10988         * mempool.c (mono_mempool_strdup): New helper function.
10989
10990         * class-internals.h: Add prototype for mono_loader_unlock ().
10991
10992         * domain.c (mono_jit_info_table_find): Fix a warning.
10993         (mono_debugger_check_runtime_version): Ditto.
10994
10995         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
10996         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
10997         functions to these modules.
10998
10999         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
11000         metadata modules.
11001         
11002         * marshal.c (mono_free_bstr): Fix a warning.
11003
11004         * assembly.c (mono_assembly_open_full): Fix another small leak.
11005
11006         * object.c: Fix some unload leaks in the remoting code.
11007
11008         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
11009         function.
11010
11011         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
11012
11013         * reflection.c: Fix some unload leaks in dynamic assemblies.
11014
11015 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
11016
11017         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
11018         * marshal.h: Add BSTR support on Win32
11019         * icall.c: Add BSTR icalls
11020         * metadata.h: Add BSTR enums
11021
11022 2006-04-28  Miguel de Icaza  <miguel@novell.com>
11023
11024         Work to catch the crash from #76795 and turn it into an
11025         exception.   As I stubbed out pieces of the VisualBasic support,
11026         I found a number of places where the code was failing and I added
11027         checks to those places. 
11028         
11029         * metadata.c (do_mono_metadata_parse_generic_class): Make this
11030         function return a status code.  If we fail to parse the signature
11031         from mono_metadata_parse_generic_inst, return FALSE.
11032
11033         * loader.c (mono_get_method_from_token): If we fail to load the
11034         method (mono_class_get) return NULL.   
11035
11036         * (method_from_memberref): Return NULL if we are unable to parse
11037         the method signature
11038
11039         (mono_loader_error_prepare_exception): Since we now use the
11040         loader_error flag internally to stop processing, and obtaining
11041         exceptions that might be thrown will walk this code path the
11042         proper way of going from a MonoLoaderError into a
11043         MonoException was convoluted.   This new routine encapsulates the
11044         process of turning the error into an exception and *clearing* the
11045         error afterwards.
11046         
11047 2006-04-27  Miguel de Icaza  <miguel@novell.com>
11048
11049         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
11050         with missing assemblies), and to cope with:
11051
11052                 * Missing fieldref from a non-existing assembly.
11053                 * Missing methodref from a non-existing assembly.
11054
11055         The first batch of work to address *some* of the issues from 76661.
11056         
11057         * object.c (mono_class_create_runtime_vtable): If we fail to
11058         initialize the class raise the exception here. 
11059
11060         * metadata.c (mono_class_get_overrides_full): If any methods fail
11061         to load return the failure to the caller.
11062
11063         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
11064         flagging assemblies that failed to load.   
11065
11066         Do not crash if we are unable to load the assembly.
11067
11068         (mono_assembly_close): Do nothing with REFERENCE_MISSING
11069         assemblies. 
11070
11071         * loader.c (mono_loader_set_error_type_load): Change the
11072         convention to always pass unallocated strings, so we make our own
11073         copies (I know our own code had duplicated strings before, but
11074         this keeps the normal conventions).
11075         (method_from_memberref): Call mono_loader_set_error_method_load
11076         for all possible failures of loading the class. 
11077         Remove assert, turn into a loader error.
11078
11079         (mono_loader_error_to_exception): Move this routine from mini
11080         (mini_loader_error_to_exception) there was no need to have that in
11081         mini. 
11082
11083         * class.c (mono_class_from_typeref): If we were not able to load
11084         the assembly with mono_assembly_load_reference, call the
11085         mono_loader_set_error_type_load to register the problem.
11086
11087         (mono_class_setup_fields): If we fail to load the type from
11088         mono_metadata_parse_type_full, call mono_class_set_failure and
11089         break from the loop.
11090
11091         If class->exception_type is set, we do not layout the fields as
11092         that might crash the runtime, and instead return (from breaking
11093         from the previous loop).
11094
11095         (mono_class_setup_vtable): This now returns a boolean indicating
11096         whether the table was properly setup.   The decision is driven by
11097         mono_class_get_overrides_full which might run into non-existing
11098         methods. 
11099         
11100         (mono_class_init): Returns TRUE on success or FALSE if there was a
11101         problem in loading the type (incorrect assemblies, missing
11102         assemblies, methods, etc).
11103
11104         When we call mono_class_setup_fields we also check for a potential
11105         error inside this call (either a class exception or a general
11106         loader exception).
11107
11108         (mono_class_create_from_typedef): If the parent fails to load
11109         (calling mono_class_get_full) return NULL.
11110         
11111         ** Important **
11112
11113         calls to mono_metadata_parse_type_full should be checked
11114         everywhere and set the mono_class_set_failure
11115         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
11116
11117         The current patch checks the places where my manually constructed
11118         tests show the errors are showing up, but we should do it
11119         everywhere. 
11120
11121         ** Important2 **
11122
11123         mono_class_init return values should be tested everywhere, like
11124         the previous case this is something that we should audit
11125         everywhere and not only on the cases exposed by the tests I
11126         created. 
11127
11128 2006-04-26  Miguel de Icaza  <miguel@novell.com>
11129
11130         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
11131         boolean parameter and instead pass the information on `options'
11132         parameter (FileOptions).
11133
11134         * icall.c: Register the new signature for MonoIO.Open.
11135
11136         * debug-helpers.c (dis_one): Trying to understand how coverity
11137         works.  Fix Run 5, item 78.
11138
11139 2006-04-26  Dick Porter  <dick@ximian.com>
11140
11141         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
11142         dereference.
11143
11144 2006-04-25  Martin Baulig  <martin@ximian.com>
11145
11146         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
11147
11148         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
11149         debugger_thread_created().
11150         (debugger_gc_push_all_stacks): Don't handle the main thread in any
11151         special way.
11152         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
11153         (mono_debugger_finalize_threads): New function; undo the effects
11154         of mono_debugger_init_threads().
11155         (mono_debugger_create_all_threads): Removed.
11156
11157 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
11158
11159         * image.c (mono_image_close): Tidy up trace messages.
11160
11161         * assembly.c (mono_assembly_close): Ditto.
11162
11163         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
11164         no longer references an already freed assembly. Fixes #78168.
11165
11166 2006-04-21  Dick Porter  <dick@ximian.com>
11167
11168         * threads.c (mono_thread_detach): Fix reference counting when
11169         detaching threads.
11170
11171 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
11172
11173         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
11174         #78155.
11175
11176 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
11177
11178         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
11179         (mono_type_to_stind): Ditto.
11180
11181         * marshal.c: Use the new helper functions to simplify code.
11182
11183         * image.c (mono_image_close): Add some code for help debug assembly unloading
11184         problems.
11185
11186         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
11187         image mempool.
11188
11189         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
11190         assembly was already loaded in another appdomain. Fixes #78083.
11191
11192 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
11193
11194         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
11195         referenced assemblies.
11196         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
11197
11198         * domain.c (mono_domain_free): Add a trace message.
11199
11200         * appdomain.c (add_assemblies_to_domain): Ditto.        
11201
11202         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
11203         field.  
11204
11205 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11206
11207         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
11208
11209 2006-04-12  Martin Baulig  <martin@ximian.com>
11210
11211         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
11212         `USE_INCLUDED_LIBGC'.   
11213
11214 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11215
11216         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
11217         the patch contains ../ and a small directory name later. Hopefully fixes
11218         #78035.
11219
11220 2006-04-10  Martin Baulig  <martin@ximian.com>
11221
11222         Clean up the debugger's thread-handling code.
11223
11224         The debugger's thread-handling code has been moved from
11225         ../mini/debug-debugger.c to threads.c.  We now iterate directly
11226         over the `threads' hash, keep track of exiting threads and also
11227         use proper locking.
11228
11229         We can now debug XSP and XSP based applications with the debugger.
11230
11231         * object-internals.h (MonoThread): Added `gpointer end_stack'.
11232
11233         * threads.h
11234         (MonoThreadCallbacks): Removed; this was only used by the debugger.
11235         (mono_install_thread_callbacks): Likewise.      
11236
11237         * threads.c (mono_thread_callbacks): Removed.
11238         (debugger_thread_created, debugger_thread_exited): New static functions.
11239         (start_wrapper): Call debugger_thread_created().
11240         (thread_cleanup): Call debugger_thread_exited().
11241         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
11242         (mono_debugger_init_threads): New public function.
11243         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
11244         iterate directly over the `threads' hash and also use proper locking.
11245
11246         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
11247
11248         * mono-debug-debugger.h
11249         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
11250
11251 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11252
11253         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
11254         argument type=array. Fixes #78057.
11255
11256 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
11257
11258         * culture-info-table.h : regenerated. Fixed bug #69652.
11259
11260 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
11261
11262         * loader.c metadata.c: Reapply a variant r59116.
11263         
11264         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
11265
11266         * class.c (mono_class_setup_interface_offsets): New internal function.
11267
11268         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
11269         interfaces too. Fixes #77398.
11270
11271         * reflection.c (encode_cattr_value): Add support for 
11272         parameter type=object, argument type=array.
11273         (load_cattr_value): Ditto. Fixes #77916.
11274
11275         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
11276         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
11277
11278         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
11279         a byval char array and CharSet is Ansi.
11280
11281         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
11282
11283 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
11284
11285         * metadata.c: Add some locking comments.
11286         
11287         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
11288         mempool.
11289         (mono_metadata_free_method_signature): Don't free the signature itself.
11290
11291         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
11292
11293         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
11294         reference the same MonoImage.
11295         (mono_assembly_load_from_full): Add an assert.
11296
11297 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
11298
11299         * image.c (mono_image_close): Don't put the image we are about to free into the
11300         loaded_images_guid_hash.
11301
11302         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
11303         to reduce code duplication.
11304
11305         * marshal.c: Register the native functions called by this module as icalls, to
11306         somewhat centralize the creation of MonoMethodSignature's.
11307
11308         * loader.c (mono_method_signature): Add a cache for method signatures.
11309
11310         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
11311         the parameter attributes of a method.
11312         (mono_metadata_parse_method_signature_full): Refactored the computation of
11313         parameter attributes into a separate function. Also avoid one allocation in
11314         most cases.
11315
11316         * assembly.c (mono_assembly_close): Ditto.
11317
11318         * image.c (mono_image_close): Log trace messages with INFO level.
11319
11320         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
11321
11322         * image.c reflection.c: Correct reference counting of image modules.
11323         
11324         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
11325         of this function from the image mempool.
11326         
11327         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
11328         to allow more cached types to be used.
11329
11330         * mono-debug.c (mono_debug_add_method): Appled patch from
11331         David S. Miller  <davem@sunset.davemloft.net>: Access 
11332         minfo->lexical_blocks[] entry elements using read32().
11333
11334 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
11335
11336         * loader.c (mono_free_method): No longer free the method header for non-dynamic
11337         methods as it is allocated from the mempool.
11338
11339         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
11340         image mempool.
11341
11342         * metadata-internals.h: Add comments describing the reference counting scheme
11343         used for MonoImage and MonoAssembly.
11344
11345         * image.c assembly.c reflection.c: Rework reference counting of images and 
11346         assemblies so they are freed when the runtime is shut down. Free some 
11347         additional memory structures when an image is unloaded.
11348         
11349 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
11350
11351         * class.c loader.c reflection.c: Allocate more data structures in
11352         the image mempool.
11353
11354 2006-03-31  Miguel de Icaza  <miguel@novell.com>
11355
11356         * icall.c
11357         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
11358         build on pre glib 2.4 systems.
11359
11360 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
11361
11362         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
11363
11364         * icall.c: Fix some warnings.
11365
11366 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
11367
11368         * culture-info-table.h : regenerated.
11369
11370 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
11371
11372         * threads.c, object-internals.h, verify.c: changed the culture caching
11373         code to use a normal MonoArray for storage so the GC can keep track of
11374         them easily. Fixed bits of the cache logic, too and simplified the
11375         code.
11376
11377 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
11378
11379         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
11380         thread for non-Boehm GCs.
11381
11382 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
11383
11384         * domain.c, object.c, domain-internals.h: reduce the amount of memory
11385         needed to keep track of the data for static fields.
11386
11387 2006-03-29  Raja R Harinath  <rharinath@novell.com>
11388
11389         Fix #75172
11390         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
11391         for interface classes.  Use 'num_methods' instead.
11392         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
11393         before using '->vtable_size' field.
11394
11395 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11396
11397         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
11398         doesn't contain managed pointers, so use a normal hashtable.
11399
11400 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
11401
11402         * reflection.c, class-internals.h, domain.c: fixed handling of types
11403         used as values for objects in custom attributes (bug #77915):
11404
11405 2006-03-24  Martin Baulig  <martin@ximian.com>
11406
11407         * class.c (mono_class_setup_fields): Added support for generic
11408         instances; fixes #77580.
11409
11410 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11411
11412         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
11413
11414 2006-03-24  Dick Porter  <dick@ximian.com>
11415
11416         * file-io.c (get_file_attributes): More stat macro breakage.
11417         Fixes bug 77759.
11418
11419 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
11420
11421         * profiler.c: added the file=filename option in the default profiler
11422         to output the profile data to filename.
11423
11424 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11425
11426         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
11427         bug #77877.
11428
11429 2006-03-22  Martin Baulig  <martin@ximian.com>
11430
11431         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
11432         allocated `MonoClassField *' in `fb->handle'.
11433
11434 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11435
11436         * class.c, image.c, metadata-internals.h: implemented new mechanism to
11437         allocate interface ID to save memory and allow better ID reuse on
11438         appdomain unload. setup_generic_vtable () removal from Martin.
11439
11440 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11441
11442         * object.h, appdomain.c, domain.c, exception.c, icall.c,
11443         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
11444         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
11445         write barriers for reference stores with managed objects accessed with
11446         C structures in the runtime and in embedding programs.
11447
11448 2006-03-20  Raja R Harinath  <rharinath@novell.com>
11449
11450         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
11451         'interface_id' and 'max_interface_id' fields of MonoClasses
11452         representing open generic types.
11453
11454 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
11455
11456         * object.h, object.c, icall.c: added functions to deal with
11457         storing valuetypes that contain references in managed objects.
11458         * reflection.c, string-icalls.c, threads.c, marshal.c: small
11459         fixes and comments around uses of mono_array_addr ().
11460
11461 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
11462
11463         * object.h, icall.c, monitor.c: object.GetHashCode ()
11464         implementation that supports the moving garbage collector.
11465
11466 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
11467
11468         * icall.c, threads-types.h, threads.c: implemented finalizer for
11469         LocalDataStoreSlot.
11470
11471 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
11472
11473         * metadata.c (mono_type_size): Add a fixme.
11474         (mono_type_stack_size): Ditto.
11475
11476         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
11477         'type_forwarders' field.
11478
11479         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
11480         attribute from net 2.0.
11481
11482         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
11483         from class.c.
11484
11485         * class.c (mono_class_setup_fields): Fix a warning.
11486         
11487         * class.c (mono_class_from_name): Add support for assemblyref entries
11488         in the EXPORTEDTYPE table.
11489
11490         * reflection.c: Add support for handling type forwarders under net 2.0.
11491
11492         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
11493         
11494 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
11495
11496         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
11497         overwriting entries in ModuleBuild->types, also clean up the code
11498         a little. Fixes #77774.
11499
11500 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11501
11502         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
11503         load friend assembly info when present.
11504
11505 2006-03-14  Raja R Harinath  <rharinath@novell.com>
11506
11507         Fix crasher on gtest-158.cs.
11508         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
11509         the return value if the MonoClass we want is yet in an
11510         inconsistent state.
11511         * class.c (mono_class_create_from_typedef): Add an comment
11512         explaining an order dependency between mono_class_setup_parent and
11513         mono_class_setup_mono_type.
11514
11515 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
11516
11517         * class.c: documentation updates and events bug fix.
11518
11519 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
11520
11521         * class.c: some cleanup, locking fixes.
11522
11523 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11524
11525         * class.c: fix the generics code to setup nested
11526         type info to the instantiated type (bug #77770).
11527
11528 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11529
11530         * marshal.c: fixed a few type correctness issues.
11531
11532 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11533
11534         * loader.c: the Set/Get/Addrtess array methods should be public.
11535
11536 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11537
11538         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
11539         
11540         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
11541         info->wrapper.
11542
11543 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
11544
11545         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
11546
11547         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
11548
11549         * mempool.c (mono_mempool_alloc): Speed this up a bit.
11550         (mono_mempool_alloc0): Ditto.
11551
11552 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11553
11554         * socket-io.c:
11555         (create_object_from_sockaddr): it was allocating 4 extra bytes
11556         for the AF_UNIX data. Fixes bug #77747.
11557
11558 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
11559
11560         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
11561
11562 2006-03-09  Dick Porter  <dick@ximian.com>
11563
11564         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
11565         Fixes bug 76966 again.
11566
11567 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
11568
11569         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
11570         names from r57532
11571         * appdomain.c: Bumped corlib version to 48 (due to r57532)
11572
11573 2006-03-07  Martin Baulig  <martin@ximian.com>
11574
11575         * object.c
11576         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
11577
11578 2006-03-07  Martin Baulig  <martin@ximian.com>
11579
11580         * class.c
11581         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
11582         regression introduced in r56970; see gtest-252.cs.
11583
11584         * loader.c (mono_get_method_constrained): Correctly handle generic
11585         methods; see gtest-253.cs.
11586
11587 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
11588
11589         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
11590
11591 2006-03-04  Martin Baulig  <martin@ximian.com>
11592
11593         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
11594         compute the parent type at runtime, just like we're already doing
11595         it for interfaces.
11596
11597         * reflection.c
11598         (mono_reflection_bind_generic_parameters): Don't compute the
11599         parent type anymore.
11600
11601         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
11602
11603 2006-03-04  Martin Baulig  <martin@ximian.com>
11604
11605         * mono-debug-debugger.h
11606         (mono_debugger_create_notification_function): Allocate memory at
11607         runtime and return a pointer to it.
11608
11609 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
11610
11611         * assembly.c: Fix windows build.
11612         
11613         * assembly.c: Fix build.
11614
11615         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
11616
11617         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
11618         
11619 2006-03-03  Dick Porter  <dick@ximian.com>
11620
11621         * process.c
11622         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
11623         Check parameters before dereferencing them.  Fixes Aaron's part of
11624         bug 77393.
11625
11626 2006-03-03  Raja R Harinath  <rharinath@novell.com>
11627
11628         Fix performance regression.
11629         * loader.c (find_method_in_class): Add 'from_class' argument.
11630         Rename 'klass' argument to 'in_class'.  The signature is compared
11631         against the method in 'in_class', and the corresponding method is
11632         returned from 'from_class'.
11633         (find_method): Walk both 'in_class' and 'from_class' in parallel.
11634         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
11635         type definition and generic instantiation in parallel.
11636         (mono_get_method_constrained): Update to changes.
11637
11638 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11639
11640         * threads.c: make sure the domain is correct, too when doing
11641         mono_thread_attach ().
11642
11643 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
11644
11645         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
11646         windows. Fixes #77683.
11647
11648 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11649
11650         * object.h, *: introduced specific way to set elements of an array
11651         of references to be used as write barrier. Still need to audit the
11652         uses of mono_array_addr.
11653
11654 2006-03-01  Miguel de Icaza  <miguel@novell.com>
11655
11656         * object-internals.h: New field to cache the assmebly name, patch
11657         from Tambet Ingo (tambet@ximian.com)
11658
11659 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
11660
11661         * decimal.h, class-internals.h, metadata-internals.h,
11662         file-io.h: mark a few function declarations as internal, to
11663         reduce the number of PLT entries.
11664
11665 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11666
11667         * file-io.c: fix typo in warning message.
11668
11669 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
11670
11671         * loader.c: on unix, lookup the "*A" version of a function
11672         if charset is auto as a second option before failing.
11673
11674 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11675
11676         * class.h (mono_class_inflate_generic_method): Revert to two
11677         argument version.
11678         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
11679         (mono_class_inflate_generic_method_full): Add.
11680         * class.c (mono_class_inflate_generic_method_full): Rename from
11681         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
11682         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
11683         * loader.c, reflection.c: Update to changes.
11684
11685 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11686
11687         * icall.c: const fixes and small improvements.
11688
11689 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11690
11691         * threadpool.c: for asynchronous connect(), enable the same workaround
11692         for BSD 6 as for the Mac. Fixes bug #77637.
11693
11694 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11695
11696         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
11697         formatted classes. Fixes #77524.
11698
11699 2006-02-24  Raja R Harinath  <rharinath@novell.com>
11700
11701         * class.c (inflate_generic_type): Add a couple more
11702         micro-optimizations.
11703         (inflate_generic_context): Don't use the 'gmethod' from
11704         'inflate_with'.
11705         (mono_class_inflate_generic_method): If the method has generic
11706         parameters, but the passed-in context doesn't have a 'gmethod',
11707         create one.  Use the possibly simplified generic instantiation
11708         from the declaring class instead of the one passed in.
11709
11710 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11711
11712         Make generic method signature and method header handling lazy.
11713         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
11714         (inflate_generic_header): Likewise.
11715         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
11716         parameter to avoid inflating types.
11717         (mono_get_inflated_method): Empty out.
11718         * class.h (mono_class_inflate_generic_method): Update to changes.
11719         * loader.c (mono_get_method_from_token): Don't parse signature for
11720         generic methods, nor methods of generic classes.
11721         (mono_method_signature): Rename from 'mono_method_signature'.
11722         Inflate signature on demand.
11723         (mono_method_get_header): Inflate method header on demand.
11724         * reflection.c: Update to changes.
11725
11726 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11727
11728         * metadata.c (mono_metadata_inflate_generic_inst): If the
11729         instantiation is closed, don't bother expanding it in the new
11730         context.
11731         * class.c (inflate_generic_class): If the generic instantiation
11732         doesn't change after inflation, return the argument itself.
11733         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
11734         Add bounds checks.
11735         (inflate_generic_context): If neither the generic class nor the
11736         generic method instantiations change, return the original context.
11737         * reflection.c (mono_method_get_object): Do
11738         'mono_get_inflated_method' before accessing the ->klass field.
11739         (inflate_mono_method): Don't create a MonoGenericMethod unless
11740         necessary.
11741         (inflate_method): Don't pass a constructed type as the declaring
11742         type of a methodbuilder.
11743
11744 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
11745
11746         * object.c: fix memory overwrite.
11747
11748 2006-02-22  Dick Porter  <dick@ximian.com>
11749
11750         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
11751         it doesn't work any more.
11752         (mono_threads_request_thread_dump): Fix unused variable warnings.
11753
11754 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11755
11756         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
11757         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
11758         the public header file.
11759
11760 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
11761
11762         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
11763
11764 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11765
11766         * class-internals.h, object.c: reduce the size of MonoVTable
11767         and store the interface_offsets array at negative offsets.
11768
11769 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
11770
11771         * metadata.c: tweak table descriptors data structures to reduce
11772         size and runtime relocations.
11773
11774 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11775
11776         * marshal.c: fix some types and opcodes to be type-safe
11777         in marshaling wrappers.
11778
11779 2006-02-21  Ankit Jain  <jankit@novell.com>
11780
11781         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
11782
11783 2006-02-21  Raja R Harinath  <rharinath@novell.com>
11784
11785         * metadata.c (get_constraints): Relax debugging checks for monodis.
11786
11787 2006-02-21  Ankit Jain  <jankit@novell.com>
11788
11789         * metadata.c (mono_metadata_load_generic_params): Move the code
11790         checking for ambiguous generic params from here to mono/dis/get.c
11791         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
11792
11793 2006-02-21  Raja R Harinath  <harinath@gmail.com>
11794
11795         Fix assertion triggered when compiling nemerle.
11796         * class.c (mono_get_shared_generic_inst): Rename from
11797         get_shared_inst and make non-static.
11798         * loader.c (mono_get_shared_generic_method): New.  Used to create
11799         the MonoGenericContext-equivalent of a MonoGenericContainer.
11800         (mono_get_method_from_token): Initialize the 'context' field of
11801         the created MonoGenericContainer.
11802         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
11803         * metadata.c (get_constraints): Add sanity check.
11804         * class-internals.h: Add new internal methods.
11805
11806         * reflection.c (verify_safe_for_managed_space): New sanity check.
11807         Currently checks that owner-less generic parameters aren't allowed
11808         in managed space.
11809         (mono_type_get_object): Use it.
11810         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
11811         that are now in mono_type_get_object.
11812         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
11813
11814 2006-02-19  Raja R Harinath  <harinath@gmail.com>
11815
11816         * metadata.c (mono_type_create_from_typespec): Rename from
11817         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
11818         argument and caching of types in the generic container.
11819         (unwrap_arrays, find_generic_param): Remove.
11820         * metadata-internals.h: Update.
11821         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
11822
11823 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
11824
11825         * class.c (mono_class_get_exception_for_failure): Fix a warning.
11826
11827         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
11828         return values. Fixes #77581.
11829
11830         * class.c (mono_fnptr_class_get): Switch name and name_space.
11831
11832         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
11833         classes and add support for [In, Out] attributes.
11834         (mono_marshal_free_asany): Ditto. Fixes #77524.
11835
11836 2006-02-18  Raja R Harinath  <harinath@gmail.com>
11837
11838         * class.c (mono_class_from_generic_parameter): Make more robust to
11839         incomplete MonoGenericContainers from monodis.
11840
11841 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11842
11843         * class-internals.h: added some more exception types.
11844         * class.c, metadata.c: added a few checks to handle missing
11845         types.
11846
11847 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11848
11849         Use owner-less generic-params some more.
11850         * class.c (my_mono_class_from_generic_parameter): Remove.
11851         (mono_class_from_generic_parameter): Handle null image,
11852         param->name and param->owner.
11853         (mono_class_from_mono_type): Update.
11854         (mono_class_create_from_typespec): Remove 'container' parameter.
11855         If that parameter is non-null, the result is always inflated by
11856         'mono_class_get_full' anyway.
11857         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
11858         parameter.
11859         (mono_class_get_full): Update.
11860
11861         * class.c (inflate_generic_type) [GENERICINST]: If the generic
11862         instance is not open, don't bother inflating.
11863         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
11864         parse metadata for inflated classes.
11865         (_mono_class_get): Change GenericContext* parameter to
11866         GenericContainer*.
11867         (mono_class_create_from_typespec): Likewise.  Simplify, and
11868         implement trivially.  All the cases are handled in
11869         mono_class_from_mono_type.  Don't inflate returned class.
11870         (mono_class_get_full): Delegate GENERICINST optimization to
11871         inflate_generic_type.
11872         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
11873
11874 2006-02-16  Dick Porter  <dick@ximian.com>
11875
11876         * socket-io.c (create_object_from_sockaddr): Fix typo.
11877         (create_sockaddr_from_object): Check array lengths before
11878         potentially accessing items off the end.
11879         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
11880         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
11881         (ves_icall_System_Net_Sockets_Socket_Send_internal)
11882         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
11883         length checks to avoid wraparound overflows.
11884         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
11885         contents of the array of sockets
11886         (hostent_to_IPHostEntry2)
11887         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
11888         Check return value of inet_ntop ().
11889         (addrinfo_to_IPHostEntry): Fix typo
11890
11891 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11892
11893         Type metadata parsing doesn't use generic-instantiation information.
11894         * metadata.c (mono_metadata_parse_array_full): Change
11895         MonoGenericContext* parameter to MonoGenericContainer*.
11896         (mono_metadata_parse_type_full): Likewise.
11897         (mono_type_create_from_typespec_full): Likewise.
11898         (mono_metadata_parse_mh_full): Likewise.
11899         (mono_metadata_parse_generic_inst): Likewise.
11900         (do_mono_metadata_parse_generic_class): Likewise.
11901         (do_mono_metadata_parse_type): Likewise.
11902         * metadata-internals.h: Update to changes.
11903         * class.c (mono_class_find_enum_basetype): Likewise.
11904         (mono_class_setup_fields): Likewise.
11905         (mono_class_create_from_typespec): Likewise.
11906         * loader.c (method_from_methodspec): Likewise.
11907         (mono_get_method_from_token): Likewise.
11908         (mono_method_get_header): Likewise.
11909
11910 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11911
11912         * marshal.c: handle additional GENERICINST case (patch from
11913         Thong Nguyen <tum@veridicus.com>).
11914         Fix a few cases where LDIND_I/STIND_I was used for references.
11915
11916 2006-02-16  Raja R Harinath  <rharinath@novell.com>
11917
11918         * reflection.c (mono_reflection_get_token): Remove unused variable.
11919
11920 2006-02-16  Martin Baulig  <martin@ximian.com>
11921
11922         * reflection.c (mono_reflection_get_token): Add support for fields
11923         in instantiated generic types.
11924
11925         * icall.c
11926         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
11927
11928 2006-02-15  Martin Baulig  <martin@ximian.com>
11929
11930         * icall.c
11931         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
11932         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
11933         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
11934         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
11935
11936 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11937
11938         * class.c, metadata.c, metadata.h, object.c, icall.c,
11939         marshal.c: changed mono_type_get_underlying_type () to do
11940         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
11941         Fixed handling of instantiated generic valuetypes (bug #75479).
11942
11943 2006-02-15  Raja R Harinath  <rharinath@novell.com>
11944
11945         * metadata.c (mono_metadata_decode_signed_value): Simplify.
11946         Delegate to mono_metadata_decode_value, and work on the returned value.
11947
11948         * icall.c (ves_icall_MonoType_GetGenericArguments):
11949         Add consistency check here too.
11950         
11951 2006-02-15  Ankit Jain  <jankit@novell.com>
11952
11953         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
11954         char/short etc.
11955
11956 2006-02-15  Ankit Jain  <jankit@novell.com>
11957
11958         * metadata.c (mono_metadata_decode_signed_value): New function to decode
11959         signed values, used only for representing lower bounds of arrays.
11960         (mono_metadata_parse_array_full): Use new
11961         mono_metadata_decode_signed_value to decode lower bounds.
11962
11963 2006-02-14  Martin Baulig  <martin@ximian.com>
11964
11965         * reflection.c
11966         (mono_reflection_get_token): Support "MonoGenericMethod" and
11967         "MonoGenericCMethod" and allow generic instances / methods.
11968
11969 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
11970
11971         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
11972         to obtain the terminal size using an ioctl.
11973
11974         * object.c (mono_nullable_init): Revert this as nullable reference
11975         types are not valid.
11976         (mono_nullable_box): Ditto.
11977
11978 2006-02-09  Dick Porter  <dick@ximian.com>
11979
11980         * threads.c (mono_thread_detach): Drop a reference to the thread
11981         we're detaching.
11982
11983 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
11984
11985         * object.c (mono_nullable_init): Handle nullable reference types.
11986         (mono_nullable_box): Ditto. Fixes #77446.
11987
11988 2006-02-07  Martin Baulig  <martin@ximian.com>
11989
11990         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
11991
11992 2006-02-07  Ankit Jain  <jankit@novell.com>
11993
11994         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
11995         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
11996         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
11997         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
11998         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
11999         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
12000
12001 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
12002
12003         * class.c (mono_class_create_generic): Set type_token as well.
12004
12005         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
12006         compatible with MS.
12007
12008 2006-02-02  Martin Baulig  <martin@ximian.com>
12009
12010         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
12011         has never been used so far.
12012
12013 2006-02-02  Martin Baulig  <martin@ximian.com>
12014
12015         * mono-debug-debugger.h: Changed comment at the top of this file;
12016         the header is not installed, but it's safe to #include it from
12017         within the JIT.
12018
12019         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
12020         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
12021
12022 2006-02-02  Martin Baulig  <martin@ximian.com>
12023
12024         * mono-debug.h
12025         (MonoSymbolTable): Removed the `metadata_info' field.
12026
12027         * mono-debug.c
12028         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
12029
12030         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
12031         (mono_debugger_add_builtin_types): Removed.
12032         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
12033         (mono_debugger_create_notification_function): We now operate on a
12034         pre-allocated area; take a `gpointer' and return `void'.
12035
12036         * mono-debug-debugger.c
12037         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
12038         (mono_debugger_add_builtin_types): Removed.
12039
12040 2006-02-02  Martin Baulig  <martin@ximian.com>
12041
12042         * threads.c (mono_debugger_create_all_threads): New public method.
12043
12044 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
12045
12046         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
12047         breaks on several platforms.
12048
12049 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
12050
12051         * assembly.c: the VS.NET build doesn't supply default values for
12052         MONO_ASSEMBLIES and MONO_CFG_DIR.
12053
12054 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
12055
12056         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
12057         helper function.
12058
12059         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
12060
12061         * loader.c (method_from_memberref): Fix a warning.
12062
12063         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
12064
12065         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
12066         with explicit layout. Fixes #77433.
12067
12068 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
12069
12070         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
12071         max_interface_id is initialized before using it. Fixes #77398.
12072         (ves_icall_Type_GetInterfaces): Ditto.
12073
12074 2006-01-30  Raja R Harinath  <rharinath@novell.com>
12075
12076         * metadata.c (mono_metadata_parse_method_signature_full): Don't
12077         allocate memory for parameter attributes when parsing memberref
12078         signatures.
12079         * loader.c (mono_loader_set_error_method_load): Don't warn.
12080         (method_from_memberref): Ensure MissingMethodException gets thrown
12081         if method is not found.  Make warning more informative.
12082
12083 2006-01-29  Raja R Harinath  <harinath@gmail.com>
12084
12085         Fix #77397
12086         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
12087         return true if is byref.
12088         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
12089         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
12090         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
12091
12092 2006-01-27  Raja R Harinath  <rharinath@novell.com>
12093
12094         Fix tests/find-method.2.il
12095         * loader.c (find_method, find_method_in_class): Remove is_inflated
12096         argument.  Revert 2006-01-18 change.
12097         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
12098         is generic, search for method in its generic definition.
12099         * class.c (mono_class_setup_vtable_general): Print generic
12100         arguments of generic types in debugging printf.
12101
12102 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
12103
12104         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
12105
12106         * threads.c (mono_threads_request_thread_dump): New helper function.
12107
12108 2006-01-25  Raja R Harinath  <rharinath@novell.com>
12109
12110         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
12111
12112 2006-01-25  Ankit Jain  <jankit@novell.com>
12113
12114         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
12115         move definition to ..
12116         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
12117         
12118 2006-01-25  Ankit Jain  <jankit@novell.com>
12119             Raja R Harinath  <rharinath@novell.com>
12120
12121         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
12122         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
12123         as necessary.
12124
12125 2006-01-25  Martin Baulig  <martin@ximian.com>
12126
12127         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
12128         `MonoDebuggerThread' into debug-debugger.c.
12129
12130 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
12131
12132         * profiler.c: fix printing of data.
12133
12134 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
12135
12136         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
12137           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
12138
12139 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
12140
12141         * object.c: fix deadlock related to string interning.
12142
12143 2006-01-23  Martin Baulig  <martin@ximian.com>
12144
12145         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
12146
12147         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
12148
12149 2006-01-23  Martin Baulig  <martin@ximian.com>
12150
12151         * mono-debug.h: Moved the prototypes of some functions which are
12152         used by the JIT here from mono-debug-debugger.h.
12153
12154 2006-01-21  Martin Baulig  <martin@ximian.com>
12155
12156         * Makefile.am: Don't install mono-debug-debugger.h.
12157
12158 2006-01-21  Martin Baulig  <martin@ximian.com>
12159
12160         * mono-debug-debugger.h: Enforce the private status of this header
12161         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
12162         Moved some stuff from mono-debugger-jit-wrapper.h here.
12163
12164 2006-01-20  Raja R Harinath  <rharinath@novell.com>
12165
12166         * class.c (mono_class_from_typeref): Add a sanity test to help
12167         catch lack of assembly load/search hooks.
12168
12169 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
12170
12171         * marshal.c (emit_struct_conv): Relax the fields with same offset
12172         check even more. Fixes #77230.
12173
12174 2006-01-18  Martin Baulig  <martin@ximian.com>
12175
12176         * loader.c (find_method_in_class): Added `gboolean is_inflated'
12177         argument; if false, we compare the uninstantiated signatures.
12178         (method_from_memberref): Compare the uninstantiated signatures;
12179         fixes #76417.
12180
12181 2006-01-18  Robert Jordan  <robertj@gmx.net>
12182
12183         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
12184         Clear the weak link. Fixes bug #77170.
12185
12186         * gc.c (mono_gchandle_free):
12187         Reflect *-gc.c changes (tiny optimization).
12188
12189 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
12190
12191         * metadata.c (mono_metadata_signature_dup): Applied patch from
12192         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
12193         Fixes #77288.
12194
12195 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
12196
12197         * marshal.c (emit_struct_conv): Allow fields with the same offset when
12198         marshalling from native to managed code. Fixes #77230.
12199
12200 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12201
12202         * threadpool.c: fix problem (Mac only) when more than one asynchronous
12203         connect. Fixes bug #77020.
12204
12205 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
12206
12207         * class.c: fixed id assignement for nested interfaces (bug #77275).
12208         Added also better info for --print-vtable debugging.
12209
12210 2006-01-12  Martin Baulig  <martin@ximian.com>
12211
12212         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
12213         interfaces on-the-fly; fixes #76625.
12214
12215         * class-internals.h
12216         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
12217         don't need that anymore.
12218
12219 2006-01-12  Miguel de Icaza  <miguel@novell.com>
12220
12221         * socket-io.c
12222         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
12223         To avoid initing the nested_classes when not needed I turned the
12224         PeerCredData as a toplevel internal class, as it has to be shared
12225         anyways. 
12226
12227         Fixes the CASA issue.
12228
12229 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
12230
12231         * domain.c: Accessors for MonoJitInfo
12232
12233         * profiler-private.h: Add jitinfo to the end jit hook
12234
12235         * profiler.[ch]: Define new hooks, called after jitting which give
12236         the MonoJitInfo that was compiled
12237
12238 2006-01-10  Martin Baulig  <martin@ximian.com>
12239
12240         * class.c (mono_class_setup_events): Add support for generic
12241         classes; fixes #76440.
12242
12243 2006-01-06  Raja R Harinath  <rharinath@novell.com>
12244
12245         Fix #77160.
12246         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
12247         on passed-in method.
12248
12249 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12250
12251         * object.c (mono_runtime_invoke_array): Add Nullable support.
12252
12253         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
12254
12255 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
12256
12257         * file-io.c: Don't consider sockets as directory and avoid an endless
12258         loop. Fix bug #76966.
12259
12260 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12261
12262         * object.c (mono_nullable_init): New helper function.
12263         (mono_nullable_box): Ditto.
12264
12265         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
12266
12267         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
12268
12269         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
12270         
12271 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
12272
12273         * class.c (mono_class_is_assignable_from): Make T assignable to 
12274         Nullable<T>.
12275
12276 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
12277
12278         * appdomain.c: Bump corlib version to 46.
12279         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
12280         serialization purpose) and changed ves_icall_System_Reflection_
12281         Assembly_get_code_base signature to accept a boolean (to escape, or 
12282         not, the assembly code base).
12283
12284 2005-12-23  Dick Porter  <dick@ximian.com>
12285
12286         * icall.c: 
12287         * threads-types.h: 
12288         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
12289         CreateEvent icall now returns "created" boolean parameter.
12290
12291 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
12292
12293         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
12294         #76967.
12295
12296         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
12297         when attr_klass is an interface. Fixes #77045.
12298
12299 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
12300
12301         * marshal.c (emit_struct_conv): Fix previous patch.
12302         
12303         * marshal.c (emit_struct_conv): Add a check for fields with the same
12304         offset.
12305
12306 2005-12-20  Raja R Harinath  <rharinath@novell.com>
12307
12308         Fix regression in Mono.C5.
12309         * class.c (mono_class_create_generic): If 'klass' is an interface
12310         set up the interface offsets.
12311         (mono_class_is_assignable_from): Don't throw away generic arguments.
12312
12313 2005-12-19  Raja R Harinath  <rharinath@novell.com>
12314
12315         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
12316         type parameters.
12317
12318 2005-12-15  Raja R Harinath  <rharinath@novell.com>
12319
12320         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
12321         dead store.
12322         (do_mono_metadata_parse_generic_class): Don't pass the current
12323         generic context when parsing the type being instantiated: it
12324         cannot use it, anyway.
12325
12326         * loader.c (method_from_memberref): Don't inflate a signature if
12327         it doesn't contain any type parameters.
12328
12329 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
12330
12331         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
12332
12333 2005-12-14  Martin Baulig  <martin@ximian.com>
12334
12335         * class.c
12336         (mono_type_get_name_recurse): Don't return null for type
12337         parameters and open generic classes.
12338         (mono_class_setup_methods): Don't exclude generic instances.
12339         (mono_get_unique_iid): Use different IDs for different
12340         instantiations of the same generic type.
12341         (mono_class_setup_vtable): Only use setup_generic_vtable() for
12342         open generic instances; create a normal vtable for closed generic
12343         instances.
12344         (mono_class_setup_vtable_general): We're now also called for
12345         closed generic instances.
12346
12347         * reflection.c
12348         (mono_reflection_bind_generic_parameters): Correctly use
12349         mono_metadata_lookup_generic_inst() everywhere.
12350
12351 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
12352
12353         * object.c (mono_class_create_runtime_vtable): Call 
12354         mono_class_setup_vtable ().
12355
12356         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
12357         function.
12358         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
12359         #76959.
12360
12361         * loader.c (mono_loader_set_error_type_load): Print the type load
12362         warnings to the console so they are more visible to the user.
12363         (mono_loader_set_error_method_load): Ditto.
12364
12365         * reflection.c (ensure_runtime_vtable): Revert the last change as it
12366         is still broken.
12367         
12368         * reflection.c (ensure_runtime_vtable): Fix build.
12369
12370         * reflection.c (ensure_runtime_vtable): Disable an optimization which
12371         doesn't work in all cases.
12372
12373 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
12374
12375         * object.c (mono_array_new_full): Treat a single dimensional array
12376         with 0 lower bounds as an szarray. Fixes #76973.
12377
12378         * reflection.c (custom_attr_visible): Really fix this.
12379
12380 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
12381
12382         * reflection.c (custom_attr_visible): Allow nested public attributes
12383         as well.
12384
12385         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
12386         interface check.
12387
12388 2005-12-12  Raja R Harinath  <harinath@gmail.com>
12389
12390         * class.c (set_generic_param_owner): Delete.
12391         (mono_class_create_from_typedef): Don't set ->owner field of
12392         generic parameters to "param containers" of enclosing classes.
12393         * reflection.c (mono_reflection_initialize_generic_parameter):
12394         Likewise.
12395
12396 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
12397
12398         * reflection.c (custom_attr_visible): Fix build.
12399
12400 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
12401
12402         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
12403         private attributes.
12404         
12405         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
12406         handling of null parameter defaults.
12407
12408 2005-12-09  Raja R Harinath  <rharinath@novell.com>
12409
12410         * class.c (mono_class_from_generic_parameter): Don't set
12411         klass->generic_container.
12412         (my_mono_class_from_generic_parameter): Likewise.
12413
12414 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
12415
12416         * reflection.c (load_public_key): Fix a warning.
12417         (method_encode_code): Fix unaligned accesses.
12418
12419 2005-12-07  Martin Baulig  <martin@ximian.com>
12420
12421         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
12422
12423         * reflection.c
12424         (write_generic_param_entry): Encode our custom attrs.
12425
12426         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
12427
12428 2005-12-07  Martin Baulig  <martin@ximian.com>
12429
12430         * reflection.c (encode_new_constraint): Removed; we don't use the
12431         `NewConstraintAttribute' anymore.
12432
12433 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
12434
12435         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
12436         not fire a TypeResolve event when Assembly.GetType () is called.
12437
12438 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
12439
12440         Beginning of support for nullable types in the runtime. Parts of
12441         this patch are from Martin.
12442
12443         * appdomain.c (MONO_CORLIB_VERSION): Bump
12444
12445         * domain.c (mono_init_internal): get the nullable type
12446
12447         * class.c (mono_class_is_nullable): New method
12448         (mono_class_get_nullable_param): New mehod
12449         (mono_class_create_generic): In types T? set cast_class to T
12450
12451         * class-internals.h (MonoDefaults): new nullable default class
12452         (mono_class_get_nullable_param, mono_class_get_nullable_param):
12453         new methods.
12454
12455 2005-12-05  Raja R Harinath  <rharinath@novell.com>
12456
12457         * metadata.c (select_container): New.  Refactor code to select the
12458         appropriate GenericContainer given the type of generic parameter
12459         we are looking for.
12460         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
12461         not a MonoGenericContext.  Use select_container.  Update parameters.
12462         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
12463         and MONO_TYPE_MVAR.
12464         (unwrap_arrays): Remove duplicate tests.
12465         (find_generic_param): Rename from 'has_same_context'.  Now walks a
12466         generic instantiated class to find any arguments that are generic
12467         parameters.
12468         (mono_type_create_from_typespec_full): Use find_generic_param to
12469         avoid evicting some generic instantiations from the typespec
12470         cache.
12471
12472 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
12473
12474         * reflection.c: fixed writing of doubles on ARM FPA.
12475
12476 2005-12-02  Robert Jordan  <robertj@gmx.net>
12477
12478         * icall.c: Fixed EventInfo.ReflectedType (#76829).
12479
12480 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12481
12482         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
12483         least on SUSE 10 they are not the same (on debian, they are just the
12484         same thing).
12485
12486 2005-12-01  Raja R Harinath  <rharinath@novell.com>
12487
12488         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
12489         DeclaringType for VARs and MVARs.
12490         * class.c (set_generic_param_owner): Fix initialization of owner
12491         fields.
12492
12493 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
12494
12495         * icall.c: fixed Enum.ToObject() to correctly convert the values.
12496
12497 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12498
12499         * threadpool.c: workaround for a bug that shows up on the Mac:
12500         select()+connect() on a blocking socket is not like it should
12501         be, so we proceed to connect() in that case, wasting the I/O
12502         threadpool thread until connect succeedes. Fixes bug #75436.
12503
12504 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12505
12506         * threadpool.c: fix typo when setting file descriptor states.
12507
12508 2005-11-28  Raja R Harinath  <rharinath@novell.com>
12509
12510         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
12511         * metadata.c (mono_metadata_parse_method_signature_full): Don't
12512         create a temporary signature container.
12513         (mono_metadata_parse_generic_param): Update to changes.
12514         (mono_type_create_from_typespec_full): Update to changes.
12515         * loader.c (method_from_memberref): Don't use a
12516         MonoGenericContainer while parsing a memberref signature.
12517         (method_from_methodspec): Remove dead-store of the 'container'
12518         variable.  It's overwritten before use.
12519
12520         * metadata.c (mono_type_create_from_typespec_full): Make debugging
12521         checks tighter.
12522         (mono_metadata_parse_generic_param): Likewise.
12523         * loader.c (find_method_in_class): Does not need a
12524         MonoGenericContainer.  Use 'mono_method_signature' rather than
12525         'mono_method_signature_full'.
12526         (find_method, mono_get_method_constrained, method_from_memberref):
12527         Update to changes.
12528
12529         * metadata.c (mono_type_create_from_typespec_full): Ensure that
12530         owner-less generic-parameters are never evicted from the typespec
12531         cache.
12532
12533         * loader.c (method_from_memberref): Don't use the current context
12534         when parsing signatures.
12535         (method_from_methodspec, mono_get_method_from_token): Update to changes.
12536
12537         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
12538         side-effects in g_assert.
12539         * loader.c (mono_get_method_from_token): Resolve klass earlier so
12540         that we don't potentially lose information.
12541
12542 2005-11-26  Dick Porter  <dick@ximian.com>
12543
12544         * icall.c:
12545         * threads.c: icalls to implement basic (ie, not named)
12546         System.Threading.Semaphore.
12547
12548 2005-11-24  Dick Porter  <dick@ximian.com>
12549
12550         * process.c
12551         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
12552         Use GetProcessId() if it's available.
12553
12554 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
12555
12556         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
12557
12558 2005-11-23  Raja R Harinath  <rharinath@novell.com>
12559             Ankit Jain  <jankit@novell.com>
12560
12561         * loader.c (mono_get_method_from_token): Initialize 'method' field
12562         of all generic parameters before parsing the signature.  Remove
12563         code that "fixed"-up MVAR references.
12564
12565 2005-11-23  Ankit Jain  <jankit@novell.com>
12566
12567         * metadata.c (mono_metadata_has_generic_params):
12568         (mono_metadata_load_generic_param_constraints):
12569         (mono_metadata_load_generic_params): Move duplicate code ...
12570         (mono_metadata_get_generic_param_row): ... here. Returns the
12571         first row-id in GenericParam table for a given owner (token).
12572         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
12573         prototype.
12574
12575 2005-11-23  Raja R Harinath  <rharinath@novell.com>
12576             Ankit Jain  <jankit@novell.com>
12577
12578         * metadata.c (mono_metadata_class_equal): Pass signature_only when
12579         comparing VARs too.
12580         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
12581         type->data.generic_param only if the type is an MVAR.
12582         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
12583         leak owner-less VARs and MVARs into managed space.
12584
12585 2005-11-21  Martin Baulig  <martin@ximian.com>
12586
12587         * class-internals.h
12588         (MonoMethod): Moved the `generic_container' here from
12589         `MonoMethodNormal' since we now also need it for
12590         `MonoMethodPInvoke';
12591         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
12592         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
12593         an union containing both `MonoMethodNormal' and
12594         `MonoMethodPInvoke'.
12595
12596         * loader.c
12597         (mono_get_method_from_token): Allow implementing generic methods
12598         as interncalls.
12599
12600         * threads.c
12601         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
12602         icall.
12603
12604 2005-11-17  Dick Porter  <dick@ximian.com>
12605
12606         * icall.c: 
12607         * process.h: 
12608         * process.c: Split the Process Start_internal icall into
12609         ShellExecuteEx_internal and CreateProcess_internal, which are
12610         called depending on whether UseShellExecute is true.  Fixes bug
12611         76670.
12612
12613         * appdomain.c (MONO_CORLIB_VERSION): Incremented
12614
12615 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
12616
12617         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
12618         'msize' parameters, use the information in 'mspec' instead.
12619         (emit_object_to_ptr_conv): Ditto.
12620
12621         * marshal.c (emit_struct_conv): Handle explicit layout structs with
12622         fields out of order. Fixes #76733.
12623
12624 2005-11-17  Ankit Jain  <jankit@novell.com>
12625
12626         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
12627
12628 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
12629
12630         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
12631           bug #76575.
12632
12633 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12634
12635         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
12636         for types with non-auto layout. Fixes #76717.
12637
12638 2005-11-16  Ankit Jain  <jankit@novell.com>
12639
12640         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
12641         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
12642         if generic_context is null.
12643           (mono_metadata_generic_param_equal): param->owner can be null.
12644           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
12645         null.
12646
12647 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
12648
12649         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
12650         the correct value.
12651
12652 2005-11-15  Martin Baulig  <martin@ximian.com>
12653
12654         * object.c (set_value): Use mono_class_from_mono_type() instead of
12655         the hack for generic instances; fixes #76136.
12656
12657 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
12658
12659         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
12660         fields.
12661
12662         * image.c (load_metadata_ptrs): Initialize the new fields.
12663
12664         * reflection.c (create_dynamic_mono_image): Ditto.
12665
12666         * reflection.c (build_compressed_metadata): Use the new fields.
12667
12668         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
12669         icall.
12670
12671         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
12672         icall.
12673         
12674 2005-11-15  Ankit Jain  <jankit@novell.com>
12675             Raja R Harinath  <harinath@gmail.com>
12676
12677         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
12678         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
12679         new per-generic_container cache if the cached MonoType's context matches
12680         the current context.
12681           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
12682         to the expected context.
12683           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
12684
12685 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12686
12687         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
12688         we changed the signature of an icall.
12689         * icall.c: Modify to mono_double_ParseImpl return true/false 
12690         depending on the success, instead of throwing the exception. This will
12691         help us in Double.TryParse methods.
12692         
12693 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
12694
12695         * marshal.c (emit_marshal_object): Throw an exception when
12696         marshalling 'object' instead of crashing. Fixes #76696.
12697
12698 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12699
12700         * class-internals.h: Add prototype for mono_type_get_full_name ().
12701
12702 2005-11-11  Dick Porter  <dick@ximian.com>
12703
12704         * threads.c (mono_thread_manage): Make sure the main thread has
12705         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
12706
12707 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12708
12709         * loader.c (mono_loader_set_error_type_load): Log a warning to the
12710         console about the missing type.
12711         (mono_loader_set_error_method_load): Ditto.
12712
12713 2005-11-09  Miguel de Icaza  <miguel@novell.com>
12714
12715         * mono-config.c (mono_get_config_dir): Set the system defaults if
12716         none is specified.
12717
12718         * assembly.c (mono_set_dirs): New API entry point to set the
12719         assembly and the config directory in one call
12720
12721 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
12722
12723         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
12724         the ftnptr was created from a delegate in a domain other than the
12725         current domain. Fixes #75377.
12726
12727         * exception.h exception.c: Add mono_get_exception_not_supported ().
12728
12729 2005-11-08  Martin Baulig  <martin@ximian.com>
12730
12731         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
12732
12733 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
12734
12735         * security-manager.h: Added definitions to deal with strongname key 
12736         pairs bigger (and smaller) than 1024 bits.
12737         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
12738         adjust wrt the public key length being used.
12739
12740 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12741
12742         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
12743           Windows build (r51396-51397).
12744
12745 2005-11-03  Martin Baulig  <martin@ximian.com>
12746
12747         * class.c (mono_class_setup_vtable_general): Also add generic
12748         methods to the vtable; fixes #76581.
12749
12750 2005-11-01  Miguel de Icaza  <miguel@novell.com>
12751
12752         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
12753         sure that we lookup GetString method from the System.Text.Encoding
12754         class, not the derived class or we get an empty method.
12755
12756         Fixed class #76612.
12757
12758 2005-10-25  Miguel de Icaza  <miguel@novell.com>
12759
12760         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
12761         if it has been previously set (embedders). 
12762
12763         Make mono_set_rootdir available also on Unix.
12764
12765 005-10-24  Robert Jordan  <robertj@gmx.net>
12766
12767         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
12768
12769 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12770
12771         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
12772         only calls which are made to native code use this flag.
12773
12774         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
12775
12776 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12777
12778         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
12779         Add support for FieldBuilders.
12780
12781 2005-10-29  Martin Baulig  <martin@ximian.com>
12782
12783         * mono-debug.c
12784         (mono_debug_using_mono_debugger): New public method; returns
12785         whether we're running inside the debugger.
12786
12787 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
12788
12789         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
12790         for Method/Constructor/FieldBuilders.
12791
12792 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12793
12794         * reflection.c (module_add_cattrs): Save custom attributes for global methods
12795         and fields as well.
12796
12797 2005-10-26  Martin Baulig  <martin@ximian.com>
12798
12799         * mono-debug-debugger.c
12800         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
12801
12802 2005-10-24  Raja R Harinath  <harinath@gmail.com>
12803
12804         * icall.c (base64_to_byte_array): Don't pass an out-of-range
12805         integer to isspace.
12806
12807 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12808
12809         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
12810         when passing valuetypes byref. Fixes #76502.
12811
12812 2005-10-19  Jackson Harper  <jackson@ximian.com>
12813
12814         * profiler.c: Don't put a . in front of types that are not in a
12815         namespace.
12816
12817 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12818
12819         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
12820
12821 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
12822
12823         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
12824         #76436.
12825         (mono_marshal_get_ldflda_wrapper): Fix a warning.
12826
12827 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12828
12829         * assembly.c metadata-internals.h icall.c: Define an additional
12830         parameter for mono_assembly_name_parse_full, so we can avoid creating
12831         S.R.AssemblyName.Version when no version info wasn't passed.
12832         
12833 2005-10-09  Miguel de Icaza  <miguel@novell.com>
12834
12835         * class.c (mono_type_get_full_name): Reimplement method that was
12836         removed. 
12837
12838         * image.c: Some docs
12839
12840 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12841
12842         * profiler.c (output_newobj_profile): Fix printing of Total memory
12843         on x86.
12844
12845 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12846
12847         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
12848
12849 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
12850
12851         * threads.c: remove debug output.
12852
12853 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12854
12855         * threads.c (mono_thread_manage): Fix crashes if more than 64
12856         threads need to be aborted. Hopefully fixes #75899.
12857
12858         * assembly.c (mono_stringify_assembly_name): New helper function.
12859
12860         * class.c: Use mono_stringify_assembly_name instead of the similar
12861         static function.
12862
12863         * assembly.h assembly.c: Add support for calling a postload search 
12864         hook if an assembly cannot be loaded.
12865
12866         * appdomain.c: Register new search hooks which call the AssemblyResolve
12867         events in AppDomain. Fixes #75231
12868
12869 2005-10-07  Martin Baulig  <martin@ximian.com>
12870
12871         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
12872         methods without debug info.
12873
12874 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12875
12876         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
12877         wrappers.
12878
12879 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12880
12881         * file-io.c: now that we return symlinks, use lstat and, when the file
12882         is a symbolic link, stat, to get the file attributes. Also avoid the
12883         conversion to/from utf16/external.
12884
12885 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
12886
12887         * class.c (mono_class_layout_fields): Compute klass->has_references
12888         correctly if an embedded valuetype is not yet initialized. Fixes
12889         #76331.
12890
12891 2005-10-04  Martin Baulig  <martin@ximian.com>
12892
12893         * metadata.c
12894         (mono_metadata_load_generic_param_constraints): New public
12895         function; splitted the constraints loading out from
12896         mono_metadata_load_generic_params().
12897
12898         * class.c (mono_class_create_from_typedef): Call
12899         mono_metadata_load_generic_param_constraints() after setting up
12900         the type and creating our parent; fixes #75329.
12901
12902 2005-10-04  Martin Baulig  <martin@ximian.com>
12903
12904         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
12905         non-dynamic parent classes.
12906
12907 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12908
12909         * file-io.c : win32 build fix (ETXTBSY seems not found).
12910
12911 2005-10-04  Martin Baulig  <martin@ximian.com>
12912
12913         * reflection.c
12914         (mono_image_get_methodspec_token): Make the cache actually work;
12915         fixes #75974.
12916
12917 2005-10-04  Martin Baulig  <martin@ximian.com>
12918
12919         * class.c (mono_class_name_from_token): Removed the unneccessary
12920         `MonoGenericContext *' argument.
12921
12922 2005-10-04  Martin Baulig  <martin@ximian.com>
12923
12924         * loader.c
12925         (method_from_methodspec): Make the caching work again; fixes the
12926         performance regression from #76262.
12927
12928 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12929
12930         * file-io.c:
12931         * file-io.h:
12932         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
12933         GetFileSystemEntries that performs the same work but without going
12934         into io-layer, locking, etc.
12935
12936 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12937
12938         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
12939         ThreadState_Stopped as well. Fixes #76047.
12940
12941 2005-09-29  Martin Baulig  <martin@ximian.com>
12942
12943         * class.c
12944         (inflate_generic_context): If the new context has a `gmethod', set
12945         its `container' that that gmethod's `container'.
12946
12947         * metadata.c
12948         (mono_metadata_parse_generic_param): Simplify things;
12949         `generic_container = generic_context->container;' is just fine.
12950
12951         * loader.c (method_from_methodspec): Code cleanups.
12952
12953 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
12954
12955         * decimal.c: fix warning (and let gcc generate correct
12956         code on ARM with optimizations).
12957
12958 2005-09-28  Martin Baulig  <martin@ximian.com>
12959
12960         * loader.c
12961         (method_from_memberref): Added `MonoGenericContext *class_context'
12962         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
12963         (method_from_methodspec): If we're a memberref, use the enclosing
12964         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
12965
12966 2005-09-28  Martin Baulig  <martin@ximian.com>
12967
12968         * object.c (mono_runtime_invoke_array): Added support for
12969         MONO_TYPE_GENERICINST; fixes #75917.
12970
12971 2005-09-27  Martin Baulig  <martin@ximian.com>
12972
12973         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
12974         `k->byval_arg.type' to determine the actual type.
12975
12976         * loader.c (method_from_methodspec): Removed some hacks.
12977
12978 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12979
12980         * class-internals.h (mono_field_is_deleted): Do the test for
12981         rtspecialname before we check the actual name of the field. This
12982         prevents us from dereferencing a pointer into the string table,
12983         saving us from accessing a few pages
12984
12985         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12986         macros. This will allow a deadlock debugger to easily be plugged
12987         in.
12988
12989 2005-09-27  Martin Baulig  <martin@ximian.com>
12990
12991         * loader.c (method_from_methodspec): Create a "signature"
12992         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
12993
12994 2005-09-27  Martin Baulig  <martin@ximian.com>
12995
12996         * class.c
12997         (inflate_generic_class): Correctly set the new context's
12998         container.
12999
13000         * loader.c
13001         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
13002         instead of a `MonoGenericContext *'.
13003         (mono_method_signature_full): Take a `MonoGenericContainer *'
13004         instead of a `MonoGenericContext *'.
13005
13006         * metadata.c
13007         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
13008         instead of a `MonoGenericContext *'.
13009         (mono_metadata_parse_method_signature_full): Likewise.
13010
13011 2005-09-26  Martin Baulig  <martin@ximian.com>
13012
13013         * class.c
13014         (mono_class_from_generic_parameter): Set `klass->generic_container'
13015         (mono_class_from_generic_parameter): Likewise.
13016         (mono_bounded_array_class_get): We inherit the generic container
13017         from the element class.
13018
13019         * loader.c
13020         (find_method, find_method_in_class): Take a `MonoGenericContext *'
13021         argument rather than computing it here.
13022         (method_from_memberref): Correctly set the generic context before
13023         parsing the signature.  Fixes #75681.
13024
13025 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
13026
13027         * object.c (mono_class_has_special_static_fields): Fix warnings.
13028
13029 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13030
13031         * assembly.c: Add parse_public_key function, to
13032         par the public keys. Also added mono_assembly_name_parse_full,
13033         to define it the parsed key should be freed or not.
13034         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
13035         to parse a long format assembly name.
13036         * metadata-internals.h: Keep mono_assembly_name_parse_full as
13037         private, since calling it to preserve the key requires
13038         freeing it manually.
13039         
13040 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
13041
13042         * locales.c : removed HAVE_ICU part.
13043
13044 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
13045
13046         * object.c (mono_class_create_runtime_vtable): Avoid calling 
13047         field_is_special_static if the klass has no special static fields.
13048
13049         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
13050         (MonoCachedClassInfo): Likewise.
13051
13052         * object.c (mono_class_has_special_static_fields): New helper function.
13053
13054 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
13055
13056         * class.c (mono_class_create_from_typedef): Don't call 
13057         interfaces_from_typedef_full for enums.
13058         (mono_class_create_from_typedef): Compute the base types of enums directly
13059         without calling mono_class_setup_fields ().
13060         (mono_class_find_enum_basetype): New helper function.
13061
13062         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
13063         one place inside the string heap.
13064         
13065 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
13066
13067         * class.c: locking fixes, code cleanups, some docs added.
13068         Allocate some data structures in the image mempool.
13069
13070 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
13071
13072         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
13073         the example code.
13074         
13075 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
13076
13077         * class-internals.h, class.c, reflection.c: reduce memory taken by
13078         MonoClass.
13079
13080 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
13081
13082         * metadata.c, metadata.h, loader.h: documentation updates, code and
13083         API cleanups.
13084
13085 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
13086
13087         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
13088         the example code.
13089
13090         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
13091         page faults caused by the runtime while reading metadata.
13092
13093 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13094
13095         * socket-io.c: the field names were changed 3 months ago and no one
13096         realized until bug #76077 got filed!
13097
13098 2005-09-20  Martin Baulig  <martin@ximian.com>
13099
13100         * icall.c (assembly_icalls): Removed some unused debugger icalls.
13101
13102 2005-09-20  Martin Baulig  <martin@ximian.com>
13103
13104         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
13105         write the rank into the class entry.
13106
13107 2005-09-20  Martin Baulig  <martin@ximian.com>
13108
13109         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
13110
13111 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
13112
13113         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13114
13115         * icall.c (custom_attrs_defined_internal): New icall.
13116
13117         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
13118         function.
13119         (mono_custom_attrs_construct_by_type): New helper function.
13120
13121 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
13122
13123         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
13124         terminate the resulting string. Fixes #76123.
13125
13126 2005-09-16  Martin Baulig  <martin@ximian.com>
13127
13128         * mono-debug.c
13129         (mono_debug_add_method): Ignore inflated methods for the moment.
13130
13131 2005-09-14  Martin Baulig  <martin@ximian.com>
13132
13133         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
13134
13135 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
13136
13137         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
13138         return a success/failure indication.
13139         (mono_metadata_interfaces_from_typedef_full): Ditto.
13140         (get_constraints): Ditto.
13141
13142 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
13143
13144         * marshal.c (emit_marshal_array): Fix handling of null arrays.
13145         
13146         * marshal.c (emit_marshal_array): Add support for returning string
13147         arrays from delegates. Fixes #76063.
13148
13149         * marshal.c: Use the emit_ldloc/stloc macros where possible.
13150
13151 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
13152
13153         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
13154         icall.
13155
13156 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
13157
13158         * reflection.c icall.c: Fix after mono_get_exception_type_load
13159         signature change.
13160
13161         * assembly.c (mono_assembly_get_assemblyref): New helper function.
13162         (mono_assembly_load_reference): Use the new helper.
13163
13164         * class-internals.h (MonoLoaderError): New structure containing 
13165         information about type loading errors.
13166
13167         * class-internals.h loader.c: Add APIs to store per-thread loader
13168         error information.
13169
13170         * loader.c class.c: Set the loader error if needed.
13171
13172         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
13173
13174 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
13175
13176         * decimal.c: fixed to handle the broken ARM fp format.
13177
13178 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
13179
13180         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
13181         broken.
13182
13183 2005-09-06  Martin Baulig  <martin@ximian.com>
13184
13185         * domain.c (supported_runtimes): Added v2.0.50727.
13186
13187 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
13188
13189         * culture-info.h: reduce the size of some structures.
13190
13191 2005-09-05  Martin Baulig  <martin@ximian.com>
13192
13193         Reflect latest API changes in the August CTP.
13194
13195         * icall.c
13196         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
13197         ("MonoType.HasGenericArguments"): Removed.
13198         ("MonoMethod.BindGenericParameters"): Renamed to
13199         "MakeGenericMethod".
13200         ("MethodBuilder.BindGenericParameters"): Renamed to
13201         "MakeGenericMethod".    
13202
13203 2005-09-05  Martin Baulig  <martin@ximian.com>
13204
13205         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
13206
13207 2005-09-05  Martin Baulig  <martin@ximian.com>
13208
13209         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13210
13211         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
13212         generic_container is non-NULL.
13213
13214 2005-09-05  Martin Baulig  <martin@ximian.com>
13215
13216         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13217
13218         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
13219
13220 2005-08-29  Michal Moskal  <malekith@nemerle.org>
13221
13222         * reflection.c (encode_locals,
13223         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
13224         for large generic types.
13225
13226 2005-09-05  Martin Baulig  <martin@ximian.com>
13227
13228         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13229
13230         * class.c (mono_dup_array_type): New public method.
13231         (mono_metadata_signature_deep_dup): New public method.
13232         (dup_type): Correctly duplicate array and function types.
13233
13234 2005-09-05  Martin Baulig  <martin@ximian.com>
13235
13236         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13237
13238         * reflection.c (get_default_param_value_blobs): Handle generic types
13239         and generic methods.
13240
13241 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
13242
13243         * class.c: Fixed error reporting (method/class were inversed) for 
13244         inheritance demands.
13245         * security-manager.c|h: Added the AppDomain when calling the managed
13246         System.Security.SecurityManager.InheritanceDemand method.
13247
13248 2005-09-01  Raja R Harinath  <rharinath@novell.com>
13249
13250         * reflection.c (encode_marshal_blob): 'marshaltype' and
13251         'marshaltyperef' are alternate sources for the custom marshaler
13252         name.
13253
13254 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
13255
13256         * class.c: fix creation of array classes with rank == 1
13257         (patch by Ankit Jain <jankit@novell.com>).
13258
13259 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
13260
13261         * object.c: fix check for creating the bound data for arrays vs
13262         szarrays.
13263
13264 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13265
13266         * object.c: configuration file name is now based on the executable name,
13267         not the image name. Fixes bug #75931.
13268
13269 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
13270
13271         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
13272         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
13273
13274 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
13275
13276         * rand.c: Use wincrypt.h instead of WinCrypt.h.
13277
13278 2005-08-24  Ankit Jain  <jankit@novell.com>
13279             Raja R Harinath  <rharinath@novell.com>
13280
13281         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
13282           called by it recursively.
13283           (mono_class_init): Remove special case in pending_init handling, since it's
13284           superseded by the fix to mono_class_from_typeref.
13285
13286 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
13287
13288         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
13289         BROKEN_THREAD_START stuff.
13290
13291 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
13292
13293         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
13294         trampoline.
13295
13296         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
13297         
13298         * object.c (mono_delegate_ctor): Replace the original function address with
13299         a delegate trampoline.
13300
13301 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
13302
13303         * icall.c: add boolean argument to base64_to_byte_array and 
13304         InternalFromBase64String to control whether a whitespace-only string
13305         is allowed (or should casue a FormatException to be thrown). We need
13306         this as the behavior has changed between MS.NET 1.x and 2.0, and we
13307         to match the MS behaviour in both profiles.
13308         * appdomain.c: Bump corlib version.
13309
13310 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13311
13312         This patch implements a big portion of publisher policy
13313         support, used to bind assembly versions and redirect
13314         one assembly from version A to version B.
13315
13316         * assembly.c:
13317         New GSList loaded_assembly_bindings, for storing the cached
13318         assembly bindings.
13319         (assembly_binding_maps_name): New static function for checking if a 
13320         assembly binding information maps an assembly name.
13321         (mono_assembly_binding_info_free): New function for freeing
13322         assembly binding information resources.
13323         (get_publisher_policy_info): New static function for retrieving 
13324         assembly binding information from a MonoImage.
13325         (compare_versions): New static function for comparing an assembly
13326         binding information data and the version of an assembly name.
13327         (check_policy_versions): New static function for checking if an
13328         assembly binding info mapping an assembly name is valid for it.
13329         (mono_assembly_load_publisher_policy): New static function for
13330         loading the 'policy.major.minor.MyAssembly' image for an assembly
13331         with an assembly name 'aname'.
13332         (mono_assembly_bind_version): New static function for updating
13333         assembly redirection.
13334         (mono_assembly_apply_binding): New static function for applying
13335         assembly binding.
13336         (search_binding_loaded): New static function for searching 
13337         loaded assembly binding infos in the cache domain.
13338         (mono_assembly_load_full): Don't apply assembly binding for
13339         reflection only assemblies.
13340
13341         * metadata-internals.h: Add MonoAssemblyBindingInfo,
13342         which contains information about assembly binding. Also
13343         declare signature for mono_config_parse_publisher_policy ()
13344         function, used to retrieve pub policy info.
13345         
13346         * mono-config.c:
13347         (publisher_policy_start): New static function used to parse publisher 
13348         policy config files.
13349         (publisher_policy_parser): New static MonoParseHandler containing 
13350         the functions used when parsing config files.
13351         (mono_config_parse_publisher_policy): New function for parsing
13352         publisher policy files.
13353         
13354 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
13355
13356         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
13357
13358         * marshal.c (mono_delegate_free_ftnptr): Ditto.
13359
13360         * object.c (mono_get_addr_from_ftnptr): New helper function.
13361
13362         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
13363
13364         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13365
13366 2005-08-19  Dick Porter  <dick@ximian.com>
13367
13368         * threads.c, threads.h, appdomain.c, appdomain.h,
13369         profiler-private.h, monitor.c, object.c, object-internals.h,
13370         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
13371         store the thread ID, so it can hold a 64 bit value if needed.
13372
13373 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
13374
13375         * reflection.c (mono_reflection_create_dynamic_method): Store the
13376         handle class into the method references as well so ldtoken works in
13377         dynamic methods.
13378
13379         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
13380         types.
13381
13382 2005-08-19  Ankit Jain <jankit@novell.com>
13383
13384         Fix #75847.
13385         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
13386           here rather than using the method signature of a arbitrary function
13387           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
13388           two arguments.
13389           Hack done with Harinath.
13390
13391 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13392
13393         * threadpool.c: disable printing stack traces when we get a exception
13394         in a threadpool thread. I need to do more testing to figure out which
13395         cases actually print this. Fixes bug #75828.
13396
13397 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13398
13399         * icall.c: there might be ignored whitespace after the last '='. This
13400         fixes length computation and bug #75840.
13401
13402 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
13403
13404         * assembly.c (mono_assembly_load_full): Consider .exe extension as
13405         well. Fixes #75809.
13406
13407         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
13408         #75784.
13409         
13410         * reflection.c (create_custom_attr_data): Ditto.
13411
13412 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
13413
13414         * locales.c, culture-info.h : removed RegionLCIDMap.
13415         * culture-info-tables.h : regenerated.
13416
13417 2005-08-16  Martin Baulig  <martin@ximian.com>
13418
13419         * class.c (mono_type_get_name_recurse): Small fix.
13420
13421 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13422
13423         * locales.c : indentation fixie.
13424
13425 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
13426
13427         * object-internals.h,
13428           locales.h,
13429           locales.c,
13430           culture-info.h,
13431           icall.c : added RegionInfo table support.
13432         * culture-info-table.h : regenerated for region support.
13433
13434 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
13435
13436         * reflection.c (resolve_object): handle all kinds of MonoMethod
13437         including generic ones
13438
13439 2005-08-12  Ankit Jain <jankit@novell.com>
13440
13441         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
13442           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
13443
13444 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
13445
13446         * process.c: Don't close a thread handle when it's NULL. This is a
13447         workaround for bug #75733.
13448
13449 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
13450
13451         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
13452
13453 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
13454
13455         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
13456
13457 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13458
13459         * threadpool.c: if a work item in the thread pool has a callback that
13460         catches a exception, don't propagate it after invoking the callback.
13461         Fixes bug #75336.
13462
13463 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
13464
13465         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
13466
13467         * class-internals.h (MonoCachedClassInfo): Add some new fields.
13468
13469         * class.c (mono_class_init): Load field info lazily in the AOT case.    
13470
13471         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
13472
13473 2005-08-03  Ankit Jain  <jankit@novell.com>
13474
13475         Fix #75683.
13476         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
13477           PInvoke calling convention is 0.
13478
13479 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
13480
13481         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
13482         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
13483
13484 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
13485
13486         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
13487         to handle threads not started by the GC (patch by Michael Meeks
13488         <michael.meeks@novell.com>).
13489
13490 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
13491
13492         * reflection.c: Make buffer used in emitting types larger for some
13493         big generic types (patch by Michal Moskal).
13494
13495 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
13496
13497         * mono-debug.c: Fix some (not all) alignment problems.
13498
13499 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13500
13501         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
13502         Invoke mono_image_load_from_data_full passing the refonly
13503         parameter.
13504
13505         * assembly.c
13506         (mono_assembly_open_from_bundle): Add the refonly argument, 
13507         in order to pass it to other methods it calls to.
13508         (do_mono_assembly_open): Add the refonly argument, in order 
13509         to pass it to other methods it calls to.
13510         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
13511         the refonly parameter to it.
13512
13513         * image.c: Add loaded_images_refonly_hash and
13514         loaded_images_refonly_guid_hash to cache the reflection
13515         only loaded images.
13516         (mono_images_init): Initialize the hash tables used for
13517         caching the reflection only images.
13518         (load_modules): Invoke mono_image_open_full passing the refonly
13519         parameter to load the modules the correct way.
13520         (build_guid_table): Add the refonly argument, to re-build the 
13521         correct hash table.
13522         (do_mono_image_open): Added the refonly argument, in order to
13523         define it for the loaded image.
13524         (mono_image_loaded_full): New function, which receives an
13525         additional parameter to look for the image in the refonly or
13526         non-refonly section.
13527         (mono_image_loaded): Updated, using mono_image_loaded_full.
13528         (mono_image_loaded_by_guid_full): The same case that happens
13529         with mono_image_loaded_full.
13530         (mono_image_loaded_by_guid): Likewise.
13531         (register_image): Use the ref_only variable inside MonoImage
13532         to decide in which hash table store the current image.
13533         (mono_image_open_from_data_full): Rename
13534         mono_image_open_from_data to mono_image_open_from_data_full,
13535         adding the refonly argument, to define the ref_only variable 
13536         inside MonoImage.
13537         (mono_image_open_from_data): Return 
13538         mono_image_open_from_data_full.
13539         (mono_image_open_full): Rename mono_image_open to
13540         mono_image_open_full, receiving the new refonly argument,
13541         to pass it to inner methods.
13542         (mono_pe_file_open): Update this function, to open
13543         a MonoImage as a non-refonly image.
13544         (mono_image_close): Use the refonly variable inside
13545         MonoImage to remove the image from the correct caches.
13546
13547         * image.h: Add the signatures of mono_image_open_full,
13548         mono_image_open_from_data_full, mono_image_loaded_full,
13549         mono_image_loaded_by_guid_full.
13550
13551         * metadata-internals.h: Add the ref_only field to 
13552         MonoImage.
13553         
13554 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13555
13556         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
13557         Fix the last behavior, which used to load the assemblies and
13558         extract MonoReflectionAssemblyName information, instead of
13559         extract it from the metadata tables. Needed for Reflection
13560         Only assemblies.
13561         
13562 2005-07-29  Martin Baulig  <martin@ximian.com>
13563
13564         * mono-debug-debugger.c
13565         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
13566         not initialized.
13567
13568         * mono-debug.c
13569         (mono_debug_address_from_il_offset): Check whether we have
13570         debugging support before attempting to take the lock.
13571         (mono_debug_source_location_from_address): Likewise.
13572         (mono_debug_source_location_from_il_offset): Likewise.
13573         (mono_debug_il_offset_from_address): Likewise.
13574         (mono_debug_address_from_il_offset): Likewise.
13575
13576 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
13577
13578         * class.c (mono_class_from_name_case): Add support for dynamic images.
13579         Fixes #75650.
13580
13581         * object.c (mono_class_compute_gc_descriptor): Add a workaround
13582         for #75479.
13583
13584 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13585         
13586         * reflection.c (mono_method_get_object): Fix warning.
13587
13588 2005-07-28  Martin Baulig  <martin@ximian.com>
13589
13590         * mono-debug.c
13591         (mono_debug_add_wrapper): Also write the wrapper type.
13592
13593 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13594
13595         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
13596         
13597         * class.c (mono_class_init): Avoid reading nested classes if the AOT
13598         data indicates the class has none.
13599
13600 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
13601
13602         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
13603         loader lock with the debugger lock. Prevents deadlocks for beagle.
13604
13605         Beagle can now run on an smp box for a weekend without any
13606         issues. Woohoo!
13607
13608 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
13609
13610         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
13611         in a module. Fixes #75629.
13612
13613 2005-07-26  Martin Baulig  <martin@ximian.com>
13614
13615         * mono-debug.c (mono_debug_add_wrapper): New static method.
13616         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
13617         interncall or a wrapper.
13618
13619         * mono-debug.h (MonoDebugWrapperData): New public typedef.
13620         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
13621         (MONO_DEBUGGER_VERSION): Bump to 51.
13622
13623         * mono-debug-debugger.c
13624         (mono_debugger_add_type): Removed this empty function.
13625         (mono_debugger_add_method): Likewise.
13626
13627 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
13628
13629         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
13630         before accessing method->slot.
13631
13632 2005-07-21  Jb Evain  <jbevain@gmail.com>
13633
13634         * reflection.c (method_encode_clauses/class): Handle filters clauses.
13635         Fixes #75010.
13636
13637 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
13638
13639         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
13640         #75587.
13641
13642 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13643
13644         * image.h image.c: Add mono_image_get_guid () API function.
13645
13646 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
13647
13648         There were issues when multiple threads tried to load
13649         assemblies. A deadlock was created between assemblies_mutex and
13650         mono_domain_assemblies_lock. This fixes the issue by making the
13651         assembly ref counting be lock free. See bug 75586.
13652         
13653         * image.c (mono_image_close): The add ref function here was using
13654         Interlocked operations while the unref was using a mutex and a
13655         --. I don't think this was ever a bug that would be exposed in a
13656         non-pendantic way (ie, by an embedder doing a ref on one thread
13657         and an unref on another), but for the sake of correctness, this is
13658         now Interlocked.
13659
13660         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
13661         (mono_assembly_load_reference): Call mono_assembly_addref rather
13662         than touching the refcount ourselves.
13663         (mono_assembly_close): Use InterlockedDecrement to unref the
13664         assembly. Don't acquire the lock unless it is actually needed.
13665
13666 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13667
13668         * class.c (mono_class_layout_fields): Fix calculation of has_references
13669         for generic types.
13670
13671 2005-07-12  Martin Baulig  <martin@ximian.com>
13672
13673         Applying a patch from Michal Moskal <malekith@nemerle.org>.
13674
13675         * metadata.c
13676         (mono_type_hash): Provide better hashing for generic instances.
13677         (mono_generic_inst_hash): Improve hashing.
13678         (mono_generic_class_hash): Likewise.
13679
13680         * reflection.c (mymono_metadata_type_hash): Improve hashing for
13681         generic instances.
13682
13683 2005-07-12  Martin Baulig  <martin@ximian.com>
13684
13685         * reflection.c (mono_reflection_create_runtime_class): Remove the
13686         hack for generic type definitions and non-`Run' assemblies.
13687         (mono_reflection_bind_generic_parameters): Also use
13688         `klass->wastypebuilder' to check for TypeBuilders.
13689
13690 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
13691
13692         * class.c (mono_class_layout_fields): Fix calculation of has_references
13693         for generic types.
13694
13695         * class.c (inflate_generic_class): Fix a leak.
13696         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
13697         for generic types.
13698
13699 2005-07-11  Martin Baulig  <martin@ximian.com>
13700
13701         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
13702         on error.
13703
13704 2005-07-11  Martin Baulig  <martin@ximian.com>
13705
13706         * loader.c (find_method): Also lookup in
13707         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
13708
13709 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13710
13711         * appdomain.c (mono_domain_unload): Don't free the error message
13712         before passing it to mono_get_exception_...
13713
13714         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
13715         
13716 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
13717
13718         * threads.c: try to better guess an available RT signal (bug #75387).
13719
13720 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13721
13722         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
13723         and CACHE_OBJECT.
13724
13725 2005-07-07  Martin Baulig  <martin@ximian.com>
13726
13727         * class.c (mono_type_get_name_full): Return NULL for
13728         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
13729         fixes #75408.
13730
13731 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13732
13733         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
13734         exit the appdomain as well being aborted.
13735
13736         * threadpool.c: Create all threadpool threads inside the root appdomain, and
13737         change back to the root domain after calling managed code. This enables
13738         appdomains using threadpools to be unloaded.
13739
13740 2005-07-07  Martin Baulig  <martin@ximian.com>
13741
13742         * class-internals.h
13743         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
13744         into `MonoDynamicGenericClass' since we only need it for dynamic
13745         types.
13746
13747         * reflection.c (mono_class_bind_generic_parameters): We don't need
13748         to compute the `parent' here.
13749
13750 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
13751
13752         * culture-info-table.h : regenerated.
13753
13754 2005-07-06  Martin Baulig  <martin@ximian.com>
13755
13756         * icall.c
13757         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
13758
13759         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
13760
13761 2005-07-06  Martin Baulig  <martin@ximian.com>
13762
13763         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
13764         we're doing a signature-only comparision; fixes #74945.
13765
13766 2005-07-06  Martin Baulig  <martin@ximian.com>
13767
13768         * class-internals.h (MonoGenericClass): Moved some things out into
13769         a new `MonoInflatedGenericClass' type.  
13770         (MonoInflatedGenericClass): New type; the `klass' of a
13771         `MonoGenericClass' is now computed lazyly in
13772         mono_get_inflated_generic_class().      
13773
13774         * class.c (mono_get_inflated_generic_class): New public function.
13775         (mono_class_inflate_generic_method): Removed the unused
13776         `MonoClass *' argument.
13777         (setup_generic_vtable): Don't call mono_get_inflated_method() on
13778         all the methods.
13779         (mono_class_create_generic): Make this static and merge it with
13780         mono_class_create_generic_2(); we're now called automatically from
13781         mono_get_inflated_generic_class().
13782
13783         * loader.c (mono_method_signature): Call
13784         mono_get_inflated_method() here.
13785
13786 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
13787
13788         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
13789         type of fields with RVA.
13790
13791         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
13792         for this pseudo class.
13793         (my_mono_class_from_generic_parameter): Likewise.
13794         (mono_class_init): Allow interfaces to have cctors.
13795
13796 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13797
13798         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
13799         lazily for AOT methods.
13800
13801 2005-07-05  Martin Baulig  <martin@ximian.com>
13802
13803         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
13804         returns FALSE for a successful match, not TRUE.
13805
13806 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13807
13808         * loader.c (mono_method_get_index): Optimize this a bit.
13809
13810 2005-07-04  Martin Baulig  <martin@ximian.com>
13811
13812         * class.c
13813         (class_compute_field_layout): Move the check for generic type
13814         definitions into mono_class_layout_fields().  Fixes #74684.
13815         (mono_class_from_generic_parameter): Correctly compute
13816         `klass->parent'; fixes #75457.
13817
13818         * reflection.c (register_assembly, register_module): Make sure
13819         `domain->rejobject_hash' is already created.
13820
13821 2005-07-02  Martin Baulig  <martin@ximian.com>
13822
13823         * class-internals.h
13824         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
13825         `MonoDynamicGenericClass'.      
13826
13827 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
13828
13829         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
13830         returned by a field getter is null, since null is a valid value.
13831
13832 2005-07-01  Martin Baulig  <martin@ximian.com>
13833
13834         * reflection.c (mono_reflection_generic_class_initialize): Update
13835         the `dgclass->fields [i].parent' to the correct class.
13836         (mono_image_get_fieldref_token): Use the declaring type, not the
13837         reflected type.
13838
13839 2005-07-01  Martin Baulig  <martin@ximian.com>
13840
13841         * loader.c (find_method): Also look in the interfaces; fixes #75429.
13842
13843 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
13844
13845         * threads.c (thread_cleanup): assert that thread != NULL
13846         (wait_for_tids_or_state_change): We were using the wrong variable
13847         when accessing wait->threads. `i' was always out of the bounds of
13848         the array.
13849
13850 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13851
13852         * loader.c: map user32 and kernel32 to libMonoSupportW
13853
13854 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13855
13856         * appdomain.c (unload_thread_main): Mark this as WINAPI.
13857
13858 2005-06-28  Martin Baulig  <martin@ximian.com>
13859
13860         * loader.c (method_from_methodspec): Fix #75334.
13861
13862 2005-06-28  Martin Baulig  <martin@ximian.com>
13863
13864         Fix #74953 - Arrays now implement the generic IList<T> interface
13865         on the 2.0 platform.
13866
13867         * class-internals.h (MonoDefaults): Added `generic_array_class'.
13868
13869         * reflection.c (mono_class_bind_generic_parameters): New public
13870         function; similar to mono_reflection_bind_generic_parameters(),
13871         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
13872
13873         * domain.c (mono_init_internal): Try to initialize.
13874         `mono_defaults.generic_array_class' here; this'll only succeed if
13875         we're using the 2.0 corlib.
13876
13877         * icall.c
13878         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
13879         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
13880         (mono_lookup_internal_call): Added support for nested classes.
13881
13882         * loader.c
13883         (mono_get_method_from_token): Set `result->signature->pinvoke' if
13884         we're an interncall and have generic arguments.
13885
13886         * class.c
13887         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
13888         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
13889         instance of System.Array.InternalArray<T> for arrays, so they
13890         implement the generic IList<T> interface.
13891
13892 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
13893
13894         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
13895         (chastamar@yahoo.com). Fixes #75374.    
13896
13897 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
13898
13899         * culture-info-table.h: regenerated.
13900
13901 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13902
13903         * icall.c: handle spaces correctly for base64 strings.
13904
13905 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13906
13907         * *.c: Kill some warnings.
13908
13909 2005-06-23  Duncan Mak  <duncan@novell.com>
13910
13911         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
13912         that this builds on Solaris 10 (x86).
13913
13914 2005-06-23  Martin Baulig  <martin@ximian.com>
13915
13916         * class.c
13917         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
13918         generic type definitions.
13919
13920 2005-06-23  Martin Baulig  <martin@ximian.com>
13921
13922         Fix #75331.
13923
13924         * metadata.c (mono_class_get_overrides): Renamed to
13925         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
13926         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
13927         pass it to mono_get_method_full().
13928
13929 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
13930
13931         * reflection.c (mono_reflection_create_runtime_class): take the
13932         mono_domain_lock in this method. Prevents deadlocks
13933
13934 2005-06-22  Martin Baulig  <martin@ximian.com>
13935
13936         * loader.c (method_from_methodspec): Fix #75330.
13937
13938 2005-06-22  Martin Baulig  <martin@ximian.com>
13939
13940         * reflection.c (type_get_qualified_name): Use
13941         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
13942         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
13943         argument; use it if we don't have an assembly name.
13944
13945 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
13946
13947         * object.c: In mono_message_init, set "copy out" flag for in
13948         parameters with the [Out] flag.
13949
13950 2005-06-21  Martin Baulig  <martin@ximian.com>
13951
13952         * class.c
13953         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
13954         and MONO_TYPE_PTR.
13955
13956 2005-06-21  Martin Baulig  <martin@ximian.com>
13957
13958         * class.c (mono_class_init): Don't initialize `class->fields' for
13959         generic instances since they're initialized again in
13960         compute_field_layout(). 
13961         (compute_field_layout): Set the field's `generic_info' here; fix
13962         #75320. 
13963
13964 2005-06-21  Martin Baulig  <martin@ximian.com>
13965
13966         * class-internals.h
13967         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
13968
13969         * metadata.c (mono_metadata_generic_method_equal): Also
13970         distinguish the `generic_class'; fixes #75334.
13971
13972 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13973
13974         * domain.c:
13975         * appdomain.c:
13976         * domain-internals.h:
13977         * reflection.c: 'domain_assemblies' field is now protected by its own
13978         lock. Don't call into managed code to run the AssemblyLoad event if we
13979         now there are no registered delegates for it.
13980
13981 2005-06-20  Martin Baulig  <martin@ximian.com>
13982
13983         * class.c (mono_class_is_assignable_from): Use a custom version of
13984         mono_class_has_parent() to make things work for generic instances;
13985         fix #75300.
13986
13987 2005-06-20  Martin Baulig  <martin@ximian.com>
13988
13989         * loader.c (method_from_methodspec): Apply a patch from
13990         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
13991
13992 2005-06-20  Martin Baulig  <martin@ximian.com>
13993
13994         * class.c (mono_class_init): Reverted Zoltan's last change; it
13995         breaks generics.
13996
13997 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13998
13999         * threads.c (wait_for_tids_or_state_change): Add missing locking.
14000
14001 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14002
14003         * socket-io.c: fix the index in the socket array for writable/error
14004         sockets. Fixes bug #75306.
14005
14006 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
14007
14008         * class.c (mono_class_init): Allow interfaces to have static ctors.
14009
14010 2005-06-17  Martin Baulig  <martin@ximian.com>
14011
14012         * loader.c (method_from_methodspec): Use `context->container' when
14013         parsing the `gmethod->inst'.
14014
14015 2005-06-17  Martin Baulig  <martin@ximian.com>
14016
14017         * class.c (mono_type_get_name_recurse): Don't add the assembly
14018         name for type arguments.
14019
14020 2005-06-15  Martin Baulig  <martin@ximian.com>
14021
14022         * reflection.c (mono_image_get_inflated_method_token): Encode
14023         correct klass; fixes #75260.
14024
14025 2005-06-13 Michal Moskal <malekith@nemerle.org>
14026
14027         * icall.c: Make GetCorrespondingMethod/Constructor take
14028         MonoReflectionMethod method not MonoMethod. Removed
14029         MonoType.GetCorrespondingField, and make
14030         MonoGenericType.GetCorrespondingField take name not
14031         MonoClassField.
14032
14033 2005-06-13  Michal Moskal <malekith@nemerle.org>
14034
14035         * reflection.c (field_encode_signature, encode_locals):
14036          Make sizes of buffers for types larger (for big generic types).
14037          (create_generic_typespec,
14038          mono_reflection_sighelper_get_signature_local,
14039          mono_reflection_sighelper_get_signature_field):
14040          Add asserts for too small buffers.
14041
14042 2005-06-15  Martin Baulig  <martin@ximian.com>
14043
14044         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
14045         if our parent is not a dynamic type.
14046
14047 2005-06-15  Martin Baulig  <martin@ximian.com>
14048
14049         * class-internals.h (MonoTypeNameFormat): New enum.
14050
14051         * class.c
14052         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
14053         (mono_type_get_full_name): Removed.
14054         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
14055         argument instead of the boolean's.
14056
14057         * icall.c (ves_icall_System_MonoType_getFullName):
14058         Added `gboolean assembly_qualified'.    
14059
14060         * reflection.h
14061         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
14062
14063         * reflection.c (mono_reflection_parse_type): Parse the new type
14064         name format.
14065
14066 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14067
14068         * icall.c: no need to convert from utf16 to utf8 and then back again
14069         after the call to GetLogicalDrives.
14070
14071 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14072
14073         * icall.c: frombase64. Fix problems exposed by new tests.
14074
14075 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14076
14077         * icall.c: added internal calls for converting char [] and strings in
14078         base64 into byte [].
14079
14080 2005-06-10  Martin Baulig  <martin@ximian.com>
14081
14082         * class.c (mono_class_create_generic_2): Read the nested classes
14083         from the metadata rather than from `gklass->nested_classes' since
14084         `gklass' might not be initialized yet.
14085
14086 2005-06-09  Duncan Mak  <duncan@novell.com>
14087
14088         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
14089         all public headers. Fixes #74919.
14090
14091 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
14092
14093         * domain.c: The key for proxy_vtable_hash is now a pointer
14094         array. Added new GHashFunc and GCompareFunc functions for this.
14095
14096         * class.h: The list of interfaces in MonoRemoteClass is known in
14097         advance and can't grow (we create a new MonoRemoteClass if needed),
14098         so now the interface array can be allocated together with
14099         MonoRemoteClass.
14100         
14101         * object.c: Added a new method create_remote_class_key.
14102         Fixed mono_remote_class so it does not depend on
14103         mono_upgrade_remote_class.
14104         Removed extend_interface_array.
14105         Added new method clone_remote_class(), which makes a copy of a remote
14106         class and adds a new interface or class to it.
14107         mono_upgrade_remote_class() now creates a new remote class (or gets
14108         it from the cache) if an vtable upgrade is needed. In this way
14109         we make sure that other objects sharing the same remote class
14110         don't get the new vtable with unwanted interfaces.
14111         
14112         * object-internals.h:
14113         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
14114         
14115         * marshal.c: Track changes in mono_upgrade_remote_class().
14116
14117 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
14118         * icall.c: Add runtime methods for obtaining members of inflated
14119         class, which were created from supplied non-inflated members. It
14120         is used in internal Get{Method,Constructor,Field} methods in
14121         System.Type
14122
14123 2005-06-09  Martin Baulig  <martin@ximian.com>
14124
14125         * reflection.c
14126         (mono_reflection_bind_generic_method_parameters): Fix #75169.
14127
14128 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14129         * reflection.c (mono_image_basic_init): Define
14130         Version in MonoDynamicAssembly. 
14131         
14132 2005-06-08  Martin Baulig  <martin@ximian.com>
14133
14134         Fix #75136.
14135
14136         * loader.c
14137         (mono_method_signature_full): New public method; takes a
14138         `MonoGenericContext *'.
14139         (find_method): Use mono_method_signature_full() and pass the
14140         klass'es context to it.
14141
14142         * class.c (mono_class_is_inflated_method): Use
14143         mono_method_signature_full() and pass the context to it.
14144
14145 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
14146
14147         * object.c: add proper locking in mono_remote_class_vtable(),
14148         fixes possible memory corruption.
14149
14150 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
14151
14152         * marshal.c (mono_remoting_marshal_init): set
14153         initialized after initialization.
14154
14155 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14156
14157         * locales.c : hush.
14158
14159 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
14160
14161         * object.c (extend_interface_array): fix really silly
14162         memory corrupting / comparison bug.
14163
14164 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14165
14166         * reflection.c: Functions added to support the creation
14167         of CustomAttributeData, which includes Attribute data
14168         used by ReflectionOnly methods.
14169
14170         * reflection.h:  mono_reflection_get_custom_attrs_data and
14171          mono_custom_attrs_data_construct added (functions exposed).
14172
14173          * icall.c: Added mono_reflection_get_custom_attrs_data
14174          as icall.
14175         
14176 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
14177
14178         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
14179         lupus's request.
14180
14181 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
14182
14183         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
14184
14185         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
14186         dynamic DllImportAttribute.
14187
14188         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
14189         dynamic DllImportAttribute.
14190
14191         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
14192         Fixes #75162.
14193
14194 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14195
14196         * threads.c: avoid segfault when an unstarted thread is aborted.
14197
14198 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
14199
14200         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
14201         Returns the name and version of the runtime for reporting.
14202
14203 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14204
14205         * appdomain.c: bump corlib version.
14206         * object-internals.h: new field in MonoReflectionAssembly.
14207
14208 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14209
14210         * object-internals.h: Carlos forgot to add this field.
14211
14212 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14213
14214         * icall.c: Added create_version to create instances
14215         of Version of MonoReflectionAssemblyName. This change helps
14216         the AssemblyName tests to keep running fine.
14217         
14218 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
14219   
14220         * object.c (mono_method_return_message_restore): A somehow less
14221         intrusive fix for #75138.
14222
14223 2005-06-03  Raja R Harinath  <rharinath@novell.com>
14224
14225         * object.c (mono_method_return_message_restore): Fix computation
14226         of expected number of out args.
14227
14228 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
14229
14230         * reflection.c (mono_image_get_method_info): Fix the case when the
14231         charset is empty.
14232
14233 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
14234
14235         * object.c: Added missing null check in
14236           mono_method_return_message_restore.
14237
14238 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
14239
14240         * reflection.c (mono_image_get_method_info): Handle the case when
14241         dllentry is empty.
14242
14243 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
14244
14245         * object.c: When creating the vtable for a proxy, take into account
14246         all inherited interfaces, not only the ones registered in
14247         iclass->interfaces. This fixs bug #74996.
14248         Also, in mono_method_return_message_restore, verify that the array
14249         of out args has the expected lengh.
14250
14251 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14252
14253         * socket-io.c: update the timeout in Poll when the call is interrupte.
14254
14255 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14256
14257         * socket-io.c: support abort/suspend in Select_internal after last
14258         change.
14259
14260 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14261
14262         * threadpool.c: remove warning.
14263
14264 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14265
14266         * icall.c:
14267         * socket-io.[ch]: Select_internal uses poll() now when available, thus
14268         removing the 1024 limit from select(). Runtime part of the fix for
14269         bug #71203.
14270
14271 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14272
14273         * socket-io.c: when resolving the addresses for the same
14274         host returned by gethostname(), get the local IPs from the interface
14275         list. Loopback addresses are discarded if the are interfaces up with
14276         non-loopback ones. Fixes bug #63265.
14277
14278 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
14279
14280         * appdomain.c, verify.c, object-internals.h, reflection.c:
14281         bumped corlib number to 36, and added new extra_flags field
14282         to ReflectionMethodBuilder and friends.  Fixes #75060.
14283
14284 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
14285
14286         * gc.c: register a new weak link only if the object is non-null
14287         (fixes bug#75047).
14288
14289 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14290
14291         * culture-info.h : short time pattern too.
14292
14293 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
14294
14295         * culture-info.h : expand long time pattern string length.
14296
14297 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14298
14299         * culture-info-table.h : update (more French date format; #72788).
14300
14301 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
14302
14303         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
14304         the method is static. Fixes #75029.
14305
14306 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
14307
14308         * reflection.c: Update the table_idx field of method builders after
14309         saving the module, since it can change. This is a workaround for
14310         bug #74914. 
14311
14312 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14313
14314         * culture-info-table.h : update (additional French date format).
14315
14316 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
14317
14318         * icall.c (ves_icall_type_Equals): Revert last change.
14319         
14320         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
14321
14322         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
14323
14324 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
14325
14326         * class-internals.h: Added executioncontext_class field to 
14327         MonoDefaults structure.
14328         * domain.c: Cache System.Threading.ExecutionContext class in 
14329         mono_defaults.
14330         * object.c: Capture the ExecutionContext for asynchroneous calls in
14331          mono_async_result_new.
14332         * object-internals.h: Added execution_context and original_context 
14333         fields to MonoAsyncResult. Added execution_context to MonoThread.
14334         * security-manager.c|.h: Added mono_get_context_capture_method to 
14335         return the capture method (if required by the security manager or by
14336         the framework version used).
14337         * threadpool.c: Apply capture (if present) ExecutionContext in 
14338         mono_async_invoke and revert to original context after it completes.
14339
14340 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
14341
14342         * culture-info-table.h : updated (real hacky solution for zh-CHT).
14343
14344 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
14345
14346         * culture-info-table.h : zh-CHT related workaround.
14347
14348 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
14349
14350         * marshal.c (emit_marshal_custom): Add some error checking and call the
14351         methods in the ICustomMarshaler interface. Fixes #74875.
14352         
14353         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
14354         native->managed wrappers.
14355
14356 2005-05-12  Martin Baulig  <martin@ximian.com>
14357
14358         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
14359         here and use the loader lock.
14360
14361         * mono-debug.c: Properly lock when the debugger is not attached.
14362         (mono_debug_init): Release the initial lock if we're not running
14363         in the debugger.
14364
14365 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
14366
14367         * marshal.c (emit_marshal_custom): Pass through NULL values without
14368         calling the custom marshalling routines.
14369
14370         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
14371         conversion in structures. Fixes #74882.
14372
14373 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
14374
14375         * culture-info-table.h : zh-* cultures were missing.
14376
14377 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
14378
14379         * threads.c: Added a new event background_change_event which is signaled
14380         when a thread changes its background mode.
14381         Moved here several checks previously done in managed code. The checks
14382         require the thread lock, and using the thread lock in managed code
14383         can result in deadlocks.
14384         Merged Start_internal and Thread_internal into a single method. Now 
14385         Thread_internal does all work of creating and starting a thread.
14386         Added icalls for setting and getting the state of the object. Moved from
14387         managed code to avoid locking there.
14388         Added wait_for_tids_or_state_change() which is called instad of
14389         wait_for_tids when waiting for non-backround threads to end. This method
14390         will return if one of the threads ends or the background_change_event
14391         is signaled.
14392         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
14393         the background mode. This method signals the background_change_event
14394         event.
14395         * icall.c:
14396         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
14397         removed Start_internal.
14398         
14399 2005-05-11  Martin Baulig  <martin@ximian.com>
14400
14401         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
14402         to order of some fields to get proper alignment on 64-bit machines.
14403
14404 2005-05-11  Martin Baulig  <martin@ximian.com>
14405
14406         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
14407         changes as they're broken and completely fuck up the debugger.
14408
14409         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
14410
14411 2005-05-10  Martin Baulig  <martin@ximian.com>
14412
14413         * reflection.c (mono_reflection_generic_class_initialize): Don't
14414         call mono_class_setup_parent() here.
14415
14416 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14417
14418         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
14419         send/receive timeout use an integer in milliseconds. We were using a
14420         struct timeval.
14421
14422 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14423
14424         * locales.c:
14425         (internal_get_cultures): reserve the first slot of the array for the
14426         InvariantCulture, which will be filled in managed code.
14427
14428 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
14429
14430         * reflection.c (mono_image_fill_module_table): Initialize the
14431         GENERATION field as well.
14432
14433 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14434
14435         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
14436         Monitor.Enter on the object.
14437
14438 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
14439
14440         * threads.c: Enable the wait for running threads when exiting.
14441         * icall.c: Suspend all threads before exiting.
14442
14443 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
14444
14445         * assembly.c (mono_assembly_load_reference): Fix warning.
14446
14447 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14448
14449         * threadpool.c: changed the default number of threads per cpu. From now
14450         on, the default will be 20 + (5 * number of cpus) instead of 50.
14451
14452 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
14453
14454         * loader.c (mono_method_get_signature_full): Add locking here.
14455
14456 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
14457
14458         * appdomain.c: Moved methods for parsing and freeing assembly
14459         names to assembly.c.
14460         * assembly.c, domain-internals.h: Created public methods for parsing
14461         assembly names. Fixed mono_assembly_load_with_partial_name:
14462         it now finds the best match, taking into account the version,
14463         token and culture specified in the partial name. Also return
14464         the latest version if no version information is specified.
14465
14466 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
14467
14468         * threadpool.c: replace check for SocketAsyncCall class.
14469
14470 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14471
14472         * threadpool-internals.h:
14473         * Makefile.am: added threadpool-internals.h
14474
14475         * threadpool.c: call mono_unhandled_exception on exceptions not handled
14476         that happen in threadpool threads (tested on MS).
14477         (mono_thread_pool_remove_socket): new function that dispatch any pending
14478         AIO call on a socket that is closing. By now only epoll really needs it,
14479         as select/poll wake up when the socket closes.
14480
14481
14482         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
14483
14484 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
14485
14486         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
14487
14488 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
14489
14490         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
14491
14492 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
14493
14494         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
14495         has an abort request, convert it into a suspend request.
14496
14497 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
14498
14499         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
14500         warning for the usage of `UnmanagedFunctionPointerAttribute' which
14501         is not supported yet.
14502
14503 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14504
14505         * image.c: register assemblies loaded from data (bundles) in the loaded
14506         assemblies hash. Fixes bug #74772.
14507
14508 2005-04-29  Martin Baulig  <martin@ximian.com>
14509
14510         * class.c (mono_type_get_name_recurse): Update to the new naming
14511         schema from the latest .NET 2.x beta2.
14512         (mono_class_setup_vtable_general): If we're a generic instance,
14513         copy the vtable from our generic type definition and inflate all
14514         the methods in it.
14515
14516         * loader.c (find_method): Update to the new naming schema from the
14517         latest .NET 2.x beta2.
14518
14519 2005-04-29  Raja R Harinath  <harinath@gmail.com>
14520
14521         * class.c (mono_class_init): Add a mono_loader_unlock to the
14522         #74734 fix.
14523
14524 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
14525
14526         * icall.c (ves_icall_System_Environment_Exit): Remove the 
14527         suspend_all_other_threads () call for the time being, since it can hang.
14528
14529         * threads.c (mono_thread_manage): Similarly, disable the waiting for
14530         the background threads to exit, since it can also hang.
14531
14532         * class.c (mono_class_init): Applied patch from Ankit Jain 
14533         (radical@gmail.com). Avoid pending init errors when a field refers
14534         to a nested class using a typeref. Fixes #74734.
14535
14536         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
14537         this for dynamic modules.
14538
14539 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14540
14541         * threads.c: don't wait for threads that are in the process of aborting
14542         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
14543         and waiting for background threads to finish. This makes xsp and
14544         mod-mono-server exit without random length delays and/or hangs.
14545
14546 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14547
14548         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
14549
14550 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
14551
14552         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
14553         dynamic types to prevent infinite loops. Fixes #74727.
14554
14555         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
14556         ..._is_assignable_to.
14557
14558 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
14559
14560         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
14561
14562 2005-04-25  Martin Baulig  <martin@ximian.com>
14563
14564         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
14565
14566         * domain.c
14567         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
14568
14569         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
14570
14571         * reflection.c (build_compressed_metadata): Set metadata header
14572         version to 2.0.
14573
14574 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
14575
14576         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
14577         number into an integral and a decimal part. Fixes #70473.
14578
14579         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
14580
14581 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
14582
14583         * culture-info-table.h : reflected the latest locale-builder output.
14584
14585 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14586
14587         * threadpool.c: check for SuspendRequested too when deciding if
14588         mono_thread_interruption_checkpoint should be called.
14589
14590 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14591
14592         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
14593         * threads.c: remove interruption_mutex and use Interlocked instead. When
14594         suspending all the threads, wait for all the suspended events at once.
14595         If we're shutting down and get an APC that is going to be queued,
14596         call mono_thread_execute_interruption immediately, as the thread might
14597         be sleeping on a pthread condition or mutex.
14598
14599         * icall.c: call mono_runtime_set_shutting_down before suspending the
14600         threads.
14601
14602         Fixes bug #74693. And now xsp is happier when exiting.
14603
14604 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
14605
14606         * loader.c (mono_stack_walk): Fix #74690.
14607
14608 2005-04-22  Martin Baulig  <martin@ximian.com>
14609
14610         * mono-debug.h (MonoDebugMethodJitInfo): Added
14611         `MonoDebugMethodJitInfo *jit'.
14612
14613         * mono-debug.c (mono_debug_read_method): Cache the
14614         MonoDebugMethodJitInfo in `address->jit'.
14615         (mono_debug_free_method_jit_info): New public method.
14616
14617 2005-04-22  Martin Baulig  <martin@ximian.com>
14618
14619         * class.c (mono_class_is_assignable_from): Disallow
14620         type parameter -> interface.
14621
14622 2005-04-21  Dick Porter  <dick@ximian.com>
14623
14624         * threads.c (mono_thread_create): Turn an assertion into an error.
14625
14626 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
14627
14628         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
14629         
14630         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
14631         Fix some gcc 4.0 warnings.
14632
14633 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
14634
14635         * file-io.c: fix alt dir separator char on unix systems
14636         and cleanup (fixes bug #71214).
14637
14638 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
14639
14640         * marshal.c: Use CALLVIRT instead of CALL when dispatching
14641         a call to a remote domain, since the method may be an
14642         interface method in the client domain. This fixes bug #74192.
14643
14644 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14645
14646         * threadpool.c: recv/send are now performed before going back to managed
14647         code to save one transition.
14648
14649 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14650
14651         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
14652
14653         * metadata/threadpool.c: removed hack to workaround the bug above.
14654
14655         Fixes bug #74618.
14656
14657 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
14658
14659         * reflection.c reflection.h: Fix handling of parameter defaults in
14660         dynamic methods. Also fixes handling of parameter attributes.
14661         Fixes #74609.
14662
14663         * mono-debug.c (mono_debug_close_image): Fix warning.
14664
14665 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14666
14667         * socket-io.h: replaced old unused field with new 'blocking'.
14668         * threadpool.c: restore socket blocking state on windows(tm).
14669
14670 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
14671
14672         * icall.c: don't return the codebase in the AssemblyName[] returned by
14673         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
14674         * object-internals.h: Removed FIXME (fields were presents) and fixed
14675         versioncompat declaration.
14676
14677 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14678
14679         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
14680         not closed, so don't cleanup when it happens.
14681
14682 2005-04-13  Chris Toshok  <toshok@ximian.com>
14683
14684         * mono-debug-debugger.h: change prototype for
14685         mono_debugger_lookup_type.
14686
14687         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
14688         this function, although it should probably be named
14689         mono_debugger_init_type.
14690
14691 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14692
14693         * threadpool.c: fix non-AIO case.
14694
14695 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
14696
14697         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
14698         the built-in profiler to measure just JIT compilation times.
14699
14700 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14701
14702         * threadpool.c: the epollfd might be closed by another thread at
14703         any time, so ignore EBADF at treat it as a "we're closing" sign.
14704
14705 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14706
14707         * threadpool.c: release the semaphores with a count equals to the number
14708         of working threads in both IO and regular pools. Fixed typo that messed
14709         up the count of IO pool threads. Don't initialize the pipe handles if
14710         we're using epoll.
14711
14712 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14713
14714         * threadpool.c: some systems don't like a NULL when deleting the socket
14715         from epoll.
14716
14717 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14718
14719         * threadpool.c: fix semaphore allocation.
14720
14721 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14722
14723         * threadpool.c: added epoll() based implementation for asynchronous IO
14724         that is used instead of the default poll() when available.
14725         It can be disabled by setting MONO_DISABLE_AIO.
14726
14727 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14728
14729         * threadpool.c: windows needs 'closesocket' and instead of returning
14730         0 when the stream is closed while in select, it returns -1. Fixes bug
14731         #74573.
14732
14733 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
14734
14735         * class.c (class_compute_field_layout): Fix the regression caused by
14736         the previous try.
14737
14738 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14739
14740         * threadpool.c: separate pool for socket async. IO.
14741         * threadpool.h: mono_max_worker_threads is not a global any more.
14742
14743 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
14744
14745         * class.c (class_compute_field_layout): Fix #74549.
14746
14747 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14748
14749         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
14750         use 2 connected sockets instead.
14751
14752 2005-04-08  Miguel de Icaza  <miguel@novell.com>
14753
14754         * mono-config.c: Add new entry point for mkbundle
14755         mono_config_parse_memory. 
14756
14757 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14758
14759         * threadpool.c: removed another unused function.
14760
14761 2005-04-08  Ankit Jain  <radical@corewars.org>
14762
14763         * reflection.c (get_default_param_value_blobs): Add 'types'
14764         parameter to get the types encoded in the constant table.
14765         (mono_param_get_objects): Use the type from the constant table,
14766         not the type of the parameter, when creating default values.
14767         Handle null default values correctly.
14768
14769 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14770
14771         * file-io.c:
14772         * file-io.h:
14773         * threadpool.c:
14774         * threadpool.h:
14775         * icall.c:
14776         * socket-io.c: removed dead code for async IO.
14777
14778 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14779
14780         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
14781
14782         * threadpool.c: intercept socket async. calls and pass them to a thread
14783         that is polling and dispatching the job items to the threadpool as
14784         socket become ready. Fixes bugs #71217, #71933.
14785
14786         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
14787         between char and short/ushort arrays.
14788
14789         * socket-io.c: remove dead code.
14790
14791 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14792
14793         * locales.c,
14794           icall.c : removed InternalToUpper_Comp() and
14795           InternalToLower_Comp().
14796
14797 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
14798
14799         * char-conversions.h : The tables were incorrectly generated. Should
14800           be generated against invariant culture.
14801
14802 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
14803
14804         * object.c (mono_runtime_invoke_array): Fix return value when 
14805         passing pre-created valuetype objects to ctors.
14806
14807         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
14808         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
14809         Fixes #74338.
14810
14811 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
14812
14813         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
14814         only used with --security and hides the wrong corlib version error.
14815
14816 2005-03-30  Joshua Tauberer  <tauberer@for.net>
14817
14818         * class.c: Changed mono_class_name_from_token so that types
14819         outside of a namespace don't have an initial period.  Improved
14820         the g_warning message used in _mono_class_get when loading
14821         fails.
14822         * assembly.c: In mono_assembly_load_reference, when an assembly
14823         can't be found, "No such file or directory" is misleading and
14824         unhelpful because a few paths were checked for the presence of
14825         the assembly.  When that happens (ENOENT), display a nicer
14826         message indicating the directories that were searched.  In all
14827         cases, the warning is made easier to read for non-hackers.
14828
14829 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
14830
14831         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
14832         project/solution.
14833         * appdomain.h|domain.c: Removed inline from functions.
14834         * appdomain.c: Reduced warnings when compiling on windows.
14835         * icall.c: Fixed output_debug declaration to gunichar2*.
14836         * mono-config.c: Reduced warnings when compiling on windows.
14837         * rand.c: Added missing "windows.h". Added missing return value.
14838         * rawbuffer.c: Added missing winsock2.h for windows.
14839         * sysmath.h: Added mono-compiler.h header to allow/ease 
14840         compilation with non-GCC compilers.
14841         * threads.c: Fixed declarations to compile with VS.NET C compiler.
14842         Removed cast warnings.
14843
14844         Adapted from the work of J Lothian (for VC6).
14845
14846 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
14847
14848         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
14849         from default_path.
14850
14851 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
14852
14853         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
14854         the 2.0 profile.
14855
14856 2005-03-27  Raja R Harinath  <harinath@gmail.com>
14857
14858         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
14859         has to be in $(exec_prefix).  $(prefix) is for arch-independent
14860         stuff, and it would probably use $(prefix)/share rather than
14861         $(prefix)/lib.
14862
14863 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14864
14865         * console-io.c: added 2 includes that might be missing.
14866
14867 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
14868
14869         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
14870         profile.
14871
14872         * reflection.c (create_custom_attr): Allocate the params array using
14873         alloca so it gets GC tracking.
14874
14875 2005-03-23  Chris Toshok  <toshok@ximian.com>
14876
14877         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
14878         out some spew.
14879
14880 2005-03-24  Raja R Harinath  <rharinath@novell.com>
14881
14882         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
14883         changes to pick up any changes in prefix, etc.
14884
14885 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14886
14887         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
14888         
14889         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
14890         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
14891
14892 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
14893
14894         * class-internals.h object-internals.h class.c reflection.c: Extend the
14895         mono_lookup_dynamic_token () function to return the class of the
14896         token as well. 
14897
14898         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
14899         well. Fixes #73848.
14900
14901 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
14902
14903         * security-manager.c: Skip inheritance checks for intra-corlib
14904         class inheritance and method overrides. This skips a lot of checks
14905         and (anyway) permissions cannot work until corlib is loaded.
14906
14907 2005-03-23  Martin Baulig  <martin@ximian.com>
14908
14909         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
14910         MONO_TYPE_GENERICINST.  
14911
14912 2005-03-23  Martin Baulig  <martin@ximian.com>
14913
14914         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
14915
14916 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14917
14918         * class.c: added locking comments to some functions.
14919         Cache the interface offsets arrays (saves about 20 KB
14920         of runtime memory in a typical app).
14921         Reduce the time overhead in mono_class_setup_supertypes ().
14922
14923 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
14924
14925         * icall.c: speedup and fix leaks in GetMethodsByName and
14926         GetPropertiesByName.
14927
14928 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
14929
14930         * reflection.c: some locking fixes.
14931
14932 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
14933
14934         * metadata.c: added missing break in case statement.
14935
14936 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
14937
14938         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
14939         typedbyref return values. Fixes #73941.
14940
14941 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
14942
14943         * security-manager.c|h: Added demandunmanaged method and 
14944         suppressunmanagedcodesecurity class to MonoSecurityManager.
14945         Renamed aptc class to allowpartiallytrustedcallers.
14946
14947 2005-03-17  Martin Baulig  <martin@ximian.com>
14948
14949         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
14950
14951 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14952
14953         * file-io.c: disabled file async. IO using aio_*. It uses the
14954         threadpool now. Workaround for bug #73718.
14955
14956 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
14957
14958         * assembly.h, mono-config.c: added code to deal with bundled configs
14959         for bundled assemblies.
14960
14961 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
14962
14963         * *.c, private.h: cleanup, removing old private.h header file.
14964
14965 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
14966
14967         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
14968         and throw_on_unmappable_char attributes.
14969
14970 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
14971
14972         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
14973         _ProcessName_internal.
14974
14975 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
14976
14977         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
14978         #73631.
14979
14980         * icall.c threads.c threads-types.h: Remove slothash icalls as they
14981         are no longer used.
14982
14983 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
14984
14985         * object.c (compute_class_bitmap): Add support for generics. Fixes
14986         #73527.
14987
14988 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14989
14990         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
14991
14992 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14993
14994         * filewatcher.c: commented out the code for windows watcher, as we don't
14995         use it (we use the managed implementation instead).
14996
14997 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
14998
14999         * object-internals.h (MonoThread): Remove 'unused1' field.
15000
15001         * appdomain.c: Bump corlib version.
15002
15003         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
15004
15005         * reflection.c (mono_reflection_create_runtime_class): Remove the
15006         AssemblyBuilder.Save optimization since it causes too many problems.
15007
15008 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
15009
15010         * exception.c|h: Added mono_get_exception_reflection_type_load to
15011         create a ReflectionTypeLoadException object.
15012         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
15013         to return NULL is a InheritanceDemand fails during reflection. Updated
15014         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
15015         ReflectionTypeLoadException if an InheritanceDemand fails during 
15016         reflection. Added icall mapping for GetLinkDemandSecurity.
15017         * security-manager.c|h: Added ves_icall_System_Security_
15018         SecurityManager_GetLinkDemandSecurity internal call to return the
15019         class and methods permissions set for a LinkDemand. Removed unused
15020         fields in MonoSecurityManager.
15021
15022 2005-03-10  Martin Baulig  <martin@ximian.com>
15023
15024         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
15025         it's a generic instance.
15026
15027 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
15028
15029         * reflection.c (mono_get_object_from_blob): Applied patch from
15030         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
15031
15032         * class.c (mono_class_is_assignable_from): Another try at fixing 
15033         #73469 without breaking anything.
15034
15035 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
15036
15037         * class.c: (mono_class_is_assignable_from): Revert the last changes
15038         since they don't work with generics.
15039         
15040         * class.c (mono_class_is_assignable_from): Fix build bustage.
15041
15042         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
15043         the managed IsAssignableFrom method. Fixes #73469.
15044
15045         * reflection.c (mono_reflection_call_is_assignable_from): New helper
15046         function.
15047
15048 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
15049
15050         * object.c (mono_load_remote_field_new): Fix returning uninitialized
15051         memory when the remoting callback does not sets the out arguments.
15052         Fixes #73007.
15053
15054         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
15055         by mistake.
15056
15057         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
15058
15059         * object-internals.h (MonoStackFrame): Sync with managed object layout.
15060
15061         * appdomain.c: Bump corlib version.
15062
15063 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
15064
15065         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
15066         function.
15067
15068         * threads.c (mono_thread_attach): Detect threads which are not started
15069         by the GC pthread wrappers.
15070
15071 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
15072
15073         * icall.c: Added new icall for RNG.
15074         * rand.c|h: Added new icall to open the RNG. This allows to share a 
15075         single handle on Linux to access /dev/urandom and fix #73183.
15076
15077 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
15078
15079         * object.c: setting the new vtable in a transparent proxy object must
15080         not change the GC descriptor.
15081
15082 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15083
15084         * object.c: fixed compilation without GCJ support.
15085         * reflection.c: for runtime-created types ensure klass->has_references
15086         is correct (bug #73215).
15087
15088 2005-03-02  Martin Baulig  <martin@ximian.com>
15089
15090         * class.c (mono_class_is_assignable_from): Make this work if
15091         `oklass' is a generic instance; fixes #72831.
15092
15093 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
15094
15095         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
15096         with hasthis set.
15097         
15098         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
15099
15100         * marshal.c: Reorganize native->managed marshalling code to also use
15101         the emit_marshal_... functions.
15102
15103 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
15104
15105         * object.c: typed allocs have issues with bitmap sizes > 30,
15106         so check for max_set >= 30.
15107
15108 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
15109
15110         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
15111         managed code. Fixes #73012.
15112
15113         * metadata.h (MonoMarshalSpec): Add elem_mult field.
15114
15115         * metadata.c reflection.c: Load/Emit elem_mult as well.
15116         
15117         * metadata.h (MonoMarshalSpec): Add comment.
15118
15119         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
15120
15121         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
15122         num_elem to -1 if not given.
15123
15124         * object-internals.h (MonoReflectionMarshal): Add has_size field.
15125
15126         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
15127         given values.
15128
15129 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
15130
15131         * null-gc.c (mono_gc_free_fixed): Was not compilable.
15132
15133 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
15134
15135         * reflection.c (encode_marshal_blob): Encode param_num field as well.
15136
15137         * object-internals.h (MonoReflectionMarshal): Add param_num field.
15138
15139 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
15140
15141         * object.c: generalized the reference bitmap creation
15142         and added hooks for the new GC.
15143         * class-internals.c: removed the gc_bitmap field from MonoClass.
15144
15145 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15146
15147         * domain.c: help the compiler to produce better code
15148         in mono_jit_info_table_find ().
15149
15150 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
15151
15152         * object.c: make all allocations look typed.
15153
15154 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15155
15156         * socket-io.c: load Mono.Posix if it's not loaded already
15157         (fixes bug#73033).
15158
15159 2005-02-24  Martin Baulig  <martin@ximian.com>
15160
15161         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
15162         * reflection.c (dup_type): Likewise.
15163
15164 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
15165
15166         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
15167         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
15168
15169 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15170
15171         * domain.c, threads.c, object-internals.h: make the critical thread
15172         local vars use the fast access mode (even when we're compiled in
15173         a lib). Provide accessors to be used by the jit during codegen.
15174
15175 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15176
15177         * appdomain.c: Changed hook functios behavior to include
15178         support for the reflection only assemblies. Some icalls were changed
15179         to support the mentioned assemblies too. Signatures of static methods
15180         try_assembly_resolve and real_load now have an additional parameter:
15181         refonly.
15182
15183         * assembly.c: General changes to mono_assembly_ methods to support
15184         reflection only api. Functions mono_assembly_open, mono_assembly_load,
15185         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
15186         suffix, to support an additional gbool parameter to specify whether
15187         the assembli is reflection only or not. Created some new hook functions 
15188         to add support for reflection only assemblies. Signatures of static 
15189         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
15190         have now an additional parameter: refonly.
15191
15192         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
15193         indicating whether the assembly is reflection only or not.
15194
15195         * exception.c: Add mono_get_exception_invalid_operation.
15196
15197         * icall.c: Throw an InvalidOperationException when trying to invoke
15198         a property/method/event, or trying to set/get the value of a field.
15199         Also add an icall to retrieve the ref_only flag to the
15200         MonoReflectionAssembly.
15201
15202 2005-02-23  Chris Toshok  <toshok@ximian.com>
15203
15204         Part of fix for #72827.
15205         * mono-debug.c (mono_debug_add_method): add lexical block data to
15206         the info we write.  Kind of a hack at the moment - we copy the
15207         lexical block info from the MonoDebugMethodInfo to the
15208         MonoDebugMethodJitInfo here, before writing it.
15209         (mono_debug_read_method): read the lexical block info.
15210
15211         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
15212
15213         * debug-mono-symfile.h: add lexical block support.
15214
15215         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
15216         support.
15217
15218 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
15219
15220         * loader.c (mono_lookup_pinvoke_call): Fix warning.
15221
15222         * object.c (mono_runtime_free_method): Call mono_free_method () and
15223         put the TODOs there.
15224
15225         * loader.c (mono_free_method): Free up most memory allocated for 
15226         dynamic methods.
15227
15228 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
15229
15230         * reflection.c: properly flag a Type argument to a
15231         named custom attr value (bug #72248).
15232
15233 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
15234
15235         * reflection.c: reduce code duplication in named custom
15236         attribute encoding.
15237
15238 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
15239
15240         * reflection.c: properly encode custom attrs of type object
15241         (bug #72649).
15242
15243 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
15244
15245         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
15246
15247 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
15248
15249         * socket-io.c: load System.dll if it's not loaded already
15250         (bug #72850 and #70477).
15251
15252 2005-02-21  Martin Baulig  <martin@ximian.com>
15253
15254         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
15255         generic instances.
15256
15257 2005-02-21  Martin Baulig  <martin@ximian.com>
15258
15259         * reflection.c (mono_image_build_metadata): We also need to
15260         "fixup" the MethodImpl table after we computed the final method
15261         indices.  Call fixup_methodimpl() to do that.
15262         (fixup_methodimpl): New private method.
15263
15264 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
15265
15266         * assembly.c: special case mscorlib.dll (bug#72536),
15267         patch from Carlos Alberto Cortez.
15268
15269 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
15270
15271         * threads-types.h threads.c: Fix build bustage.
15272
15273         * threads.c: Use a union for long<->double conversions.
15274
15275         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
15276         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
15277
15278         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
15279         containing the checkpoint call with NOT_TAKEN.
15280         
15281         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
15282         checkpoint before pushing the arguments, so they won't have to be
15283         spilled to stack.
15284
15285 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15286
15287         * domain.c, assembly.c, domain-internals.h: make some data
15288         const and relocation-free.
15289
15290 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
15291
15292         * object.c, appdomain.c, class-internals.h: introduce the
15293         MonoClassRuntimeInfo structure to hold the info needed to
15294         use a class at runtime. Made mono_class_vtable() lock-free
15295         for all the appdomains.
15296
15297 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
15298
15299         * metadata-internals.h, image.c: introduce a per-image mempool to
15300         be used for memory that has the same lifetime as the image.
15301
15302 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
15303
15304         * domain.c: In mono_init_internal(), instead of selecting the first
15305         runtime version supported by an executable, get a list of all
15306         supported versions and select the one for which an mscorlib exists
15307         (since even if the runtime supports a given version, it doesn't mean
15308         that the framework for that version is installed).
15309         Modified get_runtimes_from_exe to support this behavior.
15310         In supported_runtimes, added information about additional system
15311         assembly versions.
15312         
15313         * assembly.c: Added support for more than one system assembly version
15314         per runtime version. Updated the assembly list.
15315         In mono_assembly_remap_version, removed the initial version check,
15316         since we don't know to which version we need to compare until we
15317         get the version set on which the assembly is based.
15318         Moved the code for loading corlib into the new method
15319         mono_assembly_load_corlib(), so it can be used by the initialization
15320         code.
15321         
15322         * domain-internals.h: Updated data structures and added declaration
15323         for mono_assembly_load_corlib.
15324
15325 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15326
15327         * reflection.c (resolve_object): Fix the creation of the signature in 
15328         the SignatureHelper case.
15329
15330         * assembly.c (mono_assembly_remap_version): Fix binary search.
15331         
15332 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
15333  
15334         * class.c: Added inheritance check when a method is overloaded (from a
15335         virtual method or when implementing an interface) and when a class is
15336         inherited. Added functions to set a failure for a class and to 
15337         retreive the exception from a failure.
15338         * class-internals.h: Added fields to MonoClass to keep the exception
15339         information status for inheritance (or other exceptions) to be thrown
15340         later (i.e. not at load time).
15341         * object.c: Throw the inheritance SecurityException when a type is to 
15342         be created with either class or method inheritance violations.
15343         * reflection.c|h: Fix when getting declsec from a class. Removed 
15344         unrequired code for class. Improved sanity in parameter naming.
15345         * security-manager.c|h: Added functions to check for class and method
15346         inheritance.
15347
15348 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
15349
15350         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
15351         and has_finalize in dynamic types as well.
15352
15353 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
15354
15355         * culture-info-table.h : fixed currency format for en-GB (and so on).
15356
15357 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
15358
15359         * gc.c: ensure the GC handles never have 0 as a value.
15360
15361 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
15362
15363         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
15364         a pointer to a struct to unmanaged code. Fixes #72625.
15365
15366 2005-02-16  Martin Baulig  <martin@ximian.com>
15367
15368         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
15369
15370 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
15371
15372         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
15373
15374 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
15375
15376         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
15377
15378         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
15379         UnmanagedFunctionPointerAttribute, use it for determining calling convention
15380         etc. Fixes #71471.
15381
15382         * reflection.c (mono_custom_attrs_get_attr): New helper function.
15383
15384         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
15385
15386 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
15387
15388         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
15389         changes to make the current context a field in MonoThread.
15390
15391 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
15392
15393         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
15394         the last change.
15395         
15396         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
15397         extracted from mono_marshal_get_native_wrapper.
15398
15399         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
15400         to create wrappers around native functions.
15401
15402         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
15403         delegates for arbitrary function pointers. Fixes #71472.
15404
15405 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15406
15407         * threads.c: cleaned up the code a little.
15408
15409 2005-02-15  Martin Baulig  <martin@ximian.com>
15410
15411         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
15412         the data table.
15413
15414         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
15415         allocate larger chunks if needed.
15416
15417 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15418
15419         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
15420         in by mistake.
15421
15422 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
15423
15424         * domain.c: keep the domains in an array and ensure the domain ids
15425         are kept small, so they can be used as indexes to domain-specific data
15426         with a small memory overhead.
15427
15428 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
15429
15430         * icall.c: Handle byref types in Type icalls. Fixes #72544.
15431
15432 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
15433
15434         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
15435
15436 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
15437
15438         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
15439
15440         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
15441         values.
15442
15443         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
15444         
15445 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
15446
15447         * domain-internals.h: add the hashtable here.
15448
15449         * class-internals.h: Remove `info' from MonoMethod
15450
15451         * domain.c: Add a new hashtable, jit_trampoline_hash
15452
15453 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
15454
15455         * object.c: don't set the value of static fields
15456         (fixes bug#72494).
15457
15458 2005-02-11  Martin Baulig  <martin@ximian.com>
15459
15460         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
15461         (mono_debug_add_method): Silently ignore the method if it's too big.
15462         (mono_debug_add_type): Likewise.
15463
15464 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
15465
15466         * threads.c, appdomain.c: remove #ifdefs from the code.
15467
15468 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
15469
15470         * metadata-internals.h: Added flags to MonoAssembly to cache the most
15471         common security informations. This allows us to stay in unmanaged code
15472         when doing LinkDemand and it's special cases (except for the first 
15473         time for initialization). The flags a very much used with --security.
15474         * reflection.c|h: Added code to get declarative security attributes 
15475         for LinkDemand and InheritanceDemand. This required to refactor the
15476         existing code for Demand.
15477         * security-manager.c|h: Added new method fields for the special cases
15478         of LinkDemand.
15479
15480 2005-02-10  Martin Baulig  <martin@ximian.com>
15481
15482         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
15483         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
15484
15485 2005-02-10  Martin Baulig  <martin@ximian.com>
15486
15487         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
15488         debugging code; this is almost a complete rewrite.
15489
15490         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
15491
15492 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15493
15494         * domain.c, object.h: expose mono_string_equal () and 
15495         mono_string_hash ().
15496         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
15497         it's implemented in managed code.
15498
15499 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15500
15501         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
15502         lo leak objects between appdomains.
15503
15504 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15505
15506         * assembly.c: old compilers compilation fix from 
15507         robertj@gmx.net (Robert Jordan).
15508
15509 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
15510
15511         * class-internals.h: Little reminder for the future.
15512
15513         * debug-helpers.c: Fix up wrapper_type_names
15514
15515 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15516
15517         * image.c, metadata-internals.h: when loading an image from a file,
15518         mmap all of it and use the same codepaths as when using a
15519         in-memory image: the code is simpler and we use less memory
15520         (both writable and readonly).
15521
15522 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
15523
15524         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
15525         API to alloc runtime data structures that need to be tracked by the
15526         GC and contain pointers.
15527         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
15528         make the code more readable and eventually use a different GC.
15529
15530 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
15531
15532         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
15533         for out arguments.
15534         
15535 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
15536
15537         * object.c: In release_type_locks(), don't release the cctor lock
15538         if it has already been released. This fixes a crash in the
15539         thread5 test.
15540
15541 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
15542
15543         * gc.c, marshal.c, icall.c: register a delegate for finalization
15544         only when the native function pointer has been allocated for it.
15545
15546 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15547
15548         * object.c: cleaned up some code, allocate objects that are
15549         pointer free with the atomic malloc variant. Allocate memory
15550         for static data from the mempool if it's pointer-free.
15551         Allocate the bounds array at the end of the array data, when needed.
15552         * object-internals.h, object.h: move a private function in a private
15553         header.
15554         * class.c: handle missing case in tracking references in fields.
15555
15556 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
15557
15558         * class.c, class-internals.h: keep track if a type has
15559         reference fields in either the instance or static fields.
15560
15561 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
15562
15563         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
15564         and renamed to MonoRuntimeInfo. Added fields to store the expected
15565         framework assembly version. Changed mono_get_framework_version and
15566         mono_get_runtime_version for a single mono_get_runtime_info method.
15567         
15568         * assembly.c: Added method to remap system assembly versions to the
15569         current executing runtime version. Removed old mapping code.
15570         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
15571         
15572         * icall.c, reflection.c: Track api changes.
15573
15574 2005-02-06  Miguel de Icaza  <miguel@novell.com>
15575
15576         * loader.c (method_from_memberref): Improve error reporting,
15577         produce the class name instead of the typeref/typedef index. 
15578
15579 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
15580
15581         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
15582
15583 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15584
15585         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
15586         stdcall and charset name mangling.  Reorganize the code and add
15587         some tracing stuff.
15588
15589 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
15590
15591         * monodiet.c: More iters!
15592
15593         * marshal.c: Iter usage.
15594
15595         * icall.c: Iter usage.
15596
15597         * object.c: Use iters.
15598
15599         * debug-helpers.c: More iters
15600
15601 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15602
15603         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
15604         under win32.
15605
15606 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
15607
15608         * mono-debug-debugger.c: use iters
15609
15610         * class.c, class-internals.h: mono_class_setup_events is static
15611         now
15612
15613         * All callers: use iters
15614
15615 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
15616
15617         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
15618         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
15619
15620 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15621
15622         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
15623
15624         * marshal.h: Add prototypes for ldfld/stfld_remote.
15625
15626         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
15627         this is called during startup.
15628         
15629 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
15630
15631         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
15632         MonoThreadsSync struct private in monitor.c. Changed the way
15633         MonoThreadsSync is allocated so it's faster and there is no
15634         need to keep track of it with a finalizer and it uses less memory.
15635         This also finally allows us to allocate mono objects as ptrfree when
15636         there are no reference fields.
15637
15638 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
15639
15640         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
15641         disappearing link to the GC interface and use them to simplify
15642         the gchandles code.
15643
15644 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
15645
15646         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
15647         stfld_remote which call mono_load/store_field_new. This allows methods
15648         calling ldfld/stfld wrappers to be AOTed.
15649
15650         * console-io.c: Include sys/filio.h under solaris.
15651         
15652         * console-io.c: Include curses.h if needed correctly.
15653
15654 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15655         
15656         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
15657         method->klass as well.
15658
15659         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
15660
15661         * class.c (mono_class_init): Switch on lazy initialization of 
15662         methods.
15663
15664         * class.c (mono_class_get_finalizer): Handle the case when the 
15665         finalizer is inherited.
15666
15667 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15668
15669         * console-io.c: <curses.h> is needed by term.h on solaris.
15670
15671 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
15672
15673         * icall.c, class-internals.h, monodiet.c, class.c: Remove
15674         mono_class_setup_properties where possible. Remove this ftn from
15675         the header file, and make it static.
15676
15677 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
15678
15679         * loader.c: Add missing setup_... call.
15680
15681         * class.c: Add missing setup_... calls.
15682
15683         * class.c (mono_class_init): Switch on lazy initialization of 
15684         the generic vtable.
15685         
15686         * class.c (mono_class_init): Fix generics broken by the recent changes.
15687
15688         * monodiet.c (handle_type): Add missing setup_... calls.
15689
15690         * class.c: Back out garbage in previous patch.
15691         
15692         * class.c: Add missing setup_... calls.
15693
15694         * class.c (mono_class_get_method_from_name_flags): Avoid calling
15695         mono_class_setup_methods () if possible.
15696
15697         * class-internals.h (MonoClass): Add 'has_cctor' flag.
15698
15699         * class-internals.h (MonoCachedClassInfo): New structure.
15700
15701         * class.c: Initialize properties and events fields of MonoClass lazily.
15702
15703         * class.c: Add infrastructure for lazily initializing the methods and
15704         vtable fields of MonoClass. Not yet used.
15705
15706         * class.c (mono_class_get_finalizer): New helper function.
15707
15708         * class.c: Add infrastructure for loading some class related data from
15709         an AOT file.
15710
15711         * object.c: Add infrastructure for initializing the vtable from data
15712         in the AOT file.
15713
15714         * gc.c (run_finalize): Use mono_class_get_finalizer ().
15715
15716         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
15717         appropriate initialization function before accessing parts of the
15718         MonoClass structure.
15719
15720         * marshal.c: Fix warnings.
15721         
15722         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
15723
15724         * mono-debug-debugger.c (get_exception_message): Use 
15725         mono_class_get_method_from_name_flags ().
15726
15727 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
15728
15729         * reflection.c, appdomain.c: Replace a few manual searches that
15730         Zoltan missed. (Paolo approved this part of my initial patch).
15731
15732 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
15733
15734         * profiler.c: disable recording statistical events at report time.
15735
15736 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15737
15738         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
15739         to byteswap arrays of enum values, too (bug #72080).
15740
15741 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
15742
15743         * appdomain.c (set_domain_search_path): Allow this to be called if
15744         domain->setup is not yet set.
15745
15746         * loader.c (mono_method_get_index): New helper function.
15747
15748         * loader.c reflection.c: Use mono_method_get_index ().
15749
15750         * class.c (mono_class_get_method_from_name_flags): New helper method.
15751
15752         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
15753         this.
15754
15755         * class.c (mono_class_get_cctor): New helper method.
15756
15757         * string-icalls.c object.c class.c marshal.c reflection.c: Use
15758         mono_class_get_method () to look up methods.
15759
15760 2005-02-01  Miguel de Icaza  <miguel@novell.com>
15761
15762         * console-io.c: Fix the build, this should work on Windows.
15763
15764 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
15765
15766         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
15767         be set to null to keep things valid
15768
15769 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15770
15771         * icall.c: added Console 2.0 icalls.
15772         * Makefile.am: added console-io.[ch]
15773         * console-io.[ch]: internal calls for Console 2.0 API.
15774
15775 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15776
15777         * class.c: make sure we consider all the interfaces
15778         when calculating max_interface_id (bug found by
15779         Jeroen Frijters running ikvm).
15780
15781 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
15782
15783         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
15784         valuetype fields to null.
15785
15786         * object.c (set_value): Ditto. Fixes #71669.    
15787
15788 2005-01-31  Martin Baulig  <martin@ximian.com>
15789
15790         * metadata.c (mono_metadata_has_generic_params): New public
15791         function; checks whether something is a generic method.
15792
15793 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
15794
15795         * appdomain.c: fix infinite recursion when adding assemblies.
15796
15797 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
15798
15799         * object.c: Fix small typo to return all items for Environment.
15800         GetCommandLineArgs.
15801
15802 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
15803
15804         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
15805         reflection.c: more domain and assembly-unload related fixes
15806         and memory leaks plugs.
15807
15808 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
15809
15810         * 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.
15811
15812 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
15813
15814         * loader.c (mono_method_signature): Make this method lazy
15815         (mono_get_method_from_token): Don't computate the signature here.
15816
15817         Doing this saves quite a bit of memory. I got 90 kb on starting up
15818         monodoc. It should also save some disk reads on startup.
15819
15820         * *: MonoMethod->signature might be NULL now. You *MUST* use
15821         mono_method_signature.
15822
15823 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
15824
15825         * object.c (mono_runtime_get_main_args): Return an array from the
15826         current domain here. Fixes #71938.
15827
15828 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
15829
15830         * monitor.c: formatting changes to comply with the
15831         mono coding style and remove #ifdefs from the code.
15832
15833 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15834
15835         * metadata.c, private.h: remove some unneeded data
15836         and use a more compact representation for table schemas.
15837
15838 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
15839
15840         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
15841         to get a better distribution in hash tables.
15842         * *.c: use mono_aligned_addr_hash() where appropriate.
15843         * assembly.c: make var static.
15844
15845 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
15846
15847         * domain-internals.h: Put MonoJitInfo on a diet.
15848
15849         * domain.c: Fix a warning.
15850
15851 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
15852
15853         * gc.c: rework the gc handles code to reuse handles
15854         when freed.
15855
15856 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
15857
15858         * domain.c: fixed long standing bug in mono_string_equal() which
15859         was brought to light with the ldstr changes.
15860
15861 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
15862
15863         * reflection.c: Remove warning by adding missing include for marshal.h
15864
15865 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
15866
15867         * domain.c, object.c: change the ldstr_table to hold
15868         MonoString* as keys: makes the runtime isinterned lookup
15869         faster and simplifies memory management.
15870
15871 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
15872  
15873         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
15874         possible to add imperative security checks before calling the icall.
15875         * reflection.c: Return security attributes on the original MonoMethod
15876         (and not the wrapped one). This fix permissions on icalls.
15877
15878 2005-01-25  Dick Porter  <dick@ximian.com>
15879
15880         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
15881         the check for mktime() support actually test the mktime() return
15882         value.  "Fixes" bug 71682, though the output is still different to
15883         MS.
15884
15885 2005-01-25  Martin Baulig  <martin@ximian.com>
15886
15887         * class.c (mono_class_is_assignable_from): Make this work for
15888         generic instances.
15889
15890 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
15891
15892         * marshal.c (mono_string_utf8_to_builder)
15893         (mono_string_builder_to_utf16): We might not have ownership of the
15894         string. In thise case, we need to create a new buffer.
15895
15896         * object-internals.h (mono_stringbuilder_capacity): sb->str might
15897         be null, in which case, use the default capacity.
15898
15899 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
15900
15901         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
15902         GC events to the profiler.
15903
15904 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
15905
15906         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
15907         if you don't want the GC to run.
15908
15909 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
15910
15911         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
15912         start providing a GC API and keeping different implementations in
15913         their own file.
15914         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
15915
15916 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
15917
15918         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
15919         mmap rather than allocating a huge buffer.
15920         (mono_debug_close_mono_symbol_file): Free the buffer allocated
15921         above.
15922
15923 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
15924
15925         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
15926         and CheckExecutionRights.
15927         * reflection.c|h: Keep the index of the declarative security to be 
15928         used, instead of the pointer, when AOT compiler is used. Also add 
15929         class initialization when requesting demands.
15930         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
15931         CheckExecutionRights. Both properties are now FALSE by default, and
15932         unmodifiable, unless the --security option is used.
15933
15934 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
15935
15936         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
15937         reflection.c: properly refcount images and assemblies, many leaks fixed.
15938
15939 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15940
15941         * threadpool.c: increase the timeout for threads in the thread pool to
15942         10s.  Fixes bug #67159.
15943
15944 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
15945
15946         * class-internals.h: Sun's compiler insists on explicit
15947         signed on bit fields to handle then correctly.
15948
15949 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15950
15951         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
15952         Make the size of the array fit only the number of invalid path
15953         chars that we have.
15954
15955         * class.c (_mono_class_get): Improve the error reporting when a
15956         class referenced is not found, to assist debugging. 
15957
15958 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
15959
15960         * threads.c: fix off-by-one error.
15961         * domain.c: free data allocated in the domain.
15962
15963 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15964
15965         * reflection.c (mono_method_body_get_object): Fill out exception info
15966         as well.
15967
15968         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
15969         structure.
15970         
15971 2005-01-19  Martin Baulig  <martin@ximian.com>
15972
15973         * loader.c (mono_get_method_constrained): Make this work again.
15974
15975 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
15976
15977         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
15978         guint16 to match the managed side.
15979
15980         * reflection.c (mono_reflection_body_get_object): Fill out local
15981         variables array.
15982
15983         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
15984         as well.
15985
15986         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
15987         'local_var_sig_token'.
15988
15989 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
15990
15991         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
15992         System.Drawing.
15993
15994         * reflection.c (mono_method_body_get_object): Handle abstract and
15995         runtime methods.
15996
15997 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
15998
15999         * marshal.c, loader.c, class-internals.h, reflection.c:
16000         store the emthod data for a wrapper in an array instead of a list.
16001
16002 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
16003
16004         * marshal.c: change the code to allocate memory more
16005         conservatively for method wrappers.
16006
16007 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
16008
16009         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
16010         fields from MonoClass to the marshal info structure where they belong.
16011
16012 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
16013
16014         * class.c, object.c, class-internals.h, marshal.c: rearrange
16015         some fields and tweak some types to lower memory usage.
16016
16017 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
16018
16019         * threads.c (signal_thread_state_change): Handle the case when the
16020         target thread is the current thread.
16021
16022         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
16023
16024         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
16025         emit_ptr_to_object_conv. 
16026
16027         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
16028         marshalling. Fixes #71352.
16029
16030 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
16031
16032         * metadata.h, blob.h: move table enum to blob.h so it can be included
16033         in any header.
16034         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
16035         cut the size of MonoImage/MonoDynamicImage.
16036
16037 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
16038
16039         * profiler.c (mono_profiler_install_simple): Fix default arguments.
16040
16041 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
16042
16043         * reflection.c, reflection.h, icall.c: add a function to check
16044         if an attribute type is defined for a metadata object.
16045
16046 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
16047
16048         * object-internals.h: Added some needed fields from StringBuilder class.
16049         * marshal.c: Set the maxCapacity when creating a StringBuilder.
16050
16051 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
16052
16053         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
16054         threads before shutting down the runtime.
16055
16056         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
16057
16058 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
16059
16060         * object-internal.h, threads.c: implement stacksize and 
16061         parameterized thread start functionality (requires
16062         matching corlib). Marked broken code for later removal.
16063
16064 2005-01-12  Martin Baulig  <martin@ximian.com>
16065
16066         * class-internals.h (MonoGenericClass): Moved the `initialized'
16067         flag to MonoDynamicGenericClass, removed `init_pending'.
16068         (MonoGenericInst): Added `is_reference' flag.
16069
16070 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
16071
16072         * reflection.c (mono_image_create_pefile): Only set the pe_offset
16073         inside the MSDOS header. Fixes #71201.
16074
16075         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
16076         gc thread.
16077         (mono_domain_finalize): Ditto.
16078
16079 2005-01-12  Martin Baulig  <martin@ximian.com>
16080
16081         * class.c (mono_get_shared_generic_class): Use the cache for
16082         non-dynamic generic classes.
16083
16084         * class-internals.h (mono_class_create_generic_2): Removed
16085         function prototype, this function is now static inside class.c.
16086
16087         * class.c (mono_class_create_generic_2): Made this static, only
16088         call it from mono_class_init() and mono_class_setup_parent().
16089         (collect_implemented_interfaces_aux): Call mono_class_init() on
16090         the interfaces we collect.
16091         (mono_class_setup_vtable): Call mono_class_init (class->parent).
16092
16093 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
16094
16095         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
16096         it a real thread handle.
16097
16098         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
16099         MonoJitExceptionInfo, since each catch clause needs its own variable.
16100         
16101 2005-01-11  Dick Porter  <dick@ximian.com>
16102
16103         * image.c (mono_pe_file_open): New variant on mono_image_open()
16104         that does not set up the CLI metadata; used for FileVersionInfo so
16105         it can get the data for windows binaries too.
16106         
16107         * process.c (process_read_string_block): Don't read off the end of
16108         the StringTable block.
16109
16110         These both fix bug 70766.
16111
16112 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
16113
16114         * gc.c: set some fields to NULL at GC cleanup time.
16115         * threads.c: if we quit the main thread, call exit ().
16116
16117 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
16118
16119         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
16120
16121 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
16122
16123         * threads.h, threads.c, object.c: added accessor and settor for
16124         main_thread. Handle it specially when exiting from it: wait
16125         for other foreground threads to exit.
16126
16127 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
16128
16129         * process.c, verify.c: remove some bloat.
16130
16131 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
16132
16133         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
16134         the calling convention to cdecl under win32.
16135
16136 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
16137
16138         * object.c (mono_object_get_size): New function to get the size of
16139         an object instance.
16140
16141         * profiler.c (simple_allocation): Use above.
16142
16143 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
16144
16145         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
16146         ves_icall_System_AppDomain_getRootDomain (as it's not required to
16147         get an appdomain by it's id and we can't assume the root's id is 0).
16148         * domain-internals.h: Change the function prototype to match.
16149         * icall.c: Change the icall table for AppDomain.
16150
16151 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
16152
16153         * locales.c (string_invariant_compare_char): Only compute
16154         GUnicodeTypes in the case where we need them.  Test for ordinality
16155         first and return if so.
16156
16157         From the commit:
16158
16159                 /*
16160                  * FIXME: here we must use the information from c1type and c2type
16161                  * to find out the proper collation, even on the InvariantCulture, the
16162                  * sorting is not done by computing the unicode values, but their
16163                  * actual sort order.
16164                  */
16165
16166 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
16167
16168         * loader.c: for P/Invoke methods, allow the "Internal" shared
16169         library name to refer to the calling process symbol namespace.
16170
16171 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
16172
16173         * Makefile.am: Add the security manager to the build.
16174         * security-manager.c|h: New. Initialization of the security manager.
16175
16176 2005-01-07  Dick Porter  <dick@ximian.com>
16177
16178         * threads.c: 
16179         * monitor.c: Update thread state during Monitor and WaitHandle
16180         waits.  Fixes bug 71031.
16181
16182 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
16183
16184         * reflection.c (property_encode_signature): Correctly handle when the
16185         property has no methods.
16186
16187 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
16188
16189         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
16190         
16191         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
16192         fields from mb, not rmb. Fixes #71017.
16193
16194         * marshal.c (emit_ptr_to_str_conv): Add support for 
16195         ByValTStr -> string conversion. Fixes #71015.
16196
16197         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
16198
16199         * mempool.c (mono_mempool_contains_addr): New helper function.
16200
16201 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
16202
16203         * metadata.c (mono_metadata_compute_size): Fix size calculation of
16204         HasSematics encoded fields.
16205         
16206         * metadata.c (mono_type_to_unmanaged): Improve error message for 
16207         invalid string marshalling.
16208
16209         * metadata.c: Fix warnings.
16210         
16211 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
16212
16213         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
16214         profiler support.
16215
16216 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
16217
16218         * domain.c object.c domain-internals.h: Revert part of r38077 since the
16219         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
16220         tests.
16221
16222 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
16223
16224         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
16225         so methods containing these can be AOTed.
16226
16227 2005-01-03  Martin Baulig  <martin@ximian.com>
16228
16229         * loader.c (find_method): Removed the hack for generic instances.
16230         (method_from_memberref): If our parent is a generic instance, pass
16231         its generic type definition to find_method() and then inflate the
16232         method.
16233         (mono_get_method_constrained): Pass the generic type definition to
16234         find_method() and inflate the method later.
16235
16236         * class-internals.h (MonoStats): Added `generic_class_count'.
16237
16238         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
16239         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
16240
16241         * reflection.c (mono_custom_attrs_from_params): Don't ignore
16242         generic type definitions.
16243
16244 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
16245
16246         * loader.c icall.c: Fix warnings.
16247
16248 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
16249
16250         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
16251         blittable types. Fixes #70864.
16252
16253 2004-12-29  Martin Baulig  <martin@ximian.com>
16254
16255         * icall.c
16256         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
16257
16258         * reflection.c (mono_method_get_object): Create a
16259         "System.Reflection.MonoGenericMethod" for inflated methods; don't
16260         call mono_get_inflated_method().
16261
16262         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
16263
16264 2004-12-27  Martin Baulig  <martin@ximian.com>
16265
16266         * class-internals.h (MonoMethod): Added `is_inflated' flag.
16267         (MonoMethodInflated): Added `inflated' field.
16268
16269         * class.c (mono_class_inflate_generic_method): Don't really
16270         inflate the method here; just set the `is_inflated' flag in the
16271         MonoMethod.
16272         (mono_class_get_inflated_method): Actually inflate the method here
16273         if it's not already inflated; we use the MonoMethodInflated's new
16274         `inflated' field as a cache.
16275
16276 2004-12-26  Martin Baulig  <martin@ximian.com>
16277
16278         * class.c
16279         (inflate_generic_class): Moved some code out of inflate_generic_type().
16280         (mono_class_inflate_generic_method): If we're already inflated,
16281         inflate the context and use the declaring method; ie. make sure
16282         the declaring method of an inflated method is always the generic
16283         method definition.
16284         (mono_class_create_from_typedef): Create
16285         `class->generic_container->context->gclass'.
16286
16287 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
16288
16289         * metadata-internals.h, marshal.c, reflection.c: More
16290         MonoGHashTable->GHashTable.
16291
16292         * domain-internals.h, class.c: Change MonoGHashTable's into
16293         GHashTables for some cases where no gc stuff is used
16294
16295         All users: update apis
16296
16297 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
16298
16299         * metadata.c (builtin_types): Make this `const'. Makes this get
16300         put into the shareable section.
16301         (mono_metadata_init): Casts to make gcc happy.
16302
16303 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
16304
16305         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
16306
16307 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
16308
16309         * icall.c: Added an internal call to retrieve the position and length
16310         of assembly-level declarative security attributes (RequestMinimum, 
16311         RequestOptional and RequestRefuse). This is used by the Assembly class
16312         to re-create the corresponding permission sets.
16313
16314 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
16315
16316         * marshal.c: fix the stelemref wrapper to be type correct
16317         (and faster).
16318
16319 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
16320
16321         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
16322         to do key & 0x7fffffff. Hashtable already does this. It just
16323         results in longer code.
16324
16325 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
16326
16327         * appdomain.c: Bump corlib version.
16328         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
16329         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
16330         * reflection.c|h: Add functions to get declarative security infos
16331         (blob position and length) for assemblies, classes and methods.
16332
16333 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
16334
16335         * reflection.c: sort the constant table (bug #70693).
16336
16337 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
16338
16339         * object-internals.h, threads.c, domain.c: add accessors for
16340         the MonoThread and MonoDomain tls keys.
16341
16342 2004-12-18  Martin Baulig  <martin@ximian.com>
16343
16344         * class.c (inflate_generic_type): If we're inflating a generic
16345         instance, set `ngclass->context->container = context->container';
16346         ie. the container we inflated into.
16347
16348         * metadata.c (mono_metadata_parse_generic_param): Reflect above
16349         inflate_generic_type() changes.
16350
16351 2004-12-17  Martin Baulig  <martin@ximian.com>
16352
16353         * class-internals.h
16354         (MonoGenericClass): Replaced `MonoType *generic_type' with
16355         `MonoClass *generic_class'.  Removed `dynamic_info'; if
16356         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
16357         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
16358
16359 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
16360
16361         * exception.c (mono_exception_from_token): New helper function.
16362
16363 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
16364
16365         * assembly.c (mono_assembly_load_with_partial_name): Call 
16366         mono_assembly_loaded before invoking the preload hooks. Fixes
16367         #70564.
16368
16369         * object-internals.h (MonoThread): Change culture_info and 
16370         ui_culture_info into an array.
16371
16372         * threads.c: Cache culture info objects from more than one appdomain.
16373
16374         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
16375         current UI culture.
16376
16377 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
16378
16379         * threads.h threads.c appdomain.c: Clear the culture_info field of
16380         all threads during unloading if they point to an object in the dying
16381         appdomain.
16382
16383 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
16384
16385         * culture-info.h (TextInfoEntry): New struct
16386         * object-internals.h: sync with managed
16387         * locales.c: fill the `text_info_data' field
16388         * culture-info-tables.h: update
16389
16390 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
16391
16392         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
16393         collector.
16394
16395 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
16396
16397         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
16398         (ves_icall_ModuleBuilder_getMethodToken): Ditto
16399
16400 2004-12-12  Martin Baulig  <martin@ximian.com>
16401
16402         * mono-debug-debugger.c (write_type): If we're an enum and the
16403         builtin types have already been initialized, call mono_class_init().
16404
16405 2004-12-11  Martin Baulig  <martin@ximian.com>
16406
16407         * metadata.c (mono_metadata_load_generic_params): Added
16408         `MonoGenericContainer *parent_container' argument; automatically
16409         compute `container->is_method'; pass the correct owner to
16410         get_constraints().      
16411
16412         * reflection.c (compare_genericparam): Sort the GenericParam table
16413         according to increasing owners. 
16414
16415 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
16416
16417         * profiler.c: allow disabling the default profiler.
16418
16419 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
16420
16421         * decimal.c, icall.c: allow disabling System.Decimal support.
16422
16423 2004-12-09  Marek Safar <marek.safar@seznam.cz>
16424
16425         * reflection.c: Add support for null attribute arguments.
16426
16427 2004-12-09  Martin Baulig  <martin@ximian.com>
16428
16429         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
16430         names to get rid of compiler warnings.
16431
16432 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16433
16434         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
16435         mono_marshal_load_type_info (). Fixes #69625.
16436         (mono_marshal_get_ptr_to_struct): Likewise.
16437
16438 2004-12-08  Martin Baulig  <martin@ximian.com>
16439
16440         * mono-debug.h: Bumped version number to 47.
16441
16442         * mono-debug-debugger.c
16443         (mono_debugger_event_handler, mono_debugger_event): Take two
16444         guint64 arguments insteed of a gpointer and a guint32.  
16445
16446 2004-12-08  Martin Baulig  <martin@ximian.com>
16447
16448         * debug-mono-symfile.h
16449         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
16450         `address' to `native_offset'.
16451
16452 2004-12-08  Martin Baulig  <martin@ximian.com>
16453
16454         * class.c (mono_class_create_from_typespec): Only inflate if we
16455         either have `context->gclass' or `context->gmethod'.
16456
16457 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
16458
16459         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
16460
16461         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
16462
16463         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
16464
16465         * reflection.c (mono_assembly_get_object): Remove the workaround put
16466         in for the release.
16467         
16468         * appdomain.c: Use the corlib_internal field from MonoAssembly.
16469
16470         * appdomain.c: Bump corlib version.
16471
16472         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
16473         be visible in other appdomains.
16474
16475 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
16476
16477         * threads.c: Interlocked inc and dec for longs were messed up,
16478         use a KISS based impl for this. Fixes 70234
16479
16480 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
16481
16482         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
16483
16484 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
16485
16486         * icall.c: fix to follow policy not to allow struct
16487         arguments in icalls.
16488
16489 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16490
16491         * process.c: make the patch that handles spaces in file paths work
16492         on mono/windows too.
16493
16494 2004-12-06  Martin Baulig  <martin@ximian.com>
16495
16496         * class.c (mono_class_create_generic): Call
16497         mono_class_setup_supertypes() if we're dynamic.
16498         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
16499
16500 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
16501
16502         * object-internals.h: Add new fields to MonoThread.
16503
16504         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16505
16506         * icall.c threads-types.h threads.c: Add new icalls.
16507
16508         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
16509
16510         * object-internals.h (MonoReflectionAssembly): Sync object layout with
16511         managed side.
16512
16513         * appdomain.c: Bump corlib version.
16514
16515         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
16516         internal assemblies. Fixes #69181.
16517
16518 2004-12-05  Martin Baulig  <martin@ximian.com>
16519
16520         * class.c (mono_class_inflate_generic_signature): Make this a
16521         no-op if `context' is NULL or we don't have any type parameters;
16522         also copy `sentinelpos'.        
16523
16524 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
16525
16526         * image.c: Add unbox_wrapper_cache.
16527
16528         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
16529
16530         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
16531         function generator.
16532         
16533         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
16534         Fixes #70173.
16535
16536         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
16537         
16538 2004-12-04  Martin Baulig  <martin@ximian.com>
16539
16540         * loader.c (mono_method_get_signature_full): New public function;
16541         like mono_method_get_signature(), but with an additional
16542         `MonoGenericContext *' argument.
16543
16544         * class.c (mono_class_inflate_generic_signature): Formerly known
16545         as inflate_generic_signature(); make this public.
16546
16547 2004-12-04  Martin Baulig  <martin@ximian.com>
16548
16549         * metadata.c
16550         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
16551         instead of a `MonoGenericContainer *'.  
16552         (mono_metadata_parse_array_full): Likewise.
16553         (mono_metadata_parse_signature_full): Likewise.
16554         (mono_metadata_parse_method_signature_full): Likewise.
16555         (mono_metadata_parse_generic_inst): Likewise.
16556         (mono_metadata_parse_generic_param): Likewise.
16557         (mono_metadata_parse_mh_full): Likewise.
16558         (mono_type_create_from_typespec_full): Likewise.
16559
16560 2004-12-03  Martin Baulig  <martin@ximian.com>
16561
16562         * class-internals.h (MonoGenericContainer): Replaced the
16563         `MonoGenericContext * pointer with a `MonoGenericContext'
16564         structure and made it the first element.
16565
16566 2004-12-03  Martin Baulig  <martin@ximian.com>
16567
16568         * class.c
16569         (inflate_generic_type): Set the `context->container' when creating
16570         a new MonoGenericContext.
16571         (mono_class_inflate_generic_method): Likewise.
16572         (mono_class_create_from_typespec): Just use `context->container'
16573         to get the container.
16574
16575         * loader.c (method_from_methodspec): Set `context->parent' from
16576         `context->container' - and if that's a method container, use its
16577         parent.  Also set the `context->container' when creating a new
16578         MonoGenericContext.
16579         (mono_get_method_from_token): Use just `context->container' to get
16580         the container.
16581
16582         * metadata.c (do_mono_metadata_parse_generic_class): Also set
16583         `gclass->context->container'.
16584
16585         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
16586         the `context->container' when creating a new MonoGenericContext.
16587
16588 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
16589
16590         * reflection.c (compare_genericparam): Sort params with identical
16591         owner by their number. Fixes gen-111 on sparc.
16592
16593 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16594
16595         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
16596         around the domain changes.
16597
16598         * appdomain.c (mono_domain_unload): Handle the case when the thread
16599         calling Unload is itself being aborted during unloading. Fixes #70022.
16600
16601         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
16602
16603         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
16604         checkpoint_func as an icall so it gets a wrapper.
16605         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
16606         in the cross-appdomain wrappers too.
16607
16608         * threads.c (mono_thread_has_appdomain_ref): Make this public.
16609
16610         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
16611
16612         * reflection.c: Fix some memory leaks.
16613         
16614 2004-12-02  Martin Baulig  <martin@ximian.com>
16615
16616         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
16617
16618         * metadata.c (generic_class_cache): New static hashtable.
16619         (mono_metadata_lookup_generic_class): New public method.
16620
16621 2004-12-02  Martin Baulig  <martin@ximian.com>
16622
16623         * class.c (mono_class_create_from_typedef): Call
16624         mono_class_setup_parent() and mono_class_create_mono_type() before
16625         parsing the interfaces.
16626
16627 2004-12-02  Martin Baulig  <martin@ximian.com>
16628
16629         * metadata.c (generic_inst_cache): New static hashtable.
16630         (mono_metadata_lookup_generic_inst): New public function.
16631         (mono_metadata_inflate_generic_inst): New public function.
16632         (mono_metadata_parse_generic_inst): New public function.
16633         (do_mono_metadata_parse_generic_class): Use the new
16634         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
16635         since this'll also use the cache.
16636
16637         * reflection.c (mono_reflection_bind_generic_method_parameters):
16638         Use mono_metadata_lookup_generic_inst() to use the new cache.
16639
16640         * class.c (inflate_mono_type): Use
16641         mono_metadata_inflate_generic_inst() to inflate a generic
16642         instance; this'll also use the new cache.
16643
16644         * loader.c (method_from_methodspec): Use
16645         mono_metadata_parse_generic_inst() and
16646         mono_metadata_inflate_generic_inst() rather than parsing it
16647         manually, so we can use the new cache.
16648
16649 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
16650
16651         * threads.c (wait_for_tids): Do not incorrectly free threads when 
16652         the wait times out.
16653
16654 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16655
16656         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
16657         iter->args based on whether parameters are passed in registers (i.e.
16658         MONO_ARCH_REGPARMS is defined)
16659
16660 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
16661
16662         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
16663         the exception message. Fixes #70070.
16664         (method_from_methodspec): Fix warnings.
16665
16666 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16667
16668         * process.c: (complete_path) return the path quoted
16669
16670 2004-12-01  Martin Baulig  <martin@ximian.com>
16671
16672         * class-internals.h (MonoGenericInst): New structure.
16673         (MonoGenericClass): Replaced `type_argc', `type_argv' and
16674         `is_open' with `MonoGenericInst *inst'.
16675         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
16676         `is_open' with `MonoGenericInst *inst'.
16677
16678 2004-11-30  Martin Baulig  <martin@ximian.com>
16679
16680         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
16681
16682         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
16683         to `generic_class_cache'.
16684
16685         * metadata.c
16686         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
16687         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
16688         (mono_generic_inst_is_valuetype): Renamed to
16689         mono_generic_class_is_valuetype().
16690
16691         * class-internals.h
16692         (MonoGenericInst): Renamed to MonoGenericClass.
16693         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
16694         (MonoClass): Renamed `generic_inst' to `generic_class'.
16695         (MonoGenericContext): Renamed `ginst' to `gclass'.
16696
16697         * object-internals.h
16698         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
16699
16700         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
16701         mono_reflection_generic_class_initialize().
16702
16703         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
16704         now known as "System.Reflection.MonoGenericClass".
16705         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
16706
16707 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
16708
16709         * class-internals.h: Added a flag field to MonoClass to cache the
16710         declarative security attributes actions associated with the class.
16711         * domain-internals.h: Added booleans to MonoJitInfo to cache the
16712         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
16713         applicable to the JITted method.
16714         * reflection.c|h: Added functions to extract (as flags) which security
16715         actions are available (declaratively) for a method, class or assembly.
16716         * metadata.c|h: Added functions to search the declarative security
16717         table in the metadata.
16718         
16719 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
16720
16721         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
16722         EXPORTEDTYPES are already in the class name cache, so there is no
16723         need to add extra code here to look at them. Just removes a bit of
16724         cruft.
16725
16726         (ves_icall_System_Environment_get_TickCount): No need for #if
16727         WINDOWS. We already have the code in io-layer.
16728
16729 2004-11-28  Martin Baulig  <martin@ximian.com>
16730
16731         * loader.c
16732         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
16733         Fixes gen-112.cs.
16734
16735 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
16736
16737         * assembly.c (do_mono_assembly_open): Instead of having a
16738         conditional WITH_BUNDLE, incorporate support for bundles here, by
16739         having a global `bundles' variable holding a pointer to the actual
16740         bundles. 
16741
16742         (mono_register_bundled_assemblies): New API call used by the
16743         bundle code. 
16744
16745         See mkbundle.1 for details.
16746         
16747 2004-11-27  Martin Baulig  <martin@ximian.com>
16748
16749         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
16750         the vtable for generic methods.
16751
16752 2004-11-26  Martin Baulig  <martin@ximian.com>
16753
16754         * metadata.c
16755         (mono_metadata_generic_method_hash): New public function.
16756         (mono_metadata_generic_method_equal): Likewise.
16757
16758         * class-internals.h
16759         (MonoGenericContainer): Added `GHashTable *method_hash'.
16760
16761         * reflection.c (ReflectionMethodBuilder): Added
16762         `MonoGenericContainer *generic_container'.
16763         (reflection_methodbuilder_to_mono_method): Don't create a new
16764         MonoGenericContainer each time we're called.
16765         (mono_reflection_bind_generic_method_parameters): Use
16766         `container->method_hash' to cache the results so we don't create a
16767         different method if we're called several times with the same
16768         arguments.
16769
16770         * loader.c (method_from_methodspec): Use the new
16771         `container->method_hash' here, too.
16772
16773 2004-11-26  Martin Baulig  <martin@ximian.com>
16774
16775         * class.c (inflate_generic_signature): Correctly compute
16776         `res->has_type_parameters'.
16777         (mono_class_vtable): Use the `has_type_parameters' flag to
16778         determine whether we're a generic method.
16779
16780         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
16781
16782 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
16783
16784         * object.c (mono_runtime_run_main): Fix a small memory leak.
16785
16786 2004-11-25  Martin Baulig  <martin@ximian.com>
16787
16788         * class.c (set_generic_param_owner): Fixed the loop.
16789
16790 2004-11-25  Martin Baulig  <martin@ximian.com>
16791
16792         * object.c (mono_class_vtable): Don't create any JIT wrappers for
16793         generic methods.
16794
16795 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
16796
16797         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
16798         names. Fixes #69787.
16799
16800 2004-11-24  Martin Baulig  <martin@ximian.com>
16801
16802         * class.c (mono_class_create_generic_2): If we don't have a
16803         `ginst->parent', inflate `gklass->parent' to get our parent.
16804
16805 2004-11-24  Martin Baulig  <martin@ximian.com>
16806
16807         * reflection.c (compare_genericparam): Correctly sort the
16808         GenericParam table; fixes #69779.
16809
16810 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
16811
16812         * reflection.c: When writing a PE file, don't create a huge
16813         buffer in memory. Just write the arrays we have to the file.
16814         This reduces memory usage.
16815
16816         * metadata-internals.h: MonoDynamicStream pefile is no longer used
16817         globally.
16818
16819 2004-11-17  Martin Baulig  <martin@ximian.com>
16820
16821         * class.c (mono_class_init): Don't setup `class->parent' for
16822         dynamic instances; moved this to mono_class_generic_2().
16823         (mono_class_create_generic): Also set `klass->inited' for dynamic
16824         generic instances.
16825         (mono_class_create_generic_2): Don't do anything for dynamic
16826         generic instances.  Set `klass->parent' here and also call
16827         mono_class_setup_parent() here. 
16828
16829         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
16830         `MonoType *parent' argument; set `ginst->parent' before calling
16831         mono_class_create_generic_2(), so we set the correct parent.
16832
16833 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
16834
16835         * reflection.c: allow getting attributes from ModuleBuilder
16836         (used by ikvm).
16837
16838 2004-11-17  Martin Baulig  <martin@ximian.com>
16839
16840         * class.c (mono_class_create_from_typedef): If a type parameter is
16841         inherited from an outer class, set its owner to that class.
16842
16843 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
16844
16845         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
16846           for (int*) written size. This fixes bug #69592.
16847
16848 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
16849
16850         * icall.c: Added IsAuthenticodePresnet internal call.
16851         * image.c|h: New function that check a MonoImage for an Authenticode
16852         signature in the certificate PE data directory.
16853         * security.c|h: New internal call to ask the runtime if an 
16854         Authenticode signature seems referenced in the PE header.
16855
16856 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
16857
16858         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
16859
16860         * reflection.c (mono_image_create_pefile): Free the assembly streams
16861         after writing out the assembly file.
16862
16863         * object.c (mono_runtime_run_main): Fix small memory leak.
16864
16865         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
16866         property access modifiers. Fixes #69389.
16867
16868 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
16869
16870         * domain.c, object.c, object-internals.h, domain-internals.h,
16871         object.h, marshal.c: keep dynamic code info per domain.
16872
16873 2004-11-15  Martin Baulig  <martin@ximian.com>
16874
16875         * class.c (mono_type_get_name_recurse): Put type arguments in
16876         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
16877         see bug #68387.
16878
16879 2004-11-15  Martin Baulig  <martin@ximian.com>
16880
16881         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
16882         (mono_class_setup_vtable): When computing `the_cname' for a
16883         generic instance, don't include the namespace since we'd otherwise
16884         add it twice.
16885
16886 2004-11-15  Martin Baulig  <martin@ximian.com>
16887
16888         * class.c (mono_class_create_generic): Changed return type to void.
16889         (mono_class_create_generic_2): New public function; setup
16890         `class->method', `class->field' and `class->interfaces' here
16891         instead of in mono_class_init().
16892
16893         * class.h (mono_class_create_generic): Moved to class-internals.h.
16894
16895 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
16896
16897         * reflection.c (mono_image_create_pefile): take a file HANDLE.
16898         rather than writing to memory, write to this file. Right now,
16899         we are just writting into a buffer, and copying that. However
16900         we can avoid the buffer later.
16901
16902         (mono_dynamic_stream_reset): new function
16903
16904         * icall.c, object-internals.h: update for the above.
16905
16906 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
16907
16908         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
16909         have been using gc'd memory. First it is slower, unlikely
16910         the comment in the source code said, secondly, it increases
16911         our footprint to do it in the gc.
16912
16913         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
16914         the method so that it does not have to copy to managed code.
16915
16916 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
16917
16918         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
16919
16920 2004-11-12  Martin Baulig  <martin@localhost>
16921
16922         * reflection.c (mono_image_create_token): Allow generic method
16923         definitions here, since they may appear in an `.override'; see
16924         gen-98/gen-99 for an example.
16925
16926 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
16927
16928         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
16929         #69365.
16930
16931         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
16932         descriptive.
16933
16934 2004-11-11  Martin Baulig  <martin@ximian.com>
16935
16936         * class.c (mono_class_setup_vtable): In an explicit interface
16937         implementation, the method name now includes the arity.
16938
16939 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
16940
16941         * object.c (mono_array_full_copy): Fix warning.
16942
16943 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
16944
16945         * appdomain.c: Removed look_for_method_by_name(). Use the new method
16946         mono_class_get_method_from_name() instead.
16947         
16948         * class-internals.h: Added two new types of wrappers. 
16949         Added MonoRemotingTarget enum. Added new trampoline function type, which
16950         takes an additional MonoRemotingTarget value as parameter, so it is
16951         possible to request a trampoline for a specific target.
16952         
16953         * class.c: Added new mono_class_get_method_from_name() method.
16954         
16955         * class.h: In MonoRemoteClass, we can have now to vtables, one for
16956         general remoting sinks and one specific for cross domain calls.
16957         
16958         * debug-helpers.c: Added new wrapper names.
16959         
16960         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
16961         of a remote class.
16962         
16963         * image.c: Porperly delete value objects form the remoting invoke hashtable.
16964         
16965         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
16966         with several other methods (mono_marshal_get_xappdomain_dispatch,
16967         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
16968         and others) can generate a fast remoting wrapper for cross domain calls.
16969         More information can be found in docs/remoting.
16970         Other changes: Removed mono_find_method_by_name, and used
16971         mono_class_get_method_from_name instead.
16972         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
16973         is stored in the remoting invoke hashtable.
16974         
16975         * marshal.h: published the new method for getting the xdomain wrapper,
16976         and also added a method for getting the adequate wrapper for a given
16977         method and target.
16978         
16979         * object-internals.h, object.c: Added a couple of methods for capying and
16980         cloning arrays.
16981         Modified mono_install_remoting_trampoline, which takes the new remoting
16982         trampoline that has a remoting target as parameter.
16983         mono_class_proxy_vtable now also takes a remoting target as parameter, and
16984         will return the most suitable vtable for the target.
16985         Added mono_remote_class_vtable, which returns the vtable of a remote class
16986         (which can be the normal remoting vtable or the xdomain vtable).
16987         
16988         * threads.c: the xdomain invoke and dispatch wrappers must also be
16989         protected against interruptions.
16990
16991 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16992
16993         * icall.c: use memmove in BlockCopyInternal when the source and
16994         destination arrays are the same.
16995
16996 2004-11-09  Martin Baulig  <martin@ximian.com>
16997
16998         * class-internals.h (MonoGenericContainer): Removed `method' and
16999         `signature', replaced them with `is_method' and `is_signature'
17000         flags.  Added `context'.
17001
17002         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
17003         instead of a `MonoGenericContainer *'.
17004
17005         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
17006         for dynamic type parameters.
17007         (mono_metadata_load_generic_params): Setup `container->context'.
17008
17009         * reflection.c (mono_reflection_setup_generic_class): Setup
17010         `tb->generic_container->context'.
17011         (do_mono_reflection_bind_generic_parameters): Use
17012         mono_class_inflate_generic_type() to correctly inflate types,
17013         rather than using our own hack just for MONO_TYPE_VAR.
17014
17015 2004-11-09  Martin Baulig  <martin@ximian.com>
17016
17017         * class.c (mono_class_inflate_generic_method): Small fix; don't
17018         crash here.
17019
17020         * icall.c
17021         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
17022         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
17023         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
17024         (ves_icall_Type_BindGenericParameters): Likewise.
17025         (ves_icall_Type_get_IsGenericInstance): Likewise.
17026         (ves_icall_Type_GetGenericParameterPosition): Likewise.
17027         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
17028         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17029         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17030
17031 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
17032
17033         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
17034         assembly versions and public key tokens. Fixes #69113.
17035
17036 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
17037
17038         * metadata.c: fix bug introduced with the type cache changes
17039         on 2004-11-06.
17040
17041 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
17042
17043         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
17044         the MonoClass pointer instead of the token in exception clauses.
17045         * reflection.c: updates for the above and make the code not depend
17046         on the structure of MonoExceptionClause.
17047
17048 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
17049
17050         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17051         Add support for dynamic assemblies. Fixes #69114.
17052
17053         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
17054
17055 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
17056
17057         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
17058         since most only those methods use it. the code member of
17059         MonoMethodPInvoke was dead, so that can be removed too. Also,
17060         remove inline_count (again, not used), and move slot so that it
17061         can share bits with some other flags. This saves 8 bytes in the
17062         structure and gives us about 50 kb back for mcs helloworld.cs
17063
17064         * *.[ch]: Do naming changes for the above.
17065
17066         * loader.c (mono_method_get_header): Lazily init the header
17067         on first access.
17068         (mono_get_method_from_token): don't init the header here
17069         (mono_free_method): the header may never be allocated
17070
17071         Overall, this saves 150 kb of unmanaged allocations
17072         for mcs helloworld.cs. That accounts for 10% of the unmanaged
17073         memory at runtime.
17074         
17075         * loader.c, loader.h (mono_method_get_header): new accessor.
17076
17077         * *.[ch]: use the above method. Prepares us to lazily load
17078         the header.
17079
17080         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
17081         three warnings, which are actual bugs (see 69206).
17082
17083         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
17084         unused. Saves a cool 4 bytes / method.
17085
17086 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
17087
17088         * metadata.c (builtin_types): Add types for System.Object here.
17089         (mono_metadata_parse_type_full): Cache MonoType*'s that are
17090         for a class or valuetype from klass->this_arg or klass->byval_arg.
17091
17092         On mcs for a hello world, this gets us down from 21836 MonoType's
17093         to 14560.
17094
17095         (mono_metadata_free_type): Account for the above change.
17096
17097 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
17098
17099         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
17100         exception instead of asserting if name is null.
17101         (ves_icall_System_AppDomain_GetData): Ditto.
17102
17103 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
17104
17105         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
17106         EnumBuilder.
17107
17108         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
17109         Return NULL when the domain does not have entry_assembly set.
17110
17111         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
17112         Add a 'resource_modules' argument.
17113         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
17114
17115         * reflection.c (mono_reflection_create_runtime_class): Move setting
17116         of wastypebuilder here, so mono_get_type_object () returns a MonoType
17117         for enums too.
17118
17119         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
17120         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
17121         Throw an ArgumentNullException if 'ptr' is null.
17122
17123         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
17124         assemblies here. Fixes #69020.
17125
17126 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
17127
17128         * reflection.c (build_compressed_metadata): Fix the previous patch for
17129         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
17130         the stack.
17131
17132 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
17133
17134         * assembly.c (mono_assembly_names_equal): Allow a match if one of
17135         the cultures is false. Fixes #69090.
17136
17137         * reflection.c (build_compressed_metadata): Fix invalid memory read 
17138         detected by valgrind.
17139         
17140         * reflection.c (mono_reflection_get_type): Avoid triggering a 
17141         TypeResolve multiple times for the same type. Fixes #65577.
17142
17143 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
17144
17145         * marshal.c: Avoid using ldftn to call managed functions. It is
17146         much slower than just a call.
17147
17148         * reflection.c (mono_module_get_object): free the basename we
17149         allocate here from glib.
17150         
17151         * reflection.c (ensure_runtime_vtable): make sure to free
17152         overrides.  Also, we were allocating an array of MonoMethod not an
17153         array of MonoMethod*.
17154
17155         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
17156
17157         * image.c (mono_image_close): free image->guid here.
17158
17159 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
17160
17161         * reflection.c: Fix some spec conformance issues with the PE file
17162         structures so mcs compiled apps run on the Net 2.0 beta.
17163
17164 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
17165
17166         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
17167         Implement this. Fixes #67264.
17168
17169         * debug-helpers.h debug-helpers.c marshal.c: Move 
17170         mono_find_method_by_name to debug-helpers.c.
17171
17172 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
17173
17174         * object.c (mono_release_type_locks): type_initialization_hash is
17175         a GHashTable.
17176
17177         * reflection.c object.c object-internals.h: Fix warnings.
17178
17179         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
17180         without accessors. Fixes #61561.
17181
17182         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
17183         application base from the root domain if not set. Fixes #65641.
17184         (mono_runtime_init): Fix warning.
17185
17186 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17187
17188         * appdomain.c: call mono_thread_pool_init.
17189         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
17190         of worker threads based on the number of CPUs and the environment
17191         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
17192         for non-windows (windows) systems.
17193
17194 2004-10-27  Chris Toshok  <toshok@ximian.com>
17195
17196         * mono-debug-debugger.c (write_class): don't call mono_class_init
17197         here, as even with the check for (!klass->init_pending), we get
17198         into a situation where we're hitting cycles in class
17199         initialization.  Fixes #68816.
17200
17201 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
17202
17203         * image.c: Avoid overwriting values in the loaded_images_hash when an
17204         assembly is loaded multiple times. Fixes #61152.
17205
17206         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
17207         so multiple satellite assemblies for the same name can be loaded.
17208         Fixes #68259.
17209
17210         * mono_domain_assembly_preload: Actually return the loaded assembly, 
17211         not NULL.
17212
17213         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
17214         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
17215
17216         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
17217         pending finalizers are not invoked after the appdomain has been 
17218         unloaded. Fixes #67862.
17219
17220 2004-10-22  Martin Baulig  <martin@ximian.com>
17221
17222         * mono-debug-debugger.c
17223         (mono_debugger_runtime_invoke): Don't box valuetypes.
17224
17225 2004-10-22  Chris Toshok  <toshok@ximian.com>
17226
17227         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
17228         don't hide private methods.
17229
17230 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
17231
17232         * icall.c: Allows the runtime to "share" (when known) the public key
17233         token of an assembly. This avoid the need to recalculate the token 
17234         (from the public key) in managed code.
17235
17236 2004-10-21  Chris Toshok  <toshok@ximian.com>
17237
17238         * debug-helpers.c (append_class_name): argh, revert last patch.
17239         
17240 2004-10-21  Chris Toshok  <toshok@ximian.com>
17241
17242         * debug-helpers.c (append_class_name): use '+' as the delimiter,
17243         not '/', so that it matches what the debugger uses to look up
17244         methods.
17245
17246 2004-10-21  Martin Baulig  <martin@ximian.com>
17247
17248         * mono-debug-debugger.c (mono_debugger_throw_exception): New
17249         public method; this is called each time an exception is thrown and
17250         allows the debugger to use exception catch points.
17251
17252 2004-10-21  Martin Baulig  <martin@ximian.com>
17253
17254         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
17255         the stack pointer and the exception object in some struct and pass
17256         that to the debugger.
17257
17258 2004-10-21  Chris Toshok  <toshok@ximian.com>
17259
17260         * mono-debug-debugger.c (do_write_class): add instance/static
17261         event support.  We don't expose "raise" or "other" yet.
17262         (event_is_static): new method.
17263
17264 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
17265
17266         * mono-debug-debugger.c
17267         (mono_debugger_handle_exception): Remove
17268         bogus return value for fussy compilers.
17269
17270 2004-10-20  Martin Baulig  <martin@ximian.com>
17271
17272         * mono-debug-debugger.c
17273         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
17274         (mono_debugger_handled_exception): Likewise.
17275
17276 2004-10-20  Martin Baulig  <martin@ximian.com>
17277
17278         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17279         MONO_DEBUGGER_EVENT_EXCEPTION.
17280
17281         * mono-debug-debugger.c (mono_debugger_handle_exception): New
17282         public function to send the debugger a notification for an
17283         exception and inform it about a catch/finally clause.
17284
17285 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
17286
17287         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
17288         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
17289         fix 2.95 build. 
17290
17291         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
17292
17293 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
17294
17295         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
17296         marshalled as [In,Out]. Fixes #58325.
17297
17298 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
17299
17300         * reflection.c (mono_method_body_get_object): Implement some fields.
17301
17302 2004-10-12  Martin Baulig  <martin@ximian.com>
17303
17304         * reflection.c (mono_reflection_bind_generic_parameters): Small
17305         fix, correctly retrieve our parent from a generic instance.
17306
17307 2004-10-12  Martin Baulig  <martin@ximian.com>
17308
17309         * metadata.c (mono_metadata_generic_param_equal): We always have
17310         an owner.
17311
17312         * class.c
17313         (mono_class_from_generic_parameter): We need to have an owner.
17314         (my_mono_class_from_generic_parameter): Likewise.
17315
17316         * reflection.c (mono_reflection_setup_generic_class): Renamed to
17317         mono_reflection_create_generic_class() and added a new
17318         mono_reflection_setup_generic_class().  
17319         (mono_reflection_initialize_generic_param): If we're a nested
17320         generic type and inherited from the containing class, set our
17321         owner to the outer class.
17322
17323 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
17324
17325         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
17326
17327         * reflection.c (mono_method_body_get_object): New function to create
17328         a MethodBody object.
17329
17330         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
17331
17332 2004-10-11  Martin Baulig  <martin@ximian.com>
17333
17334         * metadata.c (_mono_metadata_type_equal): Renamed to
17335         do_mono_metadata_type_equal() and made static.
17336
17337 2004-10-11  Martin Baulig  <martin@ximian.com>
17338
17339         * appdomain.c: Bump corlib version number to 28.
17340
17341 2004-10-10  Martin Baulig  <martin@ximian.com>
17342
17343         * class-internals.h
17344         (MonoGenericInst): Added `MonoGenericContainer *container'.
17345         (MonoGenericMethod): Likewise.
17346         (MonoGenericContext): Likewise.
17347         (MonoGenericParam): Added `MonoGenericContainer *owner'.
17348
17349         * metadata.c
17350         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
17351         (do_mono_metadata_parse_generic_inst): Likewise.
17352         (mono_metadata_parse_type_full): New public method.  This is the actual
17353         mono_metadata_parse_type() implementation - with an additional
17354         `MonoGenericContainer *' argument.
17355         (mono_metadata_parse_array_full): Likewise.
17356         (mono_metadata_parse_signature_full): Likewise.
17357         (mono_metadata_parse_method_signature_full): Likewise.
17358         (mono_metadata_parse_mh_full): Likewise.
17359         (mono_type_create_from_typespec): Likewise.
17360         (mono_metadata_interfaces_from_typedef_full): New public method;
17361         this is similar to the other _full() methods, but we take a
17362         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
17363         (mono_metadata_parse_generic_param): Take an additional
17364         `MonoGenericContainer *' argument and lookup the MonoGenericParam
17365         from that container.
17366         (mono_metadata_generic_param_equal): New static method to compare
17367         two type parameters.
17368         (_mono_metadata_type_equal): New static method; takes an
17369         additional `gboolean signature_only' argument - if true, we don't
17370         compare the owners of generic parameters.
17371         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
17372         with a TRUE argument - do a signature-only comparision.
17373
17374         * loader.c: Use the new _full() methods and pass the
17375         MonoGenericContainer to them.
17376
17377         * object-internals.h (MonoReflectionTypeBuilder): Added
17378         `MonoGenericContainer *generic_container' field.
17379         (MonoReflectionMethodBuilder): Likewise.
17380
17381 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
17382
17383         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
17384         case initial images of dynamic assemblies.
17385
17386         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
17387
17388         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
17389
17390         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
17391         length of event->other array.
17392         (typebuilder_setup_events): Ditto.
17393
17394         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
17395         'assembly_by_name' and add an 'assemblies' list.
17396
17397         * assembly.h assembly.c: Add a new search hook for determining whenever
17398         an assembly is already loaded. Use this instead of searching in the
17399         loaded_assemblies list.
17400
17401         * domain.c appdomain.c: Implement the new search hook so loaded 
17402         assemblies are now scoped by appdomain. Fixes #67727.
17403
17404 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
17405
17406         * threads.c (mono_thread_attach): Initialize synch_lock field so
17407         mono_thread_detach works again.
17408
17409         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
17410         'lib' too. Fixes #63130.
17411
17412 2004-10-06  Jackson Harper  <jackson@ximian.com>
17413
17414         * culture-info-tables.h: regenerated.
17415
17416 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
17417
17418         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
17419         implemented by other interfaces in the result. Fixes #65764.
17420         
17421         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17422         Handle unloadable modules without crashing.
17423
17424         * image.c (load_modules): Revert the previous patch since modules must
17425         have a fixed index inside the array.
17426         
17427         * image.c (load_modules): Don't include native modules in the modules
17428         array.
17429
17430 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
17431
17432         * reflection.h: Add param_defaults field.
17433
17434         * reflection.c: Add support for parameter defaults in dynamic methods.
17435         Fixes #64595.
17436
17437         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
17438         an empty string when a type has no namespace. Fixes #64230.
17439
17440 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
17441
17442         * tabledefs.h: Added "internal" security actions to support non-CAS
17443         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
17444         Note: they do not seems to be used anymore in 2.0 (new metadata format)
17445
17446 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
17447
17448         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
17449         constructor of abstract class. Fixes #61689.
17450
17451 2004-10-04  Martin Baulig  <martin@ximian.com>
17452
17453         * class-internals.h (MonoGenericContainer): New type.
17454         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
17455         `MonoGenericContainer *generic_container'.
17456         (MonoClass): Replaced `gen_params' and `num_gen_params' with
17457         `MonoGenericContainer *generic_container'.
17458
17459         * metadata.c (mono_metadata_load_generic_params): Return a
17460         `MonoGenericContainer *' instead of a `MonoGenericParam *';
17461         removed the `num' argument.
17462
17463 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
17464
17465         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
17466         for dynamic images.
17467
17468         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
17469         machine fields.
17470
17471         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
17472
17473         * reflection.c: Save pe_kind and machine values into the generated
17474         image file.
17475
17476         * appdomain.c: Bump corlib version number.
17477
17478         * object-internals.h: Reorganize layout of LocalBuilder.
17479
17480         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
17481         New helper function.
17482
17483         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
17484         created MonoType for dynamic types. Fixes #66180.
17485
17486 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
17487
17488         * threadpool.c: the ares hashtable needs a critical section around it.
17489         this prevents some nasty segfaults
17490
17491 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
17492
17493         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
17494         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
17495         bug 67324).
17496         
17497 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
17498
17499         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
17500         
17501 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
17502
17503         * image.c: Always canonicalize image file names, to avoid loading
17504         the same assembly twice when referenced using a relative path.
17505
17506 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
17507
17508         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
17509
17510         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
17511
17512         * marshal.c: Fix warnings.
17513
17514 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
17515
17516         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
17517         attempting to marshal the delegate_trampoline as the method_addr.
17518         This patch has a static hashtable of marshalled delegates so that 
17519         we can map delegate_trampoline addresses back to delegates.  This
17520         allows a delegate passed to managed code to be passed back into native
17521         code.  Fixes #67039
17522
17523 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17524
17525         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
17526
17527         * reflection.c (method_encode_code): Align method headers properly.
17528         Fixes #66025.
17529
17530 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17531
17532         * marshal.c: In the runtime invoke wrapper, reset the abort
17533         exception if it is cached. This avoids the automatic rethrowal of 
17534         the exception after the catch of the wrapper. Also check for pending
17535         interruptions before calling the managed method. This is done using
17536         the new method emit_thread_force_interrupt_checkpoint, since the
17537         normal checkpoint method is ignored when running the invoke wrapper.
17538         * object.c: If the abort exception is rethrown, set the abort_exc
17539         field of the thread, so it will be rethrown aftere every catch.
17540         * threadpool.c: Only run an interruption checkpoint if what has been
17541         requested is a stop of the thread (aborts will be ignored).
17542         * threads.c: By default, a thread will now never be interrumped while
17543         running the runtime invoke wrapper (this ensures that runtime_invoke
17544         will always return to the caller if an exception pointer is provided).
17545         There is a new special method mono_thread_force_interruption_checkpoint()
17546         to force an interruption checkpoint even if running a protected
17547         wrapper, which is used by the same runtime invoke wrapper to do a check
17548         at a safe point.
17549
17550 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
17551
17552         * object.c, object-internals.h: Implemented mono_release_type_locks,
17553         which releases the cctor locks held by a thread.
17554         * threads.c, threads.h: In thread_cleanup, release cctor locks held
17555         by a thread. Added mono_thread_exit() method to be used to safely stop
17556         a thread.
17557
17558 2004-09-28  Raja R Harinath  <rharinath@novell.com>
17559
17560         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
17561         Move null check before dereference.  Avoid indexing beyond the end
17562         of the 'modules' array.
17563
17564 2004-09-28  Raja R Harinath  <rharinath@novell.com>
17565
17566         * metadata-internals.h (MonoImage): Add module_count field.
17567         * image.c (load_modules): Set image->module_count.
17568         (mono_image_load_file_for_image): Use image->module_count.
17569         * reflection.c (mono_image_load_module): Append to image->modules array 
17570         of dynamic assembly.
17571         (mono_module_get_object): Fix loop to actually increment index.
17572         Use image->module_count.
17573         * assembly.c (mono_assembly_load_references): Use image->module_count.
17574         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
17575         Likewise.
17576
17577 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
17578
17579         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
17580         Avoid assert on generic types.
17581
17582 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
17583
17584         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
17585
17586         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
17587
17588         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
17589         function to convert a MarshalSpec structure to its managed counterpart.
17590
17591         * reflection.c: Fix warnings.
17592         
17593         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
17594         field.
17595
17596         * icall.c (mono_create_icall_signature): Fix build.
17597
17598 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
17599
17600         * icall.c: Add MakePointType icall.
17601
17602         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
17603         warnings.
17604
17605 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17606
17607         * threadpool.c: reuse allocated slots in the queue.
17608
17609 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
17610
17611         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
17612
17613         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
17614
17615         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
17616         previous change.
17617
17618         * tabledefs.h: Add constants for pinvoke attributes BestFit and
17619         ThrowOnUnmappableChar.
17620
17621         * icall.c (ves_icall_Type_GetPacking): New icall.
17622
17623 2004-09-24  Martin Baulig  <martin@ximian.com>
17624
17625         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
17626
17627 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17628
17629         * appdomain.c:
17630         (mono_domain_set): allow setting a domain that is being unloaded.
17631         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
17632         being unloaded.
17633
17634 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17635
17636         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
17637         the GetCustomAttributes icall.
17638
17639 2004-09-23  Martin Baulig  <martin@ximian.com>
17640
17641         * object-internals.h (MonoReflectionGenericParam): Replaced
17642         'has_ctor_constraint', `has_reference_type' and `has_value_type'
17643         with `guint32 attrs'.
17644
17645 2004-09-23  Martin Baulig  <martin@ximian.com>
17646
17647         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
17648
17649 2004-09-23  Martin Baulig  <martin@ximian.com>
17650
17651         * object-internals.h (GenericParameterAttributes): New enum.
17652
17653 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
17654
17655         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
17656         
17657         * class.c (init_events): Fill out event->other field.
17658
17659         * class.c: Fix warnings.
17660
17661         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
17662
17663 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17664
17665         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
17666         walk which doesn't supply the IL offset.
17667
17668 2004-09-22  Martin Baulig  <martin@ximian.com>
17669
17670         * reflection.c (mono_reflection_setup_internal_class): If we're
17671         System.ValueType, System.Object or System.Enum, set
17672         `klass->instance_size' and create the vtable.
17673         (mono_reflection_create_internal_class): If we're an enum type,
17674         get the base class from our current corlib.
17675
17676 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
17677
17678         * reflection.h (MonoResolveTokenError): New type.
17679
17680         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
17681         icall.
17682
17683         * icall.c: Add an 'error' argument to the ResolveToken icalls.
17684
17685 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
17686
17687         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
17688         Support also calling constructors, but only for already allocated objects.
17689
17690 2004-09-17  Geoff Norton <gnorton@customerdna.com>
17691
17692         * reflection.c (type_get_qualified_name): If the klass is null
17693         return the typename to avoid a NullRefEx.
17694         (encode_cattr_value): Get the qualified name of the boxed type,
17695         not the underlying enumtype.  Fixes #62984.
17696
17697 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
17698
17699         * marshal.c: Fix problems with previous checkin.
17700
17701 2004-09-21    <vargaz@freemail.hu>
17702
17703         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
17704         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
17705
17706         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
17707
17708 2004-09-21  Geoff Norton <gnorton@customerdna.com>
17709
17710         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
17711         should only return a type for pointers, arrays, and passbyref types.
17712         Fixes bug #63841.
17713
17714 2004-09-21  Martin Baulig  <martin@ximian.com>
17715
17716         * domain.c (mono_debugger_check_runtime_version): New public
17717         function.
17718
17719         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
17720
17721 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
17722
17723         * reflection.c: Added missing sort to the declarative security 
17724         attributes table. MS implementation stops seeing the attributes if the
17725         token number regress in the table (as shown by ildasm and permview).
17726
17727 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
17728
17729         * object-internals.h (MonoReflectionModule): Add 'token' field.
17730         
17731         * reflection.c (mono_reflection_get_token): Add support for Module
17732         and Assembly.
17733         (mono_module_get_object): Set 'token' field.
17734         (mono_module_file_get_object): Set 'token' field.
17735
17736         * icall.c: Add new Assembly and Module icalls.
17737
17738         * appdomain.c: Bump corlib version.
17739
17740 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
17741
17742         * loader.h loader.c class.h class.c: Add helper functions for obtaining
17743         tokens of metadata objects.
17744
17745         * reflection.h reflection.c (mono_reflection_get_token): New function
17746         to obtain the token of a metadata object.
17747
17748         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
17749
17750 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
17751
17752         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
17753         
17754         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
17755
17756 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
17757
17758         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
17759         * object-internals.h: Added 3 MonoArray* members to MonoReflection
17760         AssemblyBuilder to access the permissions set in the class lib.
17761         * reflection.c: Added security attributes encoding step in 
17762         mono_image_build_metadata.
17763         * tabledefs.h: Added new security actions defined in 2.0:
17764         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
17765
17766 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17767
17768         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
17769         macro parameter.
17770
17771 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
17772  
17773         * locales.c: nullify the ICU_collator member of CompareInfo when it is
17774           finalized. There where random SIGSEVs at program termination, when
17775           an object being finalized was trying to do a string comparison and
17776           the current culture was already finalized.
17777  
17778 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17779
17780         * threads.c: call thread_cleanup before finishing the thread if we get
17781         there.
17782
17783 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
17784
17785         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
17786         assemblies from the parent. Fixes #65665.
17787
17788 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
17789
17790         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
17791         modifiers.
17792
17793 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
17794
17795         * reflection.h: add prototype for mono_get_dbnull_object
17796         * reflection.c: add prototypes for get_default_param_value_blobs 
17797         and mono_get_object_from_blob for fussier compilers
17798
17799 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
17800  
17801         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
17802         false deadlock checks in class initialization.
17803  
17804 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
17805
17806         * image.c (mono_image_addref): Fix comment.
17807
17808         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
17809         possible.
17810
17811 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
17812
17813         * reflection.c (mono_param_get_objects): Modified to return
17814         ParameterInfo.DefaultValue object.
17815
17816         (get_default_param_value_blobs):
17817         (mono_get_object_from_blob):
17818         (mono_get_dbnull_object): New helper routines. 
17819
17820         * object.c (mono_get_constant_value_from_blob): New helper routine
17821         carved out from get_default_field_value ()
17822
17823         * object-internals.h (mono_get_constant_value_from_blob): Added
17824         function declaration.
17825
17826 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
17827
17828         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
17829         referenced assemblies. Fixes #62135.
17830
17831         * exception.h exception.c (mono_get_exception_file_not_found2): New
17832         helper function.
17833
17834 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
17835
17836         * class.h class.c: Add mono_type_get_underlying_type ().
17837
17838 2004-09-09  Geoff Norton <gnorton@customerndna.com>
17839
17840         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
17841         Fix GetTypes() to support dynamically created assemblies.
17842
17843 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
17844
17845         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
17846         
17847         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
17848         previous patch.
17849
17850         * reflection.h reflection.c loader.c: Allow dynamic construction of
17851         pinvoke methods. Fixes #65571.
17852         
17853         * reflection.c (mono_reflection_get_type): Revert previous change since
17854         it causes regressions.
17855
17856 2004-09-08  Martin Baulig  <martin@ximian.com>
17857
17858         * class.c (class_compute_field_layout): Don't call
17859         mono_class_layout_fields() for open generic instances.
17860
17861 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
17862         * threads.c appdomain.c: fix typo in GC macro
17863
17864 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17865
17866         * threads.c: don't call mono_thread_detach() in start_wrapper(),
17867         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
17868
17869 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
17870
17871         * image.c (mono_image_close): Applied patch from 
17872         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
17873         assembly is loaded multiple times from data.
17874         
17875         * image.c (mono_image_open): Fix warning.
17876
17877 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17878
17879         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
17880         once. Fixes #58334.
17881         
17882         * reflection.c (mono_reflection_create_runtime_class): Initialize
17883         klass->nested_classes. Fixes #61224.
17884
17885 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
17886
17887         * threads.c: sched_yield() on exit, to allow threads to quit.
17888
17889 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17890
17891         * object.c (mono_unhandled_exception): Remove leftover debug code.
17892
17893 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
17894
17895         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
17896
17897 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
17898
17899         * marshal.c (emit_marshal_array): Really null terminate string arrays.
17900         
17901         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
17902
17903 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17904
17905         * marshal.c (emit_marshal_array): Null terminate string arrays.
17906         
17907         * marshal.c (raise_auto_layout_exception): Fix warning.
17908
17909         * reflection.c (mono_param_get_objects): Initialize the default value
17910         with DBNull.Value, not null. Fixes #62123.
17911
17912 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
17913
17914         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
17915         throw an exception with a cute explanation.
17916
17917 2004-09-06  Dick Porter  <dick@ximian.com>
17918
17919         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
17920         Close the new process's thread handle, as we don't use it.  The
17921         handle stays around forever otherwise.
17922
17923 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17924
17925         * object.c (arith_overflow): Fix warning.
17926
17927         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
17928         calling conventions in method refs. Fixes #65352.
17929
17930         * reflection.c: Fix warnings.
17931
17932 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17933
17934         * icall.c: Add a new icall for Array.Clear
17935
17936 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
17937
17938         * object.c: When allocating an array, we have to throw
17939         an overflow exception if any of the lengths are < 0.
17940
17941 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
17942
17943         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
17944         properly. Also move implementation of string array marshalling to 
17945         managed code. Fixes #42316.
17946
17947 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17948
17949         * assembly.c: provide more information when loading an assembly fails.
17950
17951 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17952
17953         * filewatcher.c: don't expect the development fam package to be
17954         installed.
17955
17956 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
17957
17958         * marshal.c: Make a copy of the signature cookie since it will be
17959         freed by the caller.
17960         
17961         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
17962
17963         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
17964
17965         * metadata.c (mono_metadata_free_marshal_spec): New function to free
17966         marshal specs.
17967
17968         * marshal.c: More refactoring.
17969         
17970         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
17971         smaller functions.
17972
17973 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
17974
17975         * object.c: In mono_message_invoke, fill the output parameter array after
17976           calling the managed method (it was done before the call). This fixes
17977           bug #59299.
17978
17979 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17980
17981         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
17982         as well.
17983
17984 2004-09-02  Martin Baulig  <martin@ximian.com>
17985
17986         * class.c (mono_class_instance_size): Don't allow generic type
17987         definitions or open generic instances.
17988         (mono_class_array_element_size): If we're a value type, call
17989         mono_class_instance_size() on the original class.
17990
17991         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
17992         handle generic instances.
17993
17994         * mono-debug-debugger.c (write_type): Handle generic instances
17995         like classes.
17996
17997 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
17998
17999         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
18000         the allocation request fails. Fixes #65089.
18001
18002         * object.c (mono_runtime_free_method): Do not call mono_free_method.
18003         
18004         * object.c (mono_runtime_free_method): New function to free a dynamic
18005         method.
18006
18007         * marshal.c (mono_delegate_free_ftnptr): New function to free the
18008         delegate trampoline.
18009
18010         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
18011         with hasthis as dynamic,
18012
18013         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
18014
18015         * domain.c (mono_jit_info_table_remove): New function to remove an
18016         entry from the jit info table.
18017
18018         * class-internals.h (MonoMethod): Add 'dynamic' field.
18019
18020         * loader.c: Fix warnings.
18021
18022 2004-09-01  Martin Baulig  <martin@ximian.com>
18023
18024         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
18025         instead of mono_debugger_lock() because the latter one is a no-op
18026         unless running in the debugger.
18027
18028 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
18029
18030         * class.c (class_compute_field_layout): Classes with auto-layout or
18031         reference fields are not blittable.
18032         
18033 2004-09-01  Dick Porter  <dick@ximian.com>
18034
18035         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
18036         mono_image_get_filename() to get the assembly location.
18037
18038         * icall.c:
18039         * metadata.h: Fix compile warnings
18040
18041 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
18042
18043         * class.c (class_compute_field_layout): System.Object is blittable.
18044
18045         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
18046         as in/out. Fixes #59909.
18047
18048 2004-09-01  Martin Baulig  <martin@ximian.com>
18049
18050         * metadata.h (MONO_TYPE_ISREFERENCE): Call
18051         mono_metadata_generic_inst_is_valuetype() if we're a generic
18052         instance to check whether our underlying type is a reference type.
18053
18054 2004-09-01  Martin Baulig  <martin@ximian.com>
18055
18056         * metadata.c (mono_type_size): If we're a generic instance, call
18057         mono_class_value_size() for value types.
18058
18059 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
18060
18061         * marshal.c: Implement more custom marshalling functionality. Fixes
18062         #64915.
18063
18064 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18065
18066         * mono-debug.c, debug-mono-symfile.c: add some locking love.
18067
18068 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
18069
18070         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
18071
18072         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
18073
18074         * icall.c: Fix some warnings.
18075
18076         * threads.c (abort_appdomain_thread): Fix unref errors.
18077         (mono_thread_current): Fix THREAD_DEBUG define.
18078
18079 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
18080
18081         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
18082
18083         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
18084
18085 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
18086
18087         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
18088         string arrays.
18089
18090 2004-08-28  Martin Baulig  <martin@ximian.com>
18091
18092         * metadata.c
18093         (mono_metadata_generic_inst_is_valuetype): New public function.
18094
18095         * metadata.h (MONO_TYPE_ISSTRUCT): Call
18096         mono_metadata_generic_inst_is_valuetype() if we're a generic
18097         instance to check whether our underlying type is a valuetype.
18098
18099 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
18100
18101         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
18102         #63768.
18103
18104 2004-08-25  Martin Baulig  <martin@ximian.com>
18105
18106         * loader.c (mono_get_method_from_token): Abstract methods can also
18107         be generic and thus have type parameters.
18108
18109         * metadata-internals.h
18110         (MonoDynamicImage): Added `GPtrArray *gen_params'.
18111
18112         * reflection.c (mono_image_get_generic_param_info): Don't create a
18113         metadata row, just add an entry to the `gen_params' array.
18114         (build_compressed_metadata): Sort the `gen_params' array and then
18115         actually create the metadata.
18116
18117 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18118
18119         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
18120
18121 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
18122
18123         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
18124
18125 2004-08-24  Martin Baulig  <martin@ximian.com>
18126
18127         * class.cs (mono_class_is_subclass_of): Like an interface, a
18128         generic instance also derives from System.Object.
18129
18130 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
18131
18132         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
18133         custom modifiers to be in any order. Fixes #61990.
18134
18135 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
18136
18137         * object.c: Register mono_object_new_fast icall.
18138         
18139         * object.c (mono_class_get_allocation_ftn): Return to calling
18140         mono_object_new_fast, since it seems faster to compute the object 
18141         size in unmanaged code than passing it as a parameter.
18142
18143         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
18144
18145         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
18146         this function with Boehm as the oom handler, so we don't have to check
18147         the result of GC_malloc.
18148
18149         * object.c: Remove checks for oom.
18150
18151         * object.h object.c (mono_class_get_allocation_ftn): New function to
18152         return the icall which can be used to allocate an instance of a given
18153         class. 
18154
18155         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
18156
18157         * class-internals.h: Add 'enabled' field.
18158
18159 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
18160
18161         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
18162
18163 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
18164         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
18165         value 0x0010.
18166
18167 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
18168
18169         * appdomain.c: use the Tls function for appdomain too,
18170         at Zoltan's request. Actually return in mono_context_get
18171
18172         * appdomain.c, profiler.c, threads.c: use __thread
18173
18174 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
18175
18176         * appdomain.c threads.c: Call GC_CreateThread on windows.
18177
18178         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
18179         multiple libraries since this don't work on windows.
18180
18181 2004-08-18  Martin Baulig  <martin@ximian.com>
18182
18183         * class-internals.h
18184         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
18185         MonoMethodHeader.
18186
18187         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
18188         MonoMethodNormal since we also need it for abstract and interface
18189         methods.
18190
18191         * reflection.c
18192         (build_compressed_metadata): Sort the GenericParam table.
18193         (mono_image_create_token): Added `gboolean create_methodspec'
18194         argument; this is false when generating a MethodImpl token.
18195         (reflection_methodbuilder_to_mono_method): Abstract and interface
18196         methods may also have generic parameters.
18197
18198 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
18199
18200         * appdomain.c: thread local alloc
18201
18202 2004-08-17  Martin Baulig  <martin@ximian.com>
18203
18204         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
18205
18206         * icall.c
18207         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
18208         argument.
18209
18210         * class.c (mono_type_get_full_name): New public function.
18211         (mono_type_get_name): Don't include the type arguments.
18212
18213 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
18214
18215         * Makefile.am: Build static versions of libmetadata and libmonoruntime
18216         for inclusion into the mono executable.
18217
18218 2004-08-16  Martin Baulig  <martin@ximian.com>
18219
18220         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
18221         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
18222
18223 2004-08-14  Martin Baulig  <martin@ximian.com>
18224
18225         * class.c (dup_type): Also copy the `byref' field.
18226
18227 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
18228
18229         * reflection.c (create_dynamic_mono_image): Revert the last change 
18230         since it breaks bootstrap.
18231
18232 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
18233
18234         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
18235
18236         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
18237         not free them with g_free.
18238
18239 2004-08-11  Martin Baulig  <martin@ximian.com>
18240
18241         * reflection.c (mono_reflection_setup_internal_class): Also call
18242         mono_class_setup_mono_type() if we already have a `tb->type.type'.
18243
18244 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
18245
18246         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
18247         called during default (first) AppDomain creation. Keep track of
18248         Evidence when loading assemblies.
18249
18250 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18251
18252         * opcodes.c, opcodes.h: reduce runtime relocations.
18253
18254 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
18255
18256         * culture-info.h, locales.c: fixes and chages to sue the new
18257         optimized format of the locale data.
18258         * culture-info-tables.h: regenerated.
18259
18260 2004-08-06  Geoff Norton <gnorton@customerdna.com>
18261         
18262         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
18263
18264 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
18265
18266         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
18267         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
18268         * domain-internals.h: icall declaration.
18269         * icall.c: icall registration.
18270         * object-internals.h: New fields in MonoAssembly for CAS.
18271
18272 2004-08-05  Duncan Mak  <duncan@ximian.com>
18273
18274         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
18275         CEE_LDELEM_ANY.
18276
18277 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18278
18279         * reflection.c: fix to deal with object[] arrays in custom ctors
18280         (bug #62550).
18281
18282 2004-08-05  Martin Baulig  <martin@ximian.com>
18283
18284         * class.c (mono_class_array_element_size): Added support for
18285         generic instances and correctly handle "recursive" types.
18286
18287 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
18288
18289         * assembly.c: Fix warnings.
18290
18291 2004-08-04  Martin Baulig  <martin@ximian.com>
18292
18293         * class.c
18294         (mono_type_get_name_recurse): Added `gboolean include_arity'
18295         argument specifying whether or not we should include the generic
18296         arity in the type name.
18297         (_mono_type_get_name): New static function.
18298         (mono_class_setup_vtable): If we're a generic instance, don't
18299         include the generic arity in the names of explicit method
18300         implementations.        
18301
18302 2004-08-03  Martin Baulig  <martin@ximian.com>
18303
18304         * class.c (mono_type_get_name_recurse): Enclose the generic type
18305         arguments in `<', '>'.
18306
18307 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18308
18309         * gc.c: make GC warning messages use the trace API, they are just
18310         noise to most of the users.
18311
18312 2004-08-03  Martin Baulig  <martin@ximian.com>
18313
18314         * debug-mono-symfile.c (read_string): Correctly read the string.
18315
18316 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
18317
18318         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
18319         
18320         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
18321         icalls.
18322         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
18323
18324 2004-07-30  Martin Baulig  <martin@ximian.com>
18325
18326         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
18327         Reflect latest symbol writer changes.   
18328
18329 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
18330
18331         * object.c: always create an object if null is passed
18332         to Invoke() where a valuetype is expected.
18333
18334 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
18335
18336         * marshal.c (mono_marshal_init): make managed
18337         signatures match native ones better for 64bits.
18338
18339 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18340
18341         * appdomain.c: hack to build correctly the private bin path on windows.
18342         Fixes bug #61991.
18343
18344 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
18345
18346         * assembly.c: Load mscorlib from the correct framework directory
18347           (mono/<version>/mscorlib.dll).
18348         * appdomain.h: Added prototypes for new functions.
18349         * internals.h: Added some prototypes.
18350         * domain.c: When initializing the runtime, get from the executable and
18351           the configuration files the runtime version that the app supports.
18352           Added support methods for reading app.exe.config. Added list of versions
18353           supported by the JIT. Added two new methods: mono_init_from_assembly,
18354           which initializes the runtime and determines the required version from
18355           the provided exe file, and mono_init_version, which initializes
18356           the runtime using the provided version.
18357         * icall.c: Get machine.config from version-specific directory.
18358         * reflection.c: When generating an image, embed the version number
18359           of the current runtime.
18360
18361 2004-07-28  Dick Porter  <dick@ximian.com>
18362
18363         * socket-io.c
18364         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
18365         returned sockaddr size before creating the remote address object.
18366         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
18367         61608.
18368
18369 2004-07-28  Dick Porter  <dick@ximian.com>
18370
18371         * locales.c (string_invariant_compare_char): Fix invariant char
18372         compares between upper and lower cases.  Fixes bug 61458.
18373
18374 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
18375         
18376         * marshal.c: actually cache stelem.ref wrappers.
18377         
18378 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
18379
18380         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
18381         sections and remove the mono_cli_rva_map () function.
18382
18383 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18384
18385         * debug-mono-symfile.c: fix one more endianess issue, from a patch
18386         by Geoff Norton (<gnorton@customerdna.com>).
18387
18388 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
18389
18390         * class.c: fix class loads for pointer types (typeof(int) !=
18391         typeof(int*)).
18392
18393 2004-07-27  Martin Baulig  <martin@ximian.com>
18394
18395         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
18396         reading the debugging information from an external ".mdb" file.
18397
18398 2004-07-24  Martin Baulig  <martin@ximian.com>
18399
18400         * reflection.c (mono_image_get_type_info): Only write a class
18401         layout entry if we actually have a size or a packing size.
18402
18403 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
18404
18405         * reflection.c (type_get_fully_qualified_name): 
18406         insert cast to get type checking of ?: with non-gcc compilers
18407
18408 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
18409
18410         * rand.c: use g_getenv for both lookups of
18411         MONO_EGD_SOCKET
18412
18413 2004-07-17  Martin Baulig  <martin@ximian.com>
18414
18415         * reflection.c (mono_reflection_bind_generic_method_parameters):
18416         Set `gmethod->reflection_info'.
18417
18418 2004-07-17  Martin Baulig  <martin@ximian.com>
18419
18420         * class.c (mono_class_create_from_typedef): Insert the newly
18421         created class into the hash table before computing the interfaces
18422         since we could be called recursively.
18423
18424 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
18425
18426         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
18427         function to implement stelem.ref in managed code
18428         * class-internals.h, debug-helpers.c: a new wrapper type
18429         for the above.
18430
18431 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
18432
18433         * gc.c: allow GC handles to work even when no GC is compiled in.
18434         Fix part of bug #61134 (GetAddrOfPinnedObject).
18435
18436 2004-07-13  Peter Williams  <peter@newton.cx>
18437  
18438         * process.c (complete_path): Make sure we don't attempt to execute
18439         directories.
18440  
18441 2004-07-12  Geoff Norton <gnorton@customerdna.com>
18442
18443         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
18444           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
18445           and will add/subtract the hour if needed
18446
18447 2004-07-12  Martin Baulig  <martin@ximian.com>
18448
18449         * reflection.c (mono_field_get_object): If we have
18450         `field->generic_info', take the attributes from
18451         `field->generic_info->generic_type'.    
18452
18453 2004-07-12  Martin Baulig  <martin@ximian.com>
18454
18455         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
18456         This function must be called before initializing the runtime.
18457         (mono_debug_init_1): New function; call this after initializing
18458         the runtime, but before loading the assembly.  It tells the
18459         debugger to load corlib and the builtin types.
18460
18461         * mono-debug-debugger.c: Did some larger changes in the debugging
18462         code; support recursive class declarations, make sure we actually
18463         add all classes.
18464
18465 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18466
18467         * debug-helpers.c: undo my previous patch and fixed the real issue in
18468         ../mini/exceptions-x86.c
18469
18470 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18471
18472         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
18473         when no HOME env. variable was set and a NullRef was thrown in a .cctor
18474         called from other .cctors.
18475
18476 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
18477
18478         * loader.c: Removed the mono_loader_wine_init hack now that we are
18479         doing a managed version of Windows.Forms.
18480
18481 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
18482
18483         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
18484         threadpool.c, threads.c: remove static data from rootset.
18485
18486 2004-07-09  Dick Porter  <dick@ximian.com>
18487
18488         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
18489         Don't do any more processing if the matched length was 0.  It was
18490         increasing the size of the string before.  Fixes bug 61167.
18491
18492 2004-07-09  Dick Porter  <dick@ximian.com>
18493
18494         * socket-io.h:
18495         * socket-io.c
18496         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18497         Add support for SO_PEERCRED if its available.
18498
18499 2004-07-09  Peter Bartok <pbartok@novell.com>
18500         * loader.c: winelib.exe.so error message is now only displayed if
18501         MONO_DEBUG is set. To help us avoid questions when people are trying
18502         out the new Managed.Windows.Forms.
18503
18504 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
18505
18506         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
18507         for isinst and castclass wrappers.
18508
18509         * class-internals.h icall.c: Move registration and lookup of JIT icalls
18510         to libmetadata from the JIT, so they could be used by the marshalling
18511         code and the interpreter.
18512
18513         * marshal.c: Register marshalling related JIT icalls here instead of
18514         in mini.c. Use CEE_MONO_ICALL instead of the family of 
18515         CEE_MONO_PROC<x> opcodes to call marshalling functions.
18516
18517         * metadata.h: Remove unneeded marshalling conversions.
18518
18519         * opcodes.c: Update for new opcodes.
18520         
18521 2004-07-08  Martin Baulig  <martin@ximian.com>
18522
18523         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
18524         (mono_debug_get_domain_data): Make this function static.
18525
18526 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
18527
18528         * gc.c, object.h: add nice GC handle API for embedders.
18529
18530 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
18531
18532         * reflection.c: more changes for the new api
18533
18534         * object.c: When we reflect on a field w/ a constant value, it
18535         will not have a memory location, so we must access metadata. Also,
18536         allow easier reading of strings so that we can read them from
18537         the constant data.
18538
18539         * class.c (mono_class_layout_fields): no need for literal fields here.
18540
18541         * class-internals.h: api changes for const fields
18542
18543         * icall.c (ves_icall_get_enum_info): use new apis for const fields
18544
18545 2004-07-06  Martin Baulig  <martin@ximian.com>
18546
18547         * mono-debug.h: Increment version number to 44.
18548
18549         * mono-debug.c (mono_debug_add_wrapper): The second argument is
18550         now a gpointer, rewrote this whole method.
18551
18552         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
18553         function.  Add information about the wrapper in a new "misc table".
18554
18555         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
18556         for the new misc table.
18557
18558 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
18559
18560         * metadata-internals.h image.c: Add a cache for helper signatures.
18561
18562         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
18563
18564 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
18565
18566         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
18567         delegates from a delegate. Fixes #61033.
18568         
18569         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
18570         marshalling of stringbuilder arrays. Fixes #59900.
18571
18572 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
18573
18574         * icall.c: Add EnumBuilder:setup_enum_type icall.
18575
18576 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
18577
18578         * icall.c: Added a new icall for the property version of
18579         OffsetOfStringData.
18580
18581 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
18582
18583         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
18584         it has a constant size across platforms.
18585
18586         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
18587         stack trace.
18588
18589 2004-06-29  Martin Baulig  <martin@ximian.com>
18590
18591         * mono-debug.c (mono_debug_add_method): Protect the whole function
18592         in mono_debugger_lock(), not just parts of it.
18593
18594 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
18595
18596         * reflection.c: make sure padding bytes in heaps are zeroed.
18597
18598 2004-06-24  David Waite  <mass@akuma.org>
18599
18600         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
18601         image.c, loader.c, locales.c, marshal.c, metadata.c,
18602         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
18603         string-icalls.c, threads.c: change to C90-style comments from C99 /
18604         C++ -style
18605
18606 2004-06-24  Dick Porter  <dick@ximian.com>
18607
18608         * threads.c
18609         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
18610         return createdNew.  Fixes bug 60412.
18611
18612         * threads-types.h: 
18613         * icall.c: Add createdNew parameter to CreateMutex icall
18614
18615 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18616
18617         * reflection.c, object-internals.h: save default value in params.
18618
18619 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18620
18621         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
18622         no need to build a new path combining that with the application base.
18623         Fixes bug #60442.
18624
18625 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
18626
18627         * reflection.c: fixed minor standard compliance issues.
18628
18629 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
18630
18631         * reflection.c: fixed issue with encoding some custom attributes
18632         (arrays in properties and fields, bug #60411).
18633
18634 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18635
18636         * reflection.c: fix start address when copying the public key token.
18637
18638 2004-06-23  Martin Baulig  <martin@ximian.com>
18639
18640         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
18641         the `exc' object in a static object to put it into the GC's root set.
18642
18643 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
18644
18645         * reflection.c: make mono_reflection_setup_internal_class ()
18646         callable a second time to setup a new parent class.
18647
18648 2004-06-23  Dick Porter  <dick@ximian.com>
18649
18650         * threads.c: Check for WAIT_IO_COMPLETION return values.
18651
18652 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
18653
18654         * appdomain.c: Removed the g_free on the public key token. Now copy 
18655         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
18656         * assembly.c: Added public key token string value when loading 
18657         assemblies. Fix bug #60439.
18658         * icall.c: Added missing informations (like public key) in 
18659         GetReferencedAssemblies. Fix #60519.
18660         * image.h: Changed definition for public key token from const char*
18661         public_tok_value to guchar public_key_token [17];
18662         * reflection.c: Updated for changes to public key token.
18663
18664 2004-06-22  Lluis Sanchez Gual
18665
18666         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
18667         for the field in base classes.
18668
18669 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18670
18671         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
18672         mark headers as not supported, they are installed only for use by the
18673         debugger.
18674
18675 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
18676
18677         * *.c, *.h: avoid namespace pollution in public headers.
18678
18679 2004-06-21  Martin Baulig  <martin@ximian.com>
18680
18681         * exception.c (mono_get_exception_security): It's in
18682         "System.Security", not in "System".
18683
18684         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
18685         the exception classes.
18686
18687 2004-06-21  Martin Baulig  <martin@ximian.com>
18688
18689         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
18690         Protect the exception object from being finalized.
18691
18692 2004-06-21  Martin Baulig  <martin@ximian.com>
18693
18694         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
18695         public function.
18696
18697 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
18698
18699         * reflection.c: Load the assembly in mono_reflection_type_from_name,
18700         if it was not loaded before. Fix parts of #60439.
18701
18702 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
18703
18704         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
18705         code that was broken since Ben's change: wrappers are now
18706         dependent on the method signature only again.
18707
18708 2004-06-21  Martin Baulig  <martin@ximian.com>
18709
18710         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
18711         added interface support.
18712
18713 2004-06-21  Martin Baulig  <martin@ximian.com>
18714
18715         * class.c (mono_vtable_get_static_field_data): New public method.
18716
18717 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
18718
18719         * filewatcher.c : Windows build fix to be compliant with API changes.
18720
18721 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18722
18723         * class.h, class.c: more accessors.
18724         * metadata.h, metadata.c: prepare for hiding MonoType and
18725         MonoMethodSignature: people should use the accessors from now on
18726         outside of the tree.
18727
18728 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
18729
18730         * *.c, *.h: more API cleanups.
18731
18732 2004-06-18  Jackson Harper  <jackson@ximian.com>
18733
18734         * assembly.c: Trace loading assemblies.
18735         * loader.c: Trace loading native libraries.
18736         * mono-config.c: Trace loading config files.
18737         
18738 2004-06-18  Dick Porter  <dick@ximian.com>
18739
18740         * locales.c: Tell ICU the lengths of strings, it can cope with
18741         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
18742
18743 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
18744
18745         * image.c: swapped name/filename;
18746
18747 2004-06-18  Martin Baulig  <martin@ximian.com>
18748
18749         * mono-debug-debugger.c (write_class): Write the parent class at
18750         the end of the header.
18751
18752 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
18753
18754         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
18755
18756 2004-06-17  Raja R Harinath  <rharinath@novell.com>
18757
18758         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
18759         (bundle_obj): New conditional define.
18760         (BUILT_SOURCES): Remove.
18761         ($(bundle_srcs)): Make parallel-make safe.
18762         (libmonoruntime_la_LIBADD): Make unconditional.
18763         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
18764         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
18765
18766 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
18767
18768         * culture-info-tables.h: It was inconsistent with the latest
18769           supp info files.
18770
18771 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
18772
18773         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
18774         be loaded.
18775
18776         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
18777         with gcc 2.95.
18778
18779 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
18780
18781         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
18782         cleaned up public header threads.h.
18783
18784 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
18785
18786         * Makefile.am, *.c, *.h: more API cleanups.
18787
18788 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
18789
18790         * Makefile.am: removed monosn from compilation.
18791         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
18792         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
18793         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
18794         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
18795         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
18796         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
18797
18798 2004-06-15  Jackson Harper  <jackson@ximian.com>
18799
18800         * assembly.c: Make locales lower case when searching the GAC for
18801         assemblies. gacutil will always make locales lowercase when
18802         installing so this effectively makes them case insensitive.
18803         
18804 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
18805
18806         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
18807         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
18808           parameter which allows to choose whether the wait can be interrupted or 
18809           not. Also added the method mono_monitor_enter(), which locks the monitor
18810           using an infinite wait and without allowing interruption.
18811           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
18812           interrupted.
18813         * object.h: Added new fields in MonoThread. suspend_event holds the event
18814           used to susped/resume the thread. synch_lock is the lock object to use for
18815           modifying the thread state.
18816         * threads.c: Use the new synch_lock object for locking, instead of "this",
18817           which can generate deadlocks.
18818           Moved thread state change in Thread.Sleep and Thread.Join from managed
18819           to unmanaged code. This avoids a deadlock when the thread was suspended
18820           just after acquiring the thread lock.
18821           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
18822           Implemented Thread.Suspend using an event instead of ThreadSuspend,
18823           which is not fully implemented in the io-layer.
18824         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
18825
18826 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
18827
18828         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
18829         threads-types.h: more API cleanups.
18830
18831 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
18832
18833         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
18834         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
18835         threadpool.c, threads.c: first pass at the exported API cleanup.
18836
18837 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
18838
18839         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
18840
18841 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18842
18843         * icall.c: added internalGetHome.
18844
18845 2004-06-14  Dick Porter  <dick@ximian.com>
18846
18847         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
18848         possible to return successfully when '.' or '..' were the only
18849         entries in a directory, but were skipped.  The MonoIOStat was not
18850         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
18851         Fixes bug 59574.
18852
18853 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
18854
18855         * reflection.c: make binaries run on .Net 1.1 by default.
18856
18857 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
18858
18859         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
18860
18861 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
18862
18863         * marshal.c: keep track of struct size with explicit layout
18864         (bug #59979).
18865
18866 2004-06-12  Martin Baulig  <martin@ximian.com>
18867
18868         * mono-debug-debugger.c: Comment out a debugging g_message().
18869
18870 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
18871
18872         * reflection.c, reflection.h: do not free custom attrs that are cached.
18873         * icall.c: use braces to make code clearer.
18874
18875 2004-06-11  Martin Baulig  <martin@ximian.com>
18876
18877         * class.h (MonoInflatedField): New type.
18878         (MonoClassField): Replaced `MonoType *generic_type' with
18879         `MonoInflatedField *generic_info'.
18880
18881         * icall.c
18882         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
18883
18884 2004-06-11  Martin Baulig  <martin@ximian.com>
18885
18886         * reflection.c (mono_image_create_method_token): Correctly encode
18887         varargs methods.
18888
18889 2004-06-11  Martin Baulig  <martin@ximian.com>
18890
18891         * metadata.c (mono_metadata_parse_method_signature): When parsing
18892         a MethodDef which has VarArgs, also set sentinelpos if we don't
18893         have any parameters.
18894
18895 2004-06-11  Martin Baulig  <martin@ximian.com>
18896
18897         * verify.c (mono_method_verify): In CEE_CALL, use
18898         mono_method_get_signature() to get the method's signature, unless
18899         we're a PInvoke method.
18900
18901 2004-06-10  Jackson Harper  <jackson@ximian.com>
18902
18903         * assembly.c: Use <path>/lib/mono/gac for the extra paths
18904         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
18905         logical name as the supplied path is just a prefix to the gac not
18906         the direct path to it.
18907         
18908 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
18909
18910         * reflection.c: make the token for a created method match
18911         the token of the MethodBuilder it was created from
18912         (IKVM requires this behaviour now).
18913
18914 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
18915
18916         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
18917         reflection.c, socket-io.c: leak fixes.
18918
18919 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
18920
18921         * icall.c: handle sentinel pos in vararg methods in position different
18922         from 0.
18923
18924 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18925
18926         * culture-info-tables.h: freshly generated.
18927
18928 2004-06-09  Martin Baulig  <martin@ximian.com>
18929
18930         * loader.c (mono_get_method_constrained): Call `mono_class_init
18931         (constrained_class)'.   
18932
18933 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
18934
18935         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
18936         any methods. Fixes #59629.
18937
18938 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
18939
18940         * culture-info-tables.h: reflecting locale-builder updates.
18941
18942 2004-06-08  Dick Porter  <dick@ximian.com>
18943
18944         * object.h:
18945         * locales.c: Fixed compile warnings, including a real bug in
18946         CompareInfo_internal_compare.
18947         
18948 2004-06-08  Dick Porter  <dick@ximian.com>
18949
18950         * locales.c
18951         (ves_icall_System_Globalization_CompareInfo_internal_index):
18952         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18953         Double-check the resuls of usearches, because ICU currently
18954         ignores most of the collator settings here.  Fixes bug 59720.
18955         
18956 2004-06-08  Dick Porter  <dick@ximian.com>
18957
18958         * locales.c
18959         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
18960         Fix memory leak and segfault-causing typo.  No idea how this one
18961         lasted so long without being noticed.
18962
18963 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
18964
18965         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
18966         any methods. Fixes #59629.
18967
18968 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18969
18970         * assembly.c:
18971         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
18972         own the critical section before). Removed dead code (that's done
18973         in the preload hook).
18974
18975         (mono_assembly_load_with_partial_name): call the preload hook.
18976
18977 2004-06-08  Martin Baulig  <martin@ximian.com>
18978
18979         * metadata.c (mono_metadata_signature_alloc): Default
18980         `sentinelpos' to -1.
18981
18982         * reflection.c (mono_image_get_array_token): Likewise.
18983
18984 2004-06-08  Martin Baulig  <martin@ximian.com>
18985
18986         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
18987
18988         * metadata.c (mono_metadata_parse_method_signature): When parsing
18989         a MethodDef which has VarArgs, set sentinelpos.
18990
18991         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
18992         `gint16' since we're using -1 for non-varargs methods.
18993
18994         * reflection.c
18995         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
18996         (method_encode_signature): Added varargs support.
18997         (method_builder_encode_signature): Likewise.
18998         (mono_image_get_varargs_method_token): New static method.
18999         (mono_image_create_method_token): New public method; this is
19000         called via an icall instead of mono_image_create_token() when
19001         calling a varargs method.       
19002
19003 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
19004
19005         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
19006
19007 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19008
19009         * culture-info-tables.h : Reflecting the latest locale-builder that
19010           fixed empty array representation ({} to {0}).
19011
19012 2004-06-07  Jackson Harper  <jackson@ximian.com>
19013
19014         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
19015         looking up extra gac paths. This allows MONO_GAC_PATH to act
19016         exactly like a prefix.
19017         
19018 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
19019
19020         * reflection.c (mono_reflection_type_from_name): Make a copy of the
19021         type name before modifying it. Fixes #59405.
19022
19023 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19024
19025         * culture-info.h: added fields for "all datetime patterns".
19026         * locales.c: (  ves_icall_System_Globalization_CultureInfo
19027           _construct_datetime_format ()): fill xxx_patterns fields.
19028         * object.h: added fields for "all datetime patterns" to
19029           MonoDateTimeFormatInfo.
19030         * culture-info-tables.h: reflecting locale-builder updates.
19031
19032 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
19033
19034         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
19035         the event has no add and remove methods. Fixes #59629.
19036
19037 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
19038
19039         * object.c: Fixed possible integer overflow when allocating large
19040         strings.
19041
19042 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
19043
19044         * culture-info-tables.h: reflecting locale-builder updates.
19045
19046 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
19047
19048         * culture-info-tables.h: reflecting locale-builder updates.
19049
19050 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
19051
19052         * culture-info-tables.h: reflecting locale-builder updates.
19053
19054 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
19055
19056         * threads.c: Made Thread.Sleep abortable.
19057
19058 2004-06-02  Martin Baulig  <martin@ximian.com>
19059
19060         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
19061
19062         * debug-mono-symfile.h: Bumped symbol file version number to 37.
19063
19064 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
19065
19066         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
19067
19068 2004-05-30  Jackson Harper  <jackson@ximian.com>
19069
19070         * reflection.c: Do not hardcode assembly versions or public key
19071         tokens anymore. All of this except the corlib section was dead
19072         code anyways.
19073         
19074 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
19075
19076         * object.c (mono_runtime_invoke_array): Automatically create boxed
19077         objects for byref valuetypes if needed. Fixes #59300.
19078         
19079         * object.c (mono_method_return_message_restore): Handle 
19080         MONO_TYPE_OBJECT as well.
19081
19082 2004-05-28  Jackson Harper  <jackson@ximian.com>
19083
19084         * reflection.c: The modified type encoding was causing build
19085         problems. Reverted for now.
19086         
19087 2004-05-28  Jackson Harper  <jackson@ximian.com>
19088
19089         * reflection.c/h: Take an assembly ref so that we dont create
19090         fully qualified names when encoding types in the same assembly as
19091         the custom attribute being emitted.
19092         * appdomain.c: Increment version number.
19093         
19094 2004-05-26  Duncan Mak  <duncan@ximian.com>
19095
19096         * icall.c
19097         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
19098         Set the full version number (major, minor, build, revision).
19099
19100 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
19101
19102         * marshal.c (emit_struct_conv): increment src/dst after blit
19103         (mono_marshal_get_managed_wrapper,
19104         mono_marshal_get_native_wrapper): make sure we have marshalling
19105         info before marshalling params (info computation affects
19106         blittable)
19107
19108         * class.c (class_compute_field_layout): correctly deal with
19109         blittable
19110         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
19111         value types (as per what windows dows by default)
19112         (mono_class_setup_mono_type): System.ValueType is blittable
19113         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
19114         blittable
19115
19116         * marshal.c (mono_marshal_load_type_info): flag types  as
19117         non-blittable if the native layout doesn't match the managed
19118         layout
19119
19120 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19121
19122         * appdomain.c: don't add stuff in the private search path that is
19123         above the application base. If application base is not set, there's
19124         no private search path.
19125
19126 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
19127
19128         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
19129         byref struct arguments in native->managed marshalling.
19130
19131 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
19132
19133         * marshal.c (mono_marshal_get_runtime_invoke): correctly
19134         cache methods using signature (special case for methods
19135         that are value type or string class)
19136         
19137         * image.c (mono_image_close): clean up allocated GSList's
19138         in runtime_invoke_cache.
19139
19140 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19141
19142         * mono-config.c: set the correct path for mono_cfg_dir on windows when
19143         there's no MONO_CFG_DIR environment variable defined.
19144
19145 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19146
19147         * threads.c: windows version must be >= 0x0500 to include OpenThread.
19148
19149 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
19150
19151         * threadpool.c: Really wait for 500ms after the async call, even if the wait
19152           is interrumped.
19153         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
19154           before waiting for it, and call CloseHandle after the wait to unref it.
19155           This will make sure that handles are not disposed too early.
19156
19157 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19158
19159         * appdomain.c:
19160         * appdomain.h:
19161         * icall.c: removed
19162         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
19163         needed now.
19164
19165         * object.c: se the application_base only for the domain that runs
19166         Main. Fixes bug #59216,
19167
19168 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19169
19170         * appdomain.c:
19171         * object.c: only the domain in which Main is run have
19172         SetupInformation.ConfigurationFile set, so moved a few lines from
19173         appdomain.c to object.c.
19174
19175 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19176
19177         * appdomain.c: we tried to load [name].(dll|exe), but according
19178         to bug #57710, we must also try [culture]/[name].(dll|exe) and
19179         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
19180         There's a test case attached to bug #58922.
19181
19182 2004-05-27  Dick Porter  <dick@ximian.com>
19183
19184         * icall.c:
19185         * file-io.c: Implemented icalls for locking and unlocking regions
19186         in a file.
19187         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
19188         FALSE on error (fixes both compiler warning and real bug.)
19189
19190 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
19191
19192         * culture-info-tables.h: reflecting locale-builder updates.
19193
19194           (Added missing ChangeLog entry for 05/26)
19195
19196 2004-05-27  Jackson Harper  <jackson@ximian.com>
19197
19198         * locales.c: Fix some cut and paste errors.
19199         
19200 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19201
19202         * mono-config.c: set the correct path for config. directory on windows.
19203
19204 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19205
19206         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
19207           on win32.
19208
19209 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
19210
19211         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
19212         from pinvoke functions.
19213         
19214         * marshal.c (mono_ftnptr_to_delegate): Implement this.
19215
19216 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19217
19218         * culture-info-tables.h: reflecting locale-builder updates.
19219
19220 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
19221
19222         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
19223         #59086.
19224
19225 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
19226
19227         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
19228         * icall.c: Modified icalls for RNG.
19229         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
19230         Windows (CryptoAPI).
19231
19232 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
19233
19234         * locales.c: Fix build.
19235
19236 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19237
19238         * culture-info-tables.h: reflecting locale-builder updates.
19239
19240 2004-05-25  Jackson Harper  <jackson@ximian.com>
19241
19242         * locales.c: When creating the current culture use the $LANGs
19243         specific culture. So DateTimeFormat and NumberFormat entries are created.
19244         
19245 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
19246
19247         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
19248         a char array as parameter.
19249
19250 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
19251
19252         * image.c: In mono_image_open(), always use an absolute path name to
19253           look for already loaded images.
19254
19255 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
19256
19257         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
19258         missing in the windows build (like older cygwin include files).
19259
19260 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
19261
19262         * icall.c: Fixed check for possible integer overflow in Buffer_
19263         BlockCopy icall. Replaced comments style // by /* */.
19264
19265 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
19266
19267         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
19268         
19269         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
19270         check after MONO_VTADDR. Fixes pinvoke2.exe.
19271
19272         * marshal.h marshal.c metadata.h: Add beginnings of support for
19273         ftnptr -> delegate marshalling.
19274
19275 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
19276
19277         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
19278         * threads.c: Fix warnings.
19279
19280 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
19281
19282         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
19283         * icall.c: Registered icalls for Suspend and Resume.
19284         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
19285           Thread.Abort.
19286         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
19287         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
19288         * process.c: Use WaitForSingleObjectEx.
19289         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
19290           checkpoints.
19291         * threads.c, threads.h: Make use of new Ex wait methods. Improved
19292           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
19293           for Suspend and Resume. Added new mono_thread_stop, used for stoping
19294           background threads. Added basic support for Abort in Windows.
19295           Start new threads using a managed delegate invoke wrapper. This wrapper
19296           has an interruption checkpoint that is needed since an interruption
19297           can be requested before the thread leaves the unmanaged code that starts 
19298           the thread.
19299         * marshal.c: Added interruption checkpoint after every native call, and
19300           also before managed calls for wrappers called from unmanaged code to
19301           go into managed code.
19302         * object.h: Added new field in MonoThread to keep track of interruption
19303           requests.
19304
19305 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
19306
19307         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
19308         calls.
19309
19310 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19311
19312         * appdomain.c:
19313         * assembly.c:
19314         * gc.c:
19315         * locales.c:
19316         * mono-config.c:
19317         * rand.c: getenv -> g_getenv (windows!)
19318
19319         * process.c: complete_path is also used on non-windows platforms.
19320
19321 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19322
19323         * icall.c: new signature for Process_Start.
19324
19325         * process.[ch]: new signature for Process_Start. If we're on windows
19326         and UseShellExecute is false, we have to search for the program by
19327         ourselves if we don't get a full path.
19328
19329 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
19330
19331         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
19332         marshalling and call CleanUpNativeData if needed. Fixes #58646.
19333
19334 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19335
19336         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
19337         Fixes bug #58373.
19338
19339 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19340
19341         * process.c: use double quotes to quote program name and arguments on
19342         windows. Fixes bug #58575.
19343
19344 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19345
19346         * file-io.c: don't return "." and ".." when using windows Find*File.
19347
19348 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
19349
19350         * marshal.c: Don't pass wrappers to message init because method 
19351         addressed used to lookup metadata. part of remoting[2|3] fix.
19352
19353 2004-05-15  Jackson Harper  <jackson@ximian.com>
19354
19355         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
19356         path is essentially the same as MONO_PATH except that it points to
19357         GACs instead of lib directories.
19358         * loader.h: The user gac is gone so we dont need function to
19359         enable/disable it.
19360         * mono-config.c: user gac option is now gone.
19361         
19362 2004-05-15  Jackson Harper  <jackson@ximian.com>
19363
19364         * culture-info.h: Make defines more consistent, add calendar data
19365         to the culture info table.
19366         * culture-info-tables.h: Add basic calendar data. Basically
19367         everyone gets default gregorian until all the data is
19368         updated.
19369         * locales.c: Use the new consistent defines. Set calendar data for
19370         culture info objects.
19371         * object.h: add a field for calendar data to CultureInfo
19372         
19373 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
19374
19375         * image.c: image->runtime_invoke_cache is keyed on signatures now.
19376         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
19377         a signature.
19378         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
19379         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
19380         an extra param that is the pointer of the method to invoke. The IL for
19381         the invoke method is no longer specific to the method, but to the
19382         signature of the method. Thus, we can share the same code for multiple
19383         methods. This reduces the number of methods that have to be compiled.
19384
19385 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
19386
19387         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
19388
19389         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19390
19391         * icall.c: Optimize Buffer.BlockCopy.
19392
19393 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19394
19395         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
19396         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
19397         quote). Changed them to "MMMM yyyy".
19398
19399 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
19400
19401         * rand.c
19402         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
19403
19404 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
19405
19406         * reflection.h: Updated after changes to managed structures.
19407
19408         * appdomain.c: Bump corlib version.
19409
19410 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19411
19412         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
19413         windows.
19414
19415 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19416
19417         * Makefile.am: link to ../os/libmonoos.la on windows.
19418
19419         * assembly.c:
19420                 -If MONO_DEBUG, warn about non-existing directories in
19421                 MONO_PATH.
19422                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
19423                 compile time variable.
19424                 -Removed init_default_path and call mono_set_rootdir from
19425                 libmonoos.a instead (windows only).
19426
19427         * assembly.h: declare mono_assembly_getrootdir().
19428
19429         * domain.c:
19430         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
19431
19432         * loader.c: s/getenv/g_getenv/
19433
19434 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
19435
19436         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
19437
19438         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
19439
19440         * metadata.h: Add new marshalling conversions.
19441
19442         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
19443         function.
19444
19445         * reflection.c (mono_reflection_get_type): Lookup the type in all
19446         modules of a multi-module assembly. Fixes #58291.
19447
19448 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
19449
19450         * threads.c: Before aborting a background, set the StopRequested
19451         state.  This avoids throwing the Abort exception.
19452         In mono_thread_manage, don't continue with the shutdown until all
19453         aborted threads have actually stopped.
19454
19455 2004-05-10  Jackson Harper  <jackson@ximian.com>
19456
19457         * locales.c: Remove the modifier from culture names.
19458         
19459 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19460
19461         * Makefile.am: monosn is not installed any more. It has been deprecated
19462         in favor of sn.
19463
19464 2004-05-07  Jackson Harper  <jackson@ximian.com>
19465
19466         * locales.c
19467         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
19468         Fix array construction, add bailout if the length is 0.
19469
19470 2004-05-07  Dick Porter  <dick@ximian.com>
19471
19472         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
19473         machine doesn't have a DNS entry.  Patch by Urs Muff
19474         (umuff@quark.com), fixes bug 57928.
19475
19476 2004-05-06  Jackson Harper  <jackson@ximian.com>
19477
19478         * reflection.c: Handle null PublicTokens properly. alloc mem for
19479         assembly names culture so we dont crash when freeing it.
19480         
19481 2004-05-06  Jackson Harper  <jackson@ximian.com>
19482
19483         * assembly.c: Check the usergac when loading with partial names.
19484         
19485 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
19486
19487         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
19488         does nothing for now (not required for Linux/Windows) but the class
19489         library can call it (and a newer or modified runtime could need it).
19490         * icall.c: Registred icall.
19491
19492 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19493
19494         * loader.c: prints a message on module loading error we set MONO_DEBUG
19495         environment variable.
19496
19497 2004-05-05  Jackson Harper  <jackson@ximian.com>
19498
19499         * appdomain.c: Handle PublicKeyToken=null properly.
19500         
19501 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
19502
19503         * environment.c|h: Added icall ves_icall_System_Environment_
19504         GetOSVersionString to get the current OS version as a string.
19505         * icall.c: Registred icall.
19506
19507 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
19508
19509         * object.c: in mono_object_get_virtual_method(), take into account that
19510         non-virtual methods don't have a slot in the vtable. Check needed when
19511         the object is a proxy.
19512
19513 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
19514
19515         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
19516         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
19517
19518         * object.c (mono_class_compute_gc_descriptor): Fix warning.
19519
19520         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
19521         passed when a valuetype is expected.
19522
19523         * object.c (mono_unhandled_exception): Only set the exit code if the
19524         exception happens in the main thread. Fixes thread5.exe.
19525
19526         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
19527         invalid names. Fixes #58047.
19528
19529 2004-05-03  Jackson Harper  <jackson@ximian.com>
19530
19531         * assembly.c: This line was committed accidently and is unneeded.
19532         
19533 2004-05-03  Jackson Harper  <jackson@ximian.com>
19534
19535         * icall.c: Add new icall for Assembly::LoadWithPartialName
19536         * assembly.c/.h: new function that probes the GAC to load partial
19537         assembly names by Paolo Molaro.
19538         
19539 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19540
19541         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
19542         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
19543         (type_get_fully_qualified_name): Added PublicKeyToken when building a
19544         full type name.
19545
19546 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19547
19548         * appdomain.c: fixed check for 'neutral' culture and removed warning.
19549         * reflection.c: fix bug when parsing a full type name and Version is not
19550         the last thing in the string.
19551
19552 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
19553
19554         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
19555         crashes when it is freed.
19556
19557 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19558
19559         * assembly.c: print the compat warning to stderr.
19560
19561 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
19562
19563         * assembly.c (mono_assembly_load_references): Add a compatibility
19564         hack to run old applications that might be still referencing the
19565         3300-based assemblies, only do this for System.xxx.
19566
19567 2004-05-01  Jackson Harper  <jackson@ximian.com>
19568
19569         * appdomain.c: If the culture is neutral we set it to "".
19570         
19571 2004-04-29  Jackson Harper  <jackson@ximian.com>
19572
19573         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
19574
19575 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
19576  
19577         * string-icalls.c: added low overhead function for copying chars
19578         * icall.c: added needed icall for the above function
19579  
19580 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19581
19582         * icall.c: fix return value of get_global_assembly_cache.  Implemented
19583         Environment.GetLogicalDrives.
19584
19585 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
19586
19587         * rand.c: try and talk to egd or prngd
19588         for random bytes if opening devices fail.
19589
19590 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
19591
19592         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
19593         alignment for the type using the native alignment of its members 
19594         instead of using klass->min_align.
19595
19596         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
19597
19598 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19599
19600         * file-io.c:
19601         * socket-io.c: added check for sys/aio.h.
19602
19603 2004-04-28  Dick Porter  <dick@ximian.com>
19604
19605         * threads.c: Don't abort a thread thats already aborting, when
19606         terminating everything.
19607
19608 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19609
19610         * icall.c: added 2 new async calls for Socket.
19611
19612         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
19613         IO on *nix systems.
19614
19615         * threadpool.c: removed unused variable.
19616
19617 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
19618
19619         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
19620
19621 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
19622
19623         * locales.c: put back string_invariant_tolower () and
19624         string_invariant_toupper ().
19625
19626 2004-04-26 David Waite <mass@akuma.org>
19627
19628         * file-io.h:
19629         * socket-io.h:
19630         * threads.h:
19631         * unicode.h: remove comma from end of enumeration declarations
19632
19633 2004-04-26 David Waite <mass@akuma.org>
19634
19635         * debug-mono-symfile.h:
19636         * decimal.c:
19637         * mono_debug.h:
19638         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
19639
19640
19641 2004-04-26  Jackson Harper  <jackson@ximian.com>
19642
19643         * appdomain.c: Increment version number.
19644         
19645 2004-04-26  Jackson Harper  <jackson@ximian.com>
19646
19647         * appdomain.c: Set assembly references public token value when
19648         PublicKeyToken is specified, not the hash_value. Free public token
19649         values when free assembly name data. Previously the public key
19650         token was hex decoded, however we are using hex encoded public key
19651         tokens, so this is not neccasary.
19652         * assembly.c: Lookup assemblies in the gac if their public token
19653         value is set. Add function to allow enabling user gac
19654         lookups. Specify whether or not the assembly was loaded from the
19655         GAC. Compare full assembly names when checking the cache for
19656         assemblies (Temporarily disabled see comment in code). Remove
19657         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
19658         specifies trace-loader they get extra info to stdout on the
19659         loading of assemblies.
19660         * image.h: Add a field for an assembly references public token
19661         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
19662         whether an assembly has been loaded from the GAC.
19663         * image.c: Remove a corlib -> mscorlib name mapping.
19664         * loader.h: Add function to enable/disable the user gac.
19665         * mono-config.c: Check if the usergac is enabled in the config
19666         file.
19667         * icall.c: New icall to determine whether or not an assembly has
19668         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
19669         * tabldefs.h: Add constant for assemblyref flag that specifies a
19670         full public key is used instead of a public token.
19671         * reflection.c: Remove mscorlib -> corlib mappings. Set
19672         PublicTokenValue instead of hash value. This value is a hex
19673         string so it does not need to be expanded.
19674
19675 2004-04-26  Martin Baulig  <martin@ximian.com>
19676
19677         * mono-debug-debugger.c (mono_debugger_initialize): Set
19678         `mono_debugger_initialized' before calling mono_debug_lock().
19679
19680 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
19681
19682         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
19683           InternalToUpper/InternalToLower.
19684         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
19685           removed invariant culture shortcut.  This is now done in managed code.
19686         * locales.c: (string_invariant_toupper/tolower) removed.
19687
19688 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19689
19690         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
19691         Added Poll internal call.
19692
19693         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
19694         call for Poll. Select was too heavy for polling a single socket.
19695
19696         * threadpool.[ch]: added mono_threadpool_cleanup.
19697         * threads.c: use it. Don't use Thread_Abort on windows.
19698
19699 2004-04-23  Martin Baulig  <martin@ximian.com>
19700
19701         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
19702
19703 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
19704
19705         * icall.c: Registred new icalls for key pair protection and added an
19706         icall for Environment.GetFolderPath on Windows.
19707         * security.c|h: Added new icalls for key pair protection.
19708
19709 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19710
19711         * socket-io.c: don't display the non-supported family warning for known
19712         families. Now this is not displayed on windows when checking support
19713         for IPv4/IPv6.
19714
19715 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19716
19717         * class.c: don't display the layout warning for static fields.
19718
19719 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
19720
19721         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
19722         * locales.c, locales.h: Added new icalls for culture-specific
19723         Char.ToLower and Char.ToUpper.
19724
19725 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19726
19727         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
19728         by David Waite.
19729
19730 2004-04-20  Martin Baulig  <martin@ximian.com>
19731
19732         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
19733         of the type name before passing it to mono_reflection_type_from_name().
19734
19735 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
19736
19737         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
19738         encodings here. Fixes #56965.
19739
19740 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
19741
19742         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19743         fix test on strstr result not that I can see anything that
19744         relies on the result.
19745
19746 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
19747
19748         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
19749         Fixes #57081.
19750
19751         * marshal.c (mono_marshal_get_string_encoding): New helper function.
19752
19753         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
19754         function to determine which marshalling to use for strings. Fixes
19755         #56965.
19756
19757         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
19758
19759         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
19760
19761 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
19762
19763         * icall.c: #include mono-config.h
19764
19765 2004-04-15  Jackson Harper  <jackson@ximian.com>
19766
19767         * culture-info-tables.h: Fix date formats for en-US culture.
19768         
19769 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
19770
19771         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
19772         ThreadPool.SetMinThreads.
19773         * threadpool.c: Implemented ThreadPool.GetMinThreads and
19774         ThreadPool.SetMinThreads.
19775
19776 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19777
19778         * mono-config.c: also load the .config file in the directory
19779         where the assembly was found.
19780
19781 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
19782
19783         * assembly.c: load per-assembly config files.
19784         * icall.c: decrapified code to get the config dir and moved to
19785         mono-config.c.
19786         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
19787         per-assembly config files. When doing a dll map lookup give precedence
19788         to the per-assembly data.
19789
19790 2004-04-14  Martin Baulig  <martin@ximian.com>
19791
19792         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
19793         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
19794         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
19795
19796         * mono-debugger-debugger.c: While the debugger is locked, remember
19797         whether the symbol tables have changes and send one single
19798         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
19799
19800 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
19801
19802         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
19803
19804         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
19805         function.
19806
19807         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
19808         account when marshalling string arrays. Fixes #56965.
19809
19810 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
19811
19812         * icall.c: Add new icalls mapping for security.
19813         * security.c|h: Add internal calls for WindowsIdentity,
19814         WindowsImpersonationContext and WindowsPrincipal.
19815
19816 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
19817
19818         * class.c: Added comment to ensure the System.MonoDummy class
19819         is removed when no longer necessary
19820
19821 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
19822
19823         * appdomain.c: Pass arguments to the bootstraping exceptions to
19824         minimize JITed methods at boot
19825
19826         * metadata.c (mono_exception_from_name_two_strings): Allow for the
19827         second string to be null.
19828
19829         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
19830         Change the protocol to minimize the JIT methods at startup.  Now
19831         it Returns the internal codepage, if the value of "int_code_page"
19832         is 1 at entry, and we can not compute a suitable code page
19833         number, returns the code page as a string.
19834
19835 2004-04-13  Jackson Harper  <jackson@ximian.com>
19836
19837         * culture-info-tables.h: Fix number of decimal digits for all
19838         english locales.
19839
19840 2004-04-13  Jackson Harper  <jackson@ximian.com>
19841
19842         * icall.c: Clairfy out of sync error message. It is not always
19843         your corlib that is out of sync.
19844
19845 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
19846
19847         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
19848         properties when only the set accessor is overriden. Fixes #55874.
19849
19850 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
19851
19852         * assembly.c (mono_assembly_load_references): Make this thread safe.
19853         Fixes #56327.
19854
19855 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
19856
19857         * monosn.c: Add missing initialization calls.
19858
19859 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
19860
19861         * locales.c:
19862         ves_icall_System_Globalization_CultureInfo_construct_number_format
19863         Fix g_assert so it compiles on fussier compilers re int/ptr
19864         mismatch
19865
19866 2004-04-08  Dick Porter  <dick@ximian.com>
19867
19868         * socket-io.h:
19869         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
19870         53992.  Also rearrange the code so that the internal calls return
19871         an error value and exceptions are thrown from managed code.
19872
19873         * icall.c: Add type info to the socket icalls.
19874
19875 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19876
19877         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
19878         owes me a beer.
19879
19880 2004-04-07  Martin Baulig  <martin@ximian.com>
19881
19882         * class.c (mono_class_from_generic_parameter): Don't default
19883         `klass->parent' to `mono_defaults.object_type'.
19884
19885 2004-04-07  Martin Baulig  <martin@ximian.com>
19886
19887         * reflection.c (mono_reflection_initialize_generic_parameter): Set
19888         `param->pklass->reflection_info'.       
19889
19890 2004-04-07  Jackson Harper  <jackson@ximian.com>
19891
19892         * culture-info-tables.h: Fix date separator symbol.
19893         
19894 2004-04-07  Martin Baulig  <martin@ximian.com>
19895
19896         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
19897         from System.Type to System.MonoType.
19898
19899 2004-04-07  Martin Baulig  <martin@ximian.com>
19900
19901         * reflection.h
19902         (MonoReflectionGenericParam): Added `has_reference_type' and
19903         `has_value_type' fields.
19904
19905         * reflection.c (mono_image_get_generic_param_info): Encode the
19906         correct flags if we have the `class' or `struct' constraint.
19907
19908 2004-04-07  Martin Baulig  <martin@ximian.com>
19909
19910         * reflection.h
19911         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
19912
19913 2004-04-07  Jackson Harper  <jackson@ximian.com>
19914
19915         * appdomain.c: Revert extra patches, just wanted to bump the
19916         version number.
19917         
19918 2004-04-07  Jackson Harper  <jackson@ximian.com>
19919
19920         * Makefile.am: Add culture-info private headers.
19921         * icall.c: Add new icalls for contructing locales.
19922         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
19923         * locales.h: Declare new culture info construction methods.
19924         * object.h: Add new fields used to avoid the CultureMap to
19925         MonoCultureInfo.
19926         * culture-info.h: Definition of structs used in the culture info
19927         tables.
19928         * culture-info-tables.h: Autogenerated tables that contain culture
19929         info data. This file was generated with the locale-builder tool.
19930         * appdomain.c: Incement corlib version number.
19931         
19932 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
19933
19934         * appdomain.c: (mono_runtime_init) move mono_thread_init
19935         to before mono_object_new calls so critical sections
19936         are initialized before use.
19937
19938 2004-04-07  Martin Baulig  <martin@ximian.com>
19939
19940         * icall.c
19941         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
19942         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
19943         (ves_icall_MonoGenericParam_initialize): Removed.
19944         (monogenericparam_icalls): Removed.
19945         (generictypeparambuilder_icalls): Added new table for
19946         System.Reflection.Emit.GenericTypeParameterBuilder.
19947
19948         * reflection.c
19949         (mono_reflection_define_generic_parameter): Removed.
19950         (mono_reflection_initialize_generic_parameter): This is now called
19951         from GenericTypeParameterBuilder's .ctor.
19952
19953 2004-04-06  Martin Baulig  <martin@ximian.com>
19954
19955         * class.c (mono_class_init): Don't inflate nested classes in a
19956         generic instance.
19957         (mono_type_get_name_recurse): Include the generic arguments for
19958         generic instances and generic type declarations.
19959         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
19960         (_mono_class_get_instantiation_name): Removed.
19961         (mono_class_create_generic): Always use `gklass->name' as our name.
19962
19963         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
19964
19965         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
19966         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
19967         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
19968         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
19969         closed generic methods here.
19970
19971         * reflection.c
19972         (mono_reflection_generic_inst_get_nested_types): Removed.
19973         (inflate_mono_method): Copy the generic parameters from the
19974         MonoMethodHeader into out MonoGenericMethod.
19975
19976 2004-04-06  Martin Baulig  <martin@ximian.com>
19977
19978         * row-indexes.h
19979         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
19980
19981         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
19982
19983         * reflection.c (build_compressed_metadata): If we have any entries
19984         in the GenericParam, MethodSpec or GenericParamConstraint tables,
19985         set the header version to 1.1.
19986
19987 2004-04-06  Martin Baulig  <martin@ximian.com>
19988
19989         * class.c (mono_class_init): If we're a generic instance,
19990         initialize our nested classes, too.
19991         (_mono_class_get_instantiation_name): Deal with the new `!%d'
19992         suffix. 
19993
19994 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19995
19996         * process.c: quote the argument passed to the shell on windows.
19997
19998 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
19999
20000         * threads.c (mono_alloc_special_static_data): Allow this to be
20001         called during startup.
20002
20003 2004-04-02  Martin Baulig  <martin@ximian.com>
20004
20005         * icall.c
20006         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
20007
20008 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
20009
20010         * icall.c: Fix build.
20011
20012 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
20013
20014         * Makefile.am: Added security.c|h.
20015         * icall.c: Added icall for get_UserName;
20016         * security.c: New file for security related icalls. Added function
20017         get_UserName for System.Environment (fix #56144).
20018         * security.h: New. Header file for security.c
20019
20020 2004-04-02  Dick Porter  <dick@ximian.com>
20021
20022         * icall.c: Deleted the icalls that were obsoleted some time ago
20023         by the ICU string code, and which were mixed into the icall
20024         rearranging.  Fixes bug 55969.
20025
20026         * string-icalls.h: 
20027         * string-icalls.c: Deleted the code that those icalls reference.
20028
20029 2004-04-01  Martin Baulig  <martin@ximian.com>
20030
20031         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
20032
20033         * class.c (mono_class_from_generic_parameter): Don't set 
20034         TYPE_ATTRIBUTE_INTERFACE.
20035         (my_mono_class_from_generic_parameter): Likewise.
20036
20037 2004-04-01  Martin Baulig  <martin@ximian.com>
20038
20039         * loader.c (find_method): Added an optional `MonoClass *ic'
20040         argument to search in a specific interface.
20041         (mono_get_method_constrained): New public function.
20042
20043 2004-04-01  Martin Baulig  <martin@ximian.com>
20044
20045         * reflection.c (mono_image_get_generic_field_token): Use the
20046         `handleref' cache here.
20047
20048 2004-04-01  Martin Baulig  <martin@ximian.com>
20049
20050         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
20051
20052         * reflection.c (create_generic_typespec): Use the `typespec' hash
20053         here, not the `typeref' one.    
20054
20055 2004-04-01  Martin Baulig  <martin@ximian.com>
20056
20057         * class.c (mono_class_inflate_generic_type): Moved the
20058         functionality into a new static inflate_generic_type() which
20059         returns NULL if it didn't do anything.  Only increment the
20060         `mono_stats.inflated_type_count' if we actually inflated
20061         something.
20062         (mono_class_get_full): Check the classes type to see whether we
20063         need to inflate it; also inflate MONO_TYPE_(M)VAR.
20064
20065 2004-04-01  Jackson Harper  <jackson@ximian.com>
20066
20067         * reflection.c: Set culture for assembly references.
20068         
20069 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
20070
20071         * reflection.[ch], icall.[ch], Fix support for pinning variables.
20072
20073 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20074
20075         * assembly.c:
20076         (do_mono_assembly_open): the critical section also covers
20077         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
20078
20079 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20080
20081         * threads.c:
20082         (mono_manage_threads): abort the background threads when finishing.
20083         Fixes bug #47232.
20084
20085 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20086
20087         * gc.c: only close the done_event handle if there was no timeout.
20088         C-ified comments.
20089
20090 2004-03-30  Martin Baulig  <martin@ximian.com>
20091
20092         * icall.c (icall_entries): It's called "System.Activator", not
20093         "System.Activation".    
20094
20095 2004-03-30  Martin Baulig  <martin@ximian.com>
20096
20097         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
20098         (mono_class_create_from_typespec): Likewise.
20099
20100 2004-03-30  Martin Baulig  <martin@ximian.com>
20101
20102         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
20103         `has_ctor_constraint' and `initialized'.
20104
20105 2004-03-30  Martin Baulig  <martin@ximian.com>
20106
20107         * reflection.c (encode_new_constraint): New static function to add
20108         the constructor constraint attribute to a type parameter.
20109         (encode_constraints): Call encode_new_constraint() if necessary.
20110
20111         * reflection.h
20112         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
20113
20114         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
20115         
20116 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
20117
20118         * reflection.c, icall.c: add support for pinning variables. 
20119
20120 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
20121
20122         * marshal.c (mono_marshal_get_managed_wrapper):
20123         init bool local with zero rather than null.
20124
20125 2004-03-29  Martin Baulig  <martin@ximian.com>
20126
20127         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
20128         the "official" behavior here.
20129         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
20130
20131 2004-03-29  Martin Baulig  <martin@ximian.com>
20132
20133         * icall.c: Reflect latest API changes.
20134
20135 2004-03-29  Martin Baulig  <martin@ximian.com>
20136
20137         * loader.c (mono_get_method_from_token): Also call
20138         mono_metadata_load_generic_params () for abstract and interface
20139         methods; replace the type arguments in the method signature with
20140         the ones which are loaded from the metadata.
20141
20142 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
20143
20144         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
20145         of the lock is not the current thread. MS.NET don't do it, in spite of
20146         what the documentation says. See bug #56157.
20147
20148 2004-03-28  Martin Baulig  <martin@ximian.com>
20149
20150         * class.c (mono_class_init): Don't call init_properties() and
20151         init_events() for generic instances; set `prop->parent' when
20152         inflating properties.
20153
20154         * reflection.c (mono_generic_inst_get_object): Call
20155         `mono_class_init (ginst->klass)'.
20156         (mono_type_get_object): Only create a MonoGenericInst if your
20157         generic type is a TypeBuilder.
20158         (do_mono_reflection_bind_generic_parameters): Only set
20159         `ginst->is_dynamic' if our generic type is a TypeBuilder.
20160
20161 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
20162
20163         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
20164         Fixes #56091.
20165
20166 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20167
20168         * icall.c: added Kill_internal icall.
20169         * process.[ch]: added Kill_internal icall.
20170
20171 2004-03-25  Martin Baulig  <martin@ximian.com>
20172
20173         * class.h (MonoStats): Added `generic_instance_count',
20174         `inflated_method_count', `inflated_type_count' and
20175         `generics_metadata_size'.       
20176
20177 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20178
20179         * reflection.c: no warnings now.
20180
20181 2004-03-25  Martin Baulig  <martin@ximian.com>
20182
20183         * class.c (mono_class_get_full): New public function; does a
20184         mono_class_get(), but also takes a `MonoGenericContext *'.
20185
20186         * loader.c (mono_field_from_memberref): Renamed to
20187         `field_from_memberref', made static and added `MonoGenericContext *'
20188         argument.
20189         (mono_field_from_token): Added `MonoGenericInst *' argument.
20190         (method_from_memberef): Likewise.
20191         (mono_get_method_from_token): Likewise.
20192         (mono_get_method_full): New public function; does a
20193         mono_get_method(), but also takes a `MonoGenericContext *'.
20194
20195         * verify.c (mono_method_verify): Get the method's generic context
20196         and pass it to mono_field_from_token(), mono_get_method_full() and
20197         mono_class_get_full().
20198
20199 2004-03-25  Martin Baulig  <martin@ximian.com>
20200
20201         * class.c (mono_class_inflate_generic_type): Take a
20202         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
20203         `MonoGenericMethod *'.
20204
20205 2004-03-25  Martin Baulig  <martin@ximian.com>
20206
20207         * loader.h (MonoMethodInflated): Store the MonoGenericContext
20208         instead of the MonoGenericMethod here.
20209
20210 2004-03-25  Martin Baulig  <martin@ximian.com>
20211
20212         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
20213         each time we create a new MonoGenericInst, we also create a new
20214         context which points back to us.
20215
20216         * class.c (inflate_method): Use `ginst->context' instead of
20217         creating a new context.
20218
20219         * loader.c (method_from_memberref): Use
20220         `klass->generic_inst->context' instead of creating a new context.
20221
20222 2004-03-25  Martin Baulig  <martin@ximian.com>
20223
20224         * class.h (MonoGenericContext): New struct.
20225         (MonoGenericMethod): Removed `generic_inst'.
20226
20227         * class.c (mono_class_inflate_generic_method): Take a
20228         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
20229
20230 2004-03-25  Martin Baulig  <martin@ximian.com>
20231
20232         * loader.h (MonoMethodInflated): New typedef.
20233
20234         * metadata.h (MonoMethodSignature): Removed `gen_method', make
20235         `generic_param_count' consume just 30 bits, added `is_inflated'
20236         and `has_type_parameters' flags (one bit each).
20237
20238         * class.c (mono_class_inflate_generic_method): Create a
20239         MonoMethodInflated instead of a MonoMethodNormal and set
20240         `is_inflated' in the method signature.
20241
20242         * class.h (MonoGenericMethod): Removed `generic_method'.
20243
20244 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
20245
20246         * image.c: Make sure the name of a MonoImage is always an absolute path.
20247           This fixes bug #54415.
20248
20249 2004-03-24  Martin Baulig  <martin@ximian.com>
20250
20251         * class.c (mono_class_setup_vtable): If we're a generic instance,
20252         use our generic type's vtable size.
20253
20254 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
20255
20256         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
20257         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
20258         problems.
20259
20260 2004-03-23  Martin Baulig  <martin@ximian.com>
20261
20262         * class.h (MonoDynamicGenericInst): Added `int count_events' and
20263         `MonoEvent *events'.
20264
20265         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
20266         (typebuilder_icalls): Added "get_event_info"; calls
20267         mono_reflection_event_builder_get_event_info(). 
20268
20269         * reflection.c (mono_reflection_generic_inst_initialize): Added
20270         `MonoArray *events'.
20271         (mono_reflection_event_builder_get_event_info): New function.
20272
20273 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
20274
20275         * object.h: add mono_type_initialization_init
20276
20277         * object.c (mono_runtime_class_init): 
20278         implement class constructor synchronization rules
20279         to cope with threading issues.  
20280         add mono_type_initialization_init
20281
20282         * appdomain.c (mono_runtime_init): call 
20283         mono_type_initialization_init
20284
20285         * class.h: removing initializing field from MonoVTable
20286
20287 2004-03-23  Martin Baulig  <martin@ximian.com>
20288
20289         * class.c (my_mono_class_from_generic_parameter): Use
20290         `param->name' if it's not NULL. 
20291
20292 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
20293
20294         * class.c: do not insert non-virtual methods in the vtable.
20295         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
20296         that means the method is non-virtual. This never would have
20297         happened before.
20298
20299 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
20300
20301         * profiler.c: Added lock for accessing coverage_hash.
20302
20303 2004-03-22  Martin Baulig  <martin@ximian.com>
20304
20305         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
20306         `method->method->signature->generic_param_count != 0' to make it
20307         work for interface methods.
20308
20309 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20310
20311         * process.c: quote the string passed to the shell using g_shell_quote.
20312
20313 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20314
20315         * threads.c:
20316         (mono_threads_manage): don't remove the finalizer thread and self
20317         from the threads hash table so that mono_thread_manage can be called
20318         more than once.
20319
20320 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20321
20322         * process.c: quote the arguments when UseShellExecute is true. Fixes
20323         bug #55790.
20324
20325 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20326
20327         * threads.c: set mono_thread_detach as a cleanup routine for every
20328         thread. This way it's always executed upon thread termination, either
20329         aborted or finished normally. No more xsp hangs!
20330
20331 2004-03-17  Martin Baulig  <martin@ximian.com>
20332
20333         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
20334         `int count_nested' and a `MonoType **nested'.
20335
20336         * reflection.c (mono_reflection_bind_generic_parameters): Moved
20337         most of the functionality into a new static
20338         do_mono_reflection_bind_generic_parameters() and don't take a
20339         `MonoType *nested_in' argument any more.  Don't compute nested
20340         types here.
20341         (mono_reflection_generic_inst_get_nested_types): New public method
20342         to get nested types.
20343
20344         * class.c (mono_class_create_generic): Set `klass->nested_in' if
20345         we're a nested class.
20346
20347         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
20348         mono_reflection_generic_inst_get_nested_types() to compute the
20349         nested types.
20350
20351 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
20352
20353         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
20354         descriptive error message under windows.
20355         
20356 2004-03-17  Martin Baulig  <martin@ximian.com>
20357
20358         * class.c (dup_type): Added `const MonoType *original' argument;
20359         copy the attrs from the original type.
20360
20361 2004-03-17  Martin Baulig  <martin@ximian.com>
20362
20363         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
20364         `m->generic_inst_cache' here.
20365
20366 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
20367
20368         * exception.h exception.c: Add stack_overflow_exception.
20369
20370 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20371
20372         * threadpool.c:
20373         (overlapped_callback): call SetEvent *after* invoking the callback.
20374         No need to call CloseHandle.
20375
20376 2004-03-16  Martin Baulig  <martin@ximian.com>
20377
20378         * reflection.c (mono_image_get_fieldref_token): Take a
20379         `MonoReflectionField *' instead of a `MonoClassField *' and a
20380         `MonoClass *'; store the `MonoReflectionField *' in the hash.
20381
20382 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20383
20384         * appdomain.c: don't add the culture to the filename we're looking for
20385         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
20386
20387 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20388
20389         * locales.c: don't ignore symbols when doing case insensitive compares.
20390         Thanks Dick! Fixes bug #54046.
20391
20392         * threads.c: surround 'threads' usage with enter/leave in
20393         mono_thread_manage.
20394
20395 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
20396
20397         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
20398         implicitly marshalled as [Out]. Fixes #55450.
20399
20400         (mono_marshal_get_runtime_invoke): Zero out the result if there is
20401         an exception.
20402
20403 2004-03-16  Martin Baulig  <martin@ximian.com>
20404
20405         * class.c (mono_class_from_generic_parameter): Use the actual
20406         parameter name. 
20407
20408 2004-03-16  Martin Baulig  <martin@ximian.com>
20409
20410         * reflection.c (type_get_signature_size): New static function.
20411         Compues the size of the type in a method signature.
20412         (method_get_signature_size): New static function; calls
20413         type_get_signature_size() to compute the actual size of the
20414         method's signature.
20415         (method_encode_signature): Use method_get_signature_size() to get
20416         the signature's size rather than using `nparams * 10'.
20417
20418 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20419
20420         * file-io.h: define here WapiOverlapped on windows. I don't want the
20421         regular OVERLAPPED one.
20422
20423         * file-io.c:
20424         * threadpool.c: somehow, BindIoCompletionCallback is not found.
20425         Disabling AIO on windows.
20426
20427 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20428
20429         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
20430         bug #55385.
20431
20432 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20433
20434         * appdomain.c: upgraded corlib version.
20435
20436         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
20437         and BeginWrite. Allow opening files for asynchrnous operations.
20438
20439         * file-io.h: new struct that maps FileStreamAsyncResult.
20440         * icall.c: added new icalls.
20441         * process.[ch]: support setting child process environment variables
20442         and use the SHELL or COMSPEC when UseShellExecute is true.
20443
20444         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
20445         callback for async. IO is here and also BindHandle.
20446
20447         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
20448         from here.
20449
20450 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
20451
20452         * reflection.c (create_custom_attr): Allow len == 0.
20453
20454         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
20455         computation on big-endian machines.
20456
20457 2004-03-13  Martin Baulig  <martin@ximian.com>
20458
20459         * class.h (MonoGenericInst): Added `int count_ifaces'.
20460
20461         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
20462         `ginst->count_ifaces' instead `klass->interface_count' since we
20463         may get called before the vtable is created.
20464
20465         * loader.c (mono_method_get_param_names): If we're a generic
20466         instance, return and don't initialize the class.
20467
20468         * reflection.c (mono_reflection_setup_generic_class): Don't call
20469         ensure_runtime_vtable().
20470         (mono_reflection_bind_generic_parameters): Set
20471         `ginst->count_ifaces'.
20472
20473 2004-03-11  Jackson Harper <jackson@ximian.com>
20474
20475         * icall.c:
20476         * unicode.c:
20477         * unicode.h: Remove unused System.Char icalls.
20478         
20479 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
20480
20481         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
20482         code when we P/Invoke the first library in Windows.Forms, instead
20483         of when we first open the assembly.
20484
20485         * assembly.c: Drop the lookup from here.
20486
20487 2004-03-10  Martin Baulig  <martin@ximian.com>
20488
20489         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
20490         class for properties, fields and events.  Finally fixes #54945.
20491
20492 2004-03-10  Martin Baulig  <martin@ximian.com>
20493
20494         * metadata.c (mono_metadata_class_equal): New static function;
20495         checks whether two generic instances or two generic parameters are
20496         equal.
20497         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
20498         compare classes.        
20499
20500 2004-03-10  Martin Baulig  <martin@ximian.com>
20501
20502         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
20503
20504         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
20505         argument and write it into the `reflection_info' field.
20506
20507         * icall.c
20508         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
20509         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
20510
20511 2004-03-09  Jackson Harper  <jackson@ximian.com>
20512
20513         * char-conversions.h: use 8 bits for numeric data its all we need
20514         * icall.c: numeric data is only 8 bits now.
20515
20516 2004-03-09  Martin Baulig  <martin@ximian.com>
20517
20518         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
20519
20520         * class.c (init_properties, init_events): Initialize the new
20521         `parent' field.
20522
20523         * reflection.c (typebuilder_setup_properties): Likewise.
20524         (typebuilder_setup_events): Likewise.
20525
20526         * reflection.h (MonoEventInfo): Replaced `parent with
20527         `declaring_type' and `reflected_type'.
20528
20529         * icall.c (ves_icall_get_property_info): Distinguish between
20530         declaring and reflected type.
20531         (ves_icall_get_event_info): Likewise.
20532
20533 2004-03-09  Martin Baulig  <martin@ximian.com>
20534
20535         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
20536         (ves_icall_Type_GetField): Correctly set field->klass.
20537
20538 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
20539
20540         * loader.h: Fix warning.
20541
20542 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
20543
20544         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
20545         library routine if present.  Notice that it will still continue
20546         executing even if its missing, for those working on the Gtk#
20547         edition of Windows.Forms.
20548
20549         * assembly.c (do_mono_assembly_open): If loading the
20550         System.Windows.Forms call mono_loader_wini_init.
20551
20552 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
20553
20554         * class.h: Added MonoRemoteClass struct.
20555         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
20556         function for MonoStrings.
20557         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
20558         Added internal call for getting the proxy type.
20559         * marshal.c: Get the type of transparent proxies from its remote_class.
20560         Added methods that generate the IL for type checks and casts:
20561         mono_marshal_get_isinst, mono_marshal_get_castclass, 
20562         mono_marshal_get_proxy_cancast.
20563         * marshal.h: Declaration of the previous new methods.
20564         * object.c: Added new moethods for creating and updating MonoRemoteClass
20565         instances: mono_remote_class, mono_upgrade_remote_class, 
20566         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
20567         * verify.c: FIx transparent_proxy_fields layout.
20568         * appdomain.c: Bump corlib version.
20569
20570 2004-03-04  Jackson Harper  <jackson@ximian.com>
20571
20572         * icall.c: Add icall to access char conversion tables.
20573         * char-conversions.h: Character conversion tables.
20574         * Makefile.am: Add char-conversions.h private header file.
20575         
20576 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
20577
20578         * appdomain.c (unload_thread_main): Increase unloading timeout to
20579         10 sec as a temporary workaround for Nant problems.
20580
20581 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
20582
20583         * gc.c: Add checks for GC_enable and GC_disable.
20584
20585         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
20586         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
20587         (bug #54988).
20588         
20589 2004-02-27  Martin Baulig  <martin@ximian.com>
20590
20591         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20592         `MonoReflectionType *' instead of a `MonoType *'.
20593
20594 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
20595
20596         * gc.c (run_finalize): Avoid finalizing the object representing the
20597         finalizer thread.
20598         (finalizer_thread): Fix warning.
20599
20600 2004-02-25  Martin Baulig  <martin@ximian.com>
20601
20602         * class.c (_mono_class_get_instantiation_name): Added `int offset'
20603         argument for nested types.
20604         (mono_class_create_generic): Added support for nested generictypes.
20605
20606         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
20607         `GList *nested'.
20608
20609         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
20610
20611         * reflection.c (method_encode_signature): Increase the minimum
20612         value of `size' from 10 to 11.
20613         (mono_reflection_bind_generic_parameters): Take `int type_argc'
20614         and `MonoType **types' arguments instead of the `MonoArray
20615         *types'; added `MonoType *nested_in'.  Recursively instantiate
20616         nested classes. 
20617
20618 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
20619
20620         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
20621         stack_overflow_ex members which are used by exception handling.
20622
20623         * appdomain.c (mono_runtime_init): Initialize the new members.
20624
20625         * gc.c (mono_gc_enable): New helper function.
20626         * gc.c (mono_gc_disable): New helper function.
20627
20628 2004-02-23  Martin Baulig  <martin@ximian.com>
20629
20630         * icall.c: I must have been really stupid - make it actually work
20631         this time ;-)
20632
20633 2004-02-23  Martin Baulig  <martin@ximian.com>
20634
20635         * loader.c (method_from_memberref): Only inflate the method if
20636         it's in another klass.
20637
20638 2004-02-23  Martin Baulig  <martin@ximian.com>
20639
20640         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
20641         (mono_class_init): If we're a generic instance and an interface,
20642         compute `class->interface_id'; also create `class->interfaces'
20643         here and inflate them.
20644
20645         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
20646         `ginst->is_open'.
20647         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
20648
20649         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
20650
20651 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
20652
20653         * reflection.c (method_encode_code): Improved the error message
20654         generated by the exception.
20655
20656 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20657
20658         * icall.c: Martin did not do what he said in the ChangeLog for
20659         2004-02-18, but put back the changes for properties and events.
20660         Commenting those changes out again and adding comment to bug #54518.
20661         
20662         * process.c: removed warning.
20663
20664 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
20665
20666         * marshal.c (emit_struct_conv): Print an error message instead of
20667         asserting when a type does not have the StructLayout attribute.
20668
20669 2004-02-20  Martin Baulig  <martin@ximian.com>
20670
20671         * reflection.c (mono_type_get_object): Also use the cache for
20672         generic instances.
20673         (mono_reflection_bind_generic_parameters): Always compute
20674         `ginst->ifaces'.        
20675
20676 2004-02-20  Martin Baulig  <martin@ximian.com>
20677
20678         * class.h (MonoGenericMethod): Removed `klass'.
20679
20680         * class.c (mono_class_inflate_generic_method): Added `MonoClass
20681         *klass' argument.
20682
20683 2004-02-20  Martin Baulig  <martin@ximian.com>
20684
20685         * reflection.c (method_encode_methodspec): Actually use the
20686         uninflated signature for the memberref.
20687
20688 2004-02-20  Martin Baulig  <martin@ximian.com>
20689
20690         * class.h (MonoGenericMethod): Removed `declaring'.
20691
20692         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
20693         is NULL, compute it here.
20694
20695 2004-02-20  Martin Baulig  <martin@ximian.com>
20696
20697         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
20698
20699         * metadata.c (mono_metadata_generic_inst_hash): New method.
20700         (mono_metadata_generic_inst_equal): New method.
20701
20702         * reflection.c (mono_reflection_bind_generic_parameters): Use the
20703         `klass->image->generic_inst_cache' cache to avoid creating
20704         duplicate MonoGenericInst's.
20705
20706         * class.c (mono_class_inflate_generic_type): Use the cache.
20707
20708 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
20709
20710         * object.c: fixed gc descriptor calculation for embedded valuetypes.
20711
20712 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20713
20714         * icall.c: added Socket.WSAIoctl icall.
20715
20716         * socket-io.[ch]: implemented
20717         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
20718
20719 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
20720
20721         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
20722
20723 2004-02-18  Urs C Muff  <umuff@quark.com>
20724
20725         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
20726         this work on PPC and other big-endian architectures.
20727
20728         * debug-mono-symfile.h: Prepended the names of all the `guint32'
20729         fields with an underscore to make sure they're only accessed by
20730         the read32() macro.
20731
20732 2004-02-18  Martin Baulig  <martin@ximian.com>
20733
20734         * icall.c: Put the klass->refclass changes back for methods and
20735         fields, but not for properties and events.  We're currently not
20736         distinguishing between DeclaringType and ReflectedType for
20737         properties and events, that's what caused the regressions.
20738
20739 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20740
20741         * object.c:
20742         (mono_async_result_new): the handle can be NULL.
20743
20744         * threadpool.c: Use an event instead of a semaphore, don't initialize
20745         it until needed. This saves quite a few semaphores from being created
20746         when using the threadpool.
20747
20748 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
20749
20750         * object.c (mono_string_is_interned_lookup): Fix interning of long
20751         strings. Fixes #54473.
20752
20753         * domain.c (ldstr_equal): Optimize if the two strings are equal.
20754
20755         * icall.c: Revert the klass->refclass changes since they introduce
20756         regressions (bug #54518).
20757
20758 2004-02-18  Martin Baulig  <martin@ximian.com>
20759
20760         * class.c (mono_class_init): If we're a generic instance and don't
20761         come from a TypeBuilder, inflate our members here.
20762         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
20763         (mono_class_create_generic): New public method.
20764         (mono_class_initialize_generic): Removed.
20765         (get_instantiation_name): Renamed to
20766         _mono_class_get_instantiation_name() and made it public.
20767
20768 2004-02-18  Martin Baulig  <martin@ximian.com>
20769
20770         * class.c (mono_class_inflate_generic_type): Clear the new
20771         instance's `nginst->klass' when inflating a generic instance.
20772         (mono_class_is_subclass_of): Added (basic) support for generic
20773         instances.
20774
20775 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
20776
20777         * appdomain.h, domain.c: use a MonoCodeManager instead of a
20778         MonoMempool to hold compiled native code.
20779
20780 2004-02-17  Martin Baulig  <martin@ximian.com>
20781
20782         * class.h (MonoDynamicGenericInst): Added `count_properties' and
20783         `properties'.
20784
20785         * reflection.c (mono_reflection_generic_inst_initialize): Added
20786         `MonoArray *properties' argument.
20787
20788         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
20789
20790 2004-02-17  Martin Baulig  <martin@ximian.com>
20791
20792         * icall.c (ves_icall_Type_GetFields): Renamed to
20793         ves_icall_Type_GetFields_internal() and added a
20794         `MonoReflectionType *rtype' argument; pass it to
20795         mono_field_get_object() to set the field's "reflected" type.
20796         (ves_icall_Type_GetConstructors): Likewise.
20797         (ves_icall_Type_GetEvents): Likewise.
20798         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
20799         argument; pass it to mono_method_get_object() to set the method's
20800         "reflected" type.       
20801
20802 2004-02-17  Martin Baulig  <martin@ximian.com>
20803
20804         * class.h (MonoDynamicGenericInst): New type.
20805         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
20806
20807         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
20808         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
20809         (ves_icall_MonoGenericInst_GetFields): New interncall.
20810
20811         * class.c (mono_class_from_generic): Don't call
20812         mono_class_initialize_generic() if this is a dynamic instance;
20813         ie. it's being created from a TypeBuilder.
20814         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
20815         `class->byval_arg.type'.
20816
20817         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
20818         to `inflate_method' and made static.
20819         (mono_reflection_inflate_field): Removed.
20820         (mono_reflection_generic_inst_initialize): New public method.
20821
20822         * reflection.h (MonoReflectionGenericInst): Removed `methods',
20823         `ctors' and `fields'; added `initialized'.
20824
20825 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
20826
20827         * debug-helpers.c (mono_method_full_name): Fix output for empty
20828         namespaces.
20829
20830 2004-02-12  Martin Baulig  <martin@ximian.com>
20831
20832         * class.h (MonoClassField): Added `MonoType *generic_type'.
20833
20834         * reflection.c (mono_image_get_fieldref_token): Added support for
20835         instantiated generic types.
20836         (field_encode_inflated_field): Removed.
20837         (mono_image_get_inflated_field_token): Removed.
20838         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
20839
20840         * reflection.h (MonoReflectionInflatedField): Removed.
20841
20842 2004-02-12  Martin Baulig  <martin@ximian.com>
20843
20844         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
20845         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
20846
20847         * reflection.c (mono_image_get_methodspec_token): Take a
20848         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
20849         (mono_image_create_token): Check whether we have a
20850         `method->signature->gen_method' and call
20851         mono_image_get_methodspec_token() if appropriate.
20852         (inflated_method_get_object): Removed.
20853         (mono_reflection_bind_generic_method_parameters): Return a
20854         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
20855         (mono_reflection_inflate_method_or_ctor): Likewise.
20856
20857         * reflection.h (MonoReflectionInflatedMethod): Removed.
20858
20859 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
20860
20861         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
20862         for custom valuetype marshalling.
20863
20864         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
20865
20866 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20867
20868         * icall.c: fixed WSAGetLastError_internal name.
20869
20870 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
20871
20872         * threads.c (mono_thread_attach): Allow this to be called multiple
20873         times for a thread.
20874         
20875         * threads.c (build_wait_tids): Do not wait for ourselves.
20876
20877         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
20878         appdomain list is empty.
20879
20880         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
20881         memory returned by mono_string_builder_to_utf16, since it points into
20882         managed memory. Thanks to Bernie Solomon for noticing this.
20883
20884         * icall.c: Add AppDomainSetup icalls.
20885
20886         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
20887
20888         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
20889         types.
20890
20891         * reflection.c (reflection_methodbuilder_to_mono_method): Save
20892         custom attributes to the method_aux struct. Also fix array indexes etc.
20893
20894         * loader.c (mono_method_get_param_names): Make dynamic case work again.
20895         
20896 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
20897
20898         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
20899         (both static and runtime) and reduce startup time.
20900
20901 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
20902
20903         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
20904         AsAny marshalling conversion instead of crashing.
20905
20906         * marshal.c: Fix warnings.
20907
20908 2004-02-09  Martin Baulig  <martin@ximian.com>
20909
20910         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
20911
20912         * reflection.h (MonoReflectionInflatedMethod): Removed the
20913         `declaring' field, it's now in the unmanaged MonoGenericMethod.
20914
20915         * reflection.c (method_encode_methodspec): Removed the `method'
20916         argument; we get it from `gmethod->declaring'.
20917         (inflated_method_get_object): Removed the `declaring' argument.
20918
20919 2004-02-09  Martin Baulig  <martin@ximian.com>
20920
20921         * class.h (MonoGenericMethod): New type.
20922         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
20923         `generic_method'.
20924
20925         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
20926         a `MonoGenericMethod *gen_method' one.
20927
20928         * class.c (mono_class_inflate_generic_type): Take an additional
20929         `MonoGenericMethod * argument.  This is only non-NULL if we're
20930         inflating types for a generic method.   
20931         (mono_class_inflate_generic_signature): Renamed to
20932         inflate_generic_signature() and made static; take a
20933         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20934         (inflate_generic_header): Take a `MonoGenericMethod *' argument
20935         instead of a `MonoGenericInst *' one.
20936         (mono_class_inflate_generic_method): Likewise.
20937
20938         * reflection.c (encode_generic_method_sig): Take a
20939         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
20940         (method_encode_methodspec): Likewise.
20941         (inflated_method_get_object): Likewise. 
20942
20943         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
20944         field with a `MonoGenericMethod *gmethod' one.  
20945
20946 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
20947
20948         * class.h (mono_class_has_parent): add parens to expansion
20949         so you can ! this.
20950
20951 2004-02-08  Martin Baulig  <martin@ximian.com>
20952
20953         * image.h (MonoImage): Removed `generics_cache'.
20954
20955         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
20956         instead of a `MonoType *' argument; removed the `inflate_methods'
20957         argument.  Don't inflate methods here.
20958
20959         * loader.c (find_method): If it's a generic instance, call
20960         mono_class_init() on the `sclass->generic_inst->generic_type'.
20961
20962         * metadata.c (mono_type_size): Make this work on uninitialized
20963         generic instances; call it on the `ginst->generic_type's class.
20964
20965         * reflection.c (mono_reflection_bind_generic_parameters): Call
20966         mono_class_from_generic() to create the `ginst->klass'.
20967
20968 2004-02-08  Martin Baulig  <martin@ximian.com>
20969
20970         * class.h (MonoClass): Changed type of `generic_inst' from
20971         `MonoType *' to `MonoGenericInst *'.
20972
20973 2004-02-08  Martin Baulig  <martin@ximian.com>
20974
20975         * icall.c (ves_icall_Type_BindGenericParameters): Just call
20976         mono_type_get_object(), this is now creating a `MonoGenericInst'
20977         for MONO_TYPE_GENERICINST.
20978         (ves_icall_MonoGenericInst_GetParentType): Likewise.
20979         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
20980
20981         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
20982         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
20983         (inflated_method_get_object): Added `MonoClass *refclass' argument.
20984         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
20985         and reflected type.
20986
20987         * reflection.h (MonoReflectionInflatedMethod): Removed
20988         `declaring_type' and `reflected_type'.
20989
20990 2004-02-08  Martin Baulig  <martin@ximian.com>
20991
20992         * class.h (MonoGenericInst): Added `MonoType *parent' and
20993         `MonoType **ifaces'.
20994
20995         * reflection.h (MonoReflectionGenericInst): Removed `klass',
20996         `parent' and `interfaces'.
20997
20998         * reflection.c (mono_reflection_bind_generic_parameters): Take a
20999         `MonoType *' argument and return a `MonoType *'.
21000
21001         * icall.c
21002         (ves_icall_MonoGenericInst_GetParentType): New interncall.
21003         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
21004
21005 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
21006
21007         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
21008         valuetype marshalling.
21009
21010 2004-02-06  Martin Baulig  <martin@ximian.com>
21011
21012         * class.c
21013         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
21014         (my_mono_class_from_generic_parameter): Likewise.
21015
21016 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
21017
21018         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
21019         contents of the symbol files lazily.
21020
21021         * object.h (MonoThread): Add 'name' and 'name_len' fields.
21022
21023         * threads.h threads.c icall.c: New icalls for getting and setting the
21024         threads name.
21025
21026 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
21027
21028         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
21029         Raise an exception when the domain is not found.
21030
21031 2004-02-03  Martin Baulig  <martin@ximian.com>
21032
21033         * reflection.c (mono_image_get_methodspec_token): Use the
21034         uninflated signature; fixes gen-33.
21035
21036 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
21037
21038         * gc.c threads.c: Make the finalizer thread a normal managed thread so
21039         the finalizer code can use thread functionality.
21040
21041         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
21042         the finalizer thread.
21043
21044         * threads.c: Make some functions more robust.
21045
21046         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
21047
21048         * metadata.h: Add new marshalling conventions.
21049
21050         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
21051         stringbuilder marshalling. Fixes #53700.
21052
21053         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
21054
21055         * reflection.c (mono_image_get_type_info): Save declarative security
21056         info.
21057
21058         * reflection.c (mono_image_get_field_info): Handle uninitialized 
21059         unmanaged fields as well.
21060
21061         * appdomain.c: Bump corlib version.
21062
21063 2004-02-01  Martin Baulig  <martin@ximian.com>
21064
21065         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
21066         method type arguments.  
21067
21068 2004-01-30  Duncan Mak  <duncan@ximian.com>
21069
21070         * marshal.h: Add prototype for
21071         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
21072         and
21073         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
21074         fix the build.
21075
21076 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
21077
21078         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
21079         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
21080
21081 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
21082
21083         * marshal.c (mono_marshal_get_native_wrapper): Add support for
21084         custom marshalling of valuetypes.
21085
21086         * marshal.c: Fix some warnings.
21087
21088 2004-01-29  Martin Baulig  <martin@ximian.com>
21089
21090         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
21091         for generic method parameters.
21092
21093         * reflection.c (method_encode_methodspec): Write the uninflated
21094         signature into the methodspec table.
21095         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
21096         is always the uninflated method.
21097         (reflection_methodbuilder_to_mono_method): Copy the generic
21098         parameters from the MethodBuilder into `header->gen_params'.
21099
21100 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
21101
21102         * class.c (mono_class_from_generic_parameter): Fix warning.
21103
21104 2004-01-27  Martin Baulig  <martin@ximian.com>
21105
21106         * class.c (mono_class_from_generic_parameter): Don't create
21107         `klass->methods' here.  
21108
21109 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
21110
21111         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
21112         extension since it does not work with libraries named lib<FOO>.dll.so.
21113
21114 2004-01-25  Martin Baulig  <martin@ximian.com>
21115
21116         * class.c (mono_class_inflate_generic_type): Added support for
21117         MONO_TYPE_GENERICINST.
21118
21119         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
21120         inflate methods on open constructed types.      
21121
21122 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21123
21124         * object.c: fire ProcessExit event in the root AppDomain after running
21125         Main. Fixes bug #53299.
21126
21127 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
21128
21129         * socket-io.c: include the new socket-wrappers.h header.
21130         Use the wrappers instead of the unix socket functions to make the code
21131         more clear.
21132
21133 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
21134
21135         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
21136
21137         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
21138         Fixes #22532.
21139
21140 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
21141
21142         * reflection.c (mono_image_create_pefile): Handle the case when the
21143         entry point is not a MethodBuilder.
21144
21145         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
21146         field to ReflectionMethod since it is not allways a builder.
21147
21148         * reflection.c (type_get_fully_qualified_name): New helper function to
21149         return the fully qualified name of a type.
21150
21151         * reflection.c (encode_marshal_blob): Always emit the fully qualified
21152         type name for custom marshallers.
21153
21154         * reflection.c (mono_marshal_spec_from_builder): Ditto.
21155
21156         * class.c (mono_class_setup_vtable): If a parent class already 
21157         implements an interface, use the implementing methods from that class.
21158         Fixes #53148.
21159
21160 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21161
21162         * threadpool.c: just return instead of ExitThread to allow for thread
21163         clean up earlier.
21164
21165 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
21166
21167         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
21168         when closing resource modules.
21169
21170         * reflection.c (mono_image_create_pefile): Handle the case when the
21171         entry point is not a MethodBuilder.
21172
21173         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
21174         field to ReflectionMethod since it is not allways a builder.
21175
21176 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21177
21178         * marshal.c (mono_marshal_get_managed_wrapper): 
21179         mono_marshal_alloc takes native int so CONV_I
21180         the arg for 64bits.
21181
21182 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
21183
21184         * reflection.c (fixup_cattrs): New function to fixup the methoddef
21185         tokens in the cattr table. Fixes #53108.
21186
21187 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21188
21189         * loader.c: don't trim ".dll" before looking up in the config file.
21190         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
21191
21192 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
21193
21194         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
21195         Return the module which contains the resource as well.
21196         (ves_icall_System_Reflection_Module_Close): New icall.
21197
21198         * appdomain.c: Bump corlib version number.
21199
21200         * image.c (mono_image_addref): New public function.
21201
21202         * assembly.c: Call mono_image_addref.
21203
21204         * reflection.c (mono_module_get_object): Increase reference count of 
21205         the image.
21206
21207         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
21208         Fixes #22532.
21209
21210         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
21211         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
21212         proper exceptions on DllImport problems.
21213
21214 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
21215
21216         * class.c, metadata.c: eliminate CSIZE macro.
21217
21218 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
21219
21220         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
21221         * object.h: Added async_callback field in MonoAsyncResult.
21222         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
21223         * verify.c: Added async_callback in MonoAsyncResult layout.
21224
21225 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
21226
21227         * reflection.c (mono_reflection_get_custom_attrs): Add support
21228         for Modules.
21229
21230 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
21231
21232         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
21233         marshalling.
21234         (mono_marshal_method_from_wrapper): Add null pointer check.
21235
21236 2004-01-16  Martin Baulig  <martin@ximian.com>
21237
21238         * debug-mono-symfile.h: Set version number to 36 and reflect
21239         latest symbol writer changes.
21240
21241 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
21242
21243         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
21244         multi-dimensional arrays.
21245         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
21246         (mono_class_from_mono_type): Use bounded_array_class_get.
21247         
21248         * class.c (mono_bounded_array_class_get): New function which takes
21249         a 'bounded' bool argument to distinguish vectors from one dimensional
21250         arrays.
21251
21252         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
21253         bounded_array_class_get if the array has bounds.
21254
21255         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21256         Search modules loaded using AssemblyBuilder:AddModule as well.
21257
21258 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21259
21260         * appdomain.c: increased corlib version.
21261         * filewatcher.c: removed g_print.
21262         * icall.c:
21263         (get_property_info): only allocate what is actually requested.
21264         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
21265
21266 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21267
21268         * Makefile.am: added filewatcher.[ch]
21269         * filewatcher.[ch]: FileSystemWatcher runtime support.
21270         * icall.c: added new FSW icalls.
21271
21272 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
21273
21274         * string-icalls.c: fix stringbuilder regression as suggested by
21275         Iain McCoy <iain@mccoy.id.au>.
21276
21277 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
21278
21279         * process.c (process_read_stringtable_block): Recognize '007f' as
21280         a language neutral stringtable block.
21281
21282 2004-01-12  Patrik Torstensson
21283
21284         * object.h (MonoStringBuilder) : Changed layout to support our
21285         new stringbuilder class.
21286         * marshal.c: Change marshalling to support the new layout of 
21287         string builder.
21288         * appdomain.c: increased version number because new layout of
21289         string builder.
21290
21291 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
21292
21293         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
21294         assembly name as an string instead of an AssemblyName, since it is
21295         easier to extract info from it.
21296
21297         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
21298         the culture subdirectories too. Fixes #52231.
21299
21300 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21301
21302         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
21303         It takes 2 new parameters with an optional name for the method to look
21304         for and case ignoring info.
21305
21306         * threadpool.c: removed unused variable.
21307
21308 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21309
21310         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
21311         It takes 2 new parameters with an optional name for the property to look
21312         for and case ignoring info.
21313         Fixes bug #52753.
21314
21315 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
21316
21317         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
21318         Fix #52451.
21319
21320 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21321
21322         * appdomain.c:
21323         * assembly.c: escape the uri before passing it to g_filename_from_uri.
21324         Fixes bug #52630.
21325
21326 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
21327
21328         * reflection.c: Add support for more than one unmanaged resource.
21329
21330         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
21331         in field->def_value, as done in all other cases.
21332
21333         * reflection.c (mono_reflection_get_custom_attrs): Add support for
21334         TypeBuilders.
21335
21336         * reflection.c (mono_reflection_create_runtime_class): Remove 
21337         errorneous assignment to klass->element_class, since it is already
21338         done in mono_reflection_setup_internal_class.
21339
21340 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21341
21342         * gc.c: added missing LeaveCriticalSection.
21343         * icall.c: indented a couple of lines.
21344         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
21345         if we call EndInvoke inside a callback. Fixes bug #52601.
21346
21347 2004-01-07  Martin Baulig  <martin@ximian.com>
21348
21349         * mono-debug-debugger.h
21350         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
21351
21352 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
21353
21354         * appdomain.c: Use messages in NotImplementedException.
21355
21356         * exception.c (mono_get_exception_not_implemented): Now this takes
21357         a message argument.
21358
21359         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
21360         exception instead of g_asserting an aborting when something is not
21361         implemented.
21362
21363         Add some inline docs.
21364
21365 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
21366
21367         * reflection.h: Update after changes to object layout.
21368
21369         * reflection.c: Implement saving of unmanaged aka win32 resources.
21370
21371         * appdomain.c: Bump version number.
21372
21373         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
21374         Handle missing domains gracefully.
21375
21376 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
21377
21378         * file-io.c : On Windows, there are much more invalid_path_chars.
21379
21380 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
21381
21382         * class.h, object.c: prepare for GetType () speedup.
21383
21384 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
21385
21386         * profiler.c: workaround for --profile null reference exception on
21387           cygwin. Patch by Patrik Torstensson.
21388
21389 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
21390
21391         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
21392         make work for unaligned access.
21393
21394 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
21395
21396         * class.c: small cleanup (class->fields [i] -> field).
21397         * image.c: check address of metadata is valid.
21398
21399 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
21400
21401         * assembly.h assembly.c (mono_assembly_loaded): New public function to
21402         search the list of loaded assemblies.
21403
21404         * reflection.c (mono_reflection_type_from_name): Use 
21405         mono_assembly_loaded instead of mono_image_loaded.
21406
21407         * reflection.c: Fix warnings.
21408
21409 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
21410
21411         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
21412         is dynamic. This is needed since an assembly can contain both dynamic and
21413         non-dynamic images.
21414
21415         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
21416         assembly->dynamic.
21417
21418         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
21419
21420         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
21421         to store modules loaded using AddModule.
21422
21423         * reflection.c (mono_image_fill_file_table): Generalize this so it works
21424         on Modules.
21425
21426         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
21427
21428         * reflection.c (mono_image_fill_export_table_from_module): New function to
21429         fill out the EXPORTEDTYPES table from a module.
21430
21431         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
21432         into a separate function. Also handle loaded non-dynamic modules.
21433
21434         * reflection.c (mono_image_basic_init): Fix memory allocation.
21435
21436         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21437
21438         * assembly.c (mono_assembly_load_references): Make this public.
21439
21440 2003-12-19  Martin Baulig  <martin@ximian.com>
21441
21442         * class.c (mono_class_initialize_generic): Made this static, take
21443         a `MonoGenericInst *' instead of a `MonoClass *'.
21444         (mono_class_from_generic): Call mono_class_initialize_generic()
21445         unless we're already initialized or being called from
21446         do_mono_metadata_parse_generic_inst().
21447
21448         * class.h (MonoGenericInst): Added `initialized' and
21449         `init_pending' flags.
21450
21451         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
21452         `mono_class_init (gklass)' or mono_class_initialize_generic()
21453         here; set `generic_inst->init_pending' while parsing the
21454         `type_argv'.
21455
21456 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
21457
21458         * locales.c: include string.h for memxxx prototypes
21459
21460 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
21461
21462         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
21463         constructor when accessing literal fields.
21464
21465 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
21466
21467         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21468
21469         * reflection.c (assembly_add_resource_manifest): New function to fill
21470         the MANIFESTRESOURCE table.
21471
21472         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
21473
21474         * reflection.h: Update to changes in class layout.
21475
21476         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
21477         Reenable call to mono_runtime_is_shutting_down ().
21478
21479         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
21480         determine if the runtime is shutting down.
21481
21482 2003-12-16  Jackson Harper <jackson@ximian.com>
21483
21484         * icall.c: comment out call to mono_runtime_is_shutting_down to
21485         fix build.
21486         
21487 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
21488
21489         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
21490         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
21491
21492 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
21493
21494         * reflection.c: move definition of swap_with_size
21495         to before its first call
21496
21497 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
21498
21499         * appdomain.c (mono_runtime_is_shutting_down): New public function.
21500
21501         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
21502         icall.
21503
21504         * object.c: Fix warnings.
21505
21506         * icall.c (ves_icall_Type_Get...): Only consider inherited static
21507         members if FlattenHierarchy is set.
21508
21509         * reflection.c (mono_image_add_decl_security): New function to emit
21510         declarative security.
21511
21512         * reflection.h reflection.c: Add support for declarative security.
21513
21514         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
21515         
21516 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
21517
21518         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
21519         
21520         * appdomain.c verify.c: Moved corlib version checking into its own
21521         function in appdomain.c since it needs to create vtables etc.
21522
21523 2003-12-13  Patrik Torstensson <p@rxc.se>
21524
21525         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
21526         instead of unwrapped server.
21527
21528 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
21529
21530         * verify.c (check_corlib): Fix field index.
21531
21532 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
21533
21534         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
21535         GetGacPath icall.
21536
21537 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
21538
21539         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
21540         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
21541         cope with sizeof(size_t) != sizeof(guint32).
21542
21543 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21544
21545         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
21546         in case of failure.
21547
21548 2003-12-10  Mark Crichton <crichton@gimp.org>
21549
21550         * icall.c: removed the GetNonZeroBytes.  We now handle this case
21551         in managed code.
21552
21553         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
21554
21555 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
21556
21557         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
21558         marked as deleted.
21559
21560 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
21561
21562         * verify.c (check_corlib): Handle the case when the version field is 
21563         initialized by a static constructor.
21564
21565 2003-12-08  Patrik Torstensson  <p@rxc.se>
21566
21567     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
21568
21569 2003-12-08  Martin Baulig  <martin@ximian.com>
21570
21571         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
21572         a MonoReflectionGenericParameter, also take the parameter index
21573         and name as arguments.
21574         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
21575         (ves_icall_MonoGenericParam_initialize): New interncall.
21576         (ves_icall_Type_make_byref_type): New interncall.
21577
21578         * reflection.h (MonoReflectionGenericParam): Derive from
21579         MonoReflectionType, not just from MonoObject.  Added `refobj' and
21580         `index' fields.
21581
21582         * reflection.c (mono_reflection_define_generic_parameter): Create
21583         and return a new MonoReflectionGenericParam; don't initialize the
21584         constraints here.
21585         (mono_reflection_initialize_generic_parameter): New public method;
21586         initializes the constraints and creates the `param->pklass'.
21587
21588 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
21589
21590         * reflection.h reflection.c: Use the new fields 'num_types', 
21591         'num_fields' and 'num_methods' to track the number of types etc.
21592
21593         * verify.c (check_corlib): Check corlib version number.
21594
21595 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
21596
21597         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
21598         function works on all methods.
21599
21600 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
21601
21602         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
21603         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
21604         the custom_type_info flag of the transparent proxy.
21605         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
21606         objects that supports IRemotingTypeInfo.
21607         * object.h: Added custom_type_info field in transparent proxy.
21608
21609 2003-12-06  Martin Baulig  <martin@ximian.com>
21610
21611         * class.c (mono_class_create_from_generic): Removed.
21612         (mono_class_from_generic): Check `ginst->klass' before doing
21613         anything else.  This is important to fully support "recursive"
21614         generic types.
21615
21616         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
21617         empty `generic_inst->klass' before doing anything else.
21618
21619 2003-12-06  Dick Porter  <dick@ximian.com>
21620
21621         * verify.c: 
21622         * object.h:
21623         * icall.c:
21624         * locales.c: Use C structs to access class fields.  Don't do a
21625         conversion between MonoString and UChar because both are
21626         platform-endian UTF-16.  Compare now takes startindex and count
21627         parameters.  Add a char overload for IndexOf.  Speed up the
21628         invariant string IndexOf.
21629
21630 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
21631
21632         * Makefile.am (monosn_LDADD): Fix parallel build.
21633
21634 2003-12-04  Martin Baulig  <martin@ximian.com>
21635
21636         * icall.c
21637         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
21638         (ves_icall_Type_make_array_type): New interncall.       
21639
21640 2003-12-04  Martin Baulig  <martin@ximian.com>
21641
21642         * locales.c: also change it in the !HAVE_ICU case.
21643
21644 2003-12-04  Dick Porter  <dick@ximian.com>
21645
21646         * icall.c:
21647         * locales.c: construct_compareinfo is now in CompareInfo, not
21648         CultureInfo.
21649
21650 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
21651
21652         * image.c (mono_image_load_file_for_image): Cache loaded images in the
21653         image->files array.
21654
21655         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
21656         table as well.
21657
21658         * assembly.c (mono_assembly_load_references): Only load references
21659         once.
21660
21661         * class.c (mono_class_from_name): Avoid linear search of the 
21662         EXPORTEDTYPE table.
21663
21664         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
21665
21666 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
21667
21668         * image.h (MonoImage): Add 'field_cache' field.
21669
21670         * loader.c (mono_field_from_token): Cache field lookups.
21671         
21672         * reflection.c (mono_module_get_object): Fix name property.
21673
21674         * icall.c (ves_icall_get_enum_info): Update after changes to 
21675         mono_metadata_get_constant_index ().
21676
21677         * icall.c: Get rid of get_type_info icall, use a separate icall for
21678         each type property to avoid needless memory allocations. Fixes #51514.
21679
21680         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
21681         to avoid needless binary searches.
21682
21683         * class.c (class_compute_field_layout): Move the initialization of
21684         field->def_value to mono_class_vtable ().
21685
21686         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
21687         non-corlib types.
21688
21689         * object.c (mono_object_allocate): Make it inline.
21690
21691         * object.c (mono_object_allocate_spec): Make it inline.
21692         
21693 2003-12-02  Dick Porter  <dick@ximian.com>
21694
21695         * locales.c (create_NumberFormat): NumberFormatInfo construction.
21696         Patch by Mohammad DAMT (mdamt@cdl2000.com).
21697
21698 2003-12-01  Dick Porter  <dick@ximian.com>
21699
21700         * threads.c: Fix signature and call in CreateMutex and
21701         CreateEvent.
21702
21703 2003-12-01  Dick Porter  <dick@ximian.com>
21704
21705         * icall.c: 
21706         * locales.c: Implement string compares and searching
21707
21708         * object.h: Add extra Thread field
21709
21710 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
21711
21712         * reflection.c (fixup_method): Add support for MonoCMethod.
21713
21714 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
21715
21716         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
21717
21718         * reflection.c (assembly_name_to_aname): Allow extra characters in
21719         assembly names. Fixes #51468.
21720
21721 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
21722
21723         * exception.c (mono_exception_from_name_domain): New helper function.
21724
21725         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
21726         exception object in the correct domain.
21727
21728         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
21729         formatting + make a copy a the input data.
21730
21731         * loader.c (mono_get_method_from_token): Methods which contain
21732         native code do not have entries in the ImplMap.
21733
21734         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
21735         Thanks to Gonzalo for spotting this.
21736         
21737         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
21738         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
21739
21740         * assembly.h (mono_assembly_load_from): Split the second part of 
21741         assembly loading into a new public function.
21742
21743         * exception.h (mono_get_exception_bad_image_format): New function.
21744
21745 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
21746
21747         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
21748         Enumerate all modules inside a dynamic assembly. Fixes #51293.
21749         
21750         * icall.c: Add new icall for creating dynamic methods.
21751
21752         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
21753
21754         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
21755
21756         * reflection.c (mono_reflection_create_dynamic_method): New icall to
21757         create a dynamic method.
21758
21759         * reflection.c (resolve_object): New helper function.
21760
21761         * reflection.c: Generalize ReflectionMethodBuilder and the functions
21762         which manipulate it so they can also work on dynamic methods.
21763
21764         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
21765         creating the MonoReflectionMethodAux structure if it is not needed.
21766         
21767         * reflection.h verify.c: Update after changes to object layout.
21768
21769         * reflection.c (method_builder_encode_signature): Fix compilation on
21770         gcc 2.95.x.
21771
21772 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
21773
21774         * appdomain.h: Added support for context static fields. Added static_data
21775           field to MonoAppContext and renamed thread_static_fields to a more
21776           generic special_static_fields in MonoAppDomain, since it can now contain
21777           context static fields.
21778         * domain.c: Updated hashtable name.
21779         * object.c: Replaced field_is_thread_static() for a more generic
21780           field_is_special_static() which also checks for context static attribute.
21781           In mono_class_vtable(), added support for static context fields.
21782         * threads.c: Changed methods that manage thread static fields to more
21783           generic methods so they can be reused both for thread and context static
21784           data.
21785         * threads.h: Declared some new methods.
21786
21787 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
21788
21789         * reflection.h: Update after changes to the managed types.
21790
21791         * reflection.c (encode_custom_modifiers): New helper function.
21792
21793         * reflection.c (method_encode_signature): Emit custom modifiers.
21794
21795         * reflection.c (field_encode_signature): Emit custom modifiers.
21796
21797 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
21798
21799         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
21800
21801         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
21802         implementation.
21803
21804         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
21805         icall.
21806
21807         * object.c (mono_field_get_value_object): New function.
21808
21809         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
21810         specific.
21811
21812 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
21813
21814         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
21815         return a preallocated out-of-memory exception instance.
21816
21817         * object.c (out_of_memory): Use the new function.
21818
21819         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
21820         flag is before the custom modifiers. Fixes #49802.
21821
21822 2003-11-16  Martin Baulig  <martin@ximian.com>
21823
21824         * class.c (mono_class_is_open_constructed_type): Implemented the
21825         MONO_TYPE_GENERICINST case.
21826
21827 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
21828
21829         * assembly.c (mono_assembly_fill_assembly_name): New function to
21830         fill out the MonoAssemblyName structure.
21831         (mono_assembly_open): Use the new function.
21832
21833         * icall.c (fill_reflection_assembly_name): New helper function.
21834
21835         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
21836         new function.
21837
21838         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
21839
21840 2003-11-15  Martin Baulig  <martin@ximian.com>
21841
21842         * class.c (mono_class_is_open_constructed_type): New public
21843         function; checks whether a type is an open constructed type,
21844         ie. whether it still contains type parameters.
21845         (mono_class_inflate_generic_type): If we're a type parameter and
21846         the inflated type is also a MONO_TYPE_(M)VAR, return the original
21847         type.
21848
21849         * class.h (MonoGenericInst): Added `guint32 is_open'.
21850
21851         * loader.c (method_from_methodspec): Check whether we're an open
21852         or closed constructed type and set `ginst->is_open'.
21853
21854         * reflection.c (mono_reflection_bind_generic_parameters): Check
21855         whether we're an open or closed constructed type and set
21856         `ginst->is_open'.
21857         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
21858         from open constructed types.
21859
21860 2003-11-15  Martin Baulig  <martin@ximian.com>
21861
21862         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21863         a generic instance (instead of a generic type declaration) with
21864         unbound generic parameters, bind them to our actual types.
21865
21866 2003-11-14  Martin Baulig  <martin@ximian.com>
21867
21868         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
21869
21870         * reflection.c (mono_reflection_bind_generic_parameters): If we're
21871         an interface type, populate `res->interfaces' with instantiated
21872         versions of all the interfaces we inherit.
21873
21874 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
21875
21876         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
21877         when MONO_PATH is set but doesn't contain the install dir.
21878
21879 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21880
21881         * icall.c:
21882         (ves_icall_Type_GetInterfaces): don't return an interface twice when
21883         it's also implemented in base classes. Fixes bug #50927.
21884
21885 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
21886
21887         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
21888         if this method is called from a finalizer. Fixes #50913.
21889
21890 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
21891
21892         * threads.c: Implement VolatileRead/VolatileWrite
21893
21894         * icall.c: Add new icalls for VolatileRead/VolatileWrite
21895
21896 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21897
21898         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
21899         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
21900         2.95.3.
21901
21902         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
21903         from Peter Ross (pro@missioncriticalit.com).
21904         
21905 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
21906
21907         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
21908
21909 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21910
21911         * assembly.c (mono_assembly_load_references): Disable check because it
21912         triggers on older corlibs which lots of people have.
21913
21914 2003-11-12  Jackson Harper  <jackson@ximian.com>
21915
21916         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
21917         load corlib.dll if mscorlib.dll is not found.
21918         * assembly.h: Remove corlib name define.
21919         * class.c:
21920         * domain.c:
21921         * image.c: Change corlib name to mscorlib.
21922         
21923 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
21924
21925         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
21926
21927 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
21928
21929         * appdomain.h: Added loader_optimization here to sync with the C#
21930         code, and add disallow_binding_redirects field.
21931
21932 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21933
21934         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
21935
21936         * reflection.c (mono_image_build_metadata): Fix crash on modules
21937         with no types.
21938
21939         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
21940
21941         * icall.c (ves_icall_get_method_info): Return callingConvention as
21942         well.
21943
21944         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
21945         namespaces from the EXPORTEDTYPE table as well.
21946
21947         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
21948         from all modules inside the assembly.
21949         
21950 2003-11-11  Martin Baulig  <martin@ximian.com>
21951
21952         * reflection.c (mono_reflection_bind_generic_parameters): Make
21953         this work for interfaces.
21954
21955 2003-11-11  Martin Baulig  <martin@ximian.com>
21956
21957         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
21958
21959 2003-11-11  Martin Baulig  <martin@ximian.com>
21960
21961         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
21962         "MonoInflatedMethod" and "MonoInflatedCtor".
21963
21964 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
21965
21966         * reflection.c (resolution_scope_from_image): Use the assembly table
21967         from the manifest module, since other modules don't have it.
21968
21969         * debug-helpers.c (mono_type_full_name): New helper function.
21970
21971         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
21972
21973         * image.c (mono_image_load_file_for_image): New public function which
21974         is a replacement for the load_file_for_image in class.c.
21975
21976         * assembly.c (mono_assembly_load_module): A wrapper for the function
21977         above which does assembly association and reference loading too.
21978
21979         * class.c (mono_class_from_name): Call mono_assembly_load_module.
21980
21981 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21982
21983         * appdomain.c: not all of the attributes for the full assembly name
21984         are required and the order doesn't matter. Fixes bug #50787.
21985
21986 2003-11-10  Dick Porter  <dick@ximian.com>
21987
21988         * locales.c: Use platform-endian UTF16
21989
21990 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
21991
21992         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
21993         
21994 2003-11-10  Martin Baulig  <martin@ximian.com>
21995
21996         * metadata.c
21997         (mono_metadata_load_generic_params): Make this actually work.
21998
21999         * reflection.c (mono_reflection_bind_generic_parameters): If our
22000         parent is a generic instance, pass all the `types' to it, no
22001         matter whether it has the same number of type parameters or not.
22002
22003 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
22004
22005         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
22006
22007         * assembly.c (mono_assembly_load_references): Move the image<->assembly
22008         assignment code to this function so it gets called recursively for all
22009         modules.
22010
22011         * image.c (load_modules): Remove the assembly assignment since it is
22012         now done by mono_assembly_load_references.
22013         
22014         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
22015         Add 'module' argument.
22016         (mono_module_get_types): New helper function.
22017         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
22018
22019 2003-11-08  Martin Baulig  <martin@ximian.com>
22020
22021         * class.c (mono_class_inflate_generic_method): Interface method
22022         don't have a header.
22023
22024         * reflection.c (mono_image_get_methodspec_token): Take an
22025         additional `MonoGenericInst *' argument instead of reading it from
22026         the header; this is necessary to support interfaces.
22027         (mono_image_create_token): Pass the `MonoGenericInst *' from the
22028         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
22029         (inflated_method_get_object): Take an additional `MonoGenericInst *'
22030         argument.
22031
22032         * reflection.h (MonoReflectionInflatedMethod): Added
22033         `MonoGenericInst *ginst'.
22034
22035 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
22036
22037         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
22038
22039 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
22040
22041         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
22042
22043 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
22044
22045         * reflection.c 
22046         (reflection_methodbuilder_from_method_builder):
22047         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
22048         initialize a ReflectionMethodBuilder structure.
22049         (mono_image_get_methodbuilder_token):
22050         (mono_image_get_ctorbuilder_token): New functions to emit memberref
22051         tokens which point to types in another module inside the same assembly.
22052
22053         * reflection.c: Use the new helper functions.
22054         
22055         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
22056
22057         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
22058         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
22059
22060         * reflection.c (resolution_scope_from_image): Emit a moduleref if
22061         neccesary.
22062
22063         * reflection.c (mono_image_build_metadata): Emit metadata only for the
22064         current module. Emit the manifest only for the main module.
22065
22066         * reflection.c (mono_image_create_token): Add assertion when a 
22067         memberref needs to be created.
22068
22069         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
22070
22071         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
22072         larger buffer for the custom attribute blob. Fixes #50637.
22073         
22074 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22075
22076         * threadpool.c: notify listener on async processing handles after
22077         invoking the async callback. Thanks to Zoltan.
22078
22079 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22080
22081         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
22082         avoid code duplication.
22083
22084         * reflection.h (MonoDynamicImage): New type which is currently unused,
22085         but will be used through the ref.emit code in place of 
22086         MonoDynamicAssembly.
22087
22088         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
22089         object layout.
22090
22091         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
22092         a MonoDynamicImage instead of just a MonoImage.
22093         
22094         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
22095         icalls to ModuleBuilder but keep their semantics, so they will work
22096         with moduleb->assemblyb. This will change later.
22097         
22098 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22099
22100         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
22101         object layout.
22102
22103         * reflection.c (mono_image_build_metadata): Avoid creation of a default
22104         main module, since it is now done by the managed code.
22105
22106 2003-11-03  Martin Baulig  <martin@ximian.com>
22107
22108         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
22109         `ginst->klass' here.
22110         (method_encode_methodspec): Don't use the `ginst->generic_method's
22111         klass if it's a generic instance, use `ginst->klass' in this case.
22112
22113 2003-11-03  Martin Baulig  <martin@ximian.com>
22114
22115         * reflection.c (mono_image_get_generic_method_param_info):
22116         Removed, use mono_image_get_generic_param_info() instead.
22117         (mono_image_get_type_info): Write the GenericParam table before
22118         the Method table.  This is neccessary because in the GenericParam
22119         table, type parameters of the class (ie. '!0' etc.) must come
22120         before the ones from its generic methods (ie. '!!0' etc).
22121
22122 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
22123
22124         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
22125
22126 2003-11-02  Martin Baulig  <martin@ximian.com>
22127
22128         * reflection.c (create_generic_typespec): Take a
22129         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
22130         the generic parameters from it.
22131
22132 2003-11-02  Martin Baulig  <martin@ximian.com>
22133
22134         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
22135         instead of a `MonoClassField *' since we just need the type.
22136         (create_generic_typespec): New static function.  Creates a
22137         TypeSpec token for a generic type declaration.
22138         (mono_image_get_generic_field_token): New static function.
22139         (mono_image_create_token): If we're a FieldBuilder in a generic
22140         type declaration, call mono_image_get_generic_field_token() to get
22141         the token.
22142
22143 2003-11-02  Martin Baulig  <martin@ximian.com>
22144
22145         * reflection.h
22146         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
22147         `MonoReflectionGenericInst *declaring_type' and
22148         `MonoReflectionGenericInst *reflected_type' fields.
22149
22150         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
22151         `MonoReflectionGenericInst *declaring_type' and a
22152         `MonoReflectionGenericInst *reflected_type' argument instead of a
22153         single `MonoReflectionGenericInst *type' one.  Set
22154         `res->declaring_type' and `res->reflected_type' from them.
22155         (mono_reflection_inflate_field): Likewise.      
22156
22157 2003-11-02  Martin Baulig  <martin@ximian.com>
22158
22159         * class.c (mono_class_setup_vtable): Don't store generic methods
22160         in the vtable.  
22161
22162 2003-11-02  Martin Baulig  <martin@ximian.com>
22163
22164         * reflection.h (MonoReflectionGenericInst): Added
22165         `MonoReflectionType *declaring_type'.
22166
22167         * reflection.c (mono_reflection_bind_generic_parameters): Use
22168         `if (tb->parent)' instead of `klass->parent'.
22169
22170 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
22171
22172         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
22173         with an empty ASSEMBLY table.
22174
22175         * reflection.c (mono_image_build_metadata): Avoid using the same loop
22176         variable in the inner and outer loops.
22177
22178 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
22179
22180         * metadata.h (mono_metadata_make_token): Put parentheses around macro
22181         argument.
22182
22183         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
22184         
22185         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
22186         icalls. Instead, do everything in managed code. This is needed since
22187         it is hard to restore the original domain etc. in unmanaged code in the
22188         presence of undeniable exceptions.
22189
22190         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
22191         New icalls to push and pop appdomain refs.
22192
22193 2003-10-31  Martin Baulig  <martin@ximian.com>
22194
22195         * class.c (inflate_generic_type): Renamed to
22196         mono_class_inflate_generic_type() and made it public.
22197
22198         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
22199         New interncall.
22200
22201         * loader.c (mono_field_from_memberref): Also set the retklass for
22202         typespecs.
22203
22204         * fielder.c (mono_image_get_inflated_field_token): New static
22205         method; creates a metadata token for an inflated field.
22206         (mono_image_create_token, fixup_method): Added support for
22207         "MonoInflatedField".
22208         (fieldbuilder_to_mono_class_field): New static function.
22209         (mono_reflection_inflate_field): New public function.
22210
22211         * reflection.h
22212         (MonoReflectionGenericInst): Added `MonoArray *fields'.
22213         (MonoReflectionInflatedField): New typedef.     
22214
22215 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
22216
22217         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
22218         for Solaris and other platforms without s6_addr16
22219
22220 2003-10-30  Martin Baulig  <martin@ximian.com>
22221
22222         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
22223         argument instead of two.
22224         (mono_class_inflate_generic_signature): Likewise.
22225         (inflate_generic_header): Likewise.
22226         (mono_class_inflate_generic_method): Likewise.  In addition, if
22227         `ginst->klass' is set, it becomes the new `method->klass'.
22228
22229         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
22230         field.
22231
22232         * reflection.c (encode_generic_method_sig): Write a 0xa as the
22233         first byte. [FIXME]
22234         (method_encode_methodspec): If we have generic parameters, create
22235         a MethodSpec instead of a MethodRef.
22236         (fixup_method): Added support for "MonoInflatedMethod" and
22237         "MonoInflatedCtor".
22238         (mono_image_create_token): Added support for "MonoInflatedMethod"
22239         and "MonoInflatedCtor".
22240         (inflated_method_get_object): New static function; returns a
22241         managed "System.Reflection.MonoInflatedMethod" object.
22242         (mono_reflection_bind_generic_method_parameters): Return a
22243         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
22244         (mono_reflection_inflate_method_or_ctor): Likewise.
22245         (mono_image_get_generic_method_param_info): Initialize unused
22246         fields to zero.
22247         (mono_image_get_generic_param_info): Likewise.
22248
22249         * reflection.h (MonoReflectionInflatedMethod): New public
22250         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
22251         "S.R.MonoInflatedCtor" classes.
22252
22253         * loader.c (method_from_memberref): If we're a TypeSpec and it
22254         resolves to a generic instance, inflate the method.
22255
22256 2003-10-28  Dick Porter  <dick@ximian.com>
22257
22258         * object.c (mono_runtime_run_main): Convert command-line arguments
22259         into utf8, falling back to the user's locale encoding to do so.
22260
22261 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
22262
22263         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
22264         at this time.
22265
22266         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
22267
22268         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
22269         up icalls at method definition time. Partially fixes #33569.
22270
22271 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
22272
22273         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
22274         marshalling of arrays. Fixes #50116.
22275
22276         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
22277
22278         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
22279         points to a vtable in the dying appdomain.
22280
22281         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
22282         listeners into unmanaged code inside the lock.
22283
22284         * object.c (mono_class_vtable): Turn off typed allocation in non-root
22285         domains and add some comments.
22286
22287 2003-10-25  Martin Baulig  <martin@ximian.com>
22288
22289         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
22290
22291         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
22292
22293         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
22294         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
22295         currently parsing.  Create the generic class and store it in
22296         `generic_inst->klass' before parsing the type arguments.  This is
22297         required to support "recursive" definitions; see mcs/tests/gen-23.cs
22298         for an example.
22299         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
22300         to support recursive typespec entries.
22301
22302         * class.c (mono_class_setup_parent): If our parent is a generic
22303         instance, we may get called before it has its name set.
22304         (mono_class_from_generic): Splitted into
22305         mono_class_create_from_generic() and mono_class_initialize_generic().
22306
22307 2003-10-25  Martin Baulig  <martin@ximian.com>
22308
22309         * icall.c (ves_icall_Type_BindGenericParameters): Return a
22310         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
22311         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
22312         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
22313
22314         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
22315         (create_typespec): Likewise.
22316         (mono_reflection_bind_generic_parameters): Return a
22317         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
22318         (mono_reflection_inflate_method_or_ctor): New public function.
22319
22320         * reflection.h (MonoReflectionGenericInst): New typedef.        
22321
22322 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
22323
22324         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
22325         inside the domain lock. Fixes #49993.
22326         
22327         * object.c (mono_class_vtable): When typed allocation is used, 
22328         allocate vtables in the GC heap instead of in the mempool, since the
22329         vtables contain GC descriptors which are used by the collector even
22330         after the domain owning the mempool is unloaded.
22331
22332         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
22333
22334         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
22335         reflect what it does. Also invalidate mempools instead of freeing
22336         them if a define is set.
22337
22338         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
22339         of the appdomain.
22340         
22341         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
22342         hold the finalizable objects in this domain.
22343
22344         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
22345         appdomain.
22346
22347         * appdomain.c (mono_domain_set): New function to set the current
22348         appdomain, but only if it is not being unloaded.
22349
22350         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
22351         appdomain which is being unloaded.
22352         
22353         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
22354         unloading of the root appdomain.
22355
22356         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
22357         icall to execute a method in another appdomain. Intended as a 
22358         replacement for InternalSetDomain, which can confuse the code 
22359         generation in the JIT.
22360
22361         * appdomain.c (mono_domain_is_unloading): New function to determine
22362         whenever an appdomain is unloading.
22363
22364         * appdomain.c (mono_domain_unload): New function to correctly unload
22365         an appdomain.
22366
22367         * assembly.c (mono_assembly_load_references): Check that an assembly
22368         does not references itself.
22369
22370         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
22371         domain manually, it asks the finalizer thread to do it, then waits for
22372         the result. Also added a timeout.
22373
22374         * icall.c: Register the new icalls.
22375
22376         * threads.h threads.c: Export the mono_gc_stop_world and 
22377         mono_gc_start_world functions.
22378         
22379         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
22380         function to fill out the mempool with 0x2a.
22381
22382 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
22383
22384         * reflection.h (MonoReflectionMethodAux): New structure to store
22385         information which is rarely used, thus is not in the MonoMethod
22386         structure.
22387
22388         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
22389         store the aux info.
22390
22391         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
22392         and marshalling info into the aux structure.
22393
22394         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
22395         from the aux structure.
22396
22397         * loader.c (mono_method_get_param_names): Retrieve the param names from
22398         the aux structure.
22399         
22400 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
22401
22402         * exception.h exception.c: Add AppDomainUnloadedException && fix 
22403         warning.
22404
22405 2003-10-21  Dick Porter  <dick@ximian.com>
22406
22407         * socket-io.c
22408         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
22409         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
22410
22411 2003-10-21  Martin Baulig  <martin@ximian.com>
22412
22413         * reflection.c (mono_reflection_bind_generic_parameters):
22414         `klass->parent' is NULL for interfaces.
22415
22416 2003-10-21  Martin Baulig  <martin@ximian.com>
22417
22418         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22419
22420 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
22421
22422         * exception.c (mono_exception_from_name_msg): New helper function for
22423         creating exceptions and initializing their message field.
22424
22425         * exception.c: Simplify functions using the new helper.
22426
22427         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
22428         New function.
22429
22430         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
22431         mono_raise_exception, since otherwise gcc doesn't generate the function
22432         epilog for raise_exception, confusing the stack unwinding in the JIT.
22433         Fixes #45043.
22434
22435         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
22436         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
22437         Fixes #49499.
22438
22439 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22440
22441         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
22442         utf8.
22443
22444 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
22445
22446         * icall.c: Removed GetUninitializedObject method because
22447           AllocateUninitializedClassInstance does the same.
22448
22449 2003-10-18  Martin Baulig  <martin@ximian.com>
22450
22451         * class.c (inflate_generic_signature): Renamed to
22452         mono_class_inflate_generic_signature() and made it public.
22453         (my_mono_class_from_generic_parameter): New static function; if we
22454         don't already have the generic parameter's MonoClass, create a
22455         very simple one which is just used internally in the runtime and
22456         not passed back to managed code.
22457
22458         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
22459
22460         * metadata.h (MonoMethodSignature): Moved the
22461         `MonoGenericParam *gen_params' to the MonoMethodHeader.
22462         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
22463
22464         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
22465         ves_icall_MonoMethod_GetGenericArguments(); this is now an
22466         interncall on the MonoMethod class, not on MethodInfo.
22467         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
22468         calling mono_reflection_bind_generic_method_parameters() directly.
22469
22470         * loader.c (mono_method_get_signature): If this is a MethodSpec;
22471         return the already computed `method->signature'.
22472         (method_from_methodspec): New static function to load a method
22473         from a MethodSpec entry.
22474         (mono_get_method_from_token): Call the new method_from_methodspec()
22475         for MethodSpec tokens.  
22476         (mono_get_method_from_token): If we're a generic method, load the
22477         type parameters.
22478
22479         * reflection.c (mono_image_get_memberref_token): Allow
22480         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
22481         table.
22482         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
22483         (mono_image_create_token): First check whether it's a generic
22484         method (so we'd need to create a MethodSpec), then do the other
22485         two alternatives.
22486         (mono_reflection_bind_generic_method_parameters): Return a
22487         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
22488         called directly from the interncall.
22489
22490 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
22491
22492         * reflection.c (load_public_key): Move loading of the public key
22493         into managed code.
22494
22495         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
22496
22497         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
22498         fields.
22499
22500         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
22501         culture, hash_alg and public_key. Fixes #49555.
22502
22503 2003-10-17  Martin Baulig  <martin@ximian.com>
22504
22505         * class.h (MonoGenericInst): Moved this declaration here and added
22506         `MonoMethod *generic_method'.
22507
22508         * icall.c
22509         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
22510         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
22511
22512         * metadata.c (mono_metadata_type_equal): Two types of
22513         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
22514         index; ie. don't compare the address of the `MonoGenericParam'
22515         structure.
22516         (mono_metadata_load_generic_params): Removed the `MonoMethod
22517         *method' argument.
22518
22519         * metadata.h (MonoGenericInst): Moved declaration to class.h.
22520         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
22521
22522         * reflection.c (method_encode_signature): Encode the number of
22523         generic parameters.
22524         (encode_generic_method_sig): New static function.
22525         (method_encode_methodspec): New static function; creates an entry
22526         in the MethodSpec table for a generic method.
22527         (mono_image_get_methodspec_token): New static function.
22528         (mono_image_create_token): Call mono_image_get_methodspec_token()
22529         for generic methods.
22530         (mono_reflection_bind_generic_method_parameters): New public
22531         function.  Instantiates a generic method.
22532
22533 2003-10-16  Martin Baulig  <martin@ximian.com>
22534
22535         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
22536         *gen_params' here from MonoMethodHeader.
22537
22538         * metadata.c (mono_metadata_parse_method_signature): If we have
22539         generic parameters, initialize `method->gen_params' and then set
22540         the correct `type->data.generic_param' in all the parameters.
22541
22542 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
22543
22544         * threads.c (mono_threads_get_default_stacksize): New function to 
22545         return the default stacksize.
22546
22547         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
22548         termination of the finalizer thread, since the previous method had
22549         race conditions. Fixes #49628.
22550
22551         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
22552         as for the other managed threads.
22553
22554 2003-10-16  Martin Baulig  <martin@ximian.com>
22555
22556         * class.c (inflate_generic_signature): Copy `generic_param_count'
22557         and `gen_params'.
22558
22559         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
22560         New interncall.
22561
22562         * metadata.c (mono_metadata_parse_method_signature): Actually set
22563         the `method->generic_param_count' here.
22564         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
22565
22566 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
22567
22568         * object.h: Add a new field to TypedRef to simplify the implementation
22569         of the REFANY opcodes in the JIT.
22570
22571         * icall.c: Make use of the new field.
22572
22573         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
22574         dynamically.
22575
22576 2003-10-15  Martin Baulig  <martin@ximian.com>
22577
22578         * class.c (mono_class_from_gen_param): Renamed to
22579         mono_class_from_generic_parameter() and moved most of the
22580         functionality from mono_reflection_define_generic_parameter()
22581         here; ie. we create a "real" class here.
22582         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
22583         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
22584         previously been called.
22585
22586         * class.h (MonoGenericParam): Moved the declaration of this struct
22587         here from metadata.h and added `MonoMethod *method'.
22588
22589         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
22590         interncall.
22591
22592         * loader.c (mono_get_method_from_token): If we have any generic
22593         parameters, call mono_metadata_load_generic_params() to read them
22594         from the MONO_TABLE_GENERICPAR.
22595
22596         * metadata.c (mono_metadata_load_generic_params): Added
22597         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
22598
22599         * metadata.h (MonoMethodSignature): Replaced
22600         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
22601         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
22602
22603         * reflection.c (mono_reflection_define_generic_parameter): Moved
22604         most of the functionality into the new
22605         mono_class_from_generic_parameter(); set the `method' field if
22606         we're a method parameter.       
22607
22608 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
22609
22610         * marshal.c (emit_struct_conv): if native size is 0
22611         emit no code.
22612
22613 2003-10-14  Martin Baulig  <martin@ximian.com>
22614
22615         * icall.c: The generics API has changed in the spec since it was
22616         added to System.Type; these modifications make it match the spec
22617         again.
22618         (ves_icall_Type_GetGenericParameters): Renamed to
22619         `ves_icall_Type_GetGenericArguments'.
22620         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
22621         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
22622         `ves_icall_MonoType_get_HasGenericArguments'.
22623         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
22624         `ves_icall_MonoType_get_IsGenericParameter'.
22625         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
22626         this is no interncall anymore.
22627         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
22628         `ves_icall_TypeBuilder_get_IsGenericParameter'.
22629
22630 2003-10-14  Martin Baulig  <martin@ximian.com>
22631
22632         * reflection.c (mono_reflection_bind_generic_parameters): Also
22633         inflate generic methods if we're reading the class from IL.
22634
22635 2003-10-13  Martin Baulig  <martin@ximian.com>
22636
22637         * reflection.c (mono_reflection_define_generic_parameter): This
22638         method isn't called directly from the icall anymore; take a
22639         `MonoReflectionAssemblyBuilder *' so we can use this for type and
22640         method generic parameters.
22641         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
22642         (method_builder_encode_signature): Encode generic parameters.
22643         (mono_image_get_method_info): Write generic params to the
22644         MONO_TABLE_GENERICPARAM table.
22645
22646         * reflection.h (MonoReflectionMethodBuilder): Added
22647         `MonoArray *generic_params'.
22648
22649         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
22650
22651         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
22652         wrapper for mono_reflection_define_generic_parameter().
22653         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
22654
22655 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
22656
22657         * marshal.h: Add missing function to fix build.
22658
22659         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
22660         the SetLastError pinvoke attribute.
22661
22662         * marshal.c (mono_marshal_set_last_error): New helper function called
22663         by the generated code.
22664         
22665         * marshal.c (mono_mb_emit_branch): New helper function.
22666
22667         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
22668
22669         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
22670         classes as parameters and return values of delegates. Fixes #29256. 
22671
22672 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
22673
22674         * locales.c: use gint32 in non HAVE_ICU case
22675
22676 2003-10-11  Martin Baulig  <martin@ximian.com>
22677
22678         * mono-debug.c (mono_debug_add_method): Added a workaround for
22679         bug #48591.
22680
22681 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
22682
22683         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
22684         delegates passed to native code must use the STDCALL calling 
22685         convention. Fixes #35987.
22686
22687 2003-10-10  Martin Baulig  <martin@ximian.com>
22688
22689         * class.c (inflate_generic_type): If we're inflating for a generic
22690         type instance (and not for a generic method), return
22691         MONO_TYPE_MVAR unchanged.
22692
22693 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22694
22695         * string-icalls.c: Join ignores null strings in the source array.
22696         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
22697         * threads.c: GetAvailableTheads is slightly more accurate.
22698
22699 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
22700
22701         * threads.h threads.c : add mono_threads_set_default_stacksize
22702         and pass default to CreateThread calls.
22703
22704 2003-10-09  Dick Porter  <dick@ximian.com>
22705
22706         * icall.c:
22707         * locales.h:
22708         * locales.c: Internal calls for constructing CultureInfo and
22709         related objects from libicu (if its available.)
22710
22711 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
22712
22713         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
22714
22715 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22716
22717         * threadpool.c: added an argument to async_invoke_thread that is the
22718         item to process, pass the MonoAsyncResult to the thread start function
22719         when creating a new thread. This way we don't need to acquire any lock
22720         when we're creating a new thread. Readded a semaphore for faster
22721         response times (instead of that Sleep i added).
22722
22723 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
22724
22725         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
22726         get daylight change dates better on Windows, fix handling
22727         of platforms without tm_gmtoff.
22728
22729 2003-10-06  Martin Baulig  <martin@ximian.com>
22730
22731         * class.c (inflate_generic_method): Renamed to
22732         mono_class_inflate_generic_method() and made public.
22733         (mono_class_init): Don't inflate the generic methods here.
22734         (mono_class_from_generic): Added `gboolean inflate_methods'
22735         argument.  Inflate the methods here.
22736
22737         * loader.c (mono_method_get_param_names): Ignore instances of
22738         generic types for the moment.
22739
22740         * reflection.c (fixup_method): Added support for inflated methods.
22741         (mono_image_create_token): Use mono_image_get_methodref_token()
22742         for inflated methods.
22743         (mono_custom_attrs_from_param): Ignore instances of generic types
22744         for the moment.
22745         (mono_reflection_bind_generic_parameters): New public function.
22746         Moved all the functionality from
22747         ves_icall_Type_BindGenericParameters() here and added support for
22748         dynamic types.
22749         (mono_reflection_define_generic_parameter): Initialize
22750         `klass->methods' here.
22751
22752         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
22753         functionality into mono_reflection_define_generic_parameter().
22754         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
22755         TypeBuilder, return that TypeBuilder.
22756
22757 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22758
22759         * appdomain.c: removed mono_delegate_semaphore.
22760
22761         * threadpool.c:
22762         (mono_thread_pool_add): moved hash table creation inside and the thread 
22763         creation outside of the critical region.
22764         (mono_thread_pool_finish): removed obsolete code.
22765         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
22766         continue or exit the thread depending on the queue.
22767
22768 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
22769
22770         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
22771         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
22772         handle more bool marshalling options
22773
22774 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
22775
22776         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
22777         arrays of structs. Also add a more descriptive error message when
22778         a structure member is marshalled as LPArray.
22779
22780 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
22781
22782         * marshal.c (mono_marshal_get_native_wrapper): Add support for
22783         marshalling arrays of complex types. Fixes #29098. Also remove an
22784         usused and incomplete function.
22785
22786 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
22787
22788         * gc.c: report heap_size - free_bytes as total memory allocated
22789         (bug#49362).
22790
22791 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
22792
22793         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
22794         fix timezone handling problems on Windows.
22795         
22796         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
22797         asserts when the year is outside the range handled by ms the functions.
22798
22799         * class.c (setup_interface_offsets): If the class is an interface,
22800         fill out its interface_offsets slot.
22801
22802 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22803
22804         * threadpool.c: mark threadpool threads as background.
22805
22806 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
22807
22808         * decimal.c - define DECINLINE to nothing if not using GCC
22809
22810 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
22811
22812         * assembly.c: More refcount fixes.
22813
22814 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22815
22816         * string-icalls.c: if we're not trimming, return the same string.
22817         When not splitting, don't create a new string.
22818
22819 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22820
22821         * image.c:
22822         (mono_image_open): increment the ref_count inside the critical section.
22823
22824 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
22825
22826         * image.c (mono_image_open): Fix reference counting bug.
22827
22828 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
22829
22830         * marshal.c (mono_marshal_type_size) struct alignment changed for 
22831         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
22832         64bits. Avoid leak in mono_marshal_get_native_wrapper when
22833         mono_lookup_pinvoke_call throws.        
22834
22835 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
22836
22837         * reflection.c (mono_reflection_parse_type): Fix #49114.
22838
22839         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
22840         temporary workaround for cygwin header problem.
22841
22842         * object.c (mono_object_isinst): Synchronize this with the code
22843         generated by the JIT for casts.
22844
22845 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
22846
22847         * reflection.c (encode_type): Fix #38332.
22848
22849 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
22850
22851         * marshal.c (mono_marshal_method_from_wrapper): New function to return
22852         the original method from the wrapper method.
22853
22854 2003-09-25  Martin Baulig  <martin@ximian.com>
22855
22856         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
22857         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
22858         (ves_icall_Type_get_IsGenericInstance): New interncall.
22859
22860 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
22861
22862         * object.c: fix cast warning in big endian code.
22863
22864 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
22865
22866         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
22867         
22868 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22869
22870         * assembly.c: don't call check_env from mono_assembly_load. It's
22871         already done once in mono_assemblies_init and may cause headaches when
22872         multiple threads are loading assemblies.
22873
22874 2003-09-19  Martin Baulig  <martin@ximian.com>
22875
22876         * reflection.c (mono_reflection_define_generic_parameter): Don't
22877         allocate `klass->methods', set `klass->flags' to
22878         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
22879
22880 2003-09-18  Martin Baulig  <martin@ximian.com>
22881
22882         * class.c (mono_class_init): Don't create `class->methods' if it's
22883         already initialized.
22884
22885         * metadata.c (mono_metadata_load_generic_params): Make this
22886         actually work.
22887
22888         * reflection.c (mono_reflection_define_generic_parameter): Set
22889         parent class and interfaces from the constraints.
22890
22891         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
22892         to keep this struct in sync with the declaration in TypeBuilder.cs.
22893
22894 2003-09-17  Martin Baulig  <martin@ximian.com>
22895
22896         * metadata.h (MonoType): Replaced the data's `int type_param'
22897         field with `MonoGenericParam *generic_param'.
22898         (MonoGenericParam): Added `MonoClass *klass'.
22899
22900         * class.c (mono_class_from_gen_param): Removed the
22901         `MonoImage *image' and `int type_num' arguments.
22902
22903         * metadata.c (mono_metadata_parse_generic_param): New static
22904         method; creates a MonoGenericParam which just contains the index.
22905         (do_mono_metadata_parse_type): Call
22906         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
22907         MONO_TYPE_MVAR.
22908
22909         * reflection.c (mono_image_typedef_or_ref): Generic type
22910         parameters may be in the same assembly, but never use a typedef
22911         for them.
22912         (mono_reflection_define_generic_parameter): We're now creating a
22913         "real" class for the type parameter; it's now safe to call
22914         mono_class_from_mono_type() on the class'es type, it'll do the
22915         right thing.
22916
22917 2003-09-16  Martin Baulig  <martin@ximian.com>
22918
22919         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
22920         `symfile->range_entry_size' and `symfile->class_entry_size' here;
22921         the `symfile' data structure must be fully initialized before it
22922         gets added to the table.
22923
22924 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
22925
22926         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
22927
22928         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
22929         class init trampolines.
22930
22931 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
22932
22933         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
22934         to the built-in profiler to turn off time and allocation profiling
22935         respectively.
22936
22937 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
22938
22939         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
22940         g_direct_equal.
22941
22942         * debug-helpers.c (mono_method_full_name): Print the wrapper type
22943         in human readable form.
22944
22945 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
22946
22947         * reflection.c icall.c: Fixed warnings.
22948
22949         * image.c (load_class_names): Use a temporary hash table to hold the
22950         namespaces in order to avoid doing many string comparisons.
22951
22952         * image.h: Fix typo.
22953
22954         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
22955         Pass NULL instead of g_direct_equal to the GHashTable constructor 
22956         since the NULL case is short-circuited inside g_hash_table_lookup, 
22957         leading to better performance.  
22958
22959         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
22960         obtain the first custom attribute for a given index. Depends on the
22961         CustomAttribute table being sorted by the parent field.
22962
22963         * reflection.c (mono_custom_attrs_from_index): Use the new function 
22964         for better performance.
22965
22966 2003-09-07  Martin Baulig  <martin@ximian.com>
22967
22968         * class.c (mono_class_init): If we're a generic instance, inflate
22969         all our methods instead of loading them from the image.
22970         (mono_class_from_generic): Set `class->methods = gklass->methods'.
22971
22972 2003-09-07  Martin Baulig  <martin@ximian.com>
22973
22974         * mono-debug-debugger.c: Added support for constructors.
22975
22976 2003-09-06  Martin Baulig  <martin@ximian.com>
22977
22978         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
22979         New interncall.
22980
22981         * reflection.c (mono_reflection_setup_generic_class): Call
22982         ensure_runtime_vtable() to create the vtable.
22983
22984 2003-09-05  Martin Baulig  <martin@ximian.com>
22985
22986         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
22987         MONO_TYPE_MVAR.
22988
22989 2003-09-04  Martin Baulig  <martin@ximian.com>
22990
22991         * reflection.c (mono_reflection_define_generic_parameter): Generic
22992         parameters start with zero.
22993
22994 2003-09-04  Martin Baulig  <martin@ximian.com>
22995
22996         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22997
22998         * reflection.h (MonoReflectionGenericParam): New typedef.
22999         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
23000         the generic parameters from the managed TypeBuilder.
23001
23002         * reflection.c (mono_reflection_define_generic_parameter): New function.
23003         (mono_reflection_create_runtime_class): Encode generic parameters.
23004         (mono_reflection_setup_generic_class): New function; this is
23005         called after adding adding all generic params to the TypeBuilder.
23006         (encode_type): Added MONO_TYPE_VAR.
23007
23008 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
23009
23010         * class.h class.c (mono_class_needs_cctor_run): Moved this method
23011         here from the JIT.
23012
23013         * assembly.h assembly.c: Moved the AOT loading code into an assembly
23014         load hook.
23015
23016 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
23017
23018         * reflection.h reflection.c class.h class.c: Delete duplicate 
23019         definition of mono_type_get_name () from reflection.c and export the
23020         one in class.c.
23021
23022         * class.c: Class loading fixes from Bernie Solomon 
23023         (bernard@ugsolutions.com).
23024
23025         * reflection.c: Endianness fixes from Bernie Solomon 
23026         (bernard@ugsolutions.com).
23027         
23028 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
23029
23030         * assembly.h assembly.c: Define a file format version for AOT
23031         libraries.
23032         
23033         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
23034
23035         * appdomain.h (MonoJitInfo): New field to determine whenever the
23036         code is domain neutral.
23037         
23038 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
23039
23040         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
23041
23042 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
23043
23044         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
23045         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
23046         Avoid caching the result since strings must be domain specific. Fixes
23047         #48050.
23048
23049 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
23050
23051         * marshal.c (mono_marshal_init): Make this callable multiple times
23052         since it is hard to find a correct place to call it.
23053
23054         * object.c (mono_runtime_class_init): Execute static constructors in
23055         the correct appdomain.
23056
23057         * image.c (build_guid_table): Handle the case when multiple images have
23058         the same GUID.
23059
23060 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23061
23062         * icall.c: added a couple of icalls for System.Web.
23063
23064 2003-08-28  Martin Baulig  <martin@ximian.com>
23065
23066         * icall.c (ves_icall_Type_BindGenericParameters): Use
23067         `klass->generic_inst' instead of `&klass->byval_arg' in the
23068         mono_type_get_object() call.  The returned type must be
23069         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
23070
23071 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
23072
23073         * NOTES: New file.
23074
23075         * object.c (mono_class_proxy_vtable): Make it thread safe.
23076
23077         * pedump.c: Fix warning.
23078
23079         * object.c appdomain.h: Get rid of metadata_section. 
23080         It is no longer needed and it was causing deadlocks with domain->lock.
23081
23082         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
23083
23084 2003-08-26  Martin Baulig  <martin@ximian.com>
23085
23086         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
23087
23088 2003-08-26  Martin Baulig  <martin@ximian.com>
23089
23090         * pedump.c (main): Call mono_metadata_init(),
23091         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
23092         and mono_loader_init().
23093
23094 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
23095
23096         * loader.h: Add missing include to fix build.
23097
23098         * image.h: mono_image_load_references is no more.
23099
23100         * assembly.c: Reworked assembly loading to make it really thread safe.
23101         After these changes, the assembly returned by mono_assembly_open is
23102         fully initialized, i.e. all its references assemblies are loaded.
23103
23104         * assembly.c (mono_image_load_references): Renamed to 
23105         mono_assembly_load_references, and made private, since clients no
23106         longer need to call it.
23107
23108         * class.c: Removed calls to mono_assembly_load_references, since it was
23109         a source of deadlocks.
23110
23111         * loader.h loader.c class.h class.c: Protect data structures using a 
23112         new lock, the loader lock.
23113
23114         * class.c (mono_class_setup_vtable): Create temporary hash tables and
23115         GPtrArrays only when needed.
23116
23117         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
23118         into empty structures by mcs. Fixes pinvoke7.cs.
23119         
23120         * domain.c (mono_init): Call a new initialization function.
23121
23122         * appdomain.c (mono_runtime_init): Call the new initializer function
23123         of the marshal module.
23124
23125         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
23126         inserted into empty structures by mcs. Fixes pinvoke7.cs.
23127
23128         * marshal.h marshal.c: Added locks around the wrapper caches to make
23129         this module thread safe.
23130
23131         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
23132         this argument. Fixes pinvoke1.exe.
23133
23134 2003-08-25  Lluis Sanchez <lluis@ximian.com>
23135
23136         * object.h: Added call_type field to MonoMethodMessage and the corresponding
23137         enumeration of values. Removed fields to store remote call output values in
23138         MonoAsyncResult. Not needed any more.
23139         * object.c: Initialize call_type and async_result fields in mono_message_init.
23140         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
23141         dispatching the message.
23142         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
23143         async call to finish. To do it use a message with EndInvoke call type.
23144
23145 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
23146
23147         * loader.h loader.c (mono_method_hash_marhal_info): New function which
23148         determines whenever a method has marshalling info.
23149
23150 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23151
23152         * assembly.c: fix the build on windows.
23153
23154 2003-08-22 Lluis Sanchez <lluis@ximian.com>
23155
23156         * object.cs: Fixed bug #47785.
23157
23158 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
23159
23160         * string-icalls.c (StringReplace): If their are no occurances of
23161         the old string found return a reference to the supplied
23162         string. This saves some memory and matches MS behavoir.
23163         
23164 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23165
23166         * socket-io.c: fixed compilation for systems that define AF_INET6
23167         and don't define SOL_IP/SOL_IPV6.
23168
23169 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
23170
23171         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
23172         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
23173
23174         * rawbuffer.c rawbuffer.h: Make this module thread safe.
23175
23176         * domain.c: Make this module thread safe.
23177
23178         * domain.c (mono_init): Call new initialization function.
23179
23180         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
23181         reference types too. Fixes #38812.
23182
23183         * image.c (mono_image_init): Fixed warnings.
23184
23185         * class.c (mono_class_from_typeref): Handle assembly load failure
23186         correctly.
23187
23188         * appdomain.c (add_assemblies_to_domain): Handle the case when
23189         the references of an assembly are not yet loaded.
23190
23191         * metadata.c image.c assembly.c: Moved initialization of global
23192         variables to a separate function called at startup since lazy 
23193         initialization of these variables is not thread safe.
23194         
23195         * image.c assembly.c: Made this module thread safe by adding locks in 
23196         the appropriate places.
23197
23198         * domain.c (mono_init): Call the new initialization functions of the
23199         three modules.
23200
23201 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
23202
23203         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
23204           make a direct call. It is proxy's work to make the call asynchronous.
23205           mono_delegate_end_invoke(): If the targe is a proxy, just collect
23206           the return values.
23207         * object.cs: mono_method_call_message_new(): read AsyncResult and
23208           state object from parameters list, if this info is requested.
23209         * object.h: Added fields to store remote call output values in
23210           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
23211
23212 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23213
23214         * object.h: add needed fields to MonoThread.
23215         * threads.c, threads.h: allow registering a function to cleanup data
23216         allocated per thread by the JIT.
23217
23218 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23219
23220         * loader.h: portability fix by Bernie Solomon
23221         * <bernard@ugsolutions.com>.
23222
23223 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
23224
23225         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
23226         return a MonoArray. This simplifies the code and also ensures that
23227         the cache allways contains an object reference as a value.
23228
23229         * icall.c (ves_icall_get_parameter_info): Simplified using the new
23230         function.
23231
23232 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23233
23234         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
23235         fixes a problem with byte ordering when getting the address family for
23236         a socket.
23237
23238 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
23239
23240         * .cvsignore: Added monosn.
23241
23242         * reflection.h reflection.c loader.c: Added support for parameter
23243         marshalling to dynamically created types. Fixes #47295.
23244
23245 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
23246
23247         * rand.c: remove useless warnings.
23248
23249 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23250
23251         * class.c: implemented ldtoken for methods and fieldrefs.
23252
23253 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23254
23255         * threadpool.c: when mono_async_invoke was called, no one took care of
23256         monitoring the queue. So if the method invoked took some time and we
23257         got new async invoke requests after 500 ms (the thread created waited
23258         that long in WaitForSingleObject), the new async invoke was not called
23259         until the previous one finished.
23260
23261         This is fixed now. Thanks to Totte for helping with it.
23262
23263 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23264
23265         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
23266
23267 2003-08-11  Martin Baulig  <martin@ximian.com>
23268
23269         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
23270
23271 2003-08-06  Martin Baulig  <martin@ximian.com>
23272
23273         * mono-debug-debugger.c: Added support for static fields,
23274         properties and methods.
23275
23276 2003-08-06  Martin Baulig  <martin@ximian.com>
23277
23278         * mono-debug-debugger.c: Don't store the MonoString's vtable to
23279         make this work for applications with multiple application domains.
23280
23281 2003-08-04  Martin Baulig  <martin@ximian.com>
23282
23283         * mono-debug-debugger.c: Completely reworked the type support; the
23284         most important thing is that we're now just using one single
23285         `MonoType' instance per type.
23286
23287 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
23288
23289         * mono-endian.h, mono-endian.c, icall.c: Added icall
23290         ves_icall_System_Double_AssertEndianity to assert double word endianity
23291         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
23292
23293 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23294
23295         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
23296         support, icalls and fixes.
23297
23298 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
23299
23300         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
23301         classes that are a punctuation character in .NET is not the same a
23302         g_unichar_ispunct.
23303
23304 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23305
23306         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
23307
23308 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
23309
23310         * icall.c: Add new MemCopy internalcall.
23311         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
23312         Simplified code; It is not necessary to handle all the cases here,
23313         as the C# code takes care of it.  Only handle the case of the name
23314         resource embedded into the assembly.
23315
23316         Changed signature to return the data pointer and the size of the
23317         data. 
23318
23319 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
23320
23321         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
23322         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
23323
23324 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
23325
23326         * socket-io.c: ignore EINTR error in select.
23327
23328 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
23329
23330         * class.h, class.c: removed unused subclasses field in MonoClass.
23331
23332 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
23333
23334         * icall.c: improve fix of get_base_definition(). If the parent class
23335           doesn't have the mehod, look at the parent of the parent.
23336         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
23337           to check if a parameter is an in or out parameter
23338           (PARAM_ATTRIBUTE_IN is not set by default).
23339           mono_method_return_message_restore(): Use mono_class_value_size to
23340           get the size of a value type. mono_type_stack_size (parameterType)
23341           does not return the correct value if parameterType is byRef.
23342           mono_load_remote_field(), mono_load_remote_field_new(),
23343           mono_store_remote_field(), mono_store_remote_field_new():
23344           raise exception if the remote call returns an exception.
23345
23346 2003-07-28  Martin Baulig  <martin@ximian.com>
23347
23348         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
23349         method.  This is a wrapper around mono_runtime_invoke() which
23350         boxes the instance object if neccessary.
23351
23352 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23353
23354         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
23355         metadata.h, row-indexes.h, verify.c: first cut of generics support.
23356
23357 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23358
23359         * icall.c: disable mcs bug workaround.
23360
23361 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
23362
23363         * object.c (mono_runtime_class_init): Take the metadata_section
23364         mutex before obtaining the domain mutex.
23365
23366         * appdomain.h: Added definition of metadata_section mutex here. 
23367
23368         * object.c: define metadata_mutex here.
23369
23370 2003-07-24  Ravi Pratap  <ravi@ximian.com>
23371
23372         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
23373         fixed.
23374
23375 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
23376
23377         * reflection.c: Fix bug #46669
23378
23379 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23380
23381         * exception.c:
23382         * exception.h:
23383         * icall.c:
23384         * object.h: fill in the type name for TypeLoadException.
23385
23386 2003-07-23  Ravi Pratap  <ravi@ximian.com>
23387
23388         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
23389         relationship between TypeBuilders while compiling corlib) and bug
23390         45993 (Array types returned from the runtime while compiling
23391         corlib were from the loaded corlib).
23392
23393 2003-07-22  Martin Baulig  <martin@ximian.com>
23394
23395         * mono-debug-debugger.c: Reworked the type support a bit more;
23396         distinguish between types and classes.
23397
23398 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
23399
23400         * icall.c: add IsArrayImpl icall.
23401
23402 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
23403
23404         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
23405         initializing real_size only once. Also fix bug #46602.
23406
23407 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
23408
23409         * object.c: Renamed mono_metadata_section to metadata_section.
23410
23411 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
23412
23413         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
23414           empty array if the type is an array. Fixed.
23415           ves_icall_MonoMethod_get_base_definition: if the base method
23416           is abstract, get the MethodInfo from the list of methods of
23417           the class.
23418         * reflection.c: ParameterInfo.PositionImpl should be zero-based
23419           and it was 1-based. Fixed in mono_param_get_objects.
23420
23421 2003-07-20  Martin Baulig  <martin@ximian.com>
23422
23423         * mono-debug.h: Set version number to 31.
23424         (mono_debug_init): Added `MonoDomain *' argument.
23425
23426         * mono-debug-debugger.c: Reworked the type support; explicitly
23427         tell the debugger about builtin types; pass the `klass' address to
23428         the debugger.
23429
23430 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
23431
23432         * image.c: Allow new metadata tables to be loaded without a
23433         warning. Also update the warning message to give the new constant value.
23434                 
23435 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
23436
23437         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
23438         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
23439         array type representation changes.
23440
23441 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23442
23443         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
23444         on Environment.Exit () call.
23445
23446 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
23447
23448         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
23449         requires a matching corlib.
23450
23451 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
23452
23453         * Changelog: My editor decided to add a CR to each line. Sorry about that.
23454           Committed again without the CRs.
23455         
23456 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
23457
23458         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
23459           getting it from the "this" socket instance. Did not work
23460           if the socket is a subclass of Socket.
23461           Also fixed bug #35371.
23462
23463 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23464
23465         * metadata.c: fixed size for TypedByRef.
23466         * loader.c: when searching for a method, consider the vararg amrker.
23467         * unicode.c, decimal.c: constify some arrays.
23468
23469 2003-07-15  Dick Porter  <dick@ximian.com>
23470
23471         * socket-io.c: Fixed compilation for gcc < 3.2.
23472
23473         Fixed compilation for machines that don't have AF_INET6 (thanks to
23474         Bernie Solomon <bernard@ugsolutions.com> for that part.)
23475
23476         Fixed compile warnings.
23477         
23478         Fixed formatting and line endings.
23479
23480 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
23481
23482         * socket-io.h:
23483         * socket-io.c: Added IPv6 support.
23484
23485 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
23486
23487         * class.c (mono_class_is_assignable_from): New function to implement
23488         the is_assignable_from logic. Used by mono_object_isinst, 
23489         Type::IsAssignableFrom () and the interpreter.
23490
23491         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
23492         Object, even interfaces.
23493         
23494         * object.c (mono_object_isinst): Implement in terms of 
23495         is_assignable_from.
23496
23497         * icall.c (ves_icall_type_is_assignable_from): New icall.
23498
23499 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
23500
23501         * domain.c (foreach_domain): fix compiler warning.
23502
23503 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
23504
23505         * image.c (load_metadata_ptrs): use g_strndup because strndup is
23506         not available on all plattforms
23507
23508 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
23509
23510         * image.h image.c: Store the metadata version string in MonoImage.
23511         * icall.c: New icall to retrieve the image version.
23512         * reflection.c (create_dynamic_image): Fill in the image version field
23513         * reflection.c (build_compressed_metadata): Use the image version
23514         from the image structure.
23515
23516 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23517
23518         * appdomain.c: modified comment.
23519         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
23520         That will be its last iteration when mono_gc_cleanup is called from
23521         mono_runtime_cleanup and before the domain is unloaded.
23522
23523         Fixes bug #45962.
23524
23525 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
23526
23527         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
23528         attributes.
23529
23530 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23531
23532         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
23533         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
23534         Bernie Solomon <bernard@ugsolutions.com>.
23535
23536 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23537
23538         * object.c, object.h: provide mono_object_new_fast() for faster
23539         allocation in some special cases.
23540
23541 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
23542
23543         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
23544         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
23545
23546 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
23547
23548         * threadpool.c: fix leaks.
23549
23550 2003-07-01  Dick Porter  <dick@ximian.com>
23551
23552         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
23553         using MonoGHashTables.  Fixes threadpool bug posted to list.
23554
23555 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
23556
23557         * image.h, image.c: added support to load an assembly from a byte array.
23558         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
23559         assembly bundle support.
23560
23561 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
23562
23563         * threadpool.c (mono_thread_pool_add): keep a reference to the
23564         AsyncResult to prevent GC
23565
23566 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
23567
23568         * class.c: leak fix.
23569
23570 2003-06-25  Dick Porter  <dick@ximian.com>
23571
23572         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
23573         for the async object, the WaitHandle object will close the handle.
23574         Fixes bug 45321.
23575
23576 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23577
23578         * class.c: in mono_array_class_get (), lookup from the hash with the
23579         same type we insert: this works around a bug in
23580         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
23581         lluis. The real fix will have to wait for after the release.
23582
23583 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
23584
23585         * icall.c: fix memory leak when getting type members.
23586
23587 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
23588
23589         * reflection.c: added more pubtoken special cases.
23590
23591 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
23592
23593         * class.c: handle field offset correctly when class size
23594         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
23595
23596 2003-06-20  Martin Baulig  <martin@ximian.com>
23597
23598         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
23599         *image' field.
23600
23601 2003-06-20  Martin Baulig  <martin@ximian.com>
23602
23603         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
23604
23605 2003-06-20  Martin Baulig  <martin@ximian.com>
23606
23607         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
23608         just distinguish between variables in registers and variables at
23609         an offset relative to a register.
23610
23611 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23612
23613         * icall.c: #ifdef out latest changes until mcs is fixed.
23614
23615 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23616
23617         * icall.c: return members in metadata order.
23618
23619 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
23620
23621         * icall.c: avoid infinite loop in GetTimeZoneData.
23622
23623 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
23624
23625         * icall.c: added Marshal.Prelink/All icalls.
23626
23627 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
23628
23629         * object.c, object.h: fix warnings and do some overflow checking
23630         when creating arrays.
23631
23632 2003-06-17  Dick Porter  <dick@ximian.com>
23633
23634         * file-io.h:
23635         * file-io.c: File attributes need to be tweaked slightly when
23636         passed from the managed to the w32 world.
23637
23638 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23639         * profiler.h profiler-private.h profiler.c: Rework last patch
23640         based on suggestion by Paolo.
23641         
23642 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
23643
23644         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
23645         instruction level coverage data collection.
23646         * profiler.h profiler.c (: Added new callback function which can be
23647         used by the profiler to limit which functions should have coverage
23648         instrumentation.
23649         * profiler.c (mono_profiler_load): Call g_module_build_path to
23650         generate the file name of the profiler library.
23651
23652 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
23653
23654         * profiler.c, profiler.h, profiler-private.h: added basic block 
23655         coverage profiling API.
23656
23657 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
23658
23659         * reflection.c (mono_reflection_create_runtime_class): Add support
23660         for events in dynamically generated code.
23661
23662         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
23663         not allocated.
23664
23665 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
23666
23667         * icall.c: when getting timezone info, return reasonable values if we
23668         can't get the actual data.
23669
23670 2003-06-14  Dick Porter  <dick@ximian.com>
23671
23672         * threads.c (start_wrapper): Remove the reference to the thread
23673         object in the TLS data, so the thread object can be finalized.
23674         This won't be reached if the thread threw an uncaught exception,
23675         so those thread handles will stay referenced :-( (This is due to
23676         missing support for scanning thread-specific data in the Boehm GC
23677         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
23678
23679 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
23680
23681         * reflection.c: ensure streams and tables are first allocated with
23682         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
23683
23684 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
23685
23686         * icall.c: fixed GetElementType for byrefs (bug# 44792).
23687
23688 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
23689
23690         * reflection.c (mono_reflection_create_runtime_class): Add support for
23691         properties to dynamically created classes.
23692         * reflection.c: Fix a few places where non-MonoObjects were inserted
23693         into the tokens hashtable.
23694
23695 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23696
23697         * object.c: some support to handle out of memory exceptions.
23698
23699 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
23700
23701         * marshal.c (mono_marshal_get_native_wrapper): support reference
23702         return types
23703
23704 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23705
23706         * object.h, object.c: more portability stuff from Bernie Solomon.
23707         Unexport mono_object_allocate(). Added mono_object_unbox ().
23708         Set exitcode when an unhandled exception is thrown.
23709
23710 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
23711
23712         * marshal.c (mono_marshal_get_native_wrapper): use custom
23713         marshaler for return types.
23714
23715 2003-06-10  Dick Porter  <dick@ximian.com>
23716
23717         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
23718         ip_mreq is available
23719
23720 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
23721
23722         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
23723         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
23724         by Bernie Solomon <bernard@ugsolutions.com>.
23725
23726 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
23727
23728         * gc.c (mono_gc_init): Avoid error message on shutdown when
23729         GC_DONT_GC=1 is used.
23730
23731         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
23732         New icall to return the GUID of a module.
23733
23734 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
23735
23736         * class.c: ensure instance size always includes the parent's size
23737         even whem class size is set explicitly (fixes bug#44294).
23738
23739 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23740
23741         * profiler.h, profiler.c: made the simple profiler thread-safe,
23742         get more accurate timing info. Allow the loading of an
23743         externally-developed profiler module.
23744
23745 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
23746
23747         * marshal.c (mono_marshal_get_native_wrapper): improved
23748         class/byref arguments.
23749         (mono_marshal_get_native_wrapper): better string marshaling support.
23750
23751 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
23752
23753         * class.c: ensure .pack and .size are handled correctly and
23754         simplified layout of static fields.
23755
23756 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
23757
23758         * appdomain.c
23759         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
23760
23761         * loader.c (mono_lookup_pinvoke_call): look for modules in the
23762         current directory (fix bug 44008)
23763
23764 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
23765
23766         * marshal.c (mono_marshal_get_native_wrapper): started support for
23767         custom marshalers.
23768         (mono_delegate_to_ftnptr): consider marshalling specifications
23769
23770 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23771
23772         * reflection.c, reflection.h: emit custom marshal info.
23773
23774 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23775
23776         * object.c: free the GError.
23777         * icall.c: added CloseEvent_internal.
23778         * threads.[ch]:
23779         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
23780         call.
23781
23782 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
23783
23784         * loader.c (mono_method_get_signature): Add support for dynamic
23785         assemblies.
23786
23787 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23788
23789         * reflection.c: fixed bug #43905.
23790
23791 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
23792
23793         * class.c, domain.c, icall.c, metadata.h, object.h: support for
23794         handling TypedReference and ArgIterator.
23795         * loader.c, loader.h: added function to get signature at call site.
23796
23797 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
23798
23799         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
23800         data readonly. Buglets and warning fixes. Some MethodSpec support.
23801
23802 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
23803
23804         * class.h, class.c, object.c: remove relative numbering support.
23805
23806 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
23807
23808         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
23809         free the string, until we get a chance to fix Gtk#
23810
23811 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23812
23813         * marshal.c: revert last patch.
23814
23815 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
23816
23817         * icall.c: updates for new mono_class_vtable() not calling
23818         the type constructor anymore.
23819
23820 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
23821
23822         * object.h, object.c: separate vtable creation from type
23823         initialization. Make running the .cctor thread safe.
23824
23825 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
23826
23827         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
23828
23829 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
23830
23831         * loader.c (mono_get_method): consider calling convention
23832
23833 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
23834
23835         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
23836         to return the invisible global type for a module.
23837
23838         * reflection.c (mono_image_build_metadata): Emit global fields too.
23839
23840 2003-05-20  Peter Williams  <peterw@ximian.com>
23841
23842         * loader.c (mono_lookup_internal_call): Add a few newlines.
23843
23844 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
23845
23846         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
23847         literal strings.
23848
23849         * appdomain.c (set_domain_search_path): Recalculate search path when
23850         AppDomainSetup.PrivateBinPath changes.
23851
23852         * object.c (mono_class_compute_gc_descriptor): It turns out some
23853         parts of the class libs (like System.Thread) holds pointers to
23854         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
23855         to treat native int a pointer type here.
23856         
23857 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
23858
23859         * appdomain.h, domain.c: add hashtable for jump target resolution.
23860
23861 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
23862
23863         * reflection.h reflection.c icall.c: Added new icalls 
23864         GetManifestResourceInfoInternal, GetModulesInternal and support
23865         infrastructure.
23866
23867 2003-05-16  Dick Porter  <dick@ximian.com>
23868
23869         * icall.c:
23870         * file-io.h:
23871         * file-io.c: Implement System.IO.MonoIO::GetTempPath
23872
23873 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
23874
23875         * object.c: mono_store_remote_field: little fix to previous patch.
23876
23877 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
23878
23879         * class.c: add constructors to array classes.
23880         * icall.c: special case array construction for InternalInvoke (),
23881
23882 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
23883
23884         * class.h class.c reflection.c object.c: Added support for field
23885         defaults in dynamically generated classes.
23886
23887 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23888
23889         * reflection.c: properly encode charset for ddlimport.
23890
23891 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
23892
23893         * threads.c: allow compiling without GC.
23894
23895 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
23896
23897         * appdomain.h, object.c, object.h, threads.c, threads.h: added
23898         handling of thread static data.
23899
23900 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
23901
23902         * reflection.h, reflection.c: added mono_custom_attrs_free ().
23903
23904 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
23905
23906         * class.c (mono_array_class_get): always set the serializable flags
23907         (mono_array_class_get): always set the SEALED attribute for array types
23908
23909 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
23910
23911         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
23912         attributes (fix for bug 42021).
23913
23914 2003-05-12  Dick Porter  <dick@ximian.com>
23915
23916         * gc.c: Don't run finalizers when the finalizer thread is
23917         finishing up, because the default domain has already been
23918         destroyed.
23919
23920 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
23921
23922         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
23923         value is null, we should throw an exception.   This is slightly
23924         different than the other conventions used for the constructor.
23925
23926 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23927
23928         * socket-io.c: fixed windows build.
23929
23930 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23931
23932         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
23933
23934 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
23935
23936         * object.c (mono_string_new_wrapper): Compatibility fix for MS
23937         compilers.
23938
23939 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
23940
23941         * class.c (mono_class_layout_fields): Add experimental GC aware
23942         auto layout facility. Requires class library changes to work correctly.
23943
23944         (mono_class_setup_vtable): Avoid overriding explicit interface
23945         method implementations. Fixes iface3.exe test.
23946
23947         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
23948         object reference.
23949         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
23950         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
23951
23952         * metadata.h: Add new type classification macro which determines
23953         whenever the type holds an object reference.
23954
23955 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
23956
23957         * marshal.c (mono_marshal_get_native_wrapper): cleanups
23958
23959 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
23960
23961         * gc.c (finalizer_thread): Work around a GC bug.
23962
23963 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
23964
23965         * marshal.c (emit_struct_conv): allow unions
23966
23967         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
23968
23969 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
23970
23971         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
23972
23973 2003-05-06  Martin Baulig  <martin@ximian.com>
23974
23975         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
23976
23977 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23978
23979         * socket-io.c:
23980         (Select_internal): allow NULLs, don't create arrays if not needed.
23981         Coupled with Socket.cs changes.
23982
23983         * threadpool.c:
23984         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
23985         register a finalizer for it that will close the semaphore handle. This
23986         fixes the leak and make Lupus' test run with > 4080 loops.
23987
23988 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
23989
23990         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
23991         Jerome Laban (bug #42287)
23992
23993 2003-05-02  Martin Baulig  <martin@ximian.com>
23994
23995         * debug-mono-symfile.h
23996         (MonoSymbolFile): Moved declaration into mono-debug.h.
23997         (MonoDebugMethodJitInfo): Likewise.
23998         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
23999         argument.
24000         (_mono_debug_address_from_il_offset): Take a
24001         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
24002
24003         * mono-debug.h
24004         (MonoDebugDomainData): New struct.
24005         (mono_debug_get_domain_data): New function.
24006         (mono_debug_add_method): Take an additional `MonoDomain *'
24007         argument.
24008         (mono_debug_source_location_from_address): Likewise.
24009         (mono_debug_il_offset_from_address): Likewise.
24010         (mono_debug_address_from_il_offset): Likewise.
24011
24012 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
24013
24014         * reflection.c: one more check for null type in custom attrs.
24015
24016 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24017
24018         * reflection.c: avoid warning (comparison is always false due to limited
24019         range of data type).
24020
24021 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24022
24023         * icall.c: throw an exception in Type.GetField if the argument 'name'
24024         is NULL.
24025
24026 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
24027
24028         * reflection.c: fixed handling of enums in named arguments to custom
24029         attributes (bug #42123).
24030
24031 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24032
24033         * reflection.c: use the right array element type and handle
24034         a null for a Type argument, too.
24035
24036 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
24037
24038         * reflection.c: handle arrays as arguments to custom attributes.
24039
24040 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
24041
24042         * reflection.c: handle a string value in a custom attr
24043         ctor that takes an object.
24044
24045 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
24046
24047         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
24048         (fix bug #42063)
24049
24050 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
24051
24052         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
24053
24054 2003-04-27  Martin Baulig  <martin@ximian.com>
24055
24056         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
24057         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
24058         MONO_DEBUGGER_EVENT_BREAKPOINT.
24059         (mono_breakpoint_trampoline_code): Removed.
24060         (mono_debugger_event_handler): The last argument is now a
24061         `guint32'.
24062         (mono_debugger_insert_breakpoint_full): Removed the
24063         `use_trampoline' argument.
24064         (mono_debugger_method_has_breakpoint): Likewise.
24065         (mono_debugger_trampoline_breakpoint_callback): Renamed to
24066         mono_debugger_breakpoint_callback(); take the method and
24067         breakpoint number as arguments.
24068
24069 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24070
24071         * metadata.c: fix off by one when loading parameters attributes.
24072
24073 2003-04-24  Martin Baulig  <martin@ximian.com>
24074
24075         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
24076
24077 2003-04-24  Martin Baulig  <martin@ximian.com>
24078
24079         * mono-debug-debugger.c: Moved all code which interacts with the
24080         Mono Debugger here.
24081
24082         * debug-mono-symfile.c: This code now just deals with the symbol
24083         file itself, the debugger code is now in mono-debug-debugger.c.
24084
24085 2003-04-23  Martin Baulig  <martin@ximian.com>
24086
24087         * mono-debug.c (mono_debug_source_location_from_il_offset):
24088         New method; like mono_debug_source_location_from_address(), but
24089         takes an IL offset instead of a machine address.
24090
24091 2003-04-23  Martin Baulig  <martin@ximian.com>
24092
24093         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
24094         `line' field; this is now computed by the debugger.
24095
24096 2003-04-23  Martin Baulig  <martin@ximian.com>
24097
24098         * mono-debug.[ch]: New files.  This is the new debugging interface.
24099
24100         * mono-debug-debugger.[ch]: New files.  Moved all code which
24101         interacts with the Mono Debugger here.
24102
24103 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
24104
24105         * domain.c (mono_init): initialize mono_defaults.monitor_class
24106
24107 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
24108
24109         * reflection.c (method_encode_code): Add a spicy exception to help
24110         future compiler authors.
24111
24112 2003-04-21  Martin Baulig  <martin@ximian.com>
24113
24114         * icall.c
24115         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24116         Make this work with relative pathnames; g_filename_to_uri() needs
24117         an absolute filename.
24118
24119 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
24120
24121         * icall.c: Track name changes in Object and ValueType.
24122
24123 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
24124
24125         * metadata.c (mono_type_stack_size): size should be a multiple of
24126         sizeof (gpointer)
24127
24128 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24129
24130         * gc.c:
24131         (internal_domain_finalize): moved into mono_domain_finalize. No need
24132         to create another thread because the finalizers will be run in the
24133         finalizer thread.
24134         
24135         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
24136         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
24137         to be run (MS does this too).
24138
24139 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
24140
24141         * object.c (mono_class_compute_gc_descriptor): Update comment.
24142
24143         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
24144
24145         * image.h: Add synchronized wrapper cache.
24146
24147         * image.c (do_mono_image_open): Initialize cache.
24148
24149         * reflection.c (create_dynamic_mono_image): Initialize cache.
24150
24151 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24152
24153         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
24154         ves_icall_System_Buffer_ByteLengthInternal.
24155
24156 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
24157
24158         * reflection.c: setup klass->nested_in earlier. Allow
24159         a dash in the assembly name.
24160
24161 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
24162
24163         * metadata.c (mono_type_to_unmanaged): dont access
24164         type->data.klass for MONO_TYPE_OBJECT
24165         (mono_type_to_unmanaged): consider System.Delegate class
24166
24167 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
24168
24169         * class.c: just setup supertypes in the proper place instead of
24170         initializing the full element class for arrays.
24171
24172 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
24173
24174         * class.c: ensure the element class of arrays is initialized.
24175         Setup the supertype info for array classes, too.
24176
24177 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
24178
24179         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
24180
24181 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24182
24183         * Makefile.am: re-added -m option when running cygpath. This way,
24184         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
24185         separator.
24186         * mono-config.c: same codepath for locating mono config file for WIN32
24187         and the rest.
24188         * assembly.c: if mono_assembly_setrootdir is called, don't override
24189         the value set.
24190
24191 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24192
24193         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
24194         MONO_ASSEMBLIES variable.
24195
24196 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
24197
24198         * icall.c: added Assembly::GetNamespaces() icall.
24199
24200 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24201
24202         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
24203
24204 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
24205
24206         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
24207         * object.c: fixed bug in the construction of vtable for proxies
24208
24209 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
24210
24211         * object.c (mono_array_new): Mark mono_array_new as an icall.
24212
24213 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24214
24215         * class.c: fixed test for public method when overriding interfaces.
24216         Closes bug #40970.
24217
24218 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24219
24220         * appdomain.h, domain.c: added mono_domain_foreach() to
24221         be able to access the currently loaded appdomains.
24222         * object.c: make string interning work across sppdomains.
24223         Mark some functions for use as icalls.
24224
24225 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
24226
24227         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
24228
24229         * reflection.h reflection.c: Allocate long living data using 
24230         GC_MALLOC_ATOMIC so the collector does not need to scan it.
24231
24232         * reflection.c: Double the allocation size in streams instead of
24233         increasing it, to prevent unneccesary copying on large assemblies.
24234         
24235         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
24236         creation if the assembly does not have the Run flag set.
24237
24238 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24239
24240         * class.h: avoid the C++ keywords in header files (Jerome Laban
24241         spotted and fixed this).
24242
24243 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24244
24245         * object.c:
24246         (mono_unhandled_exception): fill in the arguments for the
24247         UnhandledException event. Only trigger that event for the default
24248         domain (as MS does).
24249
24250 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
24251
24252         * object.c: Improve typed allocation stuff based on suggestions from
24253         Paolo. Also turn it on if the GC library supports it.
24254
24255 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
24256
24257         * object.c object.h class.h: Added experimental typed allocation
24258         facility using the interfaces in gc_gcj.h.
24259
24260         * os/gc_wrapper.h: Added new include files.
24261         
24262 2003-04-03  Martin Baulig  <martin@ximian.com>
24263
24264         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
24265         which is not yet enabled by default.
24266
24267         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
24268         functions.
24269         (mono_gc_lock, mono_gc_unlock): New static functions.
24270
24271         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
24272         functions; stop/start the world for the garbage collector.  This
24273         is using the windows API; we need to complete the SuspendThread()/
24274         ResumeThread() implementation in the io-layer to make this work on Unix.
24275         (mono_gc_push_all_stacks): New public function; tells the garbage
24276         collector about the stack pointers from all managed threads.
24277
24278 2003-04-03  Martin Baulig  <martin@ximian.com>
24279
24280         * object.h (MonoThread): Added `gpointer stack_ptr'.
24281
24282         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
24283
24284 2003-04-03  Martin Baulig  <martin@ximian.com>
24285
24286         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
24287
24288 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
24289
24290         * reflection.c (typebuilder_setup_fields): Initialize field.first and
24291         field.last.
24292
24293 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
24294
24295         * loader.c (mono_lookup_internal_call): Report the corlib that is
24296         out of sync.
24297
24298 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
24299
24300         * icall.c (ves_icall_type_GetTypeCode): fixed check for
24301         System.DBNull (it's class not valuetype).
24302
24303 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
24304
24305         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
24306         if the array method was already assigned a token (fixes bug#40646).
24307
24308 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
24309
24310         * reflection.c (mono_reflection_get_type): Attempt type resolve even
24311         if no assembly is given.
24312
24313 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
24314
24315         * metadata.h: Added the new tables.
24316
24317         * row-indexes.h: Added definitions for new tables.
24318
24319         * metadata.c: Add schemas for new tables, and add support for
24320         computing the sizes of them.
24321
24322         * class.c: Update for handling the new type cases.
24323
24324 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
24325
24326         * metadata.h (MONO_TYPE_IS_VOID): new macro
24327
24328 2003-03-31  Martin Baulig  <martin@ximian.com>
24329
24330         * threads.h (MonoThreadCallbacks): Added `thread_created'.
24331
24332         * threads.c (mono_thread_new_init): Call `thread_created' in the
24333         mono_thread_callbacks.
24334
24335 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
24336
24337         * loader.h: added marshalbyrefobject_class to mono_defaults
24338         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
24339         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
24340           generation of output parameters.
24341           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
24342         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
24343           contextbound and the target object belongs to the context of the caller.
24344         * object.h: added context and unwrapped_server variables in MonoRealProxy.
24345         * object.c: Implemented support for interfaces and abstract classes
24346           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
24347           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
24348
24349 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
24350
24351         * class.h class.c (mono_class_is_subclass_of): New function.
24352         
24353         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
24354         routines for most common case (calls from ArrayList::ToArray).
24355
24356         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
24357         routine so programs which call Environment::Exit() can be profiled.
24358
24359         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
24360         Added MONO_ARCH_SAVE_REGS.
24361
24362         * icall.c (ves_icall_type_is_subtype_of): Use new function.
24363
24364 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
24365
24366         * blob.h: Add a couple of new MonoType types definitions.
24367
24368         * tabledefs.h: Add a couple of new call convs.
24369
24370 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
24371
24372         * reflection.h (MonoReflectionDynamicAssembly): track changes in
24373         the layout of the class.
24374
24375         * reflection.c (alloc_table): double the size on overflow to avoid
24376         unnecessary copying.
24377
24378         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
24379         avoid filling out metadata tables and blobs. Also set mb->ilgen to
24380         null so it can be garbage collected.
24381         
24382 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
24383
24384         * reflection.c (mono_reflection_get_type): Return the resolved type
24385         only if it is in the assembly we searched.
24386
24387         * reflection.c (ensure_runtime_vtable): Initialize method slots.
24388
24389         * class.c (mono_class_setup_vtable): Set the slot of the overriding
24390         method.
24391
24392 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24393
24394         * appdomain.c:
24395         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
24396         the right one is 'file:///blah', but MS allows it.
24397         * assembly.c:
24398         (mono_assembly_open): allow 'file://blah'
24399
24400         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
24401
24402 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
24403
24404         * socket-io.c: fixes bug #40310.
24405
24406 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
24407
24408         * reflection.c (mono_reflection_parse_type): handle deeply nested
24409         types correctly.
24410
24411         * reflection.c (mono_image_create_token): Use unique token values
24412         since they will be put into a hash table.
24413
24414         * class.c (mono_class_setup_vtable): If a method occurs in more than
24415         one place in the vtable, and it gets overriden, then change the
24416         other occurances too.
24417
24418         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
24419         object as return type.
24420
24421 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24422
24423         * icall.c: Deleted "ToString" implementation for double and float
24424         because they are full implemented in managed code.
24425
24426 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24427
24428         * reflection.c, reflection.h: implemented and exported functions
24429         to retrieve info about custom attributes.
24430
24431 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24432
24433         * appdomain.c: moved Uri handling to assembly.c
24434         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
24435         work when using a file Uri in *nix and windows.
24436
24437         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
24438         GetReferencedAssemblies.
24439
24440 2003-03-18  Dick Porter  <dick@ximian.com>
24441
24442         * icall.c: Rename a couple of internal calls
24443
24444         * threads.c: Set the thread state to Stopped when a thread exits.
24445         Fixes bug 39377.
24446
24447 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
24448
24449         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
24450         New icall.
24451
24452         * object.c (mono_class_vtable): fix warning.
24453
24454 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
24455
24456         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
24457
24458         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
24459         memory.
24460         (method_encode_clauses): Create exception info structures in the right
24461         order.
24462         (mono_reflection_setup_internal_class): Initialize supertypes field.
24463
24464         * class.c object.c: Handle interfaces which implement other interfaces 
24465         correctly.
24466
24467         * class.h class.c: Move the supertypes array initialization code into 
24468         a separate function so it can be used for dynamic types too. Also call
24469         it earlier, in mono_class_init(), since it can be used before the
24470         type is initialized.
24471
24472 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24473
24474         * Makefile.am:
24475         * assembly.c:
24476         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
24477
24478         * appdomain.c:
24479         * appdomain.h:
24480         * marshal.c:
24481         * object.c: remove warnings.
24482
24483 2003-03-13  Martin Baulig  <martin@ximian.com>
24484
24485         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
24486         (MonoDebugLexicalBlockEntry): New types.
24487
24488         * debug-mono-symfile.c
24489         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
24490
24491 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24492
24493         * process.c: ret can be any non-zero value accroding to MS doc.
24494
24495 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
24496
24497         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
24498         fixing a warning for a miss-used prototype, would have cause
24499         random memory corruption.
24500
24501 2003-03-07  Martin Baulig  <martin@ximian.com>
24502
24503         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
24504         getting really annoying ....
24505
24506 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
24507
24508         * reflection.c (fixup_method): added support for array methods.
24509
24510 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
24511
24512         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
24513         (pointed out by Michael Adams).
24514
24515 2003-03-04  Dick Porter  <dick@ximian.com>
24516
24517         * icall.c: Temporarily reverted the Double and Single ToString()
24518         change, because it broke nunit.
24519
24520 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
24521
24522         * object.h, threads.h: make include files compatible with C++
24523         (patch by Jerome Laban <jlaban@wanadoo.fr>).
24524
24525 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24526
24527         * icall.c: Erased ToString helper functions for Double and Single.
24528         Now, that implementations ar all in managed code (Double and Single
24529         Formatters).
24530
24531 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
24532
24533         * appdomain.c: Added method for initializing the default context of
24534         a domain. Added internal call for getting the default context.
24535         * appdomain.h: Added context variable in MonoDomain struct.
24536         * domain.c: mono_domain_set also sets the default context of the domain
24537         * icall.c: Mapped internal method InternalGetDefaultContext.
24538         * object.c: mono_object_get_virtual_method returns always a remoting
24539         wrapper if the object is a transparent proxy.
24540         mono_runtime_invoke_array: when creating an object by calling the
24541         constructor, if the created object is a proxy, then the constructor should
24542         be called using the a remoting wrapper.
24543
24544 2003-03-03  Dick Porter  <dick@ximian.com>
24545
24546         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
24547         variable so it compiles on solaris.  Problem spotted by
24548         Christopher Taylor <ct@cs.clemson.edu>
24549
24550 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24551
24552         * appdomain.c:
24553         (get_info_from_assembly_name): don't leak value.
24554
24555         * icall.c:
24556         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
24557         result.
24558
24559 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
24560
24561         * assembly.c: export mono_image_load_references ().
24562         * class.c: handle function pointers. mono_class_from_name() now
24563         supports nested type names directly.
24564
24565 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
24566
24567         * reflection.h reflection.c: Encode already created dynamic methods 
24568         and fields correctly as a DEF instead of a REF.
24569
24570         * reflection.c: Get rid of the force_ref argument to 
24571         mono_image_typedef_or_ref since it was wrong in the first place.
24572
24573         * string-icalls.c: add error checking to string constructors according
24574         to the MSDN docs.
24575
24576         * reflection.c: Emit types in the order their TypeBuilders were 
24577         created. Previously, a new table index was assigned to each type before
24578         the tables were emitted. This was wrong because the signature blob
24579         might already refer to a type by its original table index.
24580
24581 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
24582
24583         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
24584         change.
24585         
24586 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24587
24588         * Makefile.am: make assemblies dir have \ instead of / on windows.
24589
24590 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
24591
24592         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
24593         iterate over the NESTEDCLASS table using a linear search since the
24594         table is not guaranteed to be sorted by the secondary key.
24595
24596         * class.c (mono_class_create_from_typedef): fixed up call to
24597         mono_metadata_nesting_typedef.
24598         
24599 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
24600
24601         * marshal.c (mono_string_to_byvalstr): clear the memory as
24602         suggested by Jerome Laban <jlaban@wanadoo.fr>
24603
24604 2003-02-26  Dick Porter  <dick@ximian.com>
24605
24606         * process.c: Cope with padding in .rsrc blocks
24607
24608 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
24609
24610         * metadata.h: reverted the filter_len change, it breaks reflection
24611         
24612 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
24613
24614         * metadata.h: added a new field to store the filter_len
24615         
24616
24617 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
24618
24619         * reflection.c: handle custom attributes for types and members
24620         created with Reflection.Emit (bug#38422).
24621
24622 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
24623
24624         * reflection.c: define RTSpecialName automatically for constructors for
24625         compatibility with MS.NET.
24626
24627         * reflection.c (mono_reflection_create_runtime_class): initialize
24628         nested_in field of dynamically created classes.
24629
24630 2003-02-22  Martin Baulig  <martin@ximian.com>
24631
24632         * debug-mono-symfile.h: Incremented version number.
24633
24634 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24635
24636         * object.h icall.c process.c: fix warnings.
24637
24638 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
24639
24640         * appdomain.h appdomain.c:
24641         (mono_domain_try_type_resolve): split the 
24642         name_or_tb argument into a name and a tb argument.
24643         (mono_domain_has_type_resolve): new function to check whenever the
24644         application has registered a TypeResolve event handler.
24645         
24646         * icall.c reflection.h reflection.c: move the type resolve logic into
24647         mono_reflection_get_type () so it will be invoked when 
24648         Assembly::GetType () is called.
24649
24650         * reflection.c:
24651         (mono_reflection_get_type): renamed to get_type_internal.
24652         (mono_reflection_get_type): fixed type name generation so it works 
24653         for nested types too.
24654         (mono_reflection_get_type): call has_type_resolve () to avoid the 
24655         costly type name generation if there is no resolve event handler.
24656
24657 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24658
24659         * class.c, image.c: load exported types from file references.
24660
24661 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
24662
24663         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
24664           used to cache the managed methods used to create proxies and make 
24665           remote invocation of methods.
24666         * class.h: Added in MonoVTable a flag to indicate that a class needs 
24667           to be remotely created.
24668         * object.c: Modified the method mono_class_vtable(). It now initializes 
24669           the remote flag of the vtable. Modified mono_object_new_specific(), 
24670           so now it checks the remote flag.
24671         * icall.c: Added a couple of internal methods, one for enabling instance 
24672           creation interception for a type, and one for creating objects bypassing
24673           the remote check.
24674
24675 2003-02-18  Martin Baulig  <martin@ximian.com>
24676
24677         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
24678         New interncall to get a method's metadata token.
24679
24680         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
24681         New interncall for the debugger.
24682
24683 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
24684
24685         * class.c (mono_class_setup_vtable): allocate supertype array
24686
24687 2003-02-18  Martin Baulig  <martin@ximian.com>
24688
24689         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
24690
24691 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24692
24693         * reflection.c:
24694         (assembly_name_to_aname): jump over unknown properties (i've found
24695         something like: 'type, assembly, version=xxx, custom=null, public...',
24696         so now will ignore custom=null and still get the rest of the values).
24697
24698 2003-02-17  Dick Porter  <dick@ximian.com>
24699
24700         * threads.c: Have Thread.Start() wait for a semaphore to signal
24701         that the thread has set up all its local data.  This fixes bug
24702         34323, where Abort() raced the new thread's TLS data.
24703
24704         Also removes the handle_store() call from start_wrapper, because
24705         threads are now always created suspended and there is no longer a
24706         race between the parent and child threads to store the info.
24707
24708 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
24709
24710         * image.c: explain the #- heap issue in a message, hopefully
24711         avoiding FAQs on mono-list.
24712
24713 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24714
24715         * icall.c:
24716         (GetEntryAssembly): if the domain has not invoked
24717         AppDomain.ExecuteAssembly yet, return the assembly of the default
24718         AppDomain.
24719
24720 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
24721
24722         * class.c (mono_ldtoken): make it work in dynamic assemblies.
24723
24724 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
24725
24726         * metadata.c, reflection.c: simple speedup to type hash
24727         and equals code.
24728
24729 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
24730
24731         * image.c, image.h, class.c, assembly.c: move module loading
24732         to MonoImage. When loading metadata, consider alignemnet from
24733         the start of metadata, not from the metadata address in memory.
24734
24735 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
24736
24737         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
24738         AssemblyBuilder objects. Factored out custom attribute creation into
24739         a separate function.
24740         (create_custom_attr): new function to create custom attributes.
24741
24742 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
24743
24744         * Makefile.am: Got tired of typing the full pathname to pedump.
24745         Until there is another option, am installing this.
24746
24747 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
24748
24749         * class.c (class_compute_field_layout): always set field->parent 
24750         (mono_ldtoken): use mono_defaults.fieldhandle_class;
24751
24752 2003-02-11  Dick Porter  <dick@ximian.com>
24753
24754         * threads-types.h:
24755         * monitor.c: Rewrote Monitor, making lock much faster and
24756         Pulse/Wait work as specified.  Also uses much fewer handles, and only
24757         creates them as needed.
24758
24759         * exception.c: Added SynchronizationLockException
24760
24761         * threads.c: Deleted old Monitor implementation.  The new one is
24762         in a new file.
24763
24764 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
24765
24766         * class.c: handled TypedReference type code. Set the correct size for
24767         class data. Setup interface_offsets for interface classes, too.
24768
24769 2003-02-09  Martin Baulig  <martin@ximian.com>
24770
24771         * debug-mono-symfile.h: Reflect latest symbol writer changes.
24772
24773 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
24774
24775         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
24776         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
24777         * object.c: fixed mono_object_get_virtual_method () for interfaces.
24778         * verify.c: check for code that runs after the end of the method.
24779
24780 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
24781
24782         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
24783         "System.Math::Round2".
24784         * sysmath.h: Added Floor, Round and Round2 definitions.
24785         * sysmath.c: Modified certain functions that were not 100% compliant
24786         with MS.NET (math precision) and added the implementation of Floor,
24787         Round and Round2.
24788
24789 2003-02-07  Martin Baulig  <martin@ximian.com>
24790
24791         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
24792
24793 2003-02-07  Martin Baulig  <martin@ximian.com>
24794
24795         * debug-mono-symfile.c: Reflected latest symwriter changes.
24796         (mono_debug_create_mono_symbol_file): Removed.
24797         (mono_debug_open_mono_symbol_file): Take an argument which
24798         specifies whether to create a dynamic symbol file.
24799
24800 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
24801
24802         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
24803
24804 2003-02-05  Martin Baulig  <martin@ximian.com>
24805
24806         * reflection.c (mono_image_build_metadata): Make this public,
24807         protect it against being called multiple times, don't create
24808         resources and don't build the compressed metadata here.
24809         (mono_image_create_pefile): Do this here.
24810
24811         * icall.c
24812         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
24813
24814 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24815
24816         * socket-io.c: fixed bug #36322.
24817
24818 2003-02-06  Piers Haken <piersh@friskit.com>
24819
24820         * appdomain.[ch]:
24821         * class.h:
24822         * debug-mono-symfile.c:
24823         * icall.c:
24824         * loader.c:
24825         * mono-config.c:
24826         * monosn.c:
24827         * reflection.c:
24828         * socket-io.c: warning cleanups
24829
24830 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
24831
24832         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
24833         function. works like remoting invoke, but does a check for the Proxy first.
24834
24835 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
24836
24837         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
24838
24839 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
24840
24841         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
24842         array of pointers.
24843         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
24844         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
24845
24846         * object.c (mono_store_remote_field_new): used by the new jit
24847         instead of mono_store_remote_field
24848         (mono_load_remote_field_new): used by the new jit
24849         instead of mono_load_remote_field
24850
24851 2003-02-05  Patrik Torstensson
24852
24853         * appdomain.c: changed unload to take the domain id instead
24854         of domain
24855         
24856         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
24857
24858
24859 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24860
24861         * appdomain.c: don't look for assemblies in ApplicationBase if
24862         PrivateBinPathProbe is set.
24863
24864 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24865
24866         * object.c: make the first argument in main_args contain the absolute
24867         path to the assembly. Fixes bug #37511.
24868
24869 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24870
24871         * icall.c: get correct UTC offset for countries not using daylight
24872         time saving. Fixes bug #30030.
24873
24874 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24875
24876         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
24877         and 1 are the family).
24878
24879 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
24880
24881         * icall.c (ves_icall_InternalExecute): removed wrong assertion
24882
24883         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
24884
24885 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
24886
24887         * reflection.c: added support for SignatureHelper tokens, which is
24888         needed by the Calli opcode.
24889
24890         * reflection.h: track changes to SignatureHelper class.
24891
24892         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
24893
24894 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24895
24896         * appdomain.c: fixed loading assemblies from PrivateBinPath.
24897
24898 2003-02-03  Patrik Torstensson
24899         * appdomain.[c|h], domain.c : 
24900          - Added support for getting a domain via domain id
24901          - Support for setting and getting domain from System.AppDomain 
24902            (used in cross appdomain channel)
24903          - Added support for get/set for a MonoAppContext on a thread 
24904            (Context class in System.Runtime.Remoting.Contexts),
24905          - Removed hack in Get/SetData and ExecuteAssembly.
24906         
24907         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
24908         the managed world to get control when a proxy is created.
24909
24910         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
24911         
24912 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
24913
24914         * icall.c
24915         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24916         Populate the codebase field as well.
24917
24918 2003-02-02  Martin Baulig  <martin@ximian.com>
24919
24920         * debug-mono-symfile.c
24921         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
24922         (mono_debug_symfile_add_method): Allow interncalls.
24923
24924 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24925
24926         * icall.c: throw parse exception if strtod fails or the string is empty.
24927
24928 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
24929
24930         * marshal.c: handle object type separately from defined
24931         class types.
24932
24933 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
24934
24935         * marshal.c: handle NATIVE_LPSTR for strings when it's
24936         explicitly specified.
24937
24938 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
24939
24940         * reflection.c, reflection.h, icall.c: setup the reflection
24941         handle cache for ModuleBuilders and AssemblyBuilders.
24942
24943 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
24944
24945         * reflection.c (reflection_methodbuilder_to_mono_method): set
24946         pinvoke flag
24947
24948 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24949
24950         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
24951
24952 2003-01-29  Dick Porter  <dick@ximian.com>
24953
24954         * threads.c: No need for the fake_thread kludge now that Thread
24955         doesn't run a class constructor
24956         
24957 2003-01-29  Dick Porter  <dick@ximian.com>
24958
24959         * threads.c: Use g_direct_hash instead of the rather bogus
24960         g_int_hash
24961
24962 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
24963
24964         * marshal.c (mono_marshal_get_native_wrapper): add check for null
24965         (fix pinvoke12.exe)
24966         (mono_marshal_get_struct_to_ptr): generate valid IL code
24967         (mono_marshal_get_ptr_to_struct): generate valid IL code
24968         (*): correctly set sig->pinvoke, we need to memdup the signature
24969         to do that
24970
24971 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
24972
24973         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
24974         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
24975
24976 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
24977
24978         * profiler.c: provide more callers information.
24979
24980 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
24981
24982         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
24983
24984         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
24985
24986         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
24987
24988 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
24989
24990         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
24991         exception instead of going into an infinite loop on dates which it 
24992         can't yet handle.
24993
24994         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
24995         out-of-range exception if needed.
24996
24997         * class.c (mono_class_setup_vtable): allow a virtual method to provide
24998         an implementation for an interface method and to override an inherited
24999         method at the same time. 
25000         Imagine a scenario when a virtual method is used to override a
25001         virtual abstract method in a parent class, and this same method 
25002         provides an implementation for an method inherited from an interface. 
25003         In this case, the interface resolution code will set im->slot, which 
25004         means that the virtual method override pass will skip this method 
25005         which means a pointer to the abstract method inherited from the parent
25006         will remain in the vtable of this non-abstract class.
25007
25008         * class.c: (mono_class_setup_vtable): continue search for a real 
25009         method if only an abstract method is found.     
25010
25011 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
25012
25013         * reflection.c: add size to encoding for ByValStr and ByValArray
25014         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
25015
25016 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25017
25018         * class.c (mono_class_setup_vtable): pass the override info as an
25019         argument.
25020
25021         * class.c (mono_class_setup_vtable): set the slot of overriding methods
25022         correctly.
25023         
25024         * reflection.c (ensure_runtime_vtable); add support for method 
25025         overrides.
25026         
25027 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25028
25029         * reflection.c (resolution_scope_from_image): Hack to work to work with
25030         dynamic assemblies.
25031
25032         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
25033         added a 'force_ref' argument to force this function to allways return 
25034         a TypeRef. This is needed by mono_image_get_memberref_token ().
25035         
25036 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25037
25038         * reflection.c (mono_image_get_type_info): interfaces really don't have
25039         a parent.
25040
25041         * reflection.c (mono_image_basic_init): fill out missing fields of
25042         image structure.
25043
25044         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
25045         dynamic assemblies. This is required so dynamic assemblies show up in
25046         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
25047         Type::GetType() etc. This is consistent with MS behaviour.
25048
25049         * image.c image.h reflection.c: add newly created classes to the name 
25050         cache so mono_class_get () will find them.      
25051
25052 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
25053
25054         First part of changes to get IKVM.NET running under mono.
25055         
25056         * appdomain.h, appdomain.c: added new function 
25057         mono_domain_try_type_resolve() which will emit TypeResolve events. 
25058         This function will call AppDomain::DoTypeResolve to do the actual work.
25059
25060         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
25061         moved existing code dealing with dynamic tokens to a new function 
25062         called mono_reflection_lookup_dynamic_token (). This function will 
25063         raise TypeResolve events when appropriate. Since reflection.c is not 
25064         part of libmetadata, a new hook function called 
25065         mono_lookup_dynamic_token() is added to class.c which will call this.
25066
25067         * assembly.h assembly.c: make the invoke_load_hook function public,
25068         so it can be called for dynamic assemblies.
25069
25070         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
25071
25072         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
25073         type isn't found.
25074
25075         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
25076         MonoGHashTable, since it contains pointers to objects which the GC 
25077         needs to track.
25078
25079         * assembly.c (search_loaded): remove unused variable.
25080         
25081 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
25082
25083         * object.c: fixed issue exposed by gcc-generated IL programs
25084         that use RVA data for pointers.
25085
25086 2003-01-25  Martin Baulig  <martin@ximian.com>
25087
25088         * threads.c (start_wrapper): Moved the initialization of
25089         `start_func' above the mono_new_thread_init() call to which we
25090         pass it as argument.
25091
25092 2003-01-24  Martin Baulig  <martin@ximian.com>
25093
25094         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
25095         the MonoThread pointer.
25096
25097 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
25098
25099         * icall.c: Rename `PowImpl' to Pow.
25100
25101 2003-01-23  Dick Porter  <dick@ximian.com>
25102
25103         * threads.c (start_wrapper): Create a Thread object if needed, so
25104         the Main() thread can do the class initialisation in a subthread
25105         that has been set up to allow managed code execution.
25106
25107         Pass the thread ID instead of the MonoThread pointer to the thread
25108         start and attach callbacks.  This change is required, because the
25109         jit thread start callback must be called _before_ the Thread
25110         object can be created.
25111         
25112         (mono_thread_init): Removed much object creation code that is no
25113         longer needed.  No managed code is called from here now.
25114
25115         * object.c (mono_runtime_exec_managed_code): Create a subthread
25116         for Main, and call back to the runtime to use it.
25117         Set the exit code when Main exits.
25118
25119         * gc.c: Make sure domain finalisation happens in a subthread.
25120         Re-enable threaded GC, fixing bug 31333 (again).
25121
25122         * environment.c: System.Environment internall calls (so far just
25123         ExitCode is here, the others are still in icall.c)
25124
25125         * appdomain.c (mono_runtime_cleanup): All threads running managed
25126         code should have finished before mono_runtime_cleanup() is
25127         reached, so no need to clean up threads.
25128
25129 2003-01-22  Martin Baulig  <martin@ximian.com>
25130
25131         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
25132         `gpointer func' arguments.      
25133         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
25134         but added `MonoThread *thread' argument.
25135         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
25136
25137         * threads.c (mono_new_thread_init): Added `gpointer func' argument
25138         and pass it to the mono_thread_start_cb callback.
25139         (mono_install_thread_callbacks): New public function to install a
25140         set of callbacks which are set by the debugger.
25141         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
25142
25143 2003-01-22  Martin Baulig  <martin@ximian.com>
25144
25145         * Makefile.am: Install debug-mono-symfile.h.
25146
25147 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
25148
25149         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
25150
25151 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
25152
25153         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
25154         * class.c (mono_ptr_class_get): correctly set access levels of pointers
25155         (mono_array_class_get): correctly set access levels of arrays
25156
25157 2003-01-20      Patrik Torstensson
25158         * image.h (MonoAssemblyName): changed major, minor, build, revision
25159         from signed to unsigned.
25160
25161 2003-01-20  sean kasun <skasun@azstarnet.com>
25162
25163         * reflection.c (load_cattr_value): Now this handles
25164         MONO_TYPE_SZARRAY.  Fixes bug #35629
25165
25166 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
25167
25168         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
25169         integer value
25170
25171 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25172
25173         * decimal.c: fixed bug #26056.
25174
25175 2003-01-17  Martin Baulig  <martin@ximian.com>
25176
25177         * gc.c: Raise an ExecutionEngineException instead of using g_error().
25178
25179 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25180
25181         * exception.[ch]:
25182         (mono_get_exception_type_initialization): new function.
25183
25184         * object.c: throw a TypeInitializationException when an exception is
25185         thrown invoking the class constructor.
25186
25187 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25188
25189         * reflection.c: fixed attribute reading.
25190
25191 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25192
25193         * icall.c:
25194         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
25195         provided, look for the type in the calling assembly and then in
25196         mscorlib; if the assembly name is provided, only try that one.
25197
25198 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
25199
25200         * object.c: register the vtable before there is a chance it's
25201         queried again recursively.
25202
25203 2003-01-13  Duncan Mak  <duncan@ximian.com>
25204
25205         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
25206         gc-internal.h. 
25207         
25208 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
25209
25210         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
25211
25212 2003-01-11  Martin Baulig  <martin@ximian.com>
25213
25214         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
25215         this to 20 for the release.
25216
25217 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
25218
25219         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
25220
25221         * loader.c (mono_method_get_marshal_info): bug fix
25222
25223         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
25224         structures with explicit layout
25225
25226 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
25227
25228         * profiler.c: made the output more readable (and sorted). 
25229         Added caller information for the allocation profiler.
25230
25231 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
25232
25233         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
25234
25235 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25236
25237         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
25238         to get value types.
25239         
25240 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
25241
25242         * object.c, profiler.h, profiler.c, profiler-private.h:
25243         Added object allocation profiler.
25244
25245 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
25246
25247         * reflection.h, reflection.c: handle global methods.
25248         Compress blob entries.
25249
25250 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
25251
25252         * marshal.c: fix compilation.
25253
25254 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
25255
25256         * loader.c (mono_method_get_marshal_info): impl.
25257
25258         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
25259
25260 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25261
25262         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
25263         for reference types.
25264
25265 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
25266
25267         * loader.c: fixed off by one error in loaded parameter names.
25268
25269 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
25270
25271         * marshal.c (mono_marshal_get_icall_wrapper): like
25272         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
25273         instead of a MonoMethod.
25274
25275 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25276
25277         * decimal.c: fixed bug #36537.
25278
25279 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
25280
25281         * marshal.c: throw a missing method exception if a
25282         P/Invoke method is not found.
25283
25284 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
25285
25286         * icall.c: allow a null this for constructors.
25287
25288 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
25289
25290         * icall.c: raise the proper exceptions if the arguments to the
25291         internal Invoke are incorrect.
25292
25293 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
25294
25295         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
25296
25297 2003-01-03  Martin Baulig  <martin@ximian.com>
25298
25299         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
25300
25301 2002-12-31  Martin Baulig  <martin@ximian.com>
25302
25303         * debug-mono-symfile.c: Completely rewrote the type section.
25304         Instead of using individual malloc()ed fields, we use one big
25305         continuous memory area and offsets into this area.
25306         See the comments in the source code for details.
25307
25308 2002-12-30  Martin Baulig  <martin@ximian.com>
25309
25310         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
25311
25312 2002-12-30  Martin Baulig  <martin@ximian.com>
25313
25314         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
25315         line number table in this data blob instead of using an external
25316         pointer.
25317
25318 2002-12-28  Martin Baulig  <martin@ximian.com>
25319
25320         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
25321
25322 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
25323
25324         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
25325         as a boxed return type.
25326
25327 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
25328
25329         * appdomain.c
25330         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
25331         g_build_filename to properly get separators on the filename created.
25332
25333         * object.h: Small change, introduce MonoMarshalByRefObject to
25334         track the layout of that structure in the C# universe as we make
25335         changes there.
25336
25337 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
25338
25339         * object.c: removed assert to allow static fields on interfaces.
25340         * loader.c: a TypeSpec may be used for any type, not just arrays.
25341
25342 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
25343
25344         * class.c, class.h: added mono_class_array_element_size ().
25345         Ignore static methods in interfaces.
25346
25347 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25348
25349         * threads.c: fixed the build under cygwin.
25350
25351 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
25352
25353         * reflection.c: handle nullref constants. Allocate keys for
25354         reflection handles with the GC.
25355
25356 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25357
25358         * threads.c, threads.h: added mono_thread_get_abort_signal()
25359         to get a suitable signal for thread abort.
25360
25361 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
25362
25363         * metadata.c: fix handling of ExportedType table.
25364
25365 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25366
25367         * icall.c: added WriteWindowsDebugString internal call.
25368
25369 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25370
25371         * reflection.h: added fields to match C# implementation.
25372
25373 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25374
25375         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
25376
25377 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
25378
25379         * gc.h, gc-internal.h: Rename header for GC internal calls to
25380         gc-internal.h from gc.h as to not clash with Boehm GC having its
25381         header installed as <gc.h> in outside include paths.
25382         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
25383         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
25384
25385 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25386
25387         * icall.c: assign minor, build and revision in FillName.
25388
25389 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
25390
25391         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
25392         Added support for running code generated by Reflection.Emit.
25393
25394 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25395
25396         * appdomain.c: check for NULL argument in LoadFrom.
25397
25398 2002-12-10  Dick Porter  <dick@ximian.com>
25399
25400         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
25401
25402 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25403
25404         * appdomain.c: fix buglet when building exe file name.  Handle full
25405         assembly name (needed after latest changes to AssemblyName).
25406         * image.c:
25407         (mono_image_close): free some hashtables.
25408
25409 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
25410
25411         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
25412         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
25413         on some systems (redhat 7.3) 
25414
25415 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
25416
25417         * threads.c: delete the critical section of a sync block,
25418         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
25419
25420 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
25421
25422         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
25423
25424 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25425
25426         * appdomain.[ch]: handle the assembly preload event to try loading the
25427         assemblies using the paths we have in the current domain.
25428
25429         * assembly.[ch]: created an assembly preload hook that is called to try
25430         loading the assembly by other means that the ones provided here.
25431
25432         * domain.c: initialize the domain search path.
25433
25434         From now on, assemblies (TODO: except corlib and System) are loaded
25435         according to these rules when using mono_assembly_load ():
25436
25437                 1. It tries to load the assembly from the ApplicationBase
25438                 of the current domain appending .dll and .exe (TODO: have to
25439                 try loading from name/name.dll and name/name.exe).
25440
25441                 2. It tries the search path specified in PrivateBinPath for the
25442                 current domain (if any).
25443
25444                 3. Previous behavior.
25445
25446 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
25447
25448         * icall.c: implemented GetInterfaceMap() related icall.
25449         * domain.c, loader.h: load MethodInfo in mono_defaults.
25450
25451 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
25452
25453         * gc.c: disable the finalizer thread for now, untill all the issues
25454         with it are resolved.
25455
25456 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
25457
25458         * string-icalls.c: handle embedded nulls in string ctor when the
25459         length is specified.
25460
25461 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
25462
25463         * class.c: look for explicit interface implementation in parent
25464         classes, too.
25465
25466 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
25467
25468         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
25469
25470 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
25471
25472         * gc.c: protect handles with a critical section.
25473
25474 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25475
25476         * icall.c:
25477         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
25478         parameters. If no assembly specified, try getting the type from all
25479         the assemblies in the current domain, else, load the assembly and get
25480         the type from it.
25481
25482 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25483
25484         * marshal.c: applied patch from Aleksey Demakov that fixes
25485         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
25486
25487 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25488
25489         * icall.c: fixed get_location.
25490
25491 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
25492
25493         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
25494         declarations to make it work with older gcc. 
25495
25496         * loader.c (mono_get_method): set signature->pinvoke for native calls
25497
25498 2002-11-20  Dick Porter  <dick@ximian.com>
25499
25500         * threads.c (mono_thread_init): Set the main thread's handle
25501
25502 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
25503
25504         * gc.c: allow compilation without GC support. Changed to match the
25505         mono coding style.
25506
25507 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
25508
25509         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
25510
25511 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
25512
25513         * reflection.c: set a public key token on the core assemblies.
25514
25515 2002-11-18  Dick Porter  <dick@ximian.com>
25516
25517         * threads.c: Split out some thread initialisation so that other
25518         files can set the start callback function.
25519
25520         * gc.c: Run finalisers in a separate thread, to avoid stack
25521         overflow.  Fixes bug 31333.
25522
25523         * appdomain.c: Set up GC finalisation thread.
25524
25525         * reflection.c: 
25526         * object.c: 
25527         * domain.c: Use gc.h macros for GC_malloc
25528         
25529 2002-11-15  Dick Porter  <dick@ximian.com>
25530
25531         * threadpool.c: 
25532         * threads.c:
25533         * appdomain.c: Removed mono_runtime_init_with_attach(),
25534         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
25535         merging the extra parameter with the existing function.  Removed
25536         unneeded code in mono_thread_attach().
25537
25538 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
25539
25540         * image.c (mono_image_loaded_by_guid): a method to get loaded
25541         images by guid. 
25542         (load_metadata_ptrs): we store the guid as string.
25543
25544 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
25545
25546         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
25547
25548         * metadata.c (mono_guid_to_string): imported method form Zoltan
25549         Varga (slightly modified)
25550
25551         * assembly.c (mono_assembly_open): load precompiled code
25552
25553         * loader.h (MonoMethod): we store the method token for use in the
25554         aot compiler. 
25555
25556 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25557
25558         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
25559         the hook function called when an assembly is loaded.
25560         
25561         * domain.c: Modified file.
25562         (mono_domain_assembly_load): removed hash table insertion of assemblies.
25563
25564         Fixes bug #33196.
25565
25566 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
25567
25568         * reflection.c: Map PEFileKind to the value expected by the WinNT
25569         image loader. 
25570
25571 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25572
25573         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
25574         Read until the buffer is filled completely.
25575
25576 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25577
25578         * icall.c: implemented MonoType.InternalGetEvent ().
25579
25580 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25581
25582         * appdomain.c: implemented InitAppDomainSetup. Delayed
25583         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
25584         the entry_assembly.
25585
25586         * assembly.c: base_dir is now an absolute path ending with
25587         G_DIR_SEPARATOR.
25588
25589         * icall.c: modified get_location according to the above changes.
25590
25591         * object.c: init AppDomain.SetupInformation for the default domain after
25592         we have the entry assembly.
25593
25594         * domain.c: when unloading a domain, setup = NULL.
25595
25596 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
25597
25598         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
25599
25600 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
25601
25602         * object.h, object.c: introduced mono_object_get_virtual_method ()
25603         to lookup the method invoked on an object when a callvirt is done on
25604         a method.
25605         * icall.c: make MethodInfo::Invoke() always do a virtual call.
25606
25607 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25608
25609         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
25610         current domain when loaded an assembly and failed to load it.
25611
25612         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
25613
25614 2002-10-31  Dick Porter  <dick@ximian.com>
25615
25616         * icall.c: 
25617         * file-io.h: 
25618         * file-io.c: Return the error status in a parameter, as the
25619         GetLastError() value has long since been blown away if we try and
25620         look it up in a subsequent internal call invocation.  Delete the
25621         GetLastError() internal call, because it's useless.
25622
25623 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
25624
25625         * class.[ch]: added cast_class to fix bug 29517
25626
25627 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
25628
25629         * marshal.c: create valid IL code in the filter clause:
25630         the new JIT is less forgiving:-)
25631
25632 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25633
25634         * icall.c: removed get_property internal call.
25635
25636 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
25637
25638         * appdomain.h domain.c: Added an ID to appdomains.
25639         
25640         * threads.c threads.h icall.c: Implement icall
25641         Thread:GetDomainID(), and remove unused icall 
25642         CurrentThreadDomain_internal.
25643
25644 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25645
25646         * icall.c: Don't recurse through the base types in GetConstructor.
25647         Fixes bug #32063. 
25648
25649 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
25650
25651         * mempool.h, mempool.c: added mono_mempool_empty() and
25652         mono_mempool_stats().
25653
25654 2002-10-23  Dick Porter  <dick@ximian.com>
25655
25656         * file-io.c: 
25657         * file-io.h: 
25658         * icall.c: Added MonoIO.GetFileType internal call
25659
25660 2002-10-17  Dick Porter  <dick@ximian.com>
25661
25662         * appdomain.c (mono_runtime_cleanup): Don't signal the async
25663         delegate semaphore before waiting for all threads to finish,
25664         because new threads can also call async delegates.  Fixes bug
25665         32004.
25666
25667         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
25668         of 3 seconds, in case another async job is queued.  (This part is
25669         needed because the bug fix reintroduced the 3s exit lag.)  This
25670         makes the mono_runtime_shutdown flag superfluous.
25671
25672 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
25673
25674         * reflection.c: include ehader size in method section headers.
25675         Really check for suplicated modules entries.
25676
25677 2002-10-17  Martin Baulig  <martin@gnome.org>
25678
25679         * debug-mono-symfile.c: Added back support for locals.
25680
25681 2002-10-14  Martin Baulig  <martin@gnome.org>
25682
25683         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
25684         MONO_TYPE_VOID.
25685
25686 2002-10-14  Martin Baulig  <martin@gnome.org>
25687
25688         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
25689         mono_class_get() instead of looking in the class cache. 
25690
25691 2002-10-13  Martin Baulig  <martin@gnome.org>
25692
25693         * debug-mono-symfile.c: Set version number to 28, include the
25694         signature in method names.
25695
25696 2002-10-13  Martin Baulig  <martin@gnome.org>
25697
25698         * debug-mono-symfile.h: Set version number to 27.
25699
25700 2002-10-11  Martin Baulig  <martin@gnome.org>
25701
25702         * gc.c: Don't register/unregister NULL pointers as disappearing links.
25703
25704 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
25705
25706         * metadata.c, metadata.h: added helper function to allocate signatures.
25707
25708 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25709
25710         * icall.c: added internal call to get the location of machine.config.
25711
25712 2002-10-08  Martin Baulig  <martin@gnome.org>
25713
25714         * debug-mono-symfile.c: Ignore classes with a pending init for the
25715         moment.
25716
25717 2002-10-03  Dick Porter  <dick@ximian.com>
25718
25719         * threads.c: Freebsd pthread_t is a pointer
25720
25721 2002-10-03  Dick Porter  <dick@ximian.com>
25722
25723         * socket-io.c: Implemented GetHostName_internal
25724
25725 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25726
25727         * mono-config.c:
25728         (mono_config_parse_file): don't leak the text.
25729
25730 2002-10-02  Martin Baulig  <martin@gnome.org>
25731
25732         * debug-mono-symfile.c: Added support for methods.
25733
25734 2002-10-01  Martin Baulig  <martin@gnome.org>
25735
25736         * debug-mono-symfile.c: Don't emit methods and line numbers for
25737         the dynamic symbol file, just write the type table.  We can easily
25738         have an external helper program which creates a symbol file for an
25739         IL file.        
25740
25741 2002-10-01  Dick Porter  <dick@ximian.com>
25742
25743         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
25744         Only add the handle to the cleanup array when we're about to
25745         launch the thread.  Bug 31425 deadlocked when the test was run on
25746         mono under w32.
25747
25748 2002-10-01  Martin Baulig  <martin@gnome.org>
25749
25750         * debug-mono-symfile.c: Added support for properties.
25751
25752 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
25753
25754         * reflection.c: unaligned store fix from Mark Crichton
25755         <crichton@gimp.org>.
25756
25757 2002-09-27  Martin Baulig  <martin@gnome.org>
25758
25759         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
25760         New interncall.
25761
25762 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
25763
25764         * assembly.h, assembly.c: use a sane API to hook into the assembly
25765         loading process instead of a useless special-purpouse hack
25766         (ngen needs a hook, too, for example).
25767
25768 2002-09-27  Dick Porter  <dick@ximian.com>
25769
25770         * threads.c (mono_thread_init): Call GetCurrentProcess() so
25771         io-layer can set up some process handle info.  Not needed on w32,
25772         but doesn't hurt either.
25773
25774         * process.c: Pass the program name in the second parameter to
25775         CreateProcess, so the path is searched.  Include the working
25776         directory. Implemented process name, process enumeration, and some
25777         process detail internal calls.
25778         
25779         * icall.c: Added internal calls for process lookup, and some
25780         process details
25781
25782 2002-09-26  Martin Baulig  <martin@gnome.org>
25783
25784         * assembly.c (mono_install_open_assembly_hook): New global
25785         function to install a function to be invoked each time a new
25786         assembly is loaded.
25787         (mono_assembly_open): Run this callback function if set.
25788
25789         * debug-mono-symfile.c: Put back line numbers for the dynamic
25790         symbol file and also record the .il file as source file.  This
25791         allows us to install the temporary symbol file as `file.dbg' just
25792         like a compiler-generated one.
25793
25794 2002-09-26  Nick Zigarovich <nick@chemlab.org>
25795
25796         * Corrected typo in gc.c (BOHEM vs BOEHM).
25797
25798 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25799
25800         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
25801         GetProperties. Also avoid calling g_slist_length in GetProperties and
25802         GetMethods.
25803
25804 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
25805
25806         * reflection.c: avoid unaligned stores (bug spotted by
25807         Mark Crichton  <crichton@gimp.org>).
25808
25809 2002-09-25  Martin Baulig  <martin@gnome.org>
25810
25811         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
25812         instead of guint64 for addresses and added prologue/epilogue info.
25813
25814 2002-09-25  Martin Baulig  <martin@gnome.org>
25815
25816         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
25817         store line number info.  For the dynamic symbol file, we only need
25818         to provide the JIT generated dynamic line number info for the dynamic
25819         symbol file.
25820
25821 2002-09-25  Martin Baulig  <martin@gnome.org>
25822
25823         * debug-mono-symfile.h: Incremented version number.
25824
25825 2002-09-24  Martin Baulig  <martin@gnome.org>
25826
25827         * class.c (mono_debugger_class_init_func): New global function
25828         pointer variable.
25829         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
25830         call it.
25831
25832         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
25833         function.  This is called via the mono_debugger_class_init_func
25834         hook to add all types to the dynamic type table.
25835         (ves_icall_MonoDebugger_GetType): New interncall to get a class
25836         from its metadata token.
25837
25838         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
25839         New interncall for the debugger.
25840
25841 2002-09-24  Nick Drochak <ndrochak@gol.com>
25842
25843         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
25844         before using it in case it is null.
25845         
25846 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
25847
25848         * metadata.c: allow custom modifiers in local var signatures
25849         (bug spotted by Zoltan Varga).
25850
25851 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
25852
25853         * class.c: deal with the <Module> class that may have a NULL vtable.
25854         Eliminate warnings.
25855
25856 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
25857
25858         * image.c, image.h: more strong name helpers.
25859         * monosn.c: more work: convert pem keys to cryptoapi format.
25860
25861 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
25862
25863         * string-icalls.c: speedup IndexOf.
25864
25865 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25866
25867         * icall.c: updates from Zoltan.2.Varga@nokia.com.
25868
25869 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
25870
25871         * icall.c: cleanup: use mono_object_domain ().
25872
25873 2002-09-23  Martin Baulig  <martin@gnome.org>
25874
25875         * debug-mono-symfile.c: Improved type support.
25876
25877 2002-09-22  Martin Baulig  <martin@gnome.org>
25878
25879         * debug-mono-symfile.c: Added support for reference types and strings.
25880
25881 2002-09-22  Martin Baulig  <martin@gnome.org>
25882
25883         * debug-mono-symfile.c: Started to work on the type table.
25884
25885 2002-09-21  Martin Baulig  <martin@gnome.org>
25886
25887         * debug-mono-symfile.c: Largely reworked the symbol table format.
25888         The symbol table is now incrementally updated each time a new
25889         method is added.  We're now also using our own magic and version
25890         so that you don't need to recompile all your classes if the
25891         dynamic table changes.
25892         (mono_debug_update_mono_symbol_file): Removed.
25893         (mono_debug_symfile_add_method): New function to add a method.
25894
25895 2002-09-21  Martin Baulig  <martin@gnome.org>
25896
25897         * icall.c
25898         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
25899         New interncall.
25900
25901         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
25902         New interncall to get a method from its metadata token.
25903
25904 2002-09-21  Martin Baulig  <martin@gnome.org>
25905
25906         * debug-mono-symfile.c: Create type table.
25907
25908 2002-09-20  Martin Baulig  <martin@gnome.org>
25909
25910         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
25911
25912 2002-09-20  Martin Baulig  <martin@gnome.org>
25913
25914         * debug-mono-symfile.c: Provide information about params and locals.
25915
25916 2002-09-20  Martin Baulig  <martin@gnome.org>
25917
25918         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
25919         New interncall.
25920
25921         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
25922         interncall to get a method from its metadata token.
25923
25924 2002-09-20  Martin Baulig  <martin@gnome.org>
25925
25926         * debug-mono-symfile.c: Added a few checks for method->header
25927         being non-NULL.  This should never happen, but for the moment
25928         let's use a g_warning() rather than a g_assert().
25929
25930 2002-09-19  Mark Crichton  <crichton@gimp.org>
25931
25932         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
25933         even if support for it isn't present.  Added an #ifdef to fix this.
25934
25935         * socket-io.c: Added checks back for Solaris support.
25936
25937 2002-09-19  Martin Baulig  <martin@gnome.org>
25938
25939         * debug-mono-symfile.c (read_string, write_string): Reflect latest
25940         changes in the symbol file format.
25941
25942 2002-09-18  Martin Baulig  <martin@gnome.org>
25943
25944         * debug-mono-symfile.c: Set version number to 21.
25945
25946 2002-09-18  Dick Porter  <dick@ximian.com>
25947
25948         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
25949         on netbsd.  Fixes bug 30051.
25950
25951 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25952
25953         * reflection.c:
25954         (set_version_from_string): little fix.
25955
25956 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
25957
25958         * monosn.c, Makefile.am: added strong name utility.
25959         * reflection.h, reflection.c: implemented delayed signing,
25960         locale, version and hash id assembly attributes.
25961
25962 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
25963
25964         * loader.c, metadata.c: load param attributes in signatures.
25965
25966 2002-09-16  Martin Baulig  <martin@gnome.org>
25967
25968         * debug-mono-symfile.c: Added string table with all method names.
25969
25970 2002-09-14  Martin Baulig  <martin@gnome.org>
25971
25972         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
25973         fast method lookup.
25974
25975 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
25976
25977         * reflection.c: record the public key token of referenced assemblies.
25978
25979 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
25980
25981         * image.c, image.h: added functions to get the strong name and the
25982         public key of an assembly.
25983         * pedump.c: use them.
25984
25985 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
25986
25987         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
25988
25989 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
25990
25991         * marshal.c (mono_marshal_get_managed_wrapper): Added
25992         MONO_TYPE_BOOLEAN 
25993
25994 2002-09-11  Martin Baulig  <martin@gnome.org>
25995
25996         * gc.c: Call GC_unregister_disappearing_link() on all links when
25997         finalizing them, this is necessary to aviod a crash in boehm's
25998         finalize handler.
25999
26000 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26001
26002         * gc.c: handle GetTarget for finalized objects spotted and fixed by
26003         nick@chemlab.org.
26004
26005 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26006
26007         * icall.c: implemented MonoType::Module.
26008         * reflection.c, reflection.h: mono_module_get_object () from
26009         Tomi Pakarinen <tomi.pakarinen@welho.com>.
26010
26011 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
26012
26013         * icall.c: ignore overridden methods in GetMethods ().
26014         Fix for FieldInfo::SetValue().
26015         * object.c: handle float/double in runtime invoke.
26016
26017 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26018
26019         * object.c: allow a constructor to be called again on an object.
26020
26021 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26022
26023         * class.h, class.c: move field layout code to it's own function and
26024         export it. Get an interface id earlier. Move fields in MonoClass
26025         so they are more cache friendly and align the bitfields.
26026         * loader.c: temporary handle get_param_names() for a runtime method.
26027         * reflection.c, reflection.h: more code to handle runtime creation of
26028         types.
26029
26030 2002-09-09  Martin Baulig  <martin@gnome.org>
26031
26032         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
26033         signature with the pinvoke field being set for the actual call.
26034
26035 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26036
26037         * icall.c: removed some unused icalls. Start of map of glib charsets
26038         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
26039
26040 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26041
26042         * debug-helpers.c: break infinite loop (found and fixed by
26043         Holger Arnold <harnold@gmx.de>).
26044
26045 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26046
26047         * icall.c: target may be null in create_delegate.
26048
26049 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26050
26051         * marshal.c: handle a boolean return type.
26052
26053 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26054
26055         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
26056
26057 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26058
26059         * gc.c: fix weakreferences.
26060
26061 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
26062
26063         * icall.c: added icall to get default codepage.
26064
26065 2002-09-03  Dick Porter  <dick@ximian.com>
26066
26067         * threads.h: 
26068         * threads.c: Use MonoThread instead of MonoObject where
26069         apropriate.
26070
26071         Store running thread objects in a hash table, so that we have all
26072         the info to hand when waiting for them to finish
26073         (means we don't need OpenThread() any more, so mingw builds should
26074         be fully functional again.)
26075
26076         * verify.c:
26077         * object.h: Added thread ID to MonoThread
26078
26079 2002-09-03  Martin Baulig  <martin@gnome.org>
26080
26081         * icall.c (System.Reflection.Assembly::get_location): New interncall.
26082
26083 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26084
26085         * icall.c: fixed leak in get_temp_path. Thanks lupus.
26086
26087 2002-09-03  Martin Baulig  <martin@gnome.org>
26088
26089         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
26090         argument to store the end address of the disassembled instruction.
26091
26092         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
26093         here from debug-symfile.h.
26094         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
26095         JIT into this struct.
26096         (MonoSymbolFile): Added `char *image_file' field.
26097         (MonoDebugGetMethodFunc): Removed.
26098         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
26099         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
26100         (mono_debug_find_method): New method.
26101
26102         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
26103         create a full symbol file.
26104         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
26105         and static symbol files.
26106         (mono_debug_find_method): The symbol file keeps an internal method hash,
26107         call this to get a MonoDebugMethodInfo from a MonoMethod.
26108
26109         * debug-symfile.[ch]: Removed.
26110
26111 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
26112
26113         * image.c (do_mono_image_open): Remove linker version check.
26114
26115 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
26116
26117         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
26118         wrappers for instance methods.
26119         
26120 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26121
26122         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
26123
26124 2002-08-28  Dick Porter  <dick@ximian.com>
26125
26126         * Makefile.am: Export HOST_CC for w32 builds
26127
26128 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26129
26130         * file-io.c process.c: MonoString are null terminated, no
26131         need for mono_string_to_utf16() anymore.
26132
26133 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26134
26135         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
26136
26137 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
26138
26139         * icall.c, reflection.h: speedup System.MonoType.
26140
26141 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26142
26143         * reflection.c: allow null as the value of a string argument in
26144         custom attributes constructors.
26145
26146 2002-08-27  Martin Baulig  <martin@gnome.org>
26147
26148         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
26149         `trampoline_address' field.
26150
26151 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
26152
26153         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
26154         check (fixes bug #29486) 
26155
26156 2002-08-27  Martin Baulig  <martin@gnome.org>
26157
26158         * debug-mono-symfile.c: Changed the file format in a way that allows us
26159         open it read-only and to use a specially malloced area for all the
26160         dynamic data.  We can now also generate a symbol file on-the-fly if we're
26161         debugging IL code and there is no MCS generated symbol file for it.
26162
26163 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
26164
26165         * object.c: added a define for a good string and array
26166         creation speedup (not enabled by default because we need to deal with
26167         the synch stuff).
26168
26169 2002-08-26  Martin Baulig  <martin@gnome.org>
26170
26171         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
26172         function to create a dynamic symbol file.  This is used by the
26173         debugger to create a symbol file for IL code on-the-fly.
26174
26175 2002-08-26  Martin Baulig  <martin@gnome.org>
26176
26177         * loader.c (mono_lookup_pinvoke_call): Include the error message
26178         from g_module_error() in the error message.
26179
26180 2002-08-24  Martin Baulig  <martin@gnome.org>
26181
26182         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
26183         function to update the symbol file.  The symbol file is mmap()ed
26184         writable, but private.  This allows us to install the symbol file
26185         together with the assembly.
26186
26187 2002-08-24  Martin Baulig  <martin@gnome.org>
26188
26189         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
26190         but they can read the new symbol file format which mcs is now creating.
26191
26192         * debug-symfile.c (mono_debug_find_source_location): Moved to
26193         debug-mono-symfile.c; this is now operating on the new symbol file.
26194
26195 2002-08-23  Martin Baulig  <martin@gnome.org>
26196
26197         * debug-helpers.c (mono_method_desc_from_method): New function to get
26198         a MonoMethodDesc from a MonoMethod.
26199
26200 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
26201
26202         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
26203         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
26204
26205 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26206
26207         * string-icalls.[ch]: make helper methods static.
26208
26209 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26210
26211         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
26212         types to it and to SetValueInternal.
26213
26214         * object.c: Moved handle_enum label to its proper place. This was the
26215         f... bug! ;-)
26216
26217         This time i compiled mcs and gtk-sharp and they both work.
26218
26219 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26220
26221         * icall.c: reverted partially my previous patch until 
26222         object.c:set_value handles enums correcly.
26223
26224 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26225
26226         * icall.c:
26227         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
26228         (ves_icall_System_Environment_get_MachineName): removed warning when
26229         compiling under cygwin.
26230
26231 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26232
26233         * object.c: fixed field_get_value() for reference types.
26234
26235 2002-08-22  Dick Porter  <dick@ximian.com>
26236
26237         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
26238         Don't free a buffer while it's still needed.  Patch from Jonathan
26239         Liger <Jonathan.liger@wanadoo.fr>
26240
26241 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
26242
26243         * icall.c (ves_icall_System_Environment_get_Platform): Add new
26244         internal call.
26245
26246 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
26247
26248         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
26249         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
26250
26251         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
26252         we call unmanaged code which throws exceptions.
26253
26254 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26255
26256         * appdomain.h: added per-domain entry_assembly.
26257         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
26258         arguments.
26259         * icall.c: Assembly::GetEntryAssembly icall.
26260         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
26261         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
26262
26263 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26264
26265         * appdomain.h, gc.c: added mono_domain_finalize ().
26266
26267 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26268
26269         * object.c:
26270         (mono_print_unhandled_exception): changed g_warning by g_printerr
26271         because g_log has a 1024 characters limit (yeah, i got a big stack
26272         trace). Don't print exception name, that should be in ToString 
26273         returned string.
26274
26275 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26276
26277         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
26278         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
26279
26280 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26281
26282         * object.c:
26283         (mono_print_unhandled_exception): after previous commit, i realized
26284         that MS calls ToString on the exception. I changed this function to
26285         do that. This way we get stack_trace for free.
26286
26287 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26288
26289         * object.c:
26290         (mono_print_unhandled_exception): invoke Message property instead of
26291         getting 'message' field from Exception. Don't allocate memory for
26292         'trace' and 'message' if not needed.
26293
26294 2002-08-18  Dick Porter  <dick@ximian.com>
26295
26296         * unicode.c: Fix asserts to match Encoder.cs checks
26297
26298 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26299
26300         * marshal.c: fix unaligned store issue and a few wrong
26301         opcode argument types.
26302
26303 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26304
26305         * icall.c: added GetUninitializedObjectInternal internal call.
26306
26307 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
26308
26309         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
26310         to the right domain.
26311
26312 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
26313
26314         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
26315
26316         * class.c (class_compute_field_layout): set blittable to false for Strings
26317
26318         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
26319
26320 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26321
26322         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
26323         first chunk of code to create types at runtime. Code to
26324         handle ReflectedType/DeclaringType. Make reflection handles
26325         domain specific.
26326
26327 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
26328
26329         * class.c: set correct name in arrays.
26330
26331 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
26332
26333         * appdomain.c (mono_domain_transfer_object): make it work with
26334         valuetypes. bug fixes.
26335
26336 2002-08-12  Dick Porter  <dick@ximian.com>
26337
26338         * object.h: Rename some parameters to avoid c++ keywords (Patch
26339         from Joseph Wenninger <kde@jowenn.at>)
26340
26341 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
26342
26343         * icall.c: added icall to implement Assembly.GetFile*.
26344
26345 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26346
26347         * reflection.h, reflection.c: code to embed managed resources.
26348
26349 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
26350
26351         * class.c: move all the type size stuff into
26352         class_compute_field_layout().
26353
26354 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
26355
26356         * class.c: ensure enums have always the correct instance size.
26357         * unicode.c: remove wrong assert.
26358
26359 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26360
26361         * assembly.c: fix mem corruption issue.
26362         * image.h, image.c: added mono_image_get_resource () to access
26363         managed resources.
26364         * icall.c: implemented Assembly.EntryPoint property and some
26365         Managed Resources related internalcalls.
26366
26367
26368 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26369
26370         * image.c, image.h: impemented mono_image_get_entry_point ().
26371         * appdomain.c: use mono_image_get_entry_point.
26372
26373 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26374
26375         * reflection.c: support the object type argument when loading
26376         custom attributes.
26377
26378 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
26379
26380         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
26381         String as return type.
26382
26383 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
26384
26385         * reflection.c: fix encoding of named args for custom attrs to match
26386         the ms implementation. Read them back when instantiating custom
26387         attributes.
26388
26389 2002-08-02  Radek Doulik  <rodo@ximian.com>
26390
26391         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
26392         by Dietmar as quick fix
26393         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
26394         16 as stack size, used on more places as quick fix before Dietmar
26395         will fix it properly
26396
26397 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26398
26399         * object.h, object.c: added accessors for fields and properties.
26400
26401 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
26402
26403         * class.c, class.h: made mono_class_get_field_from_name ()
26404         loop on parent types.
26405         Added mono_class_get_property_from_name ().
26406
26407 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26408
26409         * class.c, class.h: move the code to setup the type vtable in its own
26410         function so that it can be reused also for types created at runtime.
26411         Eliminate the "class" identifier from the header file.
26412         * reflection.c: setup the vtable for enums so that we can create
26413         objects for use in SetConstant ().
26414
26415 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
26416
26417         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
26418         instead of the delegate itself as this pointer (bug #28383)
26419
26420 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
26421
26422         * marshal.c (mono_marshal_get_managed_wrapper): added return type
26423         conversions.
26424
26425 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26426
26427         * loader.c: don't set the pinvoke bit on icalls.
26428
26429 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
26430
26431         * debug-helpers.c (mono_method_full_name): only print a number to
26432         indicate wrapper type (so that the output is more readable in traces).
26433
26434 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
26435
26436         * class.c (mono_class_init): include method override patch from Paolo
26437
26438 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
26439
26440         * icall.c: fixed GetTypeCode().
26441
26442 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
26443
26444         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
26445         use real delegate invoke function to make it work with multicast
26446         delegates (fix bug# 28291).
26447
26448 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26449
26450         * object.c: load constant strings.
26451
26452 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26453
26454         * reflection.c: no magic numbers.
26455         * tabledefs.h: security action enum.
26456
26457 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26458
26459         * assembly.c: fix possible memory corruption.
26460
26461 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26462
26463         * reflection.h, reflection.c: added support for linking resources.
26464         * verify.c: check we have an updated corlib.
26465
26466 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
26467
26468         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
26469         string arrays.
26470         (mono_marshal_string_array): null terminate unmanaged string arrays.
26471         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
26472
26473 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26474
26475         * icall.c: Type.GetType () can now return also types from the
26476         calling assembly.
26477
26478 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
26479
26480         * loader.h, loader.c: stack walking support.
26481         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
26482         GetCallingAssembly.
26483
26484 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
26485
26486         * marshal.c: added optimisations for blittable types 
26487
26488         * class.c (mono_array_class_get): do not set blittable attribute on arrays
26489         (mono_class_setup_mono_type): set blittable attribute for single
26490         and double.
26491
26492         * marshal.c (mono_string_utf8_to_builder): impl.
26493         (mono_string_builder_to_utf8): impl.
26494         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
26495
26496 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
26497
26498         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
26499         (mono_marshal_get_managed_wrapper): impl. byref types
26500
26501 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26502
26503         * icall.c:
26504         (search_method): don't display debug message. 
26505
26506 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
26507
26508         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
26509
26510 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
26511
26512         * appdomain.c: set the missing filename when throwing exception.
26513
26514 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
26515
26516         * metadata.c (mono_type_size): code cleanup
26517         (mono_type_stack_size): removed some test code
26518
26519 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
26520
26521         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
26522         mono_get_exception_file_not_found now.
26523
26524         * exception.c (mono_exception_from_name_two_strings): New version
26525         that will call a constructor with two string arguments. 
26526         (mono_get_exception_file_not_found): New helper routine, used to
26527         report file-not-found errors.
26528
26529 2002-07-20  Dick Porter  <dick@ximian.com>
26530
26531         * process.h:
26532         * process.c: Pass file handles to CreateProcess
26533         
26534         * icall.c:
26535         * file-io.h:
26536         * file-io.c: Implemented CreatePipe
26537
26538 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
26539
26540         * metadata.c (mono_get_param_info): set alignment for value types
26541
26542 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
26543
26544         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
26545         Constify mono_domain_assembly_open().
26546         * loader.c: handle null namespace in icalls.
26547
26548 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
26549
26550         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
26551         (emit_str_to_ptr_conv): marshal object as structs
26552
26553         * metadata.c (mono_type_to_unmanaged): marshal object as structs
26554
26555         * marshal.c (mono_marshal_get_runtime_invoke): support value types
26556
26557 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
26558
26559         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
26560         (mono_marshal_get_native_wrapper): we an now return value types
26561
26562 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26563
26564         * verify.c: more checks implemented.
26565
26566 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
26567
26568         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
26569         (fix bug #27695)
26570         (mono_marshal_get_native_wrapper): allow byref arguments
26571         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
26572         impl. PtrToStringXXX methods
26573         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
26574         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
26575         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
26576         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
26577         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
26578
26579 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26580
26581         * reflection.c: fix buglet in parsing an assembly name.
26582
26583 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
26584
26585         * marshal.c (emit_ptr_to_str_conv): first impl.
26586
26587 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26588
26589         * object.c, class.h: cache the vtable in the class as suggested by
26590         vargaz@freemail.hu (Zoltan Varga).
26591
26592 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26593
26594         * class.h, loader.c: added mono_field_from_token().
26595         * verify.c: first cut of type checking code.
26596
26597 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
26598
26599         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
26600
26601 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
26602
26603         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
26604         (fix bug #27782)
26605         (mono_marshal_get_remoting_invoke): impl.
26606         (mono_delegate_begin_invoke): impl.
26607         (mono_mb_emit_save_args): impl.
26608         (mono_delegate_end_invoke): impl.
26609         (mono_marshal_get_delegate_begin_invoke):
26610         (mono_marshal_get_delegate_end_invoke):
26611         (mono_marshal_get_delegate_invoke): generate a special name for
26612         those methods (including the signature) and associate them whith
26613         the delegate class. 
26614
26615 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
26616
26617         * reflection.[ch]: 
26618         (mono_reflection_type_from_name): now it has a MonoImage parameter
26619         which is used as the default image to search the type in. If the image
26620         is NULL or getting the type from it fails, it defaults to corlib.
26621
26622         * icall.c: changed 1 call to mono_reflection_type_from_name to match
26623         new parameter.
26624
26625 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26626
26627         * reflection.c: update the parameter table index.
26628
26629 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26630
26631         * domain.c: don't include the mark byte in the string hash.
26632
26633 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26634
26635         * icall.cs: icall for Type.GetTypeCode ().
26636         * verify: a couple of fixes and disabled local initialization checks.
26637
26638 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
26639
26640         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
26641
26642         * debug-helpers.c (mono_method_full_name): print the type of the
26643         runtime wrapper
26644
26645         * metadata.c (mono_signature_hash): a hash function for signatures
26646         (mono_signature_hash): better hash algorithm
26647
26648         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
26649
26650         * debug-helpers.c (mono_method_full_name): this can now generate
26651         method names with signatures
26652
26653         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
26654         method dont have this pointers.
26655
26656 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
26657
26658         * reflection.c: fixup typebuilder tokens.
26659         * image.c: fix buglet.
26660         * marshal.h: remove whitespace.
26661         * metadata.h, metadata.c: reinstate code that was removed.
26662         * verify.c: handle catch directives and fix another couple of bugs.
26663
26664 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
26665
26666         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
26667         (mono_marshal_get_native_wrapper): make it comp. with the old code
26668         (mono_marshal_get_native_wrapper): support boolean
26669         (mono_marshal_get_managed_wrapper): support more types
26670
26671 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
26672
26673         * class.c (class_compute_field_layout): compute class->blittable attribute.
26674
26675 2002-07-09  Dick Porter  <dick@ximian.com>
26676
26677         * threads.c: Make the thread cleaning up cope with threads that
26678         call ExitThread()
26679
26680 2002-07-08  Radek Doulik  <rodo@ximian.com>
26681
26682         * reflection.c (method_encode_code): use non-translated values to
26683         compute finally_start, this fixes exception handling on ppc, yay!
26684
26685         * decimal.h (struct signscale): fix endianess
26686
26687 2002-07-07  Radek Doulik  <rodo@ximian.com>
26688
26689         * reflection.c: swap box_val and not val
26690
26691 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
26692
26693         * reflection.c, reflection.h: handle full assembly info in type name.
26694         Handle Type arguments when loading custom attributes.
26695         * icall.c: updated to use new mono_reflection_type_from_name () method.
26696
26697 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26698
26699         * loader.c:
26700         (method_from_memberref): also print assembly name when method not found.
26701
26702 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26703
26704         * icall.c:
26705         (ves_icall_TypeGetProperties): fixed bug #27473. 
26706
26707 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26708
26709         * reflection.c: display image name and token when cannot find the
26710         .ctor for an attribute.
26711
26712 2002-07-05  Martin Baulig  <martin@gnome.org>
26713
26714         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26715
26716 2002-07-04  Dick Porter  <dick@ximian.com>
26717
26718         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
26719         compile on mingw.  This will cause mingw builds to not wait for
26720         subthreads to terminate after the main thread does.  I've lodged a
26721         bug with the mingw developers for them to wrap OpenThread().
26722
26723 2002-07-03  Dick Porter  <dick@ximian.com>
26724
26725         * threads.c: Store thread IDs instead of handles, because
26726         GetCurrentThread() returns a pseudohandle and therefore stores
26727         useless values.  mono_thread_cleanup() continues checking the
26728         array of threads until it is empty, to cope with subthreads
26729         spawning new threads after the main thread has finished.
26730
26731         * profiler.h:
26732         * profiler.c:
26733         * profiler-private.h: Pass the thread ID to thread profiler
26734         functions, instead of a handle
26735
26736 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
26737
26738         * verify.c: fixes to make it more usable.
26739         * pedump.c: added --verify code to verify IL code in an assembly.
26740
26741 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26742
26743         * reflection.c: turn errors into warnings to allow compiling corlib.
26744
26745 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
26746
26747         * reflection.c: add special cases to compile corlib.
26748
26749 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26750
26751         * reflection.c: handle properties with only a set method.
26752
26753 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
26754
26755         * opcodes.h: add enum with opcodes in opval order.
26756
26757 2002-07-01  Dick Porter  <dick@ximian.com>
26758         
26759         * object.h:
26760         * object.c (mono_runtime_run_main): Removed unneeded argument
26761
26762 2002-06-28  Martin Baulig  <martin@gnome.org>
26763
26764         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
26765
26766 2002-06-27  Dick Porter  <dick@ximian.com>
26767
26768         * threads.c: Store the handle in both the parent thread and in the
26769         subthread, to minimise the time between starting a new thread and
26770         storing its ID.
26771
26772 2002-06-26  Dick Porter  <dick@ximian.com>
26773
26774         * appdomain.c (mono_runtime_cleanup): Close the socket library
26775         after all the threads have finished, not before
26776
26777 2002-06-26  Martin Baulig  <martin@gnome.org>
26778
26779         * debug-symfile.c (mono_debug_find_source_location): Added
26780         `guint32 *line_number' argument.  If it's not NULL, store the line number
26781         there and return the file name without the line number.
26782
26783 2002-06-25  Dick Porter  <dick@ximian.com>
26784
26785         * icall.c:
26786         * process.h:
26787         * process.c: Process forking and other support functions
26788
26789 2002-06-25  Dick Porter  <dick@ximian.com>
26790
26791         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
26792         things dont happen when the image is closed.
26793         (mono_image_lookup_resource): Walk the resource section looking
26794         for a particular entry
26795
26796         * cil-coff.h: PE resource section decoding
26797
26798 2002-06-25  Dick Porter  <dick@ximian.com>
26799         
26800         * assembly.h:
26801         * assembly.c: 
26802         (mono_assembly_foreach): Accessor functions to walk the list of
26803         loaded assemblies
26804         (mono_assembly_set_main):
26805         (mono_assembly_get_main): Process methods need to know which
26806         assembly is the "main" one
26807
26808         * object.c (mono_runtime_run_main): Record the main assembly
26809
26810         * debug-helpers.c: Fix typo
26811
26812 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
26813
26814         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
26815         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
26816
26817 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26818
26819         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
26820
26821 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
26822
26823         * image.c (do_mono_image_open): Initialize reference count,
26824         otherwise we leak the MonoImage.
26825
26826 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26827
26828         * reflection.c: small tweak to handle self-hosting.
26829
26830 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26831
26832         * reflection.c: fix type name parse code.
26833
26834 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26835
26836         * reflection.c: break out of the loop.
26837         * image.c: special case corlib.
26838
26839 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
26840
26841         * reflection.c: add all the custom attrs at the end to ensure the
26842         ctors have been properly initialized when the attributes are defined
26843         in the current assembly.
26844
26845 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26846
26847         * reflection.c: handle correctly multiple-nested types.
26848
26849 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
26850
26851         * row-indexes.h: fix typos.
26852         * reflection.c: adjust for typos and fix method_def_or_ref
26853         encoding in MethodImpl table.
26854
26855 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26856
26857         * reflection.c: fix entry point patching (thanks Serge!).
26858
26859 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
26860
26861         * verify.c: add check for System.Exception
26862
26863 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
26864
26865         * image.c, class.c: minifix for code just c&p'ed.
26866         * reflection.c: warning fix.
26867         * object.h, loader.h, domain.c: load also StringBuilder.
26868
26869 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
26870
26871         * marshal.h, marshal.c: some support code to handle complex marshaling.
26872
26873 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26874
26875         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
26876         Better signatures with vtable error dump.
26877
26878 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
26879
26880         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
26881
26882 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
26883
26884         * icall.c (ves_icall_Type_GetField): impl.
26885
26886 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26887
26888         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
26889         to retrieve a marshal description blob for a field or param.
26890
26891 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26892
26893         * reflection.h, reflection.c: change order of nested type emission
26894         to avoid table corruption. The NestedTypes table is sorted.
26895         * icall.c: change order of GetConstructor results to workaround mcs bug.
26896
26897 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
26898
26899         * reflection.h, reflection.c: handle field and param marshal
26900         information.
26901
26902 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
26903
26904         * icall.c, marshal.c marshal.h: more Marshal class implementation.
26905
26906 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26907
26908         * reflection.c: fix call convention.
26909
26910 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26911
26912         * reflection.h, reflection.c: mono_image_get_memberref_token()
26913         takes a type instead of a class, now. Added
26914         mono_image_get_array_token() to create tokens for the special
26915         multi-dim array methods.
26916
26917 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26918
26919         * assembly.c: handle modules (no assembly table). Split
26920         loading references in its own function.
26921         * class.c: handle moduleref resolution scope.
26922         * image.c, image.h: cache module name in image.
26923
26924 2002-06-07  Martin Baulig  <martin@gnome.org>
26925
26926         * reflection.c (mono_image_get_type_info): Only add a class layout entry
26927         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
26928
26929 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
26930
26931         * icall.c: more signature fixes that used uint instead of int.
26932
26933 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26934
26935         * reflection.c: fixed signature of field refs.
26936
26937 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
26938
26939         * class.c, reflection.c: handle typerefs of nested types
26940         (both on read and when writing files).
26941
26942 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
26943
26944         * icall.c: fix method signatures that tried to workaround the previous
26945         typo, d'oh!
26946
26947 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
26948
26949         * debug-helpers.c: fix typo.
26950
26951 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
26952
26953         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
26954         rewrote the PE/COFF writing code (our programs are understood by the
26955         ms runtime, now).
26956
26957 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
26958
26959         * gc.c, gc.h, icall.c: weakreference support.
26960
26961 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
26962
26963         * Makefile.am, mono-config.c: use $(sysconfdir).
26964
26965 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
26966
26967         * icall.c: changed default precision of Double.ToString() to 15.
26968         Fixed memory leak. Unified with Single.ToString.
26969
26970 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
26971
26972         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
26973
26974 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
26975
26976         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
26977         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
26978         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
26979         and myself.
26980
26981 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
26982
26983         * debug-symfile.c, sysmath.c: yet more compilation fixes.
26984
26985 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26986
26987         * reflection.c, socket-io.c: more compilation fixes.
26988
26989 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
26990
26991         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
26992         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
26993         unicode.c: warning and compiler compatibility fixes.
26994
26995 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
26996
26997         * class.h, metadata.c: fixed warnings/compilation errors.
26998
26999 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
27000
27001         * Makefile.am, mono-config.c, mono-config.h: configuration file
27002         support routines.
27003         * loader.c, loader.h: make Dll mapping configurable at runtime in the
27004         config file. Export methods to insert and lookup mappings.
27005
27006 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
27007
27008         * reflection.c: handle types and boxed objects in custom attr
27009         constructors.
27010
27011 2002-05-30  Martin Baulig  <martin@gnome.org>
27012
27013         * debug-symfile.c
27014         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
27015
27016 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
27017
27018         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
27019         to lookup the implmap row for a P/Invoke method.
27020         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
27021         P/Invoke method from the runtime on an as needed basis.
27022
27023 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
27024
27025         * metadata.c (mono_metadata_parse_signature): impl.
27026
27027 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27028
27029         * class.c: handle .pack directive.
27030
27031 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
27032
27033         * object.c: initialize static fields with RVA data.
27034
27035 2002-05-25  Martin Baulig  <martin@gnome.org>
27036
27037         * debug-symfile.c
27038         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
27039
27040 2002-05-24  Martin Baulig  <martin@gnome.org>
27041
27042         * debug-symfile.c
27043         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
27044         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
27045         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
27046
27047 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27048
27049         * object.c: special case string ctros in invoke.
27050         * gc.c: silly whitespace changes.
27051
27052 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
27053
27054         * threadpool.[ch]: impl. a threadpool that can
27055         be used by mint and mono.
27056
27057 2002-05-22  Martin Baulig  <martin@gnome.org>
27058
27059         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
27060         The first argument is now a `MonoReflectionModuleBuilder *', the return
27061         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
27062         `methods' field to get the method builder.  The `token' argument is the
27063         unfixed token.
27064
27065         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
27066         invalid characters instead of g_assert_not_reached()ing.  This seems
27067         to be the behaviour of mscorlib.
27068
27069 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
27070
27071         * object.c (mono_runtime_invoke_array): applied patch from Rachel
27072         Hestilow to fix bug #25104
27073
27074 2002-05-21  Martin Baulig  <martin@gnome.org>
27075
27076         * debug-symfile.c (mono_debug_find_source_location): New function.
27077         Looks up an IL offset in the line number table and returns the source
27078         location as a string.
27079
27080 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27081
27082         * icall.c:
27083         (mono_double_ToStringImpl): changed %f by %g until we have something
27084         better.
27085
27086 2002-05-21  Nick Drochak  <ndrochak@gol.com>
27087
27088         * icall.c : Use different name for Math.Pow's icall.  Needed to check
27089         parameters first in C#.
27090
27091 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27092
27093         * icall.c, reflection.h: added icall to get info about an event.
27094
27095 2002-05-20  Radek Doulik  <rodo@ximian.com>
27096
27097         * object.c (mono_value_box): don't use memcpy for boxing on BIG
27098         endian
27099         (mono_value_box): don't use memcpy for small sizes on
27100         architectures with unaligned access
27101
27102 2002-05-20  Martin Baulig  <martin@gnome.org>
27103
27104         * reflection.c (mono_reflection_setup_internal_class): Don't crash
27105         if `tb->parent == NULL'.
27106         (mono_reflection_create_internal_class): New function.  This is
27107         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
27108         for enum types.
27109
27110         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
27111         New interncall.
27112
27113 2002-05-19  Martin Baulig  <martin@gnome.org>
27114
27115         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
27116         argument to get the length, don't default to the array length.
27117
27118 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
27119
27120         * assembly.c (mono_assembly_setrootdir): New function used to
27121         override the MONO_ASSEMBLIES directory.
27122
27123 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27124
27125         * icall.c: ValueType_GetHashCode() initialize local var.
27126
27127 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27128
27129         * reflection.c: sort custom attributes table.
27130
27131 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27132
27133         * reflection.c: support named args in custom attributes (write support).
27134
27135 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
27136
27137         * reflection.c: fix finally position calculation.
27138
27139 2002-05-15  Radek Doulik  <rodo@ximian.com>
27140
27141         * reflection.c: fixed endianess at many places
27142
27143         * icall.c (ves_icall_InitializeArray): comment out debug msg
27144
27145 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
27146
27147         * object.c (mono_unhandled_exception): new function to handle
27148         unhandled exceptions.
27149         (mono_unhandled_exception): call the UnhandledException event.
27150         (mono_runtime_delegate_invoke): impl.
27151
27152 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
27153
27154         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
27155         returns the RVA, not the direct pointer to the data. Handle the case
27156         when the class size is fixed.
27157
27158 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
27159
27160         * reflection.c: fix some endianess issues.
27161
27162 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
27163
27164         * object.c (mono_runtime_invoke): is now able to catch exceptions.
27165
27166         * threads.c (mono_thread_init): added a callback which is invoked
27167         at thread start.
27168
27169 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
27170         
27171         * icall.c: make GetHashCode return non-negative values.
27172
27173 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
27174
27175         * object.c, icall.c, gc.c: revert to address-based hashcode.
27176
27177 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
27178
27179         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
27180
27181 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27182
27183         * icall.c, class.c: special case <Module>.
27184
27185 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
27186
27187         * icall.c: fix bug in GetNow().
27188
27189 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
27190
27191         * object.c (mono_runtime_class_init): make sure that we call all
27192         static class constructors.
27193
27194 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
27195
27196         * reflection.c: sort methodsemantics table.
27197
27198 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
27199
27200         * reflection.h, reflection.c: honour init locals setting.
27201
27202 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
27203
27204         * icall.c: copied Double ToStringImpl for Single ToStringImpl
27205
27206 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
27207
27208         * reflection.c: support ContructorBuilders in attribute blob creation.
27209
27210 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27211
27212         * reflection.c: some changes to build a binary that can be run
27213         directly in windows.
27214
27215 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
27216
27217         * loader.c: print a big message when an icall can't be found.
27218
27219 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27220
27221         * string-icalls.c: fix bug 24248.
27222
27223 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
27224
27225         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
27226         icall.c, reflection.h: separate assembly loading by pathname and by
27227         assembly name. Use the MONO_PATH env var to search for assemblies.
27228
27229 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27230
27231         * assembly.c, image.h: add some support for assemblies
27232         with multiple modules.
27233         * class.c, class.h: export mono_class_from_typeref().
27234         * loader.c: remove duplicated code and use mono_class_from_typeref(),
27235         instead.
27236
27237 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27238
27239         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
27240         documentation says (the ECMA one is correct).
27241
27242 2002-05-02  Dick Porter  <dick@ximian.com>
27243
27244         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
27245         Don't name the synchronisation mutex.
27246
27247 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
27248
27249         * rand.c
27250         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
27251         Make the prototypes match.
27252         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
27253         Same.
27254
27255         * icall.c
27256         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
27257         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
27258         all systems have tm.tm_zone, so use strftime() with %Z to print
27259         the timezone abreviation into a temp string.
27260
27261         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
27262         rather than mono_array_addr() on a MonoString on Big Endian
27263         machines.
27264
27265 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
27266
27267         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
27268         fix bug 24041
27269
27270 2002-04-30  Dick Porter  <dick@ximian.com>
27271
27272         * socket-io.c: Cope with SOCKET being an integer rather than a
27273         pointer now.
27274
27275         * threads.c: Added Thread_free_internal, to deal with thread
27276         handle cleanup.  Moved calls to handle_store() and handle_remove()
27277         to start_wrapper(), so each can only be called once.  Allocate
27278         synchronisation blocks with GC_malloc(), and use GC finalisation
27279         to close the handles.
27280
27281         * icall.c: added System.Threading.Thread::Thread_free_internal
27282
27283 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27284
27285         * icall.c: support Environment.Exit, CommandLineArgs().
27286
27287 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
27288
27289         * object.c, object.h: added mono_runtime_run_main () and
27290         mono_runtime_get_main_args () for use in System.Environment.
27291
27292 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27293
27294         * gc.c: fix thinko, enable actual finalization since the jit is now
27295         fixed.
27296
27297 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27298
27299         * gc.c, object.c: take into account that an object may be offset wrt the address
27300         returned by GC_malloc().
27301
27302 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
27303
27304         * image.c: handle files without entries in the assembly table (modules).
27305
27306 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
27307
27308         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
27309         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
27310         allowed to be null when it's System.Object class setup.
27311
27312 2002-04-27  Martin Baulig  <martin@gnome.org>
27313
27314         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
27315         if `tb->parent == NULL' rather than crashing.
27316
27317 2002-04-28  Nick Drochak  <ndrochak@gol.com>
27318
27319         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
27320         calling acos() where asin() should have been called.
27321
27322 2002-04-26  Martin Baulig  <martin@gnome.org>
27323
27324         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
27325         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
27326         there's a subdirectory called `System', but we don't want to read that
27327         subdirectory as an assembly.
27328
27329 2002-04-25  Martin Baulig  <martin@gnome.org>
27330
27331         * debug-symfile.c: Reflect latest MonoString changes.
27332
27333 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27334
27335         * rand.c, rand.h: instance method icalls need to have an explicit
27336         this pointer as first argument in the C implementation.
27337
27338 2002-04-25  Nick Drochak <ndrochak@gol.com>
27339
27340         * icall.c: Fix typo in map for GetNonZeroBytes
27341
27342 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27343
27344         * string-icalls.c : String does now passes unit tests without any 
27345         errors, the following changes has been made:
27346         
27347         Implemented replace methods.
27348         Renaming of methods to (try) follow the standard.
27349         Fixed compare ordinal
27350         Made all memory allocated directly to function instead of via icall function.
27351         Small performance fix in is_in_array function
27352                         
27353  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
27354
27355         c (mono_string_Internal_ctor_charp_int_int):
27356         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
27357         sindex < 0, throw ArgumentOutOfRangeException instead of
27358         ArgumentNullException.
27359
27360         Added new check for length == 0, however
27361         I need to make it return String.Empty from the C code.
27362         
27363         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
27364         that calculate the length for us here.
27365         
27366         (mono_string_Internal_ctor_sbytep_int_int): Replaced
27367         mono_string_new_utf16 with mono_string_new, since value is utf8.
27368
27369 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27370
27371         * object.c: register the object for finalization if needed.
27372         Allocate one more char in the string for the terminating 0 char.
27373
27374 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27375
27376         * class.c, class.h, image.c: check if a type implemenst a destructor.
27377         Use the proper key for array class lookups.
27378         * icall.c: register the icalls in the System.GC class.
27379         * gc.c, gc.h: GC-related functions and icalls.
27380
27381 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27382
27383         * icall.c:
27384         * socket-io.c:
27385         * unicode.c: free some strings gotten from mono_string_to_utf8 and
27386         changed a couple of free () by g_free ().
27387
27388         * decimal.c: one-liner in the comments for decimal2string ().
27389
27390 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27391
27392         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
27393
27394 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
27395
27396         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
27397         * object.c (mono_runtime_invoke_array) : handle null in params
27398
27399 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27400
27401         * string-icalls.c: fixed bug in split (one off bug)
27402
27403 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27404
27405         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
27406         * icalls.c: added String::Equals as internal method
27407
27408 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
27409
27410         * threads.c: fixed bug in the double interlocked functions
27411
27412 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
27413
27414         * threads.c: implemented all of the new interlocked icalls.
27415         * string-icalls.c: fix a bug in insert.
27416         * icalls.c: added the icalls for interlocked, removed old string functions.
27417         
27418 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27419
27420         * loader.c: fix off-by-one error when reading argument names.
27421
27422 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27423
27424         * profiler.c: win32 counter implementation (untested).
27425         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
27426         (the latter needs testing and more complete impl. from win32 folks).
27427
27428 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
27429
27430         * object.c: mono_array_new_full workaround mono_array_class_get
27431         problem.
27432
27433 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27434
27435         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
27436         * object.h (mono_string_chars): Changed casting type.
27437
27438 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27439
27440         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
27441                            method signatures to use gunichar2 instead of gint16.
27442
27443 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
27444
27445         * object.h, object.c: domain-specific versions of mono_object_new and
27446         mono_array_new.
27447
27448 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
27449
27450         * object.c: changed String layout
27451
27452         * string-icalls.c (mono_string_Internal_ctor_chara): added
27453         internal string constructors.
27454
27455 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
27456
27457         * threads.c: pass 'this' to the thread start routine.
27458
27459 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27460
27461         * string-icalls.c: fix IndexOf and LastIndexOf. Now
27462         InternalCompareStr don't call twice mono_string_cmp_char for the last
27463         character. Improved performance in mono_string_cmp_char.
27464
27465 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
27466
27467         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
27468         code into its own library: libmonoruntime.
27469
27470 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
27471
27472         * object.h, object.c: changed array format so that szarrays do not
27473         require a bounds structure.
27474         * icall.c, appdomain.c: support for new szarray format.
27475
27476 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
27477
27478         * metadata.c: compare also the retuns type when comparing signatures:
27479         we didn't do this as an optimization since really overloaded methods
27480         must differ also in the arguments, but this doesn't work with
27481         low-level IL code (or when using explicit conversion operators: see
27482         bug#23498 for an example).
27483
27484 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27485
27486         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
27487
27488 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
27489
27490         * icall.c: make MonoType::GetElementType its own icall.
27491
27492 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27493
27494         * icall.c: remove MonoMethod_get_Name().
27495         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
27496         object.
27497
27498 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27499
27500         * string-icalls.c: optimized a few methods.
27501
27502 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
27503
27504         * icall.c: added all new string internal calls
27505         * string-icalls.c: added, new string internal call implementation.
27506         * object.c: added mono_string_new_size for allocating a string a size
27507
27508 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
27509
27510         * object.c (mono_object_isinst): use the same code as in the
27511         optimized x86 version.
27512
27513 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27514
27515         * profiler.c: TSC-based timer code (faster and more accurate).
27516         Not hooked up in configure, yet (set USE_X86TSC to 1).
27517
27518 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
27519
27520         * profiler.c, profiler.h: track time spent compiling methods.
27521         * threads.c: track thread creation/destruction.
27522
27523 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
27524
27525         * profiler.c, profiler.h, profiler-private.h: profiling interface
27526         and sample implementation. Moved here so that it can be used also by
27527         the jit.
27528
27529 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
27530
27531         * reflection.c, reflection.h: keep types and other handles separate in
27532         the hash tables for referred tokens. Add guid for modules.
27533
27534 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
27535
27536         * assembly.c: fix bugs found with valgrind.
27537         * metadata.h, metadata.c: added mono_metadata_guid_heap().
27538
27539 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
27540
27541         * threads: added icall support for getting current domain for
27542                    the thread.
27543  
27544 2002-04-13  Martin Baulig  <martin@gnome.org>
27545
27546         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
27547         (MonoDebugVarInfo): Added `index' field for register based addresses.
27548         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
27549         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
27550         `MonoDebugVarInfo *params' and `guint32 this_offset' with
27551         `MonoDebugVarInfo *this_var'.
27552
27553         * debug-symfile.c (relocate_variable): New static function to write
27554         a location description for a local variable or method parameter.
27555
27556 2002-04-12  Martin Baulig  <martin@gnome.org>
27557
27558         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
27559         stack offset and begin/end scope address of a local variable.
27560         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
27561         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
27562         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
27563
27564         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
27565         Added new relocation types for start/end scope of a local variable.
27566
27567 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27568
27569         * object.h: add mono_object_domain() macro.
27570         * reflection.c: handle typespecs.
27571         * icall.c: MonoMethod::get_Name() implementation.
27572
27573 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27574
27575         * icall.c: String::GetHashCode() icall implementation.
27576
27577 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27578
27579         * icall.c: String::IndexOfAny icall.
27580         * object.c, object.h: make array->max_length more useful.
27581         Intrduced mono_object_class() and mono_string_length() macros.
27582
27583 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27584
27585         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
27586         instead of g_unichar_isdigit.
27587
27588 2002-04-11  Nick Drochak  <ndrochak@gol.com>
27589
27590         * icall.c: Implement a simple Double.ToString().
27591
27592 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
27593
27594         * appdomain.h: only io-layer.h is supposed to be included.
27595         * icall.c: explicitly import environ. Fix warning.
27596
27597 2002-04-10  Nick Drochak  <ndrochak@gol.com>
27598
27599         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
27600                 return true even if it's not Daylight Savings time.
27601                 Only return false for the case where the function isn't
27602                 implemented for a plaform (read Windows).
27603
27604 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27605
27606         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
27607         data with a mutex.
27608
27609 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
27610
27611         * mempool.c (mono_mempool_alloc): only use g_malloc when
27612         absolutely necessary.
27613
27614 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
27615
27616         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
27617
27618         * class.c (mono_class_vtable): use domain mempool to allocate vtable
27619         (mono_class_proxy_vtable): use domain mempool
27620
27621 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
27622
27623         * appdomain.h, appdomain.c: split initialization that requires the
27624         execution engine support into mono_runtime_init().
27625
27626 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
27627
27628         * class.c (mono_class_init): don't include vtable inside MonoClass
27629         to save some memory, gather some statistics.
27630         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
27631
27632 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27633
27634         * icall.c: internalcall implementation for ValueType.Equals().
27635
27636 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
27637
27638         * object.c (mono_message_init): moved 
27639         (mono_runtime_exec_main): new arch. independent impl.
27640         (mono_runtime_invoke_array): new method - like
27641         mono_runtime_invoke, but you can pass an array of objects.
27642         (mono_remoting_invoke): new arch. independent impl.
27643         (mono_message_invoke): new arch. independent impl.
27644         (mono_runtime_class_init): new arch. independent impl.
27645         (mono_runtime_object_init): new arch. independent impl.
27646
27647 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27648
27649         * metadata.c, object.c, reflection.c: documented the exported
27650         functions.
27651
27652 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
27653
27654         * icall.c: simpler code to pass the assembly builder data to corlib.
27655         Implement GetNestedTypes() internalcall.
27656
27657 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27658
27659         * class.c: warn if a type can't be loaded.
27660
27661 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
27662
27663         * image.h: typedef MonoImageOpenStatus
27664         * types.h: removed unused file
27665         
27666 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
27667
27668         * icall.c: Enum_ToObject accepts enum value arguments.
27669
27670 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27671
27672         * class.c: move initialization of properties, events and nested
27673         classes, so that they happen for interfaces, too.
27674
27675 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27676
27677         * icall.c: cleanup some ugly casts in Array_SetValue*.
27678
27679 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27680
27681         * icall.c: the values array fro enums is of the correct type, now.
27682         Implement (correctly) getFullName instead of assQualifiedName for
27683         MonoType.
27684         * reflection.h, reflection.c: added mono_type_get_name ().
27685
27686 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27687
27688         * assembly.c, image.h: for each MonoImage, record from wich assembly
27689         it was loaded.
27690         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
27691         Make Type.Assembly work.
27692
27693 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
27694
27695         * debug-symfile.h: use char* instead of gpointer to avoid
27696         unnecessary casts.
27697
27698         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
27699
27700         * icall.c (ves_icall_InternalExecute): impl. FielSetter
27701         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
27702
27703 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
27704
27705         * icall.c (mono_message_init): impl. (code cleanup)
27706         (ves_icall_InternalExecute): impl. FieldGetter
27707
27708         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
27709         defined we call all (non-static)methods through the vtable. 
27710
27711 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
27712
27713         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
27714         finalizer even though the memory is still referenced (and the chunk of
27715         memory is not freed).
27716
27717 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
27718
27719         * assembly.c: fix brokeness.
27720
27721 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
27722
27723         * class.c: kill some warnings. Check explicit interface method
27724         implementation also without considering the namespace.
27725         Load also literal strings in static class data.
27726
27727 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
27728
27729         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
27730         (default_assembly_name_resolver): Make the resolver take the
27731         "base" directory where the assembly was originally defined, so we
27732         can load DLLs that are in the same directory as the assembly that
27733         is being referenced.
27734
27735 2002-03-28  Dick Porter  <dick@ximian.com>
27736
27737         * file-io.h: 
27738         * file-io.c:
27739         * socket-io.c: 
27740         * unicode.h: 
27741         * unicode.c: Warning cleanups
27742
27743 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
27744
27745         * object.h, reflection.h: use the correct type instead of MonoObject.
27746
27747 2002-03-28  Martin Baulig  <martin@gnome.org>
27748
27749         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
27750         (mono_debug_update_symbol_file): Initialize classes if necessary.
27751
27752 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
27753
27754         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
27755         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
27756
27757 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
27758
27759         * assembly.h: fix function prototype.
27760         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
27761         * mono-endian.h: use const cast.
27762
27763 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27764
27765         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
27766
27767 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
27768
27769         * loader.c: don't assert when a typeref can't be loaded, give
27770         a chance to the runtime to trow an exception instead.
27771         * loader.h: fix warning.
27772
27773 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
27774
27775         * class.c (mono_class_proxy_vtable): added proxy support
27776
27777 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
27778
27779         * icall.c: removed last of PAL calls, added System.Environment
27780         * file-io.h, file-io.c: MonoIO implementation
27781         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
27782
27783 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
27784
27785         * appdomain.c: do not use the byte marker in ldstr table lookup.
27786         * debug-helpers.c: allow two ':' to separate class and method name.
27787         * object.c: allocate arrays bounds with the GC, too.
27788         * verify: add a few more checks.
27789
27790 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
27791
27792         * reflection.c: output also literal strings. Allocate parameter data
27793         with GC_malloc() (thanks, Martin, for catching this!).
27794
27795 2002-03-26  Martin Baulig  <martin@gnome.org>
27796
27797         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
27798         include the `this' offset in the `param_offsets'.
27799
27800 2002-03-25  Martin Baulig  <martin@gnome.org>
27801
27802         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
27803         mono_debug_get_class() function to get the classes. Added new
27804         relocation types for arrays and strings.
27805         (mono_debug_get_class): New static function to search in all
27806         referenced assemblies for a metadata token.
27807
27808         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
27809
27810 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27811
27812         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
27813         hold gc-allocated objects. Make the string heap a stream like the
27814         others. Removed duplicated code when writing stream info.
27815         Added asserts to catch possible buffer overflows. Set the sorted map
27816         for tables that need sorting. Added some documentation.
27817
27818 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
27819
27820         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
27821         for interned strings and vtables.
27822
27823 2002-03-24  Martin Baulig  <martin@gnome.org>
27824
27825         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
27826         it in the array since it was created with g_slist_prepend().
27827
27828 2002-03-24  Martin Baulig  <martin@gnome.org>
27829
27830         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
27831         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
27832         (mono_debug_method_from_token): Renamed to
27833         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
27834         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
27835
27836         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
27837         relocation types.
27838
27839         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
27840
27841 2002-03-24  Martin Baulig  <martin@gnome.org>
27842
27843         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
27844         (mono_debug_method_from_token): New func.
27845
27846         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
27847         New interncall, calls mono_debug_local_type_from_signature().
27848         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
27849         calls mono_debug_method_from_token().
27850
27851 2002-03-23  Martin Baulig  <martin@gnome.org>
27852
27853         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
27854         specifies the number of bytes to be converted, not the array size.
27855         Return the number of chars, not the number of bytes.
27856         (ves_icall_iconv_get_chars): The `byteCount' argument
27857         specifies the number of bytes to be converted, not the array size.
27858
27859 2002-03-23  Martin Baulig  <martin@gnome.org>
27860
27861         * reflection.h (MonoReflectionSigHelper): New type.
27862
27863         * reflection.c (mono_reflection_sighelper_get_signature_local),
27864         (mono_reflection_sighelper_get_signature_local): New functions.
27865
27866         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
27867         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
27868         interncalls.
27869
27870 2002-03-23  Martin Baulig  <martin@gnome.org>
27871
27872         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
27873         is_writeable is set.
27874         (mono_raw_buffer_update): New function to write the modified map
27875         back to disk.
27876
27877         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
27878
27879         * debug-symfile.c (mono_debug_update_symbol_file): Call
27880         mono_raw_buffer_update() when done writing.
27881
27882 2002-03-23  Martin Baulig  <martin@gnome.org>
27883
27884         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
27885
27886         * debug-symfile.c: Added support for arguments and local variables.
27887
27888 2002-03-23  Dick Porter  <dick@ximian.com>
27889
27890         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
27891         protected by ifdefs, hence breaking the w32 build.
27892
27893 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27894
27895         * object.c: implement is_interned() the right way.
27896
27897 2002-03-21  Martin Baulig  <martin@gnome.org>
27898
27899         * debug-symfile.[ch]: New files to handle debugging information
27900         files. There's also support to dynamically update these symbol
27901         files to include machine dependent information.
27902
27903 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
27904
27905         * threads.c (mono_thread_create): new function to create thread
27906         from C
27907
27908 2002-03-20  Martin Baulig  <martin@gnome.org>
27909
27910         * icall.c (ves_icall_InternalInvoke): Create a new object if the
27911         method is a constructor.
27912         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
27913         points to ves_icall_InternalInvoke().
27914
27915 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
27916
27917         * file-io.c: Flush shouldn't throw exceptions.
27918
27919 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
27920
27921         * file-io.c: FileStream flush support; FileSetLength now
27922         restores file pointer.
27923
27924 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
27925
27926         * class.c: set image for pointer classes.
27927
27928 2002/03/19  Nick Drochak <ndrochak@gol.com>
27929
27930         * sysmath.c: Forgot one.
27931
27932 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
27933
27934         * sysmath.c: Avoid redefining existing names.
27935
27936 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
27937
27938         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
27939         handled by runtime as icall rather than dllimport from libm.so
27940         * file-io.c, file-io.h: fixed handle argument type.
27941
27942 2002-03-18  Dick Porter  <dick@ximian.com>
27943
27944         * reflection.c (mono_image_get_type_info): rename interface to
27945         iface, because of "#define interface struct" on windows.
27946
27947 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
27948
27949         * class.c, class.h: rename and export mono_ptr_class_get().
27950         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
27951         * reflection.c, reflection.h, icall.c: better/saner type name
27952         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
27953         method signatures.
27954
27955 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
27956
27957         * class.c (mono_class_init): removed hardcoded GHC_SLOT
27958
27959         * icall.c (ves_icall_InternalInvoke): impl.
27960
27961 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27962
27963         * reflection.c: output the interface map table, too.
27964
27965 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27966
27967         * class.c (class_compute_field_layout): separate computation of 
27968         static field layout
27969
27970 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
27971
27972         * icall.c: added System.Buffer support.
27973         * file-io.c: moved file icalls from PAL to FileStream.
27974
27975 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
27976
27977         * icall.c (ves_icall_System_Object_GetHashCode): impl.
27978
27979 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
27980
27981         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
27982
27983 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27984
27985         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
27986
27987 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
27988
27989         * debug-helpers.{c,h}: moved here from monograph some useful functions
27990         to locate a method by name/signature in a class or image. Included
27991         also a small and flexible IL disassembler.
27992
27993 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
27994
27995         * reflection.c: fixup tokens in methods with small header size, too.
27996
27997 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
27998
27999         * object.c (mono_string_to_utf8): remove assert(!error), instead
28000         print a warning. 
28001
28002 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
28003
28004         * icall.c: update to the new mono_Array_class_get interface.
28005
28006 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
28007
28008         * appdomain.c, object.c: Boehm-GC enable.
28009         * icall.c: make get_data_chunk() support split data requests.
28010         Ensure a class is initialized in more cases. Return only the first
28011         property found in GetProperties() or the compiler gets confused. 
28012         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
28013         * reflection.h, reflection.c: add fixup mechanism for field and method
28014         tokens. Initialize assembly->typeref in a single place. Output
28015         properties after events. Support custom attributes for events, too.
28016         Typo fix for paramter custom attrs.
28017
28018 2002-03-07  Martin Baulig  <martin@gnome.org>
28019
28020         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
28021
28022 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
28023
28024         * class.c (mono_array_class_get): fix. for multi. dim. arrays
28025
28026 2002-03-06  Martin Baulig  <martin@gnome.org>
28027
28028         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
28029         non-zero lower bounds. See testcases #F10-#F13.
28030
28031 2002-03-05  Martin Baulig  <martin@gnome.org>
28032
28033         * exception.c (mono_get_exception_argument_out_of_range): New exception.
28034
28035         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
28036         ves_icall_System_Array_GetValue(), only calculate the absolute array position
28037         here.
28038         (ves_icall_System_Array_SetValue): Likewise.
28039         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
28040         as argument and does the actual work. This function is used when copying a
28041         multi-dimensional array.
28042         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
28043         now do all the widening conversions of value types.
28044         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
28045
28046 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28047
28048         * class.c: remove some magic numbers and use the smbolic names,
28049         instead. Added init_events() to load event info at class init time.
28050         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
28051         and mono_metadata_methods_from_event().
28052         * reflection.h, reflection.c: added support for writing out the evnets
28053         related information.
28054
28055 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
28056
28057         * reflection.h, icall.c: use a different method (GetInterfaces)
28058         to gather interface info and add isbyref, isprimitive and
28059         ispointer to the ves_icall_get_type_info() return value.
28060
28061 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
28062
28063         * class.h: stared adding support for events.
28064         * icall.c: split find_members implementation. Added debug icall to get
28065         the address of an object.
28066         * reflection.c: handle TypeBuilders in mono_type_get_object().
28067
28068 2002-03-01  Martin Baulig  <martin@gnome.org>
28069
28070         * icall.c (ves_icall_System_Array_GetLength): This must throw an
28071         ArgumentOutOfRangeException(), not an ArgumentException().
28072         (ves_icall_System_Array_GetLowerBound): Likewise.
28073         (ves_icall_System_Array_GetValue): Improved argument checking.
28074         (ves_icall_System_Array_SetValue): Improved argument checking.
28075
28076 2002-03-01  Martin Baulig  <martin@gnome.org>
28077
28078         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
28079         called with invalid arguments rather than just dying with g_assert().
28080         (ves_icall_System_Array_SetValue): Likewise.
28081         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
28082         raise a NotImplementedException instead.
28083         (ves_icall_System_Array_GetLength): Added argument checking.
28084         (ves_icall_System_Array_GetLowerBound): Added argument checking.
28085
28086 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
28087
28088         * object.h (mono_assert): new macros mono_assert and
28089         mono_assert_not_reached
28090
28091 2002-02-28  Martin Baulig  <martin@gnome.org>
28092
28093         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
28094         and "System::String::IsInterned" to "System::String::_IsInterned".
28095
28096 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
28097
28098         * icall.c: remove hacks for typebuilder. Added icall to create a
28099         modified type from a tybebuilder.
28100         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
28101         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
28102         to create a backing MonoClass for a TypeBuilder.
28103
28104 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28105
28106         * class.c, class.h: more refactoring of class init.
28107         Export mono_class_setup_mono_type() and mono_class_setup_parent().
28108
28109 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
28110
28111         * marshal.c, marshal.h: start of marshaling interface.
28112
28113 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
28114
28115         * icall.c: fix order in assembly qualified name icall.
28116
28117 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
28118
28119         * class.c: do not free str, since we store it in the hash table.
28120         * reflection.h: add label field to MonoILExceptionInfo.
28121         * reflection.c: handle references to more than one assembly. Handle
28122         case when there isn't a module created in the assembly.
28123
28124 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
28125
28126         * class.c: Fix typo. Start refactoring of class init code.
28127
28128 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
28129
28130         * appdomain.c: exit with 1 on error.
28131         * class.c: we already have the name in MonoClassField.
28132         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
28133         MonoStreamHeader instead of an offset of image->raw_metadata.
28134
28135 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
28136
28137         * appdomain.c (mono_init): Be even more descriptive about the error.
28138
28139 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
28140
28141         * appdomain.c: give the user an informative message when corlib can't
28142         be loaded.
28143
28144 2002-02-26  Martin Baulig  <martin@gnome.org>
28145
28146         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28147         New icall to get the time zone data.
28148
28149 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28150
28151         * reflection.c: set virtual and raw size of section correctly.
28152         * threads.c: transfer domain information to newly created threads.
28153
28154 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
28155
28156         * class.c: when instancing a class in a domain, load the default
28157         vaules for static fields from the constant table. Fix System.Enum to
28158         not be an enum.
28159         * icall.c: implement Object::GetType() internalcall. Implemented
28160         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
28161         Fixed checking of binding flags in find_members().
28162         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
28163         * reflection.c: handle enumerations when writing to the constant
28164         table. Use a different object cache for types.
28165
28166
28167 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
28168
28169         * object.c (mono_object_isinst): fix for arrays
28170
28171         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
28172
28173 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
28174
28175         * object.c: don't use mprotect ()  and fix intern pool hash table
28176         lookup for big endian systems.
28177
28178 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
28179
28180         * icall.c: change type_is_subtype_of () signature.
28181
28182 2002-02-21  Mark Crichton  <crichton@gimp.org>
28183
28184         * rand.c, rand.h: Added random number generator for
28185         System.Security.Cryptography classes.
28186
28187         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
28188
28189         * icall.c: Added System.Security.Cryptography calls.
28190
28191 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
28192
28193         * class.c, icall.c, metadata.c: better support for pointer types.
28194         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
28195         * reflection.c: Add support for getting custom attrs for properties
28196         and simplify some code.
28197
28198 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
28199
28200         * icall.c: change getToken () and add custom attribute GetBlob()helper
28201         method.
28202         * reflection.h: add custom attrs array to the reflection builder structures.
28203         * reflection.c: encode and emit custom attributes for all the relevant
28204         reflection objects. Cache fieldref and methodref tokens. Change
28205         mono_image_create_token() interface to take a MonoDynamicAssembly.
28206         More complete custom attributes decoder. Load custom attributes for
28207         Assembly, Field, Method and Constructor objects, too. Make the
28208         returned array an Attribute[] one, not object[]. Added
28209         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
28210         custom attribute constructor.
28211
28212 2002-02-20  Dick Porter  <dick@ximian.com>
28213
28214         * icall.c:
28215         * rawbuffer.c:
28216         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
28217         problem code out for now).
28218
28219 2002-02-19  Radek Doulik  <rodo@ximian.com>
28220
28221         * object.c (mono_ldstr): use hash table to avoid multiple swapping
28222
28223 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
28224
28225         * icall.c: register the GetCustomAttributes method.
28226         * object.c, object.h: add mono_string_new_len ().
28227         * reflection.h, reflection.c: added mono_runtime_invoke(),
28228         mono_install_runtime_invoke(). Added
28229         mono_reflection_get_custom_attrs () to load custom attributes and
28230         create the attribute objects.
28231
28232 2002-02-19  Dick Porter  <dick@ximian.com>
28233         * threads-dummy-types.c:
28234         * threads-dummy-types.h:
28235         * threads-dummy.c:
28236         * threads-dummy.h:
28237         * threads-pthread-types.c:
28238         * threads-pthread-types.h:
28239         * threads-pthread.c:
28240         * threads-pthread.h:  Deleted obsolete files
28241
28242 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
28243
28244         * class.c (mono_class_vtable): runtime init the class when we
28245         allocate static class data.
28246
28247         * icall.c (ves_icall_System_Array_SetValue): check for null values.
28248
28249         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
28250         and String - but we will need generic marshalling support in the
28251         future. 
28252         (mono_init): set the domain name in a ms compatible way
28253
28254         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
28255         String[].
28256
28257 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
28258
28259         * object.c (mono_array_clone): use alloca() instead of g_malloc  
28260         for sizes
28261
28262         * appdomain.c (mono_domain_unload): impl.
28263
28264 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
28265
28266         * appdomain.c, object.c: fix intern pool implementation.
28267         * class.c: fix alignment code.
28268
28269 2002-02-16  Radek Doulik  <rodo@ximian.com>
28270
28271         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
28272         and s2 > s1, just copy lower bytes to be compatible with little
28273         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
28274         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
28275
28276         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
28277         force big_endian to be 1 for big endian machines 
28278         (ves_icall_iconv_new_decoder): ditto
28279
28280 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
28281
28282         * socket-io.c (convert_sockopt_level_and_name): If the system
28283         doesn't define SOL_IP or SOL_TCP, get them by hand using
28284         getprotobyname() and caching the values (because this could be a
28285         slow operation).
28286         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
28287         Use the appropriate struct when the system does support it. Ie,
28288         not all systems have struct ip_mreqn so use struct ip_mreq when
28289         appropriate.
28290
28291 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
28292
28293         * reflection.c: handle finally clauses.
28294
28295 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
28296
28297         * socket-io.c: use g_snprintf() instead of snprintf.
28298
28299 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
28300
28301         * reflection.c (mono_param_get_objects): Cast second argument to
28302         mono_method_get_param_names to a const char** to silence the
28303         compiler warning.
28304
28305         * appdomain.c (mono_domain_assembly_open): Put parens around the
28306         truth statement in the for-loop.
28307
28308         * unicode.c (iconv_convert): Got rid of a compiler warning about
28309         int i being unused when the system has a new iconv.
28310         (iconv_get_length): Same.
28311
28312         * image.c (load_class_names): Cast the second argument to
28313         g_hash_table_insert() to char* to hush compiler warnings about the
28314         arg being a const.
28315         (mono_image_open): Same here.
28316
28317         * socket-io.c: Don't conditionally include sys/filio.h or
28318         sys/sockio.h here anymore since we now get them from
28319         io-layer/io-layer.h
28320         (inet_pton): If the system doesn't support inet_aton, implement
28321         using inet_addr and also #define INADDR_NONE if it isn't defined
28322         by the system.
28323
28324 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
28325
28326         * metadata.c, metadata.h: added function to get packing and size info
28327         of a typedef.
28328         * reflection.h, reflection.c: handle field RVA data. Save info about
28329         the table layout if needed. Assign typedef indexes to all the types
28330         before dumping the info about them to avoid forward reference problems.
28331
28332 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
28333
28334         * socket-io.c (convert_sockopt_level_and_name): ifdef
28335         SO_ACCEPTCONN because it is not defined on my system (old debian)
28336
28337 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
28338
28339         * opcode.c: use stddef.h to get NULL.
28340
28341 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
28342
28343         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
28344         for FIONBIO, FIONREAD and SIOCATMARK.
28345         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
28346         define INADDR_NONE and besides, inet_addr() is deprecated and
28347         should not be used. Use inet_pton() instead - it also has the
28348         added bonus that it can easily handle IPv6 addresses as well.
28349         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
28350
28351 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
28352
28353         * decimal.c: remove _MSC_VER conditional.
28354
28355 2002-02-13  Dick Porter  <dick@ximian.com>
28356
28357         * socket-io.c: 
28358         * icall.c: Internal calls for Blocking, Select, Shutdown,
28359         GetSocketOption and SetSocketOption
28360
28361 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28362
28363         * assembly.cs: better resolver: use it instead of some kludgy
28364         code.
28365
28366 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
28367
28368         * reflection.c: the best way to speed-up the compiler is to avoid
28369         infinite loops.
28370
28371 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
28372
28373         * class.c (mono_class_vtable): changed the object layout
28374         (obj->vtable->class). 
28375         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
28376
28377 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
28378
28379         * assembly.c: look for assemblies in the assembly dir, too.
28380
28381 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28382
28383         * class.c: fix thinko in mono_class_from_type().
28384
28385 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
28386
28387         * exception.h, exception.c: added TypeLoadException.
28388         * object.h, object.c: added mono_array_clone ().
28389         * icall.c: handle throwOnError in AssemblyGetType().
28390         Added Array.Clone().
28391         * opcode.h, opcode.c: use a single value for the opcode val.
28392         Compile fix for non-gcc compilers.
28393
28394 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
28395
28396         * opcodes.c, opcodes.h: export interesting info about opcodes.
28397
28398 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
28399
28400         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
28401         icalls. 
28402
28403         * class.c (class_compute_field_layout): set element_class for enums
28404         (mono_class_create_from_typedef): set element_class for normal classes
28405
28406         * icall.c (ves_icall_System_Enum_get_value): impl.
28407
28408         * class.c (mono_class_create_from_typedef): do not set valuetype
28409         flag for System.ValueType and System.Enum
28410
28411 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
28412
28413         * unicode.c (iconv_convert): fix big endian problem.
28414
28415 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
28416
28417         * class.c: add asserts if we are ever going to scribble over memory.
28418         * socket-io.c: not all systems have AF_IRDA defined.
28419
28420 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
28421
28422         * class.c (class_compute_field_layout): do not consider static
28423         fields to compute alignment
28424
28425 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
28426
28427         * appdomain.c (mono_appdomain_get): impl.
28428         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
28429
28430 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
28431
28432         * icall.c: ignore "file://" prefix when loading an assembly.
28433
28434 2002-01-23  Dick Porter  <dick@ximian.com>
28435
28436         * socket-io.c:
28437         * icall.c:
28438         * Makefile.am: Added socket support
28439
28440 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
28441
28442         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
28443         code back.  This should return the assemblies that are loaded by
28444         the runtime on behalf of an application domain. 
28445
28446         The current implementation is still broken, it just returns every
28447         assembly loaded, but until we get real applications domain this
28448         will do.
28449
28450 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
28451
28452         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
28453         AppDomain object.
28454
28455 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
28456
28457         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
28458         the mono_class_from_name lookup.
28459         (ves_icall_get_parameter_info): ditto.
28460         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
28461         method.
28462         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
28463
28464 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
28465
28466         * class.c: load also nested classes on class init.
28467         System.ValueType instance methods gets passed boxed
28468         values, unless methods in derived classed that get a pointer to the
28469         data.
28470         * icall.c: use better name parsing code in GetType().
28471         * image.c, image.h: add mono_image_loaded ().
28472         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
28473         * reflection.c, reflection.h: added mono_reflection_parse_type().
28474
28475 2002-01-22  Veronica De Santis <veron78@interfree.it>
28476
28477         * icall.c : Added mapping of internal calls for Manual and Auto reset events
28478         * threads.c : Added the implementation of internal calls for events
28479         * threads.h : Added prototypes of internal calls for events
28480         
28481 2002-01-21  Radek Doulik  <rodo@ximian.com>
28482
28483         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
28484
28485 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
28486
28487         * class.c (mono_class_init): set min_align to 1 (instead of 0)
28488         (mono_class_value_size): use min_align
28489
28490 2002-01-20  Dick Porter  <dick@ximian.com>
28491
28492         * threads.h:
28493         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
28494         so it compiles on w32.
28495
28496 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
28497
28498         * metadata.c (mono_type_stack_size): impl.
28499
28500         * class.c (mono_class_get_field): impl. memberref token
28501
28502 2002-01-16 Veronica De Santis <veron78@@interfree.it>
28503
28504         * icall.h : Added the internal calls mapping for CreateMutex_internal
28505                     and ReleaseMutex_internal.
28506         * threads.h : Added the prototype of mutexes internal calls.
28507         * threads.c : Added the implementations of mutexes internal calls.
28508
28509 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
28510
28511         * metaparse.h: removed unused file.
28512         * reflection.c, reflection.h: added stream_data_align () function 
28513         to align data in streams and keep stream aligned. Add support for
28514         exception support in method headers.
28515
28516 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
28517
28518         * unicode.c: make iconv_convert () return the number of bytess written
28519         in the output buffer.
28520
28521 2002-01-15  Dick Porter  <dick@ximian.com>
28522         * threads.c: Make the runtime's idea of infinite timeouts coincide
28523         with the class library's
28524
28525         Fix a particularly egregious bug in mono_thread_cleanup(). That
28526         code was so utterly bogus it must have been written on a Monday.
28527
28528 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
28529
28530         * reflection.h: add subtypes field to TypeBuilder.
28531         * reflection.c: encode constants for literal fields.
28532         Handle subtypes. Fix user string token (and add a zero byte)
28533         at the end.
28534         
28535 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
28536
28537         * class.c (mono_class_init): bug fix: assign slot numbers for
28538         abstract methods.
28539
28540 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
28541
28542         * reflection.c: don't try to output a code RVA for abstract methods.
28543         Small fixes for method header format. Output parameter info to the
28544         ParamDef table. Save method overriding info to MethodImpl table.
28545         Fix property support. Allow typedef.extends to be a type in the
28546         building assembly.
28547         * verify.c: fix off-by-one error.
28548
28549 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
28550
28551         * class.c: fix mono_class_from_mono_type () for szarray types.
28552         Remove unused cache check in mono_class_from_type_spec().
28553         * icall.c: *type_from_name () functions handle simple arrays and byref.
28554         * reflection.c: handle byref and szarray types. Handle methods without
28555         body (gets P/Invoke compilation working). Handle types and fields in
28556         get_token ().
28557         * reflection.h: add rank to MonoTypeInfo.
28558
28559 2002-01-10  Dick Porter  <dick@ximian.com>
28560
28561         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
28562         internal calls
28563
28564 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
28565
28566         * icall.c: initialize class in type_from_handle ().
28567         Loop also in parent classes for get_method ().
28568         * reflection.c: properly encode class and valuetype types.
28569         Start on encoding TypeBuilder types. Handle fieldrefs.
28570         Use correct length when registering a user string.
28571         Handle ConstructorBuilder and MonoMethod in get_token ().
28572         Make mono_type_get_object () aware of cached types.
28573         * object.c: back out change to mono_string_new ().
28574
28575 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
28576         * object.c: mono_string_new should return a NULL when the string 
28577         passed in is NULL -- not try to deference it.
28578         
28579 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
28580
28581         * icall.c: hack to make IsSubType work for TypeBuilders.
28582         * reflection.c: emit constructors before methods.
28583         Retrieve param names in mono_param_get_objects().
28584
28585 2002/01/05  Nick Drochak  <ndrochak@gol.com>
28586
28587         * Makefile.am: fix list of headers and sources so automake 1.5
28588         doesn't complain. Removed \# at end of list.
28589
28590 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
28591
28592         * reflection.c: get token for a method ref. Set return type of
28593         constructor to void.
28594         * loader.c: debug message.
28595         * class.c: typo fix.
28596
28597 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
28598
28599         * icall.c: fix array init with rank > 1. FindMembers
28600         loops in parent class as well.
28601         * image.c: do not insert nested types in name cache.
28602         * reflection.c: warning fix.
28603         * reflection.h: add override method (for interface impl).
28604
28605 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
28606
28607         * metadata.c: fix customattr decoding.
28608
28609 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
28610
28611         * rawbuffer.cs: Added native Win32 implementation, avoids using
28612         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
28613
28614 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
28615
28616         * class.c: make the low-level routines handle the cache.
28617
28618 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
28619
28620         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
28621
28622 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
28623
28624         * class.c: fix mono_array_element_size() for objects.
28625         * class.h, class.c: add properties to MonoClass and load them
28626         at init time.
28627         * icall.c: check with isinst() when assigning a value to an array
28628         instead of requiring the classes to match exactly.
28629         Implemented icall for System.Type::GetType().
28630         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
28631         enums. Handle bindingflags when looking for methods and fields.
28632         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
28633         and mono_metadata_methods_from_property().
28634         * reflection.h, reflection.c: added structures for propreties,
28635         parameters and enums. Implemented mono_property_get_object() and
28636         mono_param_get_objects().
28637
28638 2001-12-18  Dick Porter  <dick@ximian.com>
28639
28640         * file-io.c: Use mono_string_to_utf16() instead of
28641         mono_string_chars()
28642
28643         * object.c: Added mono_string_to_utf16(), which copies the non
28644         NULL-terminated MonoString into a new double-null-terminated
28645         buffer.
28646
28647 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
28648
28649         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
28650
28651 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
28652
28653         * file-io.c: raise exceptions if handle is invalid.
28654
28655 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
28656
28657         * assembly.c: yet another check for mscorlib.
28658         * class.c, class.h: load nesting info for classes.
28659         * icall.c: many new functions to support the Reflection classes.
28660         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
28661         * reflection.h, reflection.c: mono_image_create_token(),
28662         mono_assembly_get_object(), mono_type_get_object(),
28663         mono_method_get_object(), mono_field_get_object(): methods to return
28664         objects that parallel the C representation of assemblies, types,
28665         methods, fields.
28666
28667 2001-12-11  Dick Porter  <dick@ximian.com>
28668
28669         * icall.c:
28670         * file-io.c: Internal calls for file IO.
28671
28672 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
28673
28674         * tabledefs.h: missing FileAttributes.
28675         * verify.h, verify.c: use is_valid_string () to simplify and check for
28676         valid strings more correctly. Fix warnings and speeling.
28677         Check more tables: Filed, File, ModuleRef, StandAloneSig.
28678         Check code: branches, maxstack, method calls.
28679
28680 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
28681
28682         * object.c (mono_object_allocate): removed static, so that the jit
28683         can allocate value types.
28684
28685         * icall.c (ves_icall_System_DateTime_GetNow): impl.
28686
28687 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28688
28689         * class.c: init enum types right away and register the
28690         token->MonoClass map in mono_class_create_from_typedef ().
28691         * verify.h, verify.c: first cut of the verifier.
28692         * pedump.c: add --verify switch to verify metadata tables.
28693         * tabledefs.h: add some missing enums.
28694
28695 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
28696
28697         * class.c (mono_install_runtime_class_init): impl.
28698         (mono_class_init): renamed mono_class_metadata_init to
28699         mono_class_init, also removed the metadata_inited flag
28700
28701         * object.c (mono_object_isinst): use faster algorithm
28702
28703 2001-11-30  Radek Doulik  <rodo@ximian.com>
28704
28705         * mono-endian.h: reverted last change
28706         added function prototypes
28707
28708         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
28709         add mono-endian.c back
28710
28711         * mono-endian.c: returned back, as Paolo pointed out, it's needed
28712         for unaligned access, I've mistaked it with endianess. I am
28713         sorry.
28714         (mono_read16): fix reverted endianess
28715         (mono_read64): ditto
28716         (mono_read32): ditto
28717
28718 2001-11-30  Dick Porter  <dick@ximian.com>
28719
28720         * exception.c: Implement mono_exception_from_name()
28721
28722 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28723
28724         * metadata.h, metadata.c: remove params_size and locals_size and their
28725         calculation from the metadata code: they are only usefult to the
28726         interp.
28727
28728 2001-11-29  Radek Doulik  <rodo@ximian.com>
28729
28730         * object.c (mono_ldstr): swap bytes here, it's probably not the
28731         best place, but works for me now, I'll redo it once I know mono
28732         better, also note that I add PROT_WRITE and don't reset back, also
28733         note that it's only affects big endians, so x86 should be OK
28734
28735         * mono-endian.h (read16): use just glib macros for both endians
28736
28737         * mono-endian.c: removed as glib macros are used in in
28738         mono-endian.h so we don't need to care about endianess for read
28739         macros as glib does that for us already
28740
28741 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
28742
28743         * class.h, class.h: take minimum alignment into consideration so
28744         that the fields of a class remain aligned also when in an array.
28745
28746 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28747
28748         * loader.h, loader.c: add mono_method_get_param_names().
28749         * class.c: 0-init class fields.
28750
28751 2001-11-26  Dick Porter  <dick@ximian.com>
28752
28753         * icall.c:
28754         * threads-types.h:
28755         * threads.c: New file that handles System.Threading on all platforms
28756
28757         * object.c: 
28758         * object.h: Remove the synchronisation struct from MonoObject,
28759         replace it with a pointer that gets initialised on demand
28760
28761         * Makefile.am: Replace all the system-specific threading code with
28762         a single file that uses the new wrapper library
28763
28764 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
28765
28766         * class.c, class.h: add mono_install_trampoline() so that the runtime
28767         can register a function to create a trampoline: removes the ugly
28768         requirement that a runtime needed to export arch_create_jit_trampoline.
28769         * object.h, object.c: added mono_install_handler() so that the runtime
28770         can install an handler for exceptions generated in C code (with
28771         mono_raise_exception()). Added C struct for System.Delegate.
28772         * pedump.c: removed arch_create_jit_trampoline.
28773         * reflection.c: some cleanups to allow registering user strings and
28774         later getting a token for methodrefs and fieldrefs before the assembly
28775         is built.
28776         * row-indexes.h: updates and fixes from the new ECMA specs.
28777
28778 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
28779
28780         * class.h, class.c: add enum_basetype field to MonoClass.
28781         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
28782         to get index in the constant table reated to a field, param or
28783         property.
28784         * reflection.h, reflection.c: handle constructors. Set public-key and
28785         version number of the built assembly to 0.
28786         * row-indexes.h: update from new ECMA spec.
28787
28788 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28789
28790         * class.h, class.c: add a max_interface_id to MonoClass.
28791         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
28792         since it's used to do that. Added mono_type_type_from_obj().
28793         Make GetType() return NULL instead of segfaulting if the type was not
28794         found. Handle simple arrays in assQualifiedName.
28795         * object.h: add a struct to represent an Exception.
28796         * reflection.c: output call convention in method signature.
28797         Add code to support P/Invoke methods and fixed offsets for fields.
28798
28799 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
28800
28801         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
28802         the value.
28803         * icall.c: use mono_array_addr instead of array->vector: fixes the
28804         reflection image writing.
28805         * reflection.c: init call convention byte to 0 in method signature.
28806         Encode the property signature. Don't output property-related methods
28807         twice. Really process the properties for a type (don't cast a field to
28808         a property, my mom always told me that).
28809         Fix 64 bit issues in pointer alignment in a different and more
28810         readable way.
28811
28812 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
28813
28814         * loader.h: Removed type class from MonoDefaults, added monotype
28815
28816         * loader.c: Loaded MonoType, removed loading of Type
28817
28818         * icall.c (my_mono_new_object): Now returns a System.MonoType,
28819         and fills in System.Type._impl with a RuntimeTypeHandle rather
28820         than the actual MonoClass *
28821
28822         (ves_icall_type_from_handle): change from type_class to
28823         monotype_class
28824
28825         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
28826         implemented
28827
28828         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
28829         implemented
28830
28831         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
28832
28833         (ves_icall_System_Reflection_Assembly_GetType): implemented
28834
28835         (ves_icall_System_MonoType_assQualifiedName): implemented
28836
28837         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
28838
28839 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
28840
28841         * assembly.c (mono_assembly_open): Implement a cache for the
28842         assemblies. 
28843
28844         (mono_assembly_close): only destroy the assembly when the last
28845         reference is gone.
28846         
28847 2001-11-09  Dick Porter  <dick@ximian.com>
28848
28849         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
28850
28851 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
28852
28853         * class.c (mono_class_metadata_init): bug fix: compute the right slot
28854
28855 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
28856
28857         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
28858         from Martin Weindel.
28859         * object.h: add mono_string_chars ().
28860
28861 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
28862
28863         * reflection.c (build_compressed_metadata): Eliminates warnings
28864         and uses 64-bit clean code.
28865
28866         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
28867         (mono_type_equal): Change signature to eliminate warnings.
28868
28869 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
28870
28871         * icall.c, loader.c: remove the internalcall array constructors.
28872         Changes to match the new MonoArray structure.
28873         * object.h, object.c: an array object doesn't allocate an extra
28874         vector. Add mono_array_new_full () to create jagged arrays easily.
28875
28876 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
28877
28878         * metadata.h, metadata.c: add mono_metadata_field_info () to
28879         retreive all the info about a field from vairous tables.
28880         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
28881         * class.h, class.c: augment MonoClassField with more info.
28882         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
28883         policy and load a field's RVA if needed.
28884
28885 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
28886
28887         * class.c (mono_class_metadata_init): create a trampoline for all
28888         virtual functions instead of actually compiling them.
28889
28890 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
28891
28892         * class.h, class.c: include name in MonoClassField.
28893         * class.c: fix fundamental type of System.Object and System.String.
28894         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
28895         tokens in ldtoken.
28896         * icall.c: remove internalcalls for the Reflection stuff that is now
28897         done in C# code.
28898         * loader.c: mono_field_from_memberref () implementation.
28899         * mono-endian.c: thinko (s/struct/union/g).
28900         * object.c, object.h: make the mono_string_* prototypes actually use
28901         MonoString instead of MonoObject.
28902         * reflection.c, reflection.h: updates for changes in the reflection
28903         code in corlib: we use C structures that map to the actual C# classes.
28904         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
28905         fat method header if needed and use the info from the ILGenerator for
28906         methods. Handle fields in types. Misc fixes.
28907
28908 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
28909
28910         * class.c (mono_class_metadata_init): bug fix: always allocate
28911         space for static class data
28912
28913 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
28914
28915         * class.c (mono_compute_relative_numbering): use relative
28916         numbering to support fast runtime type checks.
28917
28918 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
28919
28920         * class.c (mono_class_create_from_typeref): added debugging output
28921         to print class name when MonoDummy is returned instead of real class
28922
28923 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
28924
28925         * class.c (mono_class_metadata_init): interface offset table now
28926         contains pointers into the vtable - this is more efficient for the jit
28927
28928 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
28929
28930         * class.c (mono_class_metadata_init): use a temporary vtable (the
28931         old algorithm only worked for the interpreter, but not for the jit)
28932
28933 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
28934
28935         * loader.c (method_from_memberref): use mono_class_get to get the
28936         class of an array instead of using System.Array directly.
28937         (mono_get_method): also add MEMBERREF methods to the method cache
28938         which usefull for arrays.
28939
28940 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
28941
28942         * pedump.c (arch_compile_method): added to compute vtable entry
28943
28944         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
28945         number of interfaces.
28946         
28947         * class.h: merged MonoArrayClass into MonoClass
28948
28949         * class.c (mono_class_create_from_typedef): compute the vtable size and
28950         allocate space to include the vtable inside MonoClass
28951         (mono_class_metadata_init): initialize the vtable
28952
28953 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
28954
28955         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
28956         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
28957         * image.c: endian fixes by Laurent Rioux.
28958         * object.h, object.c: rename MonoStringObject to MonoString and
28959         MonoArrayObject to MonoArray. Change some function names to conform to
28960         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
28961         guint16* as first argument, so don't use char*.
28962         Provide macros to do the interesting things on arrays in a portable way.
28963         * threads-pthread.c: updates for the API changes and #include <sched.h>
28964         (required for sched_yield()).
28965         * icall.c: updates for the API changes above.
28966         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
28967         platforms that need them.
28968
28969 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
28970
28971         * class.c: set the correct type for all the fundamental
28972         type when loading the class.
28973
28974 2001-10-05  Dick Porter  <dick@ximian.com>
28975
28976         * threads-pthread.c (pthread_mutex_timedlock): Simple
28977         compatibility version for C libraries that lack this call.
28978
28979 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
28980
28981         * class.c: MonoTypes stored in MonoClass are stored as
28982         fundamental MonoTypes when the class represents a
28983         fundamental type (System.Int32, ...).
28984         The TypeHandle return by ldtoken is a MonoType*.
28985         * icall.c: ves_icall_get_data_chunk () write out all the
28986         PE/COFF stuff. Implement ves_icall_define_method (),
28987         ves_icall_set_method_body (), ves_icall_type_from_handle ().
28988         * image.c: properly skip unknown streams.
28989         * loader.h, loader.c: add type_class to mono_defaults.
28990         * metadata.c, metadata.h: export compute_size () as
28991         mono_metadata_compute_size () with a better interface.
28992         Typo and C&P fixes.
28993         * pedump.c: don't try to print the entry point RVA if there is no entry point.
28994         * reflection.c, reflection.h: many cleanups, fixes, output method
28995         signatures and headers, typedef and typeref info, compress the metadata
28996         tables, output all the heap streams, cli header etc.
28997         * row-indexes.h: typo fixes.
28998
28999 2001-10-04  Dick Porter  <dick@ximian.com>
29000
29001         * object.h: Add a synchronisation mutex struct to MonoObject
29002
29003         * object.c (mono_new_object): Initialise the object
29004         synchronisation mutexes
29005
29006         * icall.c: System.Threading.Monitor internal calls
29007         
29008         * threads-pthread.h:
29009         * threads-pthread.c: System.Threading.Monitor internal calls
29010
29011         * threads-types.h: New file, includes the system-specific thread
29012         structures
29013         
29014         * threads-pthread-types.h:
29015         * threads-pthread-types.c: New files, handle pthread-specific
29016         synchronisation types
29017
29018         * threads-dummy-types.h: 
29019         * threads-dummy-types.c: New files of dummy support for
29020         thread-specific types
29021
29022         * metadata.c:
29023         * image.c:
29024         * pedump.c: include mono-endian.h not endian.h
29025         
29026         * Makefile.am: More threads files.
29027         Name mono-endian.h not endian.h
29028
29029 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
29030
29031         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
29032         stuff and implement a few more bits.
29033         * icall.c: a field needs to be dereferenced twice. Do not use the same
29034         name for two variables in the same scope.
29035         * image.c, image.h: cleanups.
29036
29037 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
29038
29039         * class.c (mono_class_metadata_init): bug fix: compute the right size
29040
29041 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
29042
29043         * icall.c: implemented some of the Reflection internalcalls.
29044         * image.c, image.h: start writing out the PE/COFF image.
29045         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
29046         that does the reverse than decode_blob_size ().
29047         * object.c: use mono_metadata_encode_value (). Move here
29048         temporary implementation of mono_string_to_utf8 ().
29049         * rawbuffer.c: make malloc_map static.
29050
29051 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
29052
29053         * metadata.c: fix type comparison for arrays.
29054         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
29055         Added a couple of new classes to monodefaults.
29056         * icall.c: added a couple of Reflection-related internalcalls.
29057         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
29058         Added a byval_arg MonoType to MonoClass.
29059
29060 2001-09-28  Dick Porter  <dick@ximian.com>
29061
29062         * icall.c:
29063         * threads-pthread.h: 
29064         * threads-pthread.c: Implemented internal calls for
29065         LocalDataStoreSlot operations.  Applied mutexes around all shared
29066         data.  Reworked the thread creation and Start() operations to
29067         avoid a race condition.
29068         
29069         * threads-dummy.h:
29070         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
29071
29072 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
29073
29074         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
29075
29076 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
29077
29078         * class.c, loader.c: warn and return NULL instead of erroring out.
29079         * icall.c: added System.AppDomain::getCurDomain().
29080         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
29081
29082 2001-09-25  Dick Porter  <dick@ximian.com>
29083
29084         * threads-pthread.h:
29085         * threads-pthread.c: Implemented timed thread joining and added
29086         System.Threading.Thread::Join_internal internal call
29087
29088         * icall.c: Added System.Threading.Thread::Join_internal internal call
29089
29090         * threads-dummy.h:
29091         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
29092
29093 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
29094
29095         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
29096         mono_string_intern () to implement the semantics of the ldstr opcode
29097         and the interning of System.Strings.
29098         * icall.c: provide hooks to make String::IsIntern and String::Intern
29099         internalcalls.
29100
29101 2001-09-23  Dick Porter  <dick@ximian.com>
29102
29103         * threads-dummy.c: 
29104         * threads-dummy.h: New files of dummy threading routines
29105
29106         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
29107         support code based on system specifics
29108
29109         Rename PTHREAD_LIBS to THREAD_LIBS
29110         
29111 2001-09-23  Dick Porter  <dick@ximian.com>
29112
29113         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
29114         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
29115         internal calls.
29116         (mono_thread_init): Set up a Thread object instance to return when
29117         the main thread calls Thread.CurrentThread
29118         (mono_thread_cleanup): Wait for all subthreads to exit
29119
29120         * icall.c: New internal calls for System.Threading.Thread::Sleep
29121         (including Schedule) and CurrentThread
29122
29123         * threads.h: New file, to insulate thread-specific stuff from the
29124         rest of the code
29125
29126 2001-09-21  Dick Porter  <dick@ximian.com>
29127
29128         * threads-pthread.h: 
29129         * threads-pthread.c: New file, for handling pthreads-style
29130         threading support.  Start() now starts a new thread and executes
29131         the ThreadStart delegate instance.
29132
29133         * icall.c: Added the internalcall for
29134         System.Threading.Thread::Start_internal
29135
29136         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
29137
29138 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
29139
29140         * loader.c: work around the different signatures for delegates
29141         constructors csc generates in compiled code vs the ones compiled in mscorlib.
29142
29143 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
29144
29145         * class.h, class.c: add mono_class_get_field_from_name ().
29146         * *: Fix C comments and other ANSI C issues.
29147
29148 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
29149
29150         * endian.h, assembly.c: fix some endianness issues.
29151
29152 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
29153
29154         * loader.h, load.c: add delegate_class to mono_defaults.
29155         Handle runtime provided methods in mono_get_method ().
29156
29157 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
29158
29159         * loader.c (mono_get_method): use pinvoke for internal call
29160
29161         * icall.c: use pinvoke for internal call
29162
29163         * loader.c (method_from_memberref): set the method name
29164
29165 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
29166
29167         * metadata.c: help the compiler generate better code for
29168         mono_class_from_mono_type ().
29169
29170 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
29171
29172         * class.c (mono_class_metadata_init): delayed computing of the
29173         class size to mono_class_metadata_init ()
29174
29175 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
29176
29177         * class.c, class.h: add an interfaces member to MonoClass.
29178         * image.c, image.h: add assembly_name field to MonoImage
29179         from the assembly table.
29180         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
29181
29182 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
29183
29184         * class.c: Handle Array in mono_class_from_mono_type ().
29185         * metadata.c, pedump.c: some endian fixes.
29186
29187 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
29188
29189         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
29190         * metadata.c: fix small problem introduced with the latest commit.
29191
29192 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
29193
29194         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
29195         We don't need a MonoMetadata pointer anymore to compare signatures in
29196         mono_metadata_signature_equal (), update callers.
29197         Reduced memory usage an number of allocations for MonoMethodHeader and
29198         MonoMethodSignature.
29199
29200 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
29201
29202         * metadata.c: added compare for szarray.
29203
29204 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
29205
29206         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
29207         and add a couple more types to it and mono_defaults. Give an hint on
29208         classes that need implementing in our corlib and are referenced
29209         in mscorlib.
29210
29211 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
29212
29213         * class.h, class.c: keep track if a class is also an Enum.
29214         * loader.c: Implement a couple more types for use in libffi
29215         marshalling. Gives better diagnostics when failing to dlopen
29216         a library. Set method->klass for P/Invoke methods, too.
29217
29218 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
29219
29220         * class.c, class.h: add a MonoType this_arg to MonoClass that
29221         represents a pointer to an object of the class' type that
29222         can be used by the interpreter and later the type cache.
29223         Add best guess alignment info for valuetype objects.
29224
29225 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
29226
29227         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
29228         into MonoType: one less level of indirection and allocation and
29229         simplifies quite a bit of code. Added cache for MonoTypes that are
29230         used frequently, so that we don't need to allocate them all the time.
29231
29232 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
29233
29234         * class.c (mono_class_create_from_typedef): System.Enum is also a
29235         value type, although it does not derive from System.ValueType
29236         (maybe a bug in the ms compiler?)
29237
29238         * metadata.c (mono_type_size): return the right size for value types
29239
29240         * loader.c (mono_get_method): only initialize method header if not abstract
29241
29242         * class.c (mono_class_from_mono_type): use mono_default values. 
29243
29244 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
29245
29246         * *: use MonoClass pointers instead of <type_tokens>
29247         
29248         * class.h: new flag: metadata_inited.
29249
29250         * class.c (mono_class_metadata_init): impl.
29251         (mono_class_instance_size): impl.
29252         (mono_class_data_size): impl.
29253
29254 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
29255
29256         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
29257         MonoClass now has the name and name_space fields. 
29258         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
29259         mono_get_method () takes and optional MonoClass as argument.
29260         Removed mono_typedef_from_name() and added mono_class_token_from_name()
29261         instead that takes advantage of a map from class names to typedef
29262         tokens in MonoImage.
29263
29264 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
29265
29266         * metadata.c: zero is not a valid alignment boundary.
29267         Merge MONO_TYPE_VOID in default decoding code.
29268
29269 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
29270
29271         * image.h: merged MonoMetadata into MonoImage
29272
29273         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
29274         identify the type of elements.
29275
29276 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
29277
29278         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
29279         * cil-coff.h: split MonoMSDOSHeader and add size info.
29280         * image.c: add some consistency checks.
29281         * metadata.c: fix row size computation: one programmer
29282         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
29283         add explanation for the locator routine.
29284         Fix decoding of size in method header.
29285         
29286 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
29287
29288         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
29289         (g_concat_dir_and_file): Bring g_concat_dir_and_file
29290         function from gnome-libs.  This uses the right path separator
29291         based on the OS, and also works around a bug in some systems where
29292         a double slash is not allowed. 
29293         (default_assembly_name_resolver): Use g_concat_dir_and_file
29294         (mono_assembly_open): ditto.
29295
29296 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
29297
29298         * metadata.c (mono_metadata_signature_equal): impl.
29299
29300         * *: void is now a realy MonoType (instead of using NULL)
29301         
29302         * metadata.c (do_mono_metadata_parse_type): use
29303         mono_metadata_parse_type to parse void value.
29304
29305 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
29306
29307         * metadata.c, metadata.h: in the signature and method header store
29308         only the space required for holding the loca vars and incoming arguments.
29309
29310 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
29311
29312         * metadata.c (do_mono_metadata_parse_type): treat void like any
29313         other type (instead of assigning NULL);
29314
29315 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
29316
29317         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
29318
29319 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
29320
29321         * image.c (do_mono_image_open): added a cache for arrays.
29322
29323 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
29324
29325         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
29326         decode a single column from a row in a metadata table and changes
29327         to take advantage of it in the typedef locator (gives a nice speed up).
29328         Store offset info for function params.
29329
29330 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
29331
29332         * image.h (MONO_IMAGE_IS_CORLIB): removed 
29333
29334 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
29335
29336         * assembly.c: how could mono_assembly_close () had ever worked?
29337         * metadata.c, metadata.h: provide offset info for local vars.
29338         Implement mono_type_size () to take care of alignment as well
29339         as size (it was mono_field_type_size in cli/class.c before).
29340
29341 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
29342
29343         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
29344
29345         * assembly.h (CORLIB_NAME): set to corlib.dll
29346
29347         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
29348
29349 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
29350
29351         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
29352         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
29353         tokentype.h: massive namespace cleanup.
29354
29355 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
29356
29357         * metadata.h, metadata.c: decode exception clauses when parsing method header.
29358
29359 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
29360
29361         * metadata.c (mono_metadata_free_type): added check for type !=
29362         NULL (void) before calling mono_metadata_free_type()
29363
29364 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
29365
29366         * metadata.h, row_indexes.h: added header with enumerations to use
29367         to index in the columns from tables in metadata and to decode coded
29368         tokens: we should start using this instead of embedding magic numbers
29369         all over the code.
29370
29371 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
29372
29373         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
29374         Move metadata_t info from cli_image_info_t to MonoImage, where
29375         it's easily accessible. Changed all the uses accordingly.
29376         Added the method and class caches to MonoImage.
29377         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
29378         and mono_metadata_decode_value () signature to be more consistent
29379         with the other parse functions (and simplify code). Taken advantage
29380         of zero-length array allocation with GCC. Removed reduntant (and
29381         wrong) MonoFieldType struct and use MonoParam instead. Changed
29382         mono_metadata_parse_field_type () to use common code for parsing.
29383         Added mono_metadata_typedef_from_field () and
29384         mono_metadata_typedef_from_method () to lookup a typedef index from a
29385         field or method token.
29386         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
29387
29388 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
29389
29390         * metadata.c (mono_metadata_parse_field_type): Implement. 
29391         (do_mono_metadata_parse_type): Split engine from
29392         mono_metadata_parse_type, so that we can create smaller structures
29393         for things that just have one pointer to the MonoType (look at
29394         the MonoFieldType)
29395
29396 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
29397
29398         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
29399         as Jan Gray found out, it is incorrect. 
29400
29401 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
29402
29403         * assembly.c: Implement asssembly loading.  This loads an image
29404         and loads all the referenced assemblies.  Come to think of it, we
29405         could always do lazy loading of the assemblies. 
29406
29407         * image.c (mono_image_open): Keep loaded images in a hashtable.
29408
29409         * image.h (MonoImage): Add reference count.
29410
29411 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
29412
29413         * assembly.c (mono_assembly_open): Keep track of the file name in
29414         case the assembly has no ASSEMBLY table.
29415
29416         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
29417         from get.c here.
29418
29419 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
29420
29421         * metadata.c, metadata.h: decode local vars in method header
29422         parse function. Change callers accordingly.
29423
29424 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
29425
29426         * metadata.h, cil-coff.h: protect against multiple inclusion.
29427         Added some new structures to hold information decoded from metadata:
29428         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
29429         and relevant decoding/free functions.
29430         * metadata.c: implement decoding functions. Add warning for out of bounds
29431         index in mono_metadata_locate(). Implement mono_get_method () to retreive
29432         all the info about a method signature and invocation. Remove check on
29433         uninitialized local var in parse_mh() and fix memory leak.
29434
29435 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
29436
29437         * metadata.h: More macros.
29438
29439         * tokentype.h: New file.
29440
29441 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
29442
29443         * assembly.c: added a consistency check and initialize
29444         some structures with g_new0().
29445         * metadata.c: fixed a couple more bugs in table size computation
29446         and add other checks for out-of bound access to metadata.
29447
29448 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
29449
29450         * metatada.c: fix bugs computing table sizes. Spew a
29451         warning when index in string heap is out of bounds.
29452
29453 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
29454
29455         * metadata.h: Add a couple of macros to manipulate tokens. 
29456
29457 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
29458
29459         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
29460         cli_section_tables).
29461
29462 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
29463
29464         * metadata.c (mono_metadata_user_string): New function, provides
29465         access to the UserString heap. 
29466
29467 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
29468
29469         * metadata.c: Add inline documentation.
29470
29471 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
29472
29473         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
29474         files. 
29475
29476 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
29477
29478         * typeattr.h: New file, TypeAttribute flags. 
29479
29480 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
29481
29482         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
29483         mono_assembly_ensure_section): Section loading code.
29484         (load_section_tables): Load the sections.
29485
29486         * mono/metadata/metadata.c (mono_metadata_locate_token,
29487         mono_metadata_locate): Functions to locate the information
29488         definition given a token or a table and an index.
29489         (mono_metadata_compute_table_bases): New.
29490         (compute_size): New function to compute the sizes of the various
29491         tables.
29492
29493         * mono/metadata/metadata.h: Finish listing the different index
29494         types. 
29495
29496         * mono/metadata/pedump.c: Improve to dump new information.
29497
29498 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
29499
29500         * mono/metadata/metadata.c: Entered all the tables matching
29501         Beta2. 
29502
29503         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
29504
29505
29506
29507