2004-05-28 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / metadata / ChangeLog
1 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
2
3         * threadpool.c: Really wait for 500ms after the async call, even if the wait
4           is interrumped.
5         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
6           before waiting for it, and call CloseHandle after the wait to unref it.
7           This will make sure that handles are not disposed too early.
8
9 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10
11         * appdomain.c:
12         * appdomain.h:
13         * icall.c: removed
14         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
15         needed now.
16
17         * object.c: se the application_base only for the domain that runs
18         Main. Fixes bug #59216,
19
20 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21
22         * appdomain.c:
23         * object.c: only the domain in which Main is run have
24         SetupInformation.ConfigurationFile set, so moved a few lines from
25         appdomain.c to object.c.
26
27 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28
29         * appdomain.c: we tried to load [name].(dll|exe), but according
30         to bug #57710, we must also try [culture]/[name].(dll|exe) and
31         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
32         There's a test case attached to bug #58922.
33
34 2004-05-27  Dick Porter  <dick@ximian.com>
35
36         * icall.c:
37         * file-io.c: Implemented icalls for locking and unlocking regions
38         in a file.
39         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
40         FALSE on error (fixes both compiler warning and real bug.)
41
42 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
43
44         * culture-info-tables.h: reflecting locale-builder updates.
45
46           (Added missing ChangeLog entry for 05/26)
47
48 2004-05-27  Jackson Harper  <jackson@ximian.com>
49
50         * locales.c: Fix some cut and paste errors.
51         
52 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
53
54         * mono-config.c: set the correct path for config. directory on windows.
55
56 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
57
58         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
59           on win32.
60
61 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
62
63         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
64         from pinvoke functions.
65         
66         * marshal.c (mono_ftnptr_to_delegate): Implement this.
67
68 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
69
70         * culture-info-tables.h: reflecting locale-builder updates.
71
72 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
73
74         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
75         #59086.
76
77 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
78
79         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
80         * icall.c: Modified icalls for RNG.
81         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
82         Windows (CryptoAPI).
83
84 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
85
86         * locales.c: Fix build.
87
88 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
89
90         * culture-info-tables.h: reflecting locale-builder updates.
91
92 2004-05-25  Jackson Harper  <jackson@ximian.com>
93
94         * locales.c: When creating the current culture use the $LANGs
95         specific culture. So DateTimeFormat and NumberFormat entries are created.
96         
97 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
98
99         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
100         a char array as parameter.
101
102 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
103
104         * image.c: In mono_image_open(), always use an absolute path name to
105           look for already loaded images.
106
107 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
108
109         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
110         missing in the windows build (like older cygwin include files).
111
112 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
113
114         * icall.c: Fixed check for possible integer overflow in Buffer_
115         BlockCopy icall. Replaced comments style // by /* */.
116
117 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
118
119         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
120         
121         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
122         check after MONO_VTADDR. Fixes pinvoke2.exe.
123
124         * marshal.h marshal.c metadata.h: Add beginnings of support for
125         ftnptr -> delegate marshalling.
126
127 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
128
129         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
130         * threads.c: Fix warnings.
131
132 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
133
134         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
135         * icall.c: Registered icalls for Suspend and Resume.
136         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
137           Thread.Abort.
138         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
139         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
140         * process.c: Use WaitForSingleObjectEx.
141         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
142           checkpoints.
143         * threads.c, threads.h: Make use of new Ex wait methods. Improved
144           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
145           for Suspend and Resume. Added new mono_thread_stop, used for stoping
146           background threads. Added basic support for Abort in Windows.
147           Start new threads using a managed delegate invoke wrapper. This wrapper
148           has an interruption checkpoint that is needed since an interruption
149           can be requested before the thread leaves the unmanaged code that starts 
150           the thread.
151         * marshal.c: Added interruption checkpoint after every native call, and
152           also before managed calls for wrappers called from unmanaged code to
153           go into managed code.
154         * object.h: Added new field in MonoThread to keep track of interruption
155           requests.
156
157 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
158
159         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
160         calls.
161
162 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
163
164         * appdomain.c:
165         * assembly.c:
166         * gc.c:
167         * locales.c:
168         * mono-config.c:
169         * rand.c: getenv -> g_getenv (windows!)
170
171         * process.c: complete_path is also used on non-windows platforms.
172
173 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
174
175         * icall.c: new signature for Process_Start.
176
177         * process.[ch]: new signature for Process_Start. If we're on windows
178         and UseShellExecute is false, we have to search for the program by
179         ourselves if we don't get a full path.
180
181 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
182
183         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
184         marshalling and call CleanUpNativeData if needed. Fixes #58646.
185
186 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
187
188         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
189         Fixes bug #58373.
190
191 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
192
193         * process.c: use double quotes to quote program name and arguments on
194         windows. Fixes bug #58575.
195
196 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
197
198         * file-io.c: don't return "." and ".." when using windows Find*File.
199
200 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
201
202         * marshal.c: Don't pass wrappers to message init because method 
203         addressed used to lookup metadata. part of remoting[2|3] fix.
204
205 2004-05-15  Jackson Harper  <jackson@ximian.com>
206
207         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
208         path is essentially the same as MONO_PATH except that it points to
209         GACs instead of lib directories.
210         * loader.h: The user gac is gone so we dont need function to
211         enable/disable it.
212         * mono-config.c: user gac option is now gone.
213         
214 2004-05-15  Jackson Harper  <jackson@ximian.com>
215
216         * culture-info.h: Make defines more consistent, add calendar data
217         to the culture info table.
218         * culture-info-tables.h: Add basic calendar data. Basically
219         everyone gets default gregorian until all the data is
220         updated.
221         * locales.c: Use the new consistent defines. Set calendar data for
222         culture info objects.
223         * object.h: add a field for calendar data to CultureInfo
224         
225 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
226
227         * image.c: image->runtime_invoke_cache is keyed on signatures now.
228         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
229         a signature.
230         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
231         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
232         an extra param that is the pointer of the method to invoke. The IL for
233         the invoke method is no longer specific to the method, but to the
234         signature of the method. Thus, we can share the same code for multiple
235         methods. This reduces the number of methods that have to be compiled.
236
237 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
238
239         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
240
241         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
242
243         * icall.c: Optimize Buffer.BlockCopy.
244
245 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
246
247         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
248         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
249         quote). Changed them to "MMMM yyyy".
250
251 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
252
253         * rand.c
254         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
255
256 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
257
258         * reflection.h: Updated after changes to managed structures.
259
260         * appdomain.c: Bump corlib version.
261
262 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
263
264         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
265         windows.
266
267 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
268
269         * Makefile.am: link to ../os/libmonoos.la on windows.
270
271         * assembly.c:
272                 -If MONO_DEBUG, warn about non-existing directories in
273                 MONO_PATH.
274                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
275                 compile time variable.
276                 -Removed init_default_path and call mono_set_rootdir from
277                 libmonoos.a instead (windows only).
278
279         * assembly.h: declare mono_assembly_getrootdir().
280
281         * domain.c:
282         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
283
284         * loader.c: s/getenv/g_getenv/
285
286 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
287
288         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
289
290         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
291
292         * metadata.h: Add new marshalling conversions.
293
294         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
295         function.
296
297         * reflection.c (mono_reflection_get_type): Lookup the type in all
298         modules of a multi-module assembly. Fixes #58291.
299
300 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
301
302         * threads.c: Before aborting a background, set the StopRequested
303         state.  This avoids throwing the Abort exception.
304         In mono_thread_manage, don't continue with the shutdown until all
305         aborted threads have actually stopped.
306
307 2004-05-10  Jackson Harper  <jackson@ximian.com>
308
309         * locales.c: Remove the modifier from culture names.
310         
311 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
312
313         * Makefile.am: monosn is not installed any more. It has been deprecated
314         in favor of sn.
315
316 2004-05-07  Jackson Harper  <jackson@ximian.com>
317
318         * locales.c
319         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
320         Fix array construction, add bailout if the length is 0.
321
322 2004-05-07  Dick Porter  <dick@ximian.com>
323
324         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
325         machine doesn't have a DNS entry.  Patch by Urs Muff
326         (umuff@quark.com), fixes bug 57928.
327
328 2004-05-06  Jackson Harper  <jackson@ximian.com>
329
330         * reflection.c: Handle null PublicTokens properly. alloc mem for
331         assembly names culture so we dont crash when freeing it.
332         
333 2004-05-06  Jackson Harper  <jackson@ximian.com>
334
335         * assembly.c: Check the usergac when loading with partial names.
336         
337 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
338
339         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
340         does nothing for now (not required for Linux/Windows) but the class
341         library can call it (and a newer or modified runtime could need it).
342         * icall.c: Registred icall.
343
344 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
345
346         * loader.c: prints a message on module loading error we set MONO_DEBUG
347         environment variable.
348
349 2004-05-05  Jackson Harper  <jackson@ximian.com>
350
351         * appdomain.c: Handle PublicKeyToken=null properly.
352         
353 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
354
355         * environment.c|h: Added icall ves_icall_System_Environment_
356         GetOSVersionString to get the current OS version as a string.
357         * icall.c: Registred icall.
358
359 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
360
361         * object.c: in mono_object_get_virtual_method(), take into account that
362         non-virtual methods don't have a slot in the vtable. Check needed when
363         the object is a proxy.
364
365 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
366
367         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
368         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
369
370         * object.c (mono_class_compute_gc_descriptor): Fix warning.
371
372         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
373         passed when a valuetype is expected.
374
375         * object.c (mono_unhandled_exception): Only set the exit code if the
376         exception happens in the main thread. Fixes thread5.exe.
377
378         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
379         invalid names. Fixes #58047.
380
381 2004-05-03  Jackson Harper  <jackson@ximian.com>
382
383         * assembly.c: This line was committed accidently and is unneeded.
384         
385 2004-05-03  Jackson Harper  <jackson@ximian.com>
386
387         * icall.c: Add new icall for Assembly::LoadWithPartialName
388         * assembly.c/.h: new function that probes the GAC to load partial
389         assembly names by Paolo Molaro.
390         
391 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
392
393         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
394         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
395         (type_get_fully_qualified_name): Added PublicKeyToken when building a
396         full type name.
397
398 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
399
400         * appdomain.c: fixed check for 'neutral' culture and removed warning.
401         * reflection.c: fix bug when parsing a full type name and Version is not
402         the last thing in the string.
403
404 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
405
406         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
407         crashes when it is freed.
408
409 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
410
411         * assembly.c: print the compat warning to stderr.
412
413 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
414
415         * assembly.c (mono_assembly_load_references): Add a compatibility
416         hack to run old applications that might be still referencing the
417         3300-based assemblies, only do this for System.xxx.
418
419 2004-05-01  Jackson Harper  <jackson@ximian.com>
420
421         * appdomain.c: If the culture is neutral we set it to "".
422         
423 2004-04-29  Jackson Harper  <jackson@ximian.com>
424
425         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
426
427 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
428  
429         * string-icalls.c: added low overhead function for copying chars
430         * icall.c: added needed icall for the above function
431  
432 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
433
434         * icall.c: fix return value of get_global_assembly_cache.  Implemented
435         Environment.GetLogicalDrives.
436
437 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
438
439         * rand.c: try and talk to egd or prngd
440         for random bytes if opening devices fail.
441
442 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
443
444         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
445         alignment for the type using the native alignment of its members 
446         instead of using klass->min_align.
447
448         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
449
450 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
451
452         * file-io.c:
453         * socket-io.c: added check for sys/aio.h.
454
455 2004-04-28  Dick Porter  <dick@ximian.com>
456
457         * threads.c: Don't abort a thread thats already aborting, when
458         terminating everything.
459
460 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
461
462         * icall.c: added 2 new async calls for Socket.
463
464         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
465         IO on *nix systems.
466
467         * threadpool.c: removed unused variable.
468
469 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
470
471         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
472
473 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
474
475         * locales.c: put back string_invariant_tolower () and
476         string_invariant_toupper ().
477
478 2004-04-26 David Waite <mass@akuma.org>
479
480         * file-io.h:
481         * socket-io.h:
482         * threads.h:
483         * unicode.h: remove comma from end of enumeration declarations
484
485 2004-04-26 David Waite <mass@akuma.org>
486
487         * debug-mono-symfile.h:
488         * decimal.c:
489         * mono_debug.h:
490         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
491
492
493 2004-04-26  Jackson Harper  <jackson@ximian.com>
494
495         * appdomain.c: Increment version number.
496         
497 2004-04-26  Jackson Harper  <jackson@ximian.com>
498
499         * appdomain.c: Set assembly references public token value when
500         PublicKeyToken is specified, not the hash_value. Free public token
501         values when free assembly name data. Previously the public key
502         token was hex decoded, however we are using hex encoded public key
503         tokens, so this is not neccasary.
504         * assembly.c: Lookup assemblies in the gac if their public token
505         value is set. Add function to allow enabling user gac
506         lookups. Specify whether or not the assembly was loaded from the
507         GAC. Compare full assembly names when checking the cache for
508         assemblies (Temporarily disabled see comment in code). Remove
509         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
510         specifies trace-loader they get extra info to stdout on the
511         loading of assemblies.
512         * image.h: Add a field for an assembly references public token
513         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
514         whether an assembly has been loaded from the GAC.
515         * image.c: Remove a corlib -> mscorlib name mapping.
516         * loader.h: Add function to enable/disable the user gac.
517         * mono-config.c: Check if the usergac is enabled in the config
518         file.
519         * icall.c: New icall to determine whether or not an assembly has
520         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
521         * tabldefs.h: Add constant for assemblyref flag that specifies a
522         full public key is used instead of a public token.
523         * reflection.c: Remove mscorlib -> corlib mappings. Set
524         PublicTokenValue instead of hash value. This value is a hex
525         string so it does not need to be expanded.
526
527 2004-04-26  Martin Baulig  <martin@ximian.com>
528
529         * mono-debug-debugger.c (mono_debugger_initialize): Set
530         `mono_debugger_initialized' before calling mono_debug_lock().
531
532 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
533
534         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
535           InternalToUpper/InternalToLower.
536         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
537           removed invariant culture shortcut.  This is now done in managed code.
538         * locales.c: (string_invariant_toupper/tolower) removed.
539
540 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
541
542         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
543         Added Poll internal call.
544
545         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
546         call for Poll. Select was too heavy for polling a single socket.
547
548         * threadpool.[ch]: added mono_threadpool_cleanup.
549         * threads.c: use it. Don't use Thread_Abort on windows.
550
551 2004-04-23  Martin Baulig  <martin@ximian.com>
552
553         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
554
555 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
556
557         * icall.c: Registred new icalls for key pair protection and added an
558         icall for Environment.GetFolderPath on Windows.
559         * security.c|h: Added new icalls for key pair protection.
560
561 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
562
563         * socket-io.c: don't display the non-supported family warning for known
564         families. Now this is not displayed on windows when checking support
565         for IPv4/IPv6.
566
567 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
568
569         * class.c: don't display the layout warning for static fields.
570
571 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
572
573         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
574         * locales.c, locales.h: Added new icalls for culture-specific
575         Char.ToLower and Char.ToUpper.
576
577 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
578
579         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
580         by David Waite.
581
582 2004-04-20  Martin Baulig  <martin@ximian.com>
583
584         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
585         of the type name before passing it to mono_reflection_type_from_name().
586
587 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
588
589         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
590         encodings here. Fixes #56965.
591
592 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
593
594         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
595         fix test on strstr result not that I can see anything that
596         relies on the result.
597
598 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
599
600         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
601         Fixes #57081.
602
603         * marshal.c (mono_marshal_get_string_encoding): New helper function.
604
605         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
606         function to determine which marshalling to use for strings. Fixes
607         #56965.
608
609         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
610
611         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
612
613 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
614
615         * icall.c: #include mono-config.h
616
617 2004-04-15  Jackson Harper  <jackson@ximian.com>
618
619         * culture-info-tables.h: Fix date formats for en-US culture.
620         
621 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
622
623         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
624         ThreadPool.SetMinThreads.
625         * threadpool.c: Implemented ThreadPool.GetMinThreads and
626         ThreadPool.SetMinThreads.
627
628 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
629
630         * mono-config.c: also load the .config file in the directory
631         where the assembly was found.
632
633 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
634
635         * assembly.c: load per-assembly config files.
636         * icall.c: decrapified code to get the config dir and moved to
637         mono-config.c.
638         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
639         per-assembly config files. When doing a dll map lookup give precedence
640         to the per-assembly data.
641
642 2004-04-14  Martin Baulig  <martin@ximian.com>
643
644         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
645         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
646         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
647
648         * mono-debugger-debugger.c: While the debugger is locked, remember
649         whether the symbol tables have changes and send one single
650         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
651
652 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
653
654         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
655
656         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
657         function.
658
659         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
660         account when marshalling string arrays. Fixes #56965.
661
662 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
663
664         * icall.c: Add new icalls mapping for security.
665         * security.c|h: Add internal calls for WindowsIdentity,
666         WindowsImpersonationContext and WindowsPrincipal.
667
668 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
669
670         * class.c: Added comment to ensure the System.MonoDummy class
671         is removed when no longer necessary
672
673 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
674
675         * appdomain.c: Pass arguments to the bootstraping exceptions to
676         minimize JITed methods at boot
677
678         * metadata.c (mono_exception_from_name_two_strings): Allow for the
679         second string to be null.
680
681         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
682         Change the protocol to minimize the JIT methods at startup.  Now
683         it Returns the internal codepage, if the value of "int_code_page"
684         is 1 at entry, and we can not compute a suitable code page
685         number, returns the code page as a string.
686
687 2004-04-13  Jackson Harper  <jackson@ximian.com>
688
689         * culture-info-tables.h: Fix number of decimal digits for all
690         english locales.
691
692 2004-04-13  Jackson Harper  <jackson@ximian.com>
693
694         * icall.c: Clairfy out of sync error message. It is not always
695         your corlib that is out of sync.
696
697 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
698
699         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
700         properties when only the set accessor is overriden. Fixes #55874.
701
702 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
703
704         * assembly.c (mono_assembly_load_references): Make this thread safe.
705         Fixes #56327.
706
707 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
708
709         * monosn.c: Add missing initialization calls.
710
711 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
712
713         * locales.c:
714         ves_icall_System_Globalization_CultureInfo_construct_number_format
715         Fix g_assert so it compiles on fussier compilers re int/ptr
716         mismatch
717
718 2004-04-08  Dick Porter  <dick@ximian.com>
719
720         * socket-io.h:
721         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
722         53992.  Also rearrange the code so that the internal calls return
723         an error value and exceptions are thrown from managed code.
724
725         * icall.c: Add type info to the socket icalls.
726
727 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
728
729         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
730         owes me a beer.
731
732 2004-04-07  Martin Baulig  <martin@ximian.com>
733
734         * class.c (mono_class_from_generic_parameter): Don't default
735         `klass->parent' to `mono_defaults.object_type'.
736
737 2004-04-07  Martin Baulig  <martin@ximian.com>
738
739         * reflection.c (mono_reflection_initialize_generic_parameter): Set
740         `param->pklass->reflection_info'.       
741
742 2004-04-07  Jackson Harper  <jackson@ximian.com>
743
744         * culture-info-tables.h: Fix date separator symbol.
745         
746 2004-04-07  Martin Baulig  <martin@ximian.com>
747
748         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
749         from System.Type to System.MonoType.
750
751 2004-04-07  Martin Baulig  <martin@ximian.com>
752
753         * reflection.h
754         (MonoReflectionGenericParam): Added `has_reference_type' and
755         `has_value_type' fields.
756
757         * reflection.c (mono_image_get_generic_param_info): Encode the
758         correct flags if we have the `class' or `struct' constraint.
759
760 2004-04-07  Martin Baulig  <martin@ximian.com>
761
762         * reflection.h
763         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
764
765 2004-04-07  Jackson Harper  <jackson@ximian.com>
766
767         * appdomain.c: Revert extra patches, just wanted to bump the
768         version number.
769         
770 2004-04-07  Jackson Harper  <jackson@ximian.com>
771
772         * Makefile.am: Add culture-info private headers.
773         * icall.c: Add new icalls for contructing locales.
774         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
775         * locales.h: Declare new culture info construction methods.
776         * object.h: Add new fields used to avoid the CultureMap to
777         MonoCultureInfo.
778         * culture-info.h: Definition of structs used in the culture info
779         tables.
780         * culture-info-tables.h: Autogenerated tables that contain culture
781         info data. This file was generated with the locale-builder tool.
782         * appdomain.c: Incement corlib version number.
783         
784 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
785
786         * appdomain.c: (mono_runtime_init) move mono_thread_init
787         to before mono_object_new calls so critical sections
788         are initialized before use.
789
790 2004-04-07  Martin Baulig  <martin@ximian.com>
791
792         * icall.c
793         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
794         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
795         (ves_icall_MonoGenericParam_initialize): Removed.
796         (monogenericparam_icalls): Removed.
797         (generictypeparambuilder_icalls): Added new table for
798         System.Reflection.Emit.GenericTypeParameterBuilder.
799
800         * reflection.c
801         (mono_reflection_define_generic_parameter): Removed.
802         (mono_reflection_initialize_generic_parameter): This is now called
803         from GenericTypeParameterBuilder's .ctor.
804
805 2004-04-06  Martin Baulig  <martin@ximian.com>
806
807         * class.c (mono_class_init): Don't inflate nested classes in a
808         generic instance.
809         (mono_type_get_name_recurse): Include the generic arguments for
810         generic instances and generic type declarations.
811         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
812         (_mono_class_get_instantiation_name): Removed.
813         (mono_class_create_generic): Always use `gklass->name' as our name.
814
815         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
816
817         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
818         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
819         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
820         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
821         closed generic methods here.
822
823         * reflection.c
824         (mono_reflection_generic_inst_get_nested_types): Removed.
825         (inflate_mono_method): Copy the generic parameters from the
826         MonoMethodHeader into out MonoGenericMethod.
827
828 2004-04-06  Martin Baulig  <martin@ximian.com>
829
830         * row-indexes.h
831         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
832
833         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
834
835         * reflection.c (build_compressed_metadata): If we have any entries
836         in the GenericParam, MethodSpec or GenericParamConstraint tables,
837         set the header version to 1.1.
838
839 2004-04-06  Martin Baulig  <martin@ximian.com>
840
841         * class.c (mono_class_init): If we're a generic instance,
842         initialize our nested classes, too.
843         (_mono_class_get_instantiation_name): Deal with the new `!%d'
844         suffix. 
845
846 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
847
848         * process.c: quote the argument passed to the shell on windows.
849
850 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
851
852         * threads.c (mono_alloc_special_static_data): Allow this to be
853         called during startup.
854
855 2004-04-02  Martin Baulig  <martin@ximian.com>
856
857         * icall.c
858         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
859
860 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
861
862         * icall.c: Fix build.
863
864 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
865
866         * Makefile.am: Added security.c|h.
867         * icall.c: Added icall for get_UserName;
868         * security.c: New file for security related icalls. Added function
869         get_UserName for System.Environment (fix #56144).
870         * security.h: New. Header file for security.c
871
872 2004-04-02  Dick Porter  <dick@ximian.com>
873
874         * icall.c: Deleted the icalls that were obsoleted some time ago
875         by the ICU string code, and which were mixed into the icall
876         rearranging.  Fixes bug 55969.
877
878         * string-icalls.h: 
879         * string-icalls.c: Deleted the code that those icalls reference.
880
881 2004-04-01  Martin Baulig  <martin@ximian.com>
882
883         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
884
885         * class.c (mono_class_from_generic_parameter): Don't set 
886         TYPE_ATTRIBUTE_INTERFACE.
887         (my_mono_class_from_generic_parameter): Likewise.
888
889 2004-04-01  Martin Baulig  <martin@ximian.com>
890
891         * loader.c (find_method): Added an optional `MonoClass *ic'
892         argument to search in a specific interface.
893         (mono_get_method_constrained): New public function.
894
895 2004-04-01  Martin Baulig  <martin@ximian.com>
896
897         * reflection.c (mono_image_get_generic_field_token): Use the
898         `handleref' cache here.
899
900 2004-04-01  Martin Baulig  <martin@ximian.com>
901
902         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
903
904         * reflection.c (create_generic_typespec): Use the `typespec' hash
905         here, not the `typeref' one.    
906
907 2004-04-01  Martin Baulig  <martin@ximian.com>
908
909         * class.c (mono_class_inflate_generic_type): Moved the
910         functionality into a new static inflate_generic_type() which
911         returns NULL if it didn't do anything.  Only increment the
912         `mono_stats.inflated_type_count' if we actually inflated
913         something.
914         (mono_class_get_full): Check the classes type to see whether we
915         need to inflate it; also inflate MONO_TYPE_(M)VAR.
916
917 2004-04-01  Jackson Harper  <jackson@ximian.com>
918
919         * reflection.c: Set culture for assembly references.
920         
921 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
922
923         * reflection.[ch], icall.[ch], Fix support for pinning variables.
924
925 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
926
927         * assembly.c:
928         (do_mono_assembly_open): the critical section also covers
929         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
930
931 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
932
933         * threads.c:
934         (mono_manage_threads): abort the background threads when finishing.
935         Fixes bug #47232.
936
937 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
938
939         * gc.c: only close the done_event handle if there was no timeout.
940         C-ified comments.
941
942 2004-03-30  Martin Baulig  <martin@ximian.com>
943
944         * icall.c (icall_entries): It's called "System.Activator", not
945         "System.Activation".    
946
947 2004-03-30  Martin Baulig  <martin@ximian.com>
948
949         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
950         (mono_class_create_from_typespec): Likewise.
951
952 2004-03-30  Martin Baulig  <martin@ximian.com>
953
954         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
955         `has_ctor_constraint' and `initialized'.
956
957 2004-03-30  Martin Baulig  <martin@ximian.com>
958
959         * reflection.c (encode_new_constraint): New static function to add
960         the constructor constraint attribute to a type parameter.
961         (encode_constraints): Call encode_new_constraint() if necessary.
962
963         * reflection.h
964         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
965
966         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
967         
968 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
969
970         * reflection.c, icall.c: add support for pinning variables. 
971
972 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
973
974         * marshal.c (mono_marshal_get_managed_wrapper):
975         init bool local with zero rather than null.
976
977 2004-03-29  Martin Baulig  <martin@ximian.com>
978
979         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
980         the "official" behavior here.
981         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
982
983 2004-03-29  Martin Baulig  <martin@ximian.com>
984
985         * icall.c: Reflect latest API changes.
986
987 2004-03-29  Martin Baulig  <martin@ximian.com>
988
989         * loader.c (mono_get_method_from_token): Also call
990         mono_metadata_load_generic_params () for abstract and interface
991         methods; replace the type arguments in the method signature with
992         the ones which are loaded from the metadata.
993
994 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
995
996         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
997         of the lock is not the current thread. MS.NET don't do it, in spite of
998         what the documentation says. See bug #56157.
999
1000 2004-03-28  Martin Baulig  <martin@ximian.com>
1001
1002         * class.c (mono_class_init): Don't call init_properties() and
1003         init_events() for generic instances; set `prop->parent' when
1004         inflating properties.
1005
1006         * reflection.c (mono_generic_inst_get_object): Call
1007         `mono_class_init (ginst->klass)'.
1008         (mono_type_get_object): Only create a MonoGenericInst if your
1009         generic type is a TypeBuilder.
1010         (do_mono_reflection_bind_generic_parameters): Only set
1011         `ginst->is_dynamic' if our generic type is a TypeBuilder.
1012
1013 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
1014
1015         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
1016         Fixes #56091.
1017
1018 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1019
1020         * icall.c: added Kill_internal icall.
1021         * process.[ch]: added Kill_internal icall.
1022
1023 2004-03-25  Martin Baulig  <martin@ximian.com>
1024
1025         * class.h (MonoStats): Added `generic_instance_count',
1026         `inflated_method_count', `inflated_type_count' and
1027         `generics_metadata_size'.       
1028
1029 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1030
1031         * reflection.c: no warnings now.
1032
1033 2004-03-25  Martin Baulig  <martin@ximian.com>
1034
1035         * class.c (mono_class_get_full): New public function; does a
1036         mono_class_get(), but also takes a `MonoGenericContext *'.
1037
1038         * loader.c (mono_field_from_memberref): Renamed to
1039         `field_from_memberref', made static and added `MonoGenericContext *'
1040         argument.
1041         (mono_field_from_token): Added `MonoGenericInst *' argument.
1042         (method_from_memberef): Likewise.
1043         (mono_get_method_from_token): Likewise.
1044         (mono_get_method_full): New public function; does a
1045         mono_get_method(), but also takes a `MonoGenericContext *'.
1046
1047         * verify.c (mono_method_verify): Get the method's generic context
1048         and pass it to mono_field_from_token(), mono_get_method_full() and
1049         mono_class_get_full().
1050
1051 2004-03-25  Martin Baulig  <martin@ximian.com>
1052
1053         * class.c (mono_class_inflate_generic_type): Take a
1054         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
1055         `MonoGenericMethod *'.
1056
1057 2004-03-25  Martin Baulig  <martin@ximian.com>
1058
1059         * loader.h (MonoMethodInflated): Store the MonoGenericContext
1060         instead of the MonoGenericMethod here.
1061
1062 2004-03-25  Martin Baulig  <martin@ximian.com>
1063
1064         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
1065         each time we create a new MonoGenericInst, we also create a new
1066         context which points back to us.
1067
1068         * class.c (inflate_method): Use `ginst->context' instead of
1069         creating a new context.
1070
1071         * loader.c (method_from_memberref): Use
1072         `klass->generic_inst->context' instead of creating a new context.
1073
1074 2004-03-25  Martin Baulig  <martin@ximian.com>
1075
1076         * class.h (MonoGenericContext): New struct.
1077         (MonoGenericMethod): Removed `generic_inst'.
1078
1079         * class.c (mono_class_inflate_generic_method): Take a
1080         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
1081
1082 2004-03-25  Martin Baulig  <martin@ximian.com>
1083
1084         * loader.h (MonoMethodInflated): New typedef.
1085
1086         * metadata.h (MonoMethodSignature): Removed `gen_method', make
1087         `generic_param_count' consume just 30 bits, added `is_inflated'
1088         and `has_type_parameters' flags (one bit each).
1089
1090         * class.c (mono_class_inflate_generic_method): Create a
1091         MonoMethodInflated instead of a MonoMethodNormal and set
1092         `is_inflated' in the method signature.
1093
1094         * class.h (MonoGenericMethod): Removed `generic_method'.
1095
1096 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
1097
1098         * image.c: Make sure the name of a MonoImage is always an absolute path.
1099           This fixes bug #54415.
1100
1101 2004-03-24  Martin Baulig  <martin@ximian.com>
1102
1103         * class.c (mono_class_setup_vtable): If we're a generic instance,
1104         use our generic type's vtable size.
1105
1106 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
1107
1108         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
1109         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
1110         problems.
1111
1112 2004-03-23  Martin Baulig  <martin@ximian.com>
1113
1114         * class.h (MonoDynamicGenericInst): Added `int count_events' and
1115         `MonoEvent *events'.
1116
1117         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
1118         (typebuilder_icalls): Added "get_event_info"; calls
1119         mono_reflection_event_builder_get_event_info(). 
1120
1121         * reflection.c (mono_reflection_generic_inst_initialize): Added
1122         `MonoArray *events'.
1123         (mono_reflection_event_builder_get_event_info): New function.
1124
1125 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
1126
1127         * object.h: add mono_type_initialization_init
1128
1129         * object.c (mono_runtime_class_init): 
1130         implement class constructor synchronization rules
1131         to cope with threading issues.  
1132         add mono_type_initialization_init
1133
1134         * appdomain.c (mono_runtime_init): call 
1135         mono_type_initialization_init
1136
1137         * class.h: removing initializing field from MonoVTable
1138
1139 2004-03-23  Martin Baulig  <martin@ximian.com>
1140
1141         * class.c (my_mono_class_from_generic_parameter): Use
1142         `param->name' if it's not NULL. 
1143
1144 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
1145
1146         * class.c: do not insert non-virtual methods in the vtable.
1147         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
1148         that means the method is non-virtual. This never would have
1149         happened before.
1150
1151 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
1152
1153         * profiler.c: Added lock for accessing coverage_hash.
1154
1155 2004-03-22  Martin Baulig  <martin@ximian.com>
1156
1157         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
1158         `method->method->signature->generic_param_count != 0' to make it
1159         work for interface methods.
1160
1161 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1162
1163         * process.c: quote the string passed to the shell using g_shell_quote.
1164
1165 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1166
1167         * threads.c:
1168         (mono_threads_manage): don't remove the finalizer thread and self
1169         from the threads hash table so that mono_thread_manage can be called
1170         more than once.
1171
1172 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1173
1174         * process.c: quote the arguments when UseShellExecute is true. Fixes
1175         bug #55790.
1176
1177 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1178
1179         * threads.c: set mono_thread_detach as a cleanup routine for every
1180         thread. This way it's always executed upon thread termination, either
1181         aborted or finished normally. No more xsp hangs!
1182
1183 2004-03-17  Martin Baulig  <martin@ximian.com>
1184
1185         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
1186         `int count_nested' and a `MonoType **nested'.
1187
1188         * reflection.c (mono_reflection_bind_generic_parameters): Moved
1189         most of the functionality into a new static
1190         do_mono_reflection_bind_generic_parameters() and don't take a
1191         `MonoType *nested_in' argument any more.  Don't compute nested
1192         types here.
1193         (mono_reflection_generic_inst_get_nested_types): New public method
1194         to get nested types.
1195
1196         * class.c (mono_class_create_generic): Set `klass->nested_in' if
1197         we're a nested class.
1198
1199         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
1200         mono_reflection_generic_inst_get_nested_types() to compute the
1201         nested types.
1202
1203 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
1204
1205         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
1206         descriptive error message under windows.
1207         
1208 2004-03-17  Martin Baulig  <martin@ximian.com>
1209
1210         * class.c (dup_type): Added `const MonoType *original' argument;
1211         copy the attrs from the original type.
1212
1213 2004-03-17  Martin Baulig  <martin@ximian.com>
1214
1215         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
1216         `m->generic_inst_cache' here.
1217
1218 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
1219
1220         * exception.h exception.c: Add stack_overflow_exception.
1221
1222 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1223
1224         * threadpool.c:
1225         (overlapped_callback): call SetEvent *after* invoking the callback.
1226         No need to call CloseHandle.
1227
1228 2004-03-16  Martin Baulig  <martin@ximian.com>
1229
1230         * reflection.c (mono_image_get_fieldref_token): Take a
1231         `MonoReflectionField *' instead of a `MonoClassField *' and a
1232         `MonoClass *'; store the `MonoReflectionField *' in the hash.
1233
1234 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1235
1236         * appdomain.c: don't add the culture to the filename we're looking for
1237         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
1238
1239 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1240
1241         * locales.c: don't ignore symbols when doing case insensitive compares.
1242         Thanks Dick! Fixes bug #54046.
1243
1244         * threads.c: surround 'threads' usage with enter/leave in
1245         mono_thread_manage.
1246
1247 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
1248
1249         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
1250         implicitly marshalled as [Out]. Fixes #55450.
1251
1252         (mono_marshal_get_runtime_invoke): Zero out the result if there is
1253         an exception.
1254
1255 2004-03-16  Martin Baulig  <martin@ximian.com>
1256
1257         * class.c (mono_class_from_generic_parameter): Use the actual
1258         parameter name. 
1259
1260 2004-03-16  Martin Baulig  <martin@ximian.com>
1261
1262         * reflection.c (type_get_signature_size): New static function.
1263         Compues the size of the type in a method signature.
1264         (method_get_signature_size): New static function; calls
1265         type_get_signature_size() to compute the actual size of the
1266         method's signature.
1267         (method_encode_signature): Use method_get_signature_size() to get
1268         the signature's size rather than using `nparams * 10'.
1269
1270 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1271
1272         * file-io.h: define here WapiOverlapped on windows. I don't want the
1273         regular OVERLAPPED one.
1274
1275         * file-io.c:
1276         * threadpool.c: somehow, BindIoCompletionCallback is not found.
1277         Disabling AIO on windows.
1278
1279 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1280
1281         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
1282         bug #55385.
1283
1284 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1285
1286         * appdomain.c: upgraded corlib version.
1287
1288         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
1289         and BeginWrite. Allow opening files for asynchrnous operations.
1290
1291         * file-io.h: new struct that maps FileStreamAsyncResult.
1292         * icall.c: added new icalls.
1293         * process.[ch]: support setting child process environment variables
1294         and use the SHELL or COMSPEC when UseShellExecute is true.
1295
1296         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
1297         callback for async. IO is here and also BindHandle.
1298
1299         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
1300         from here.
1301
1302 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
1303
1304         * reflection.c (create_custom_attr): Allow len == 0.
1305
1306         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
1307         computation on big-endian machines.
1308
1309 2004-03-13  Martin Baulig  <martin@ximian.com>
1310
1311         * class.h (MonoGenericInst): Added `int count_ifaces'.
1312
1313         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
1314         `ginst->count_ifaces' instead `klass->interface_count' since we
1315         may get called before the vtable is created.
1316
1317         * loader.c (mono_method_get_param_names): If we're a generic
1318         instance, return and don't initialize the class.
1319
1320         * reflection.c (mono_reflection_setup_generic_class): Don't call
1321         ensure_runtime_vtable().
1322         (mono_reflection_bind_generic_parameters): Set
1323         `ginst->count_ifaces'.
1324
1325 2004-03-11  Jackson Harper <jackson@ximian.com>
1326
1327         * icall.c:
1328         * unicode.c:
1329         * unicode.h: Remove unused System.Char icalls.
1330         
1331 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
1332
1333         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
1334         code when we P/Invoke the first library in Windows.Forms, instead
1335         of when we first open the assembly.
1336
1337         * assembly.c: Drop the lookup from here.
1338
1339 2004-03-10  Martin Baulig  <martin@ximian.com>
1340
1341         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
1342         class for properties, fields and events.  Finally fixes #54945.
1343
1344 2004-03-10  Martin Baulig  <martin@ximian.com>
1345
1346         * metadata.c (mono_metadata_class_equal): New static function;
1347         checks whether two generic instances or two generic parameters are
1348         equal.
1349         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
1350         compare classes.        
1351
1352 2004-03-10  Martin Baulig  <martin@ximian.com>
1353
1354         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
1355
1356         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
1357         argument and write it into the `reflection_info' field.
1358
1359         * icall.c
1360         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
1361         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
1362
1363 2004-03-09  Jackson Harper  <jackson@ximian.com>
1364
1365         * char-conversions.h: use 8 bits for numeric data its all we need
1366         * icall.c: numeric data is only 8 bits now.
1367
1368 2004-03-09  Martin Baulig  <martin@ximian.com>
1369
1370         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
1371
1372         * class.c (init_properties, init_events): Initialize the new
1373         `parent' field.
1374
1375         * reflection.c (typebuilder_setup_properties): Likewise.
1376         (typebuilder_setup_events): Likewise.
1377
1378         * reflection.h (MonoEventInfo): Replaced `parent with
1379         `declaring_type' and `reflected_type'.
1380
1381         * icall.c (ves_icall_get_property_info): Distinguish between
1382         declaring and reflected type.
1383         (ves_icall_get_event_info): Likewise.
1384
1385 2004-03-09  Martin Baulig  <martin@ximian.com>
1386
1387         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
1388         (ves_icall_Type_GetField): Correctly set field->klass.
1389
1390 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
1391
1392         * loader.h: Fix warning.
1393
1394 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
1395
1396         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
1397         library routine if present.  Notice that it will still continue
1398         executing even if its missing, for those working on the Gtk#
1399         edition of Windows.Forms.
1400
1401         * assembly.c (do_mono_assembly_open): If loading the
1402         System.Windows.Forms call mono_loader_wini_init.
1403
1404 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
1405
1406         * class.h: Added MonoRemoteClass struct.
1407         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
1408         function for MonoStrings.
1409         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
1410         Added internal call for getting the proxy type.
1411         * marshal.c: Get the type of transparent proxies from its remote_class.
1412         Added methods that generate the IL for type checks and casts:
1413         mono_marshal_get_isinst, mono_marshal_get_castclass, 
1414         mono_marshal_get_proxy_cancast.
1415         * marshal.h: Declaration of the previous new methods.
1416         * object.c: Added new moethods for creating and updating MonoRemoteClass
1417         instances: mono_remote_class, mono_upgrade_remote_class, 
1418         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
1419         * verify.c: FIx transparent_proxy_fields layout.
1420         * appdomain.c: Bump corlib version.
1421
1422 2004-03-04  Jackson Harper  <jackson@ximian.com>
1423
1424         * icall.c: Add icall to access char conversion tables.
1425         * char-conversions.h: Character conversion tables.
1426         * Makefile.am: Add char-conversions.h private header file.
1427         
1428 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
1429
1430         * appdomain.c (unload_thread_main): Increase unloading timeout to
1431         10 sec as a temporary workaround for Nant problems.
1432
1433 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
1434
1435         * gc.c: Add checks for GC_enable and GC_disable.
1436
1437         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
1438         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
1439         (bug #54988).
1440         
1441 2004-02-27  Martin Baulig  <martin@ximian.com>
1442
1443         * reflection.c (mono_reflection_bind_generic_parameters): Take a
1444         `MonoReflectionType *' instead of a `MonoType *'.
1445
1446 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
1447
1448         * gc.c (run_finalize): Avoid finalizing the object representing the
1449         finalizer thread.
1450         (finalizer_thread): Fix warning.
1451
1452 2004-02-25  Martin Baulig  <martin@ximian.com>
1453
1454         * class.c (_mono_class_get_instantiation_name): Added `int offset'
1455         argument for nested types.
1456         (mono_class_create_generic): Added support for nested generictypes.
1457
1458         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
1459         `GList *nested'.
1460
1461         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
1462
1463         * reflection.c (method_encode_signature): Increase the minimum
1464         value of `size' from 10 to 11.
1465         (mono_reflection_bind_generic_parameters): Take `int type_argc'
1466         and `MonoType **types' arguments instead of the `MonoArray
1467         *types'; added `MonoType *nested_in'.  Recursively instantiate
1468         nested classes. 
1469
1470 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
1471
1472         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
1473         stack_overflow_ex members which are used by exception handling.
1474
1475         * appdomain.c (mono_runtime_init): Initialize the new members.
1476
1477         * gc.c (mono_gc_enable): New helper function.
1478         * gc.c (mono_gc_disable): New helper function.
1479
1480 2004-02-23  Martin Baulig  <martin@ximian.com>
1481
1482         * icall.c: I must have been really stupid - make it actually work
1483         this time ;-)
1484
1485 2004-02-23  Martin Baulig  <martin@ximian.com>
1486
1487         * loader.c (method_from_memberref): Only inflate the method if
1488         it's in another klass.
1489
1490 2004-02-23  Martin Baulig  <martin@ximian.com>
1491
1492         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
1493         (mono_class_init): If we're a generic instance and an interface,
1494         compute `class->interface_id'; also create `class->interfaces'
1495         here and inflate them.
1496
1497         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
1498         `ginst->is_open'.
1499         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
1500
1501         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
1502
1503 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
1504
1505         * reflection.c (method_encode_code): Improved the error message
1506         generated by the exception.
1507
1508 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1509
1510         * icall.c: Martin did not do what he said in the ChangeLog for
1511         2004-02-18, but put back the changes for properties and events.
1512         Commenting those changes out again and adding comment to bug #54518.
1513         
1514         * process.c: removed warning.
1515
1516 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
1517
1518         * marshal.c (emit_struct_conv): Print an error message instead of
1519         asserting when a type does not have the StructLayout attribute.
1520
1521 2004-02-20  Martin Baulig  <martin@ximian.com>
1522
1523         * reflection.c (mono_type_get_object): Also use the cache for
1524         generic instances.
1525         (mono_reflection_bind_generic_parameters): Always compute
1526         `ginst->ifaces'.        
1527
1528 2004-02-20  Martin Baulig  <martin@ximian.com>
1529
1530         * class.h (MonoGenericMethod): Removed `klass'.
1531
1532         * class.c (mono_class_inflate_generic_method): Added `MonoClass
1533         *klass' argument.
1534
1535 2004-02-20  Martin Baulig  <martin@ximian.com>
1536
1537         * reflection.c (method_encode_methodspec): Actually use the
1538         uninflated signature for the memberref.
1539
1540 2004-02-20  Martin Baulig  <martin@ximian.com>
1541
1542         * class.h (MonoGenericMethod): Removed `declaring'.
1543
1544         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
1545         is NULL, compute it here.
1546
1547 2004-02-20  Martin Baulig  <martin@ximian.com>
1548
1549         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
1550
1551         * metadata.c (mono_metadata_generic_inst_hash): New method.
1552         (mono_metadata_generic_inst_equal): New method.
1553
1554         * reflection.c (mono_reflection_bind_generic_parameters): Use the
1555         `klass->image->generic_inst_cache' cache to avoid creating
1556         duplicate MonoGenericInst's.
1557
1558         * class.c (mono_class_inflate_generic_type): Use the cache.
1559
1560 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
1561
1562         * object.c: fixed gc descriptor calculation for embedded valuetypes.
1563
1564 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1565
1566         * icall.c: added Socket.WSAIoctl icall.
1567
1568         * socket-io.[ch]: implemented
1569         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
1570
1571 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
1572
1573         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
1574
1575 2004-02-18  Urs C Muff  <umuff@quark.com>
1576
1577         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
1578         this work on PPC and other big-endian architectures.
1579
1580         * debug-mono-symfile.h: Prepended the names of all the `guint32'
1581         fields with an underscore to make sure they're only accessed by
1582         the read32() macro.
1583
1584 2004-02-18  Martin Baulig  <martin@ximian.com>
1585
1586         * icall.c: Put the klass->refclass changes back for methods and
1587         fields, but not for properties and events.  We're currently not
1588         distinguishing between DeclaringType and ReflectedType for
1589         properties and events, that's what caused the regressions.
1590
1591 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1592
1593         * object.c:
1594         (mono_async_result_new): the handle can be NULL.
1595
1596         * threadpool.c: Use an event instead of a semaphore, don't initialize
1597         it until needed. This saves quite a few semaphores from being created
1598         when using the threadpool.
1599
1600 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
1601
1602         * object.c (mono_string_is_interned_lookup): Fix interning of long
1603         strings. Fixes #54473.
1604
1605         * domain.c (ldstr_equal): Optimize if the two strings are equal.
1606
1607         * icall.c: Revert the klass->refclass changes since they introduce
1608         regressions (bug #54518).
1609
1610 2004-02-18  Martin Baulig  <martin@ximian.com>
1611
1612         * class.c (mono_class_init): If we're a generic instance and don't
1613         come from a TypeBuilder, inflate our members here.
1614         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
1615         (mono_class_create_generic): New public method.
1616         (mono_class_initialize_generic): Removed.
1617         (get_instantiation_name): Renamed to
1618         _mono_class_get_instantiation_name() and made it public.
1619
1620 2004-02-18  Martin Baulig  <martin@ximian.com>
1621
1622         * class.c (mono_class_inflate_generic_type): Clear the new
1623         instance's `nginst->klass' when inflating a generic instance.
1624         (mono_class_is_subclass_of): Added (basic) support for generic
1625         instances.
1626
1627 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
1628
1629         * appdomain.h, domain.c: use a MonoCodeManager instead of a
1630         MonoMempool to hold compiled native code.
1631
1632 2004-02-17  Martin Baulig  <martin@ximian.com>
1633
1634         * class.h (MonoDynamicGenericInst): Added `count_properties' and
1635         `properties'.
1636
1637         * reflection.c (mono_reflection_generic_inst_initialize): Added
1638         `MonoArray *properties' argument.
1639
1640         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
1641
1642 2004-02-17  Martin Baulig  <martin@ximian.com>
1643
1644         * icall.c (ves_icall_Type_GetFields): Renamed to
1645         ves_icall_Type_GetFields_internal() and added a
1646         `MonoReflectionType *rtype' argument; pass it to
1647         mono_field_get_object() to set the field's "reflected" type.
1648         (ves_icall_Type_GetConstructors): Likewise.
1649         (ves_icall_Type_GetEvents): Likewise.
1650         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
1651         argument; pass it to mono_method_get_object() to set the method's
1652         "reflected" type.       
1653
1654 2004-02-17  Martin Baulig  <martin@ximian.com>
1655
1656         * class.h (MonoDynamicGenericInst): New type.
1657         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
1658
1659         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
1660         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
1661         (ves_icall_MonoGenericInst_GetFields): New interncall.
1662
1663         * class.c (mono_class_from_generic): Don't call
1664         mono_class_initialize_generic() if this is a dynamic instance;
1665         ie. it's being created from a TypeBuilder.
1666         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
1667         `class->byval_arg.type'.
1668
1669         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
1670         to `inflate_method' and made static.
1671         (mono_reflection_inflate_field): Removed.
1672         (mono_reflection_generic_inst_initialize): New public method.
1673
1674         * reflection.h (MonoReflectionGenericInst): Removed `methods',
1675         `ctors' and `fields'; added `initialized'.
1676
1677 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
1678
1679         * debug-helpers.c (mono_method_full_name): Fix output for empty
1680         namespaces.
1681
1682 2004-02-12  Martin Baulig  <martin@ximian.com>
1683
1684         * class.h (MonoClassField): Added `MonoType *generic_type'.
1685
1686         * reflection.c (mono_image_get_fieldref_token): Added support for
1687         instantiated generic types.
1688         (field_encode_inflated_field): Removed.
1689         (mono_image_get_inflated_field_token): Removed.
1690         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
1691
1692         * reflection.h (MonoReflectionInflatedField): Removed.
1693
1694 2004-02-12  Martin Baulig  <martin@ximian.com>
1695
1696         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
1697         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
1698
1699         * reflection.c (mono_image_get_methodspec_token): Take a
1700         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
1701         (mono_image_create_token): Check whether we have a
1702         `method->signature->gen_method' and call
1703         mono_image_get_methodspec_token() if appropriate.
1704         (inflated_method_get_object): Removed.
1705         (mono_reflection_bind_generic_method_parameters): Return a
1706         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
1707         (mono_reflection_inflate_method_or_ctor): Likewise.
1708
1709         * reflection.h (MonoReflectionInflatedMethod): Removed.
1710
1711 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
1712
1713         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
1714         for custom valuetype marshalling.
1715
1716         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
1717
1718 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1719
1720         * icall.c: fixed WSAGetLastError_internal name.
1721
1722 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
1723
1724         * threads.c (mono_thread_attach): Allow this to be called multiple
1725         times for a thread.
1726         
1727         * threads.c (build_wait_tids): Do not wait for ourselves.
1728
1729         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
1730         appdomain list is empty.
1731
1732         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
1733         memory returned by mono_string_builder_to_utf16, since it points into
1734         managed memory. Thanks to Bernie Solomon for noticing this.
1735
1736         * icall.c: Add AppDomainSetup icalls.
1737
1738         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
1739
1740         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
1741         types.
1742
1743         * reflection.c (reflection_methodbuilder_to_mono_method): Save
1744         custom attributes to the method_aux struct. Also fix array indexes etc.
1745
1746         * loader.c (mono_method_get_param_names): Make dynamic case work again.
1747         
1748 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
1749
1750         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
1751         (both static and runtime) and reduce startup time.
1752
1753 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
1754
1755         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
1756         AsAny marshalling conversion instead of crashing.
1757
1758         * marshal.c: Fix warnings.
1759
1760 2004-02-09  Martin Baulig  <martin@ximian.com>
1761
1762         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
1763
1764         * reflection.h (MonoReflectionInflatedMethod): Removed the
1765         `declaring' field, it's now in the unmanaged MonoGenericMethod.
1766
1767         * reflection.c (method_encode_methodspec): Removed the `method'
1768         argument; we get it from `gmethod->declaring'.
1769         (inflated_method_get_object): Removed the `declaring' argument.
1770
1771 2004-02-09  Martin Baulig  <martin@ximian.com>
1772
1773         * class.h (MonoGenericMethod): New type.
1774         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
1775         `generic_method'.
1776
1777         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
1778         a `MonoGenericMethod *gen_method' one.
1779
1780         * class.c (mono_class_inflate_generic_type): Take an additional
1781         `MonoGenericMethod * argument.  This is only non-NULL if we're
1782         inflating types for a generic method.   
1783         (mono_class_inflate_generic_signature): Renamed to
1784         inflate_generic_signature() and made static; take a
1785         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
1786         (inflate_generic_header): Take a `MonoGenericMethod *' argument
1787         instead of a `MonoGenericInst *' one.
1788         (mono_class_inflate_generic_method): Likewise.
1789
1790         * reflection.c (encode_generic_method_sig): Take a
1791         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
1792         (method_encode_methodspec): Likewise.
1793         (inflated_method_get_object): Likewise. 
1794
1795         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
1796         field with a `MonoGenericMethod *gmethod' one.  
1797
1798 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
1799
1800         * class.h (mono_class_has_parent): add parens to expansion
1801         so you can ! this.
1802
1803 2004-02-08  Martin Baulig  <martin@ximian.com>
1804
1805         * image.h (MonoImage): Removed `generics_cache'.
1806
1807         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
1808         instead of a `MonoType *' argument; removed the `inflate_methods'
1809         argument.  Don't inflate methods here.
1810
1811         * loader.c (find_method): If it's a generic instance, call
1812         mono_class_init() on the `sclass->generic_inst->generic_type'.
1813
1814         * metadata.c (mono_type_size): Make this work on uninitialized
1815         generic instances; call it on the `ginst->generic_type's class.
1816
1817         * reflection.c (mono_reflection_bind_generic_parameters): Call
1818         mono_class_from_generic() to create the `ginst->klass'.
1819
1820 2004-02-08  Martin Baulig  <martin@ximian.com>
1821
1822         * class.h (MonoClass): Changed type of `generic_inst' from
1823         `MonoType *' to `MonoGenericInst *'.
1824
1825 2004-02-08  Martin Baulig  <martin@ximian.com>
1826
1827         * icall.c (ves_icall_Type_BindGenericParameters): Just call
1828         mono_type_get_object(), this is now creating a `MonoGenericInst'
1829         for MONO_TYPE_GENERICINST.
1830         (ves_icall_MonoGenericInst_GetParentType): Likewise.
1831         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
1832
1833         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
1834         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
1835         (inflated_method_get_object): Added `MonoClass *refclass' argument.
1836         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
1837         and reflected type.
1838
1839         * reflection.h (MonoReflectionInflatedMethod): Removed
1840         `declaring_type' and `reflected_type'.
1841
1842 2004-02-08  Martin Baulig  <martin@ximian.com>
1843
1844         * class.h (MonoGenericInst): Added `MonoType *parent' and
1845         `MonoType **ifaces'.
1846
1847         * reflection.h (MonoReflectionGenericInst): Removed `klass',
1848         `parent' and `interfaces'.
1849
1850         * reflection.c (mono_reflection_bind_generic_parameters): Take a
1851         `MonoType *' argument and return a `MonoType *'.
1852
1853         * icall.c
1854         (ves_icall_MonoGenericInst_GetParentType): New interncall.
1855         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
1856
1857 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
1858
1859         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
1860         valuetype marshalling.
1861
1862 2004-02-06  Martin Baulig  <martin@ximian.com>
1863
1864         * class.c
1865         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
1866         (my_mono_class_from_generic_parameter): Likewise.
1867
1868 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
1869
1870         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
1871         contents of the symbol files lazily.
1872
1873         * object.h (MonoThread): Add 'name' and 'name_len' fields.
1874
1875         * threads.h threads.c icall.c: New icalls for getting and setting the
1876         threads name.
1877
1878 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
1879
1880         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
1881         Raise an exception when the domain is not found.
1882
1883 2004-02-03  Martin Baulig  <martin@ximian.com>
1884
1885         * reflection.c (mono_image_get_methodspec_token): Use the
1886         uninflated signature; fixes gen-33.
1887
1888 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
1889
1890         * gc.c threads.c: Make the finalizer thread a normal managed thread so
1891         the finalizer code can use thread functionality.
1892
1893         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
1894         the finalizer thread.
1895
1896         * threads.c: Make some functions more robust.
1897
1898         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
1899
1900         * metadata.h: Add new marshalling conventions.
1901
1902         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
1903         stringbuilder marshalling. Fixes #53700.
1904
1905         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
1906
1907         * reflection.c (mono_image_get_type_info): Save declarative security
1908         info.
1909
1910         * reflection.c (mono_image_get_field_info): Handle uninitialized 
1911         unmanaged fields as well.
1912
1913         * appdomain.c: Bump corlib version.
1914
1915 2004-02-01  Martin Baulig  <martin@ximian.com>
1916
1917         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
1918         method type arguments.  
1919
1920 2004-01-30  Duncan Mak  <duncan@ximian.com>
1921
1922         * marshal.h: Add prototype for
1923         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
1924         and
1925         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
1926         fix the build.
1927
1928 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
1929
1930         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
1931         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
1932
1933 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
1934
1935         * marshal.c (mono_marshal_get_native_wrapper): Add support for
1936         custom marshalling of valuetypes.
1937
1938         * marshal.c: Fix some warnings.
1939
1940 2004-01-29  Martin Baulig  <martin@ximian.com>
1941
1942         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
1943         for generic method parameters.
1944
1945         * reflection.c (method_encode_methodspec): Write the uninflated
1946         signature into the methodspec table.
1947         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
1948         is always the uninflated method.
1949         (reflection_methodbuilder_to_mono_method): Copy the generic
1950         parameters from the MethodBuilder into `header->gen_params'.
1951
1952 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
1953
1954         * class.c (mono_class_from_generic_parameter): Fix warning.
1955
1956 2004-01-27  Martin Baulig  <martin@ximian.com>
1957
1958         * class.c (mono_class_from_generic_parameter): Don't create
1959         `klass->methods' here.  
1960
1961 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
1962
1963         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
1964         extension since it does not work with libraries named lib<FOO>.dll.so.
1965
1966 2004-01-25  Martin Baulig  <martin@ximian.com>
1967
1968         * class.c (mono_class_inflate_generic_type): Added support for
1969         MONO_TYPE_GENERICINST.
1970
1971         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
1972         inflate methods on open constructed types.      
1973
1974 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1975
1976         * object.c: fire ProcessExit event in the root AppDomain after running
1977         Main. Fixes bug #53299.
1978
1979 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
1980
1981         * socket-io.c: include the new socket-wrappers.h header.
1982         Use the wrappers instead of the unix socket functions to make the code
1983         more clear.
1984
1985 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
1986
1987         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
1988
1989         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
1990         Fixes #22532.
1991
1992 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
1993
1994         * reflection.c (mono_image_create_pefile): Handle the case when the
1995         entry point is not a MethodBuilder.
1996
1997         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
1998         field to ReflectionMethod since it is not allways a builder.
1999
2000         * reflection.c (type_get_fully_qualified_name): New helper function to
2001         return the fully qualified name of a type.
2002
2003         * reflection.c (encode_marshal_blob): Always emit the fully qualified
2004         type name for custom marshallers.
2005
2006         * reflection.c (mono_marshal_spec_from_builder): Ditto.
2007
2008         * class.c (mono_class_setup_vtable): If a parent class already 
2009         implements an interface, use the implementing methods from that class.
2010         Fixes #53148.
2011
2012 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2013
2014         * threadpool.c: just return instead of ExitThread to allow for thread
2015         clean up earlier.
2016
2017 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
2018
2019         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
2020         when closing resource modules.
2021
2022         * reflection.c (mono_image_create_pefile): Handle the case when the
2023         entry point is not a MethodBuilder.
2024
2025         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
2026         field to ReflectionMethod since it is not allways a builder.
2027
2028 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
2029
2030         * marshal.c (mono_marshal_get_managed_wrapper): 
2031         mono_marshal_alloc takes native int so CONV_I
2032         the arg for 64bits.
2033
2034 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
2035
2036         * reflection.c (fixup_cattrs): New function to fixup the methoddef
2037         tokens in the cattr table. Fixes #53108.
2038
2039 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2040
2041         * loader.c: don't trim ".dll" before looking up in the config file.
2042         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
2043
2044 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
2045
2046         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
2047         Return the module which contains the resource as well.
2048         (ves_icall_System_Reflection_Module_Close): New icall.
2049
2050         * appdomain.c: Bump corlib version number.
2051
2052         * image.c (mono_image_addref): New public function.
2053
2054         * assembly.c: Call mono_image_addref.
2055
2056         * reflection.c (mono_module_get_object): Increase reference count of 
2057         the image.
2058
2059         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
2060         Fixes #22532.
2061
2062         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
2063         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
2064         proper exceptions on DllImport problems.
2065
2066 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
2067
2068         * class.c, metadata.c: eliminate CSIZE macro.
2069
2070 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
2071
2072         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
2073         * object.h: Added async_callback field in MonoAsyncResult.
2074         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
2075         * verify.c: Added async_callback in MonoAsyncResult layout.
2076
2077 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
2078
2079         * reflection.c (mono_reflection_get_custom_attrs): Add support
2080         for Modules.
2081
2082 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
2083
2084         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
2085         marshalling.
2086         (mono_marshal_method_from_wrapper): Add null pointer check.
2087
2088 2004-01-16  Martin Baulig  <martin@ximian.com>
2089
2090         * debug-mono-symfile.h: Set version number to 36 and reflect
2091         latest symbol writer changes.
2092
2093 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
2094
2095         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
2096         multi-dimensional arrays.
2097         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
2098         (mono_class_from_mono_type): Use bounded_array_class_get.
2099         
2100         * class.c (mono_bounded_array_class_get): New function which takes
2101         a 'bounded' bool argument to distinguish vectors from one dimensional
2102         arrays.
2103
2104         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
2105         bounded_array_class_get if the array has bounds.
2106
2107         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
2108         Search modules loaded using AssemblyBuilder:AddModule as well.
2109
2110 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2111
2112         * appdomain.c: increased corlib version.
2113         * filewatcher.c: removed g_print.
2114         * icall.c:
2115         (get_property_info): only allocate what is actually requested.
2116         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
2117
2118 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2119
2120         * Makefile.am: added filewatcher.[ch]
2121         * filewatcher.[ch]: FileSystemWatcher runtime support.
2122         * icall.c: added new FSW icalls.
2123
2124 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
2125
2126         * string-icalls.c: fix stringbuilder regression as suggested by
2127         Iain McCoy <iain@mccoy.id.au>.
2128
2129 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
2130
2131         * process.c (process_read_stringtable_block): Recognize '007f' as
2132         a language neutral stringtable block.
2133
2134 2004-01-12  Patrik Torstensson
2135
2136         * object.h (MonoStringBuilder) : Changed layout to support our
2137         new stringbuilder class.
2138         * marshal.c: Change marshalling to support the new layout of 
2139         string builder.
2140         * appdomain.c: increased version number because new layout of
2141         string builder.
2142
2143 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
2144
2145         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
2146         assembly name as an string instead of an AssemblyName, since it is
2147         easier to extract info from it.
2148
2149         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
2150         the culture subdirectories too. Fixes #52231.
2151
2152 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2153
2154         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
2155         It takes 2 new parameters with an optional name for the method to look
2156         for and case ignoring info.
2157
2158         * threadpool.c: removed unused variable.
2159
2160 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2161
2162         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
2163         It takes 2 new parameters with an optional name for the property to look
2164         for and case ignoring info.
2165         Fixes bug #52753.
2166
2167 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
2168
2169         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
2170         Fix #52451.
2171
2172 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2173
2174         * appdomain.c:
2175         * assembly.c: escape the uri before passing it to g_filename_from_uri.
2176         Fixes bug #52630.
2177
2178 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
2179
2180         * reflection.c: Add support for more than one unmanaged resource.
2181
2182         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
2183         in field->def_value, as done in all other cases.
2184
2185         * reflection.c (mono_reflection_get_custom_attrs): Add support for
2186         TypeBuilders.
2187
2188         * reflection.c (mono_reflection_create_runtime_class): Remove 
2189         errorneous assignment to klass->element_class, since it is already
2190         done in mono_reflection_setup_internal_class.
2191
2192 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2193
2194         * gc.c: added missing LeaveCriticalSection.
2195         * icall.c: indented a couple of lines.
2196         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
2197         if we call EndInvoke inside a callback. Fixes bug #52601.
2198
2199 2004-01-07  Martin Baulig  <martin@ximian.com>
2200
2201         * mono-debug-debugger.h
2202         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
2203
2204 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
2205
2206         * appdomain.c: Use messages in NotImplementedException.
2207
2208         * exception.c (mono_get_exception_not_implemented): Now this takes
2209         a message argument.
2210
2211         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
2212         exception instead of g_asserting an aborting when something is not
2213         implemented.
2214
2215         Add some inline docs.
2216
2217 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
2218
2219         * reflection.h: Update after changes to object layout.
2220
2221         * reflection.c: Implement saving of unmanaged aka win32 resources.
2222
2223         * appdomain.c: Bump version number.
2224
2225         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
2226         Handle missing domains gracefully.
2227
2228 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
2229
2230         * file-io.c : On Windows, there are much more invalid_path_chars.
2231
2232 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
2233
2234         * class.h, object.c: prepare for GetType () speedup.
2235
2236 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
2237
2238         * profiler.c: workaround for --profile null reference exception on
2239           cygwin. Patch by Patrik Torstensson.
2240
2241 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
2242
2243         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
2244         make work for unaligned access.
2245
2246 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
2247
2248         * class.c: small cleanup (class->fields [i] -> field).
2249         * image.c: check address of metadata is valid.
2250
2251 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
2252
2253         * assembly.h assembly.c (mono_assembly_loaded): New public function to
2254         search the list of loaded assemblies.
2255
2256         * reflection.c (mono_reflection_type_from_name): Use 
2257         mono_assembly_loaded instead of mono_image_loaded.
2258
2259         * reflection.c: Fix warnings.
2260
2261 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
2262
2263         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
2264         is dynamic. This is needed since an assembly can contain both dynamic and
2265         non-dynamic images.
2266
2267         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
2268         assembly->dynamic.
2269
2270         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
2271
2272         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
2273         to store modules loaded using AddModule.
2274
2275         * reflection.c (mono_image_fill_file_table): Generalize this so it works
2276         on Modules.
2277
2278         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
2279
2280         * reflection.c (mono_image_fill_export_table_from_module): New function to
2281         fill out the EXPORTEDTYPES table from a module.
2282
2283         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
2284         into a separate function. Also handle loaded non-dynamic modules.
2285
2286         * reflection.c (mono_image_basic_init): Fix memory allocation.
2287
2288         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2289
2290         * assembly.c (mono_assembly_load_references): Make this public.
2291
2292 2003-12-19  Martin Baulig  <martin@ximian.com>
2293
2294         * class.c (mono_class_initialize_generic): Made this static, take
2295         a `MonoGenericInst *' instead of a `MonoClass *'.
2296         (mono_class_from_generic): Call mono_class_initialize_generic()
2297         unless we're already initialized or being called from
2298         do_mono_metadata_parse_generic_inst().
2299
2300         * class.h (MonoGenericInst): Added `initialized' and
2301         `init_pending' flags.
2302
2303         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
2304         `mono_class_init (gklass)' or mono_class_initialize_generic()
2305         here; set `generic_inst->init_pending' while parsing the
2306         `type_argv'.
2307
2308 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
2309
2310         * locales.c: include string.h for memxxx prototypes
2311
2312 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
2313
2314         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
2315         constructor when accessing literal fields.
2316
2317 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
2318
2319         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2320
2321         * reflection.c (assembly_add_resource_manifest): New function to fill
2322         the MANIFESTRESOURCE table.
2323
2324         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
2325
2326         * reflection.h: Update to changes in class layout.
2327
2328         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
2329         Reenable call to mono_runtime_is_shutting_down ().
2330
2331         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
2332         determine if the runtime is shutting down.
2333
2334 2003-12-16  Jackson Harper <jackson@ximian.com>
2335
2336         * icall.c: comment out call to mono_runtime_is_shutting_down to
2337         fix build.
2338         
2339 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
2340
2341         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
2342         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
2343
2344 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
2345
2346         * reflection.c: move definition of swap_with_size
2347         to before its first call
2348
2349 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
2350
2351         * appdomain.c (mono_runtime_is_shutting_down): New public function.
2352
2353         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
2354         icall.
2355
2356         * object.c: Fix warnings.
2357
2358         * icall.c (ves_icall_Type_Get...): Only consider inherited static
2359         members if FlattenHierarchy is set.
2360
2361         * reflection.c (mono_image_add_decl_security): New function to emit
2362         declarative security.
2363
2364         * reflection.h reflection.c: Add support for declarative security.
2365
2366         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
2367         
2368 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
2369
2370         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
2371         
2372         * appdomain.c verify.c: Moved corlib version checking into its own
2373         function in appdomain.c since it needs to create vtables etc.
2374
2375 2003-12-13  Patrik Torstensson <p@rxc.se>
2376
2377         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
2378         instead of unwrapped server.
2379
2380 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
2381
2382         * verify.c (check_corlib): Fix field index.
2383
2384 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
2385
2386         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
2387         GetGacPath icall.
2388
2389 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
2390
2391         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
2392         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
2393         cope with sizeof(size_t) != sizeof(guint32).
2394
2395 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2396
2397         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
2398         in case of failure.
2399
2400 2003-12-10  Mark Crichton <crichton@gimp.org>
2401
2402         * icall.c: removed the GetNonZeroBytes.  We now handle this case
2403         in managed code.
2404
2405         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
2406
2407 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
2408
2409         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
2410         marked as deleted.
2411
2412 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
2413
2414         * verify.c (check_corlib): Handle the case when the version field is 
2415         initialized by a static constructor.
2416
2417 2003-12-08  Patrik Torstensson  <p@rxc.se>
2418
2419     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
2420
2421 2003-12-08  Martin Baulig  <martin@ximian.com>
2422
2423         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
2424         a MonoReflectionGenericParameter, also take the parameter index
2425         and name as arguments.
2426         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
2427         (ves_icall_MonoGenericParam_initialize): New interncall.
2428         (ves_icall_Type_make_byref_type): New interncall.
2429
2430         * reflection.h (MonoReflectionGenericParam): Derive from
2431         MonoReflectionType, not just from MonoObject.  Added `refobj' and
2432         `index' fields.
2433
2434         * reflection.c (mono_reflection_define_generic_parameter): Create
2435         and return a new MonoReflectionGenericParam; don't initialize the
2436         constraints here.
2437         (mono_reflection_initialize_generic_parameter): New public method;
2438         initializes the constraints and creates the `param->pklass'.
2439
2440 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
2441
2442         * reflection.h reflection.c: Use the new fields 'num_types', 
2443         'num_fields' and 'num_methods' to track the number of types etc.
2444
2445         * verify.c (check_corlib): Check corlib version number.
2446
2447 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
2448
2449         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
2450         function works on all methods.
2451
2452 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
2453
2454         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
2455         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
2456         the custom_type_info flag of the transparent proxy.
2457         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
2458         objects that supports IRemotingTypeInfo.
2459         * object.h: Added custom_type_info field in transparent proxy.
2460
2461 2003-12-06  Martin Baulig  <martin@ximian.com>
2462
2463         * class.c (mono_class_create_from_generic): Removed.
2464         (mono_class_from_generic): Check `ginst->klass' before doing
2465         anything else.  This is important to fully support "recursive"
2466         generic types.
2467
2468         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
2469         empty `generic_inst->klass' before doing anything else.
2470
2471 2003-12-06  Dick Porter  <dick@ximian.com>
2472
2473         * verify.c: 
2474         * object.h:
2475         * icall.c:
2476         * locales.c: Use C structs to access class fields.  Don't do a
2477         conversion between MonoString and UChar because both are
2478         platform-endian UTF-16.  Compare now takes startindex and count
2479         parameters.  Add a char overload for IndexOf.  Speed up the
2480         invariant string IndexOf.
2481
2482 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
2483
2484         * Makefile.am (monosn_LDADD): Fix parallel build.
2485
2486 2003-12-04  Martin Baulig  <martin@ximian.com>
2487
2488         * icall.c
2489         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
2490         (ves_icall_Type_make_array_type): New interncall.       
2491
2492 2003-12-04  Martin Baulig  <martin@ximian.com>
2493
2494         * locales.c: also change it in the !HAVE_ICU case.
2495
2496 2003-12-04  Dick Porter  <dick@ximian.com>
2497
2498         * icall.c:
2499         * locales.c: construct_compareinfo is now in CompareInfo, not
2500         CultureInfo.
2501
2502 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
2503
2504         * image.c (mono_image_load_file_for_image): Cache loaded images in the
2505         image->files array.
2506
2507         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
2508         table as well.
2509
2510         * assembly.c (mono_assembly_load_references): Only load references
2511         once.
2512
2513         * class.c (mono_class_from_name): Avoid linear search of the 
2514         EXPORTEDTYPE table.
2515
2516         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
2517
2518 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
2519
2520         * image.h (MonoImage): Add 'field_cache' field.
2521
2522         * loader.c (mono_field_from_token): Cache field lookups.
2523         
2524         * reflection.c (mono_module_get_object): Fix name property.
2525
2526         * icall.c (ves_icall_get_enum_info): Update after changes to 
2527         mono_metadata_get_constant_index ().
2528
2529         * icall.c: Get rid of get_type_info icall, use a separate icall for
2530         each type property to avoid needless memory allocations. Fixes #51514.
2531
2532         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
2533         to avoid needless binary searches.
2534
2535         * class.c (class_compute_field_layout): Move the initialization of
2536         field->def_value to mono_class_vtable ().
2537
2538         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
2539         non-corlib types.
2540
2541         * object.c (mono_object_allocate): Make it inline.
2542
2543         * object.c (mono_object_allocate_spec): Make it inline.
2544         
2545 2003-12-02  Dick Porter  <dick@ximian.com>
2546
2547         * locales.c (create_NumberFormat): NumberFormatInfo construction.
2548         Patch by Mohammad DAMT (mdamt@cdl2000.com).
2549
2550 2003-12-01  Dick Porter  <dick@ximian.com>
2551
2552         * threads.c: Fix signature and call in CreateMutex and
2553         CreateEvent.
2554
2555 2003-12-01  Dick Porter  <dick@ximian.com>
2556
2557         * icall.c: 
2558         * locales.c: Implement string compares and searching
2559
2560         * object.h: Add extra Thread field
2561
2562 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
2563
2564         * reflection.c (fixup_method): Add support for MonoCMethod.
2565
2566 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
2567
2568         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
2569
2570         * reflection.c (assembly_name_to_aname): Allow extra characters in
2571         assembly names. Fixes #51468.
2572
2573 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
2574
2575         * exception.c (mono_exception_from_name_domain): New helper function.
2576
2577         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
2578         exception object in the correct domain.
2579
2580         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
2581         formatting + make a copy a the input data.
2582
2583         * loader.c (mono_get_method_from_token): Methods which contain
2584         native code do not have entries in the ImplMap.
2585
2586         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
2587         Thanks to Gonzalo for spotting this.
2588         
2589         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
2590         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
2591
2592         * assembly.h (mono_assembly_load_from): Split the second part of 
2593         assembly loading into a new public function.
2594
2595         * exception.h (mono_get_exception_bad_image_format): New function.
2596
2597 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
2598
2599         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
2600         Enumerate all modules inside a dynamic assembly. Fixes #51293.
2601         
2602         * icall.c: Add new icall for creating dynamic methods.
2603
2604         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
2605
2606         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
2607
2608         * reflection.c (mono_reflection_create_dynamic_method): New icall to
2609         create a dynamic method.
2610
2611         * reflection.c (resolve_object): New helper function.
2612
2613         * reflection.c: Generalize ReflectionMethodBuilder and the functions
2614         which manipulate it so they can also work on dynamic methods.
2615
2616         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
2617         creating the MonoReflectionMethodAux structure if it is not needed.
2618         
2619         * reflection.h verify.c: Update after changes to object layout.
2620
2621         * reflection.c (method_builder_encode_signature): Fix compilation on
2622         gcc 2.95.x.
2623
2624 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
2625
2626         * appdomain.h: Added support for context static fields. Added static_data
2627           field to MonoAppContext and renamed thread_static_fields to a more
2628           generic special_static_fields in MonoAppDomain, since it can now contain
2629           context static fields.
2630         * domain.c: Updated hashtable name.
2631         * object.c: Replaced field_is_thread_static() for a more generic
2632           field_is_special_static() which also checks for context static attribute.
2633           In mono_class_vtable(), added support for static context fields.
2634         * threads.c: Changed methods that manage thread static fields to more
2635           generic methods so they can be reused both for thread and context static
2636           data.
2637         * threads.h: Declared some new methods.
2638
2639 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
2640
2641         * reflection.h: Update after changes to the managed types.
2642
2643         * reflection.c (encode_custom_modifiers): New helper function.
2644
2645         * reflection.c (method_encode_signature): Emit custom modifiers.
2646
2647         * reflection.c (field_encode_signature): Emit custom modifiers.
2648
2649 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
2650
2651         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
2652
2653         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
2654         implementation.
2655
2656         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
2657         icall.
2658
2659         * object.c (mono_field_get_value_object): New function.
2660
2661         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
2662         specific.
2663
2664 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
2665
2666         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
2667         return a preallocated out-of-memory exception instance.
2668
2669         * object.c (out_of_memory): Use the new function.
2670
2671         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
2672         flag is before the custom modifiers. Fixes #49802.
2673
2674 2003-11-16  Martin Baulig  <martin@ximian.com>
2675
2676         * class.c (mono_class_is_open_constructed_type): Implemented the
2677         MONO_TYPE_GENERICINST case.
2678
2679 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
2680
2681         * assembly.c (mono_assembly_fill_assembly_name): New function to
2682         fill out the MonoAssemblyName structure.
2683         (mono_assembly_open): Use the new function.
2684
2685         * icall.c (fill_reflection_assembly_name): New helper function.
2686
2687         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
2688         new function.
2689
2690         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
2691
2692 2003-11-15  Martin Baulig  <martin@ximian.com>
2693
2694         * class.c (mono_class_is_open_constructed_type): New public
2695         function; checks whether a type is an open constructed type,
2696         ie. whether it still contains type parameters.
2697         (mono_class_inflate_generic_type): If we're a type parameter and
2698         the inflated type is also a MONO_TYPE_(M)VAR, return the original
2699         type.
2700
2701         * class.h (MonoGenericInst): Added `guint32 is_open'.
2702
2703         * loader.c (method_from_methodspec): Check whether we're an open
2704         or closed constructed type and set `ginst->is_open'.
2705
2706         * reflection.c (mono_reflection_bind_generic_parameters): Check
2707         whether we're an open or closed constructed type and set
2708         `ginst->is_open'.
2709         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
2710         from open constructed types.
2711
2712 2003-11-15  Martin Baulig  <martin@ximian.com>
2713
2714         * reflection.c (mono_reflection_bind_generic_parameters): If we're
2715         a generic instance (instead of a generic type declaration) with
2716         unbound generic parameters, bind them to our actual types.
2717
2718 2003-11-14  Martin Baulig  <martin@ximian.com>
2719
2720         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
2721
2722         * reflection.c (mono_reflection_bind_generic_parameters): If we're
2723         an interface type, populate `res->interfaces' with instantiated
2724         versions of all the interfaces we inherit.
2725
2726 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
2727
2728         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
2729         when MONO_PATH is set but doesn't contain the install dir.
2730
2731 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2732
2733         * icall.c:
2734         (ves_icall_Type_GetInterfaces): don't return an interface twice when
2735         it's also implemented in base classes. Fixes bug #50927.
2736
2737 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
2738
2739         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
2740         if this method is called from a finalizer. Fixes #50913.
2741
2742 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
2743
2744         * threads.c: Implement VolatileRead/VolatileWrite
2745
2746         * icall.c: Add new icalls for VolatileRead/VolatileWrite
2747
2748 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
2749
2750         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
2751         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
2752         2.95.3.
2753
2754         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
2755         from Peter Ross (pro@missioncriticalit.com).
2756         
2757 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
2758
2759         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
2760
2761 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
2762
2763         * assembly.c (mono_assembly_load_references): Disable check because it
2764         triggers on older corlibs which lots of people have.
2765
2766 2003-11-12  Jackson Harper  <jackson@ximian.com>
2767
2768         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
2769         load corlib.dll if mscorlib.dll is not found.
2770         * assembly.h: Remove corlib name define.
2771         * class.c:
2772         * domain.c:
2773         * image.c: Change corlib name to mscorlib.
2774         
2775 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
2776
2777         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
2778
2779 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
2780
2781         * appdomain.h: Added loader_optimization here to sync with the C#
2782         code, and add disallow_binding_redirects field.
2783
2784 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
2785
2786         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
2787
2788         * reflection.c (mono_image_build_metadata): Fix crash on modules
2789         with no types.
2790
2791         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
2792
2793         * icall.c (ves_icall_get_method_info): Return callingConvention as
2794         well.
2795
2796         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
2797         namespaces from the EXPORTEDTYPE table as well.
2798
2799         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
2800         from all modules inside the assembly.
2801         
2802 2003-11-11  Martin Baulig  <martin@ximian.com>
2803
2804         * reflection.c (mono_reflection_bind_generic_parameters): Make
2805         this work for interfaces.
2806
2807 2003-11-11  Martin Baulig  <martin@ximian.com>
2808
2809         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
2810
2811 2003-11-11  Martin Baulig  <martin@ximian.com>
2812
2813         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
2814         "MonoInflatedMethod" and "MonoInflatedCtor".
2815
2816 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
2817
2818         * reflection.c (resolution_scope_from_image): Use the assembly table
2819         from the manifest module, since other modules don't have it.
2820
2821         * debug-helpers.c (mono_type_full_name): New helper function.
2822
2823         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
2824
2825         * image.c (mono_image_load_file_for_image): New public function which
2826         is a replacement for the load_file_for_image in class.c.
2827
2828         * assembly.c (mono_assembly_load_module): A wrapper for the function
2829         above which does assembly association and reference loading too.
2830
2831         * class.c (mono_class_from_name): Call mono_assembly_load_module.
2832
2833 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2834
2835         * appdomain.c: not all of the attributes for the full assembly name
2836         are required and the order doesn't matter. Fixes bug #50787.
2837
2838 2003-11-10  Dick Porter  <dick@ximian.com>
2839
2840         * locales.c: Use platform-endian UTF16
2841
2842 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
2843
2844         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
2845         
2846 2003-11-10  Martin Baulig  <martin@ximian.com>
2847
2848         * metadata.c
2849         (mono_metadata_load_generic_params): Make this actually work.
2850
2851         * reflection.c (mono_reflection_bind_generic_parameters): If our
2852         parent is a generic instance, pass all the `types' to it, no
2853         matter whether it has the same number of type parameters or not.
2854
2855 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
2856
2857         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
2858
2859         * assembly.c (mono_assembly_load_references): Move the image<->assembly
2860         assignment code to this function so it gets called recursively for all
2861         modules.
2862
2863         * image.c (load_modules): Remove the assembly assignment since it is
2864         now done by mono_assembly_load_references.
2865         
2866         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
2867         Add 'module' argument.
2868         (mono_module_get_types): New helper function.
2869         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
2870
2871 2003-11-08  Martin Baulig  <martin@ximian.com>
2872
2873         * class.c (mono_class_inflate_generic_method): Interface method
2874         don't have a header.
2875
2876         * reflection.c (mono_image_get_methodspec_token): Take an
2877         additional `MonoGenericInst *' argument instead of reading it from
2878         the header; this is necessary to support interfaces.
2879         (mono_image_create_token): Pass the `MonoGenericInst *' from the
2880         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
2881         (inflated_method_get_object): Take an additional `MonoGenericInst *'
2882         argument.
2883
2884         * reflection.h (MonoReflectionInflatedMethod): Added
2885         `MonoGenericInst *ginst'.
2886
2887 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
2888
2889         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
2890
2891 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
2892
2893         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
2894
2895 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
2896
2897         * reflection.c 
2898         (reflection_methodbuilder_from_method_builder):
2899         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
2900         initialize a ReflectionMethodBuilder structure.
2901         (mono_image_get_methodbuilder_token):
2902         (mono_image_get_ctorbuilder_token): New functions to emit memberref
2903         tokens which point to types in another module inside the same assembly.
2904
2905         * reflection.c: Use the new helper functions.
2906         
2907         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
2908
2909         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
2910         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
2911
2912         * reflection.c (resolution_scope_from_image): Emit a moduleref if
2913         neccesary.
2914
2915         * reflection.c (mono_image_build_metadata): Emit metadata only for the
2916         current module. Emit the manifest only for the main module.
2917
2918         * reflection.c (mono_image_create_token): Add assertion when a 
2919         memberref needs to be created.
2920
2921         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
2922
2923         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
2924         larger buffer for the custom attribute blob. Fixes #50637.
2925         
2926 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2927
2928         * threadpool.c: notify listener on async processing handles after
2929         invoking the async callback. Thanks to Zoltan.
2930
2931 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
2932
2933         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
2934         avoid code duplication.
2935
2936         * reflection.h (MonoDynamicImage): New type which is currently unused,
2937         but will be used through the ref.emit code in place of 
2938         MonoDynamicAssembly.
2939
2940         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
2941         object layout.
2942
2943         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
2944         a MonoDynamicImage instead of just a MonoImage.
2945         
2946         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
2947         icalls to ModuleBuilder but keep their semantics, so they will work
2948         with moduleb->assemblyb. This will change later.
2949         
2950 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
2951
2952         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
2953         object layout.
2954
2955         * reflection.c (mono_image_build_metadata): Avoid creation of a default
2956         main module, since it is now done by the managed code.
2957
2958 2003-11-03  Martin Baulig  <martin@ximian.com>
2959
2960         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
2961         `ginst->klass' here.
2962         (method_encode_methodspec): Don't use the `ginst->generic_method's
2963         klass if it's a generic instance, use `ginst->klass' in this case.
2964
2965 2003-11-03  Martin Baulig  <martin@ximian.com>
2966
2967         * reflection.c (mono_image_get_generic_method_param_info):
2968         Removed, use mono_image_get_generic_param_info() instead.
2969         (mono_image_get_type_info): Write the GenericParam table before
2970         the Method table.  This is neccessary because in the GenericParam
2971         table, type parameters of the class (ie. '!0' etc.) must come
2972         before the ones from its generic methods (ie. '!!0' etc).
2973
2974 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
2975
2976         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
2977
2978 2003-11-02  Martin Baulig  <martin@ximian.com>
2979
2980         * reflection.c (create_generic_typespec): Take a
2981         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
2982         the generic parameters from it.
2983
2984 2003-11-02  Martin Baulig  <martin@ximian.com>
2985
2986         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
2987         instead of a `MonoClassField *' since we just need the type.
2988         (create_generic_typespec): New static function.  Creates a
2989         TypeSpec token for a generic type declaration.
2990         (mono_image_get_generic_field_token): New static function.
2991         (mono_image_create_token): If we're a FieldBuilder in a generic
2992         type declaration, call mono_image_get_generic_field_token() to get
2993         the token.
2994
2995 2003-11-02  Martin Baulig  <martin@ximian.com>
2996
2997         * reflection.h
2998         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
2999         `MonoReflectionGenericInst *declaring_type' and
3000         `MonoReflectionGenericInst *reflected_type' fields.
3001
3002         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
3003         `MonoReflectionGenericInst *declaring_type' and a
3004         `MonoReflectionGenericInst *reflected_type' argument instead of a
3005         single `MonoReflectionGenericInst *type' one.  Set
3006         `res->declaring_type' and `res->reflected_type' from them.
3007         (mono_reflection_inflate_field): Likewise.      
3008
3009 2003-11-02  Martin Baulig  <martin@ximian.com>
3010
3011         * class.c (mono_class_setup_vtable): Don't store generic methods
3012         in the vtable.  
3013
3014 2003-11-02  Martin Baulig  <martin@ximian.com>
3015
3016         * reflection.h (MonoReflectionGenericInst): Added
3017         `MonoReflectionType *declaring_type'.
3018
3019         * reflection.c (mono_reflection_bind_generic_parameters): Use
3020         `if (tb->parent)' instead of `klass->parent'.
3021
3022 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
3023
3024         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
3025         with an empty ASSEMBLY table.
3026
3027         * reflection.c (mono_image_build_metadata): Avoid using the same loop
3028         variable in the inner and outer loops.
3029
3030 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
3031
3032         * metadata.h (mono_metadata_make_token): Put parentheses around macro
3033         argument.
3034
3035         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
3036         
3037         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
3038         icalls. Instead, do everything in managed code. This is needed since
3039         it is hard to restore the original domain etc. in unmanaged code in the
3040         presence of undeniable exceptions.
3041
3042         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
3043         New icalls to push and pop appdomain refs.
3044
3045 2003-10-31  Martin Baulig  <martin@ximian.com>
3046
3047         * class.c (inflate_generic_type): Renamed to
3048         mono_class_inflate_generic_type() and made it public.
3049
3050         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
3051         New interncall.
3052
3053         * loader.c (mono_field_from_memberref): Also set the retklass for
3054         typespecs.
3055
3056         * fielder.c (mono_image_get_inflated_field_token): New static
3057         method; creates a metadata token for an inflated field.
3058         (mono_image_create_token, fixup_method): Added support for
3059         "MonoInflatedField".
3060         (fieldbuilder_to_mono_class_field): New static function.
3061         (mono_reflection_inflate_field): New public function.
3062
3063         * reflection.h
3064         (MonoReflectionGenericInst): Added `MonoArray *fields'.
3065         (MonoReflectionInflatedField): New typedef.     
3066
3067 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
3068
3069         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
3070         for Solaris and other platforms without s6_addr16
3071
3072 2003-10-30  Martin Baulig  <martin@ximian.com>
3073
3074         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
3075         argument instead of two.
3076         (mono_class_inflate_generic_signature): Likewise.
3077         (inflate_generic_header): Likewise.
3078         (mono_class_inflate_generic_method): Likewise.  In addition, if
3079         `ginst->klass' is set, it becomes the new `method->klass'.
3080
3081         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
3082         field.
3083
3084         * reflection.c (encode_generic_method_sig): Write a 0xa as the
3085         first byte. [FIXME]
3086         (method_encode_methodspec): If we have generic parameters, create
3087         a MethodSpec instead of a MethodRef.
3088         (fixup_method): Added support for "MonoInflatedMethod" and
3089         "MonoInflatedCtor".
3090         (mono_image_create_token): Added support for "MonoInflatedMethod"
3091         and "MonoInflatedCtor".
3092         (inflated_method_get_object): New static function; returns a
3093         managed "System.Reflection.MonoInflatedMethod" object.
3094         (mono_reflection_bind_generic_method_parameters): Return a
3095         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
3096         (mono_reflection_inflate_method_or_ctor): Likewise.
3097         (mono_image_get_generic_method_param_info): Initialize unused
3098         fields to zero.
3099         (mono_image_get_generic_param_info): Likewise.
3100
3101         * reflection.h (MonoReflectionInflatedMethod): New public
3102         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
3103         "S.R.MonoInflatedCtor" classes.
3104
3105         * loader.c (method_from_memberref): If we're a TypeSpec and it
3106         resolves to a generic instance, inflate the method.
3107
3108 2003-10-28  Dick Porter  <dick@ximian.com>
3109
3110         * object.c (mono_runtime_run_main): Convert command-line arguments
3111         into utf8, falling back to the user's locale encoding to do so.
3112
3113 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
3114
3115         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
3116         at this time.
3117
3118         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
3119
3120         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
3121         up icalls at method definition time. Partially fixes #33569.
3122
3123 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
3124
3125         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
3126         marshalling of arrays. Fixes #50116.
3127
3128         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
3129
3130         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
3131         points to a vtable in the dying appdomain.
3132
3133         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
3134         listeners into unmanaged code inside the lock.
3135
3136         * object.c (mono_class_vtable): Turn off typed allocation in non-root
3137         domains and add some comments.
3138
3139 2003-10-25  Martin Baulig  <martin@ximian.com>
3140
3141         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
3142
3143         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
3144
3145         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
3146         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
3147         currently parsing.  Create the generic class and store it in
3148         `generic_inst->klass' before parsing the type arguments.  This is
3149         required to support "recursive" definitions; see mcs/tests/gen-23.cs
3150         for an example.
3151         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
3152         to support recursive typespec entries.
3153
3154         * class.c (mono_class_setup_parent): If our parent is a generic
3155         instance, we may get called before it has its name set.
3156         (mono_class_from_generic): Splitted into
3157         mono_class_create_from_generic() and mono_class_initialize_generic().
3158
3159 2003-10-25  Martin Baulig  <martin@ximian.com>
3160
3161         * icall.c (ves_icall_Type_BindGenericParameters): Return a
3162         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
3163         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
3164         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
3165
3166         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
3167         (create_typespec): Likewise.
3168         (mono_reflection_bind_generic_parameters): Return a
3169         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
3170         (mono_reflection_inflate_method_or_ctor): New public function.
3171
3172         * reflection.h (MonoReflectionGenericInst): New typedef.        
3173
3174 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
3175
3176         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
3177         inside the domain lock. Fixes #49993.
3178         
3179         * object.c (mono_class_vtable): When typed allocation is used, 
3180         allocate vtables in the GC heap instead of in the mempool, since the
3181         vtables contain GC descriptors which are used by the collector even
3182         after the domain owning the mempool is unloaded.
3183
3184         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
3185
3186         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
3187         reflect what it does. Also invalidate mempools instead of freeing
3188         them if a define is set.
3189
3190         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
3191         of the appdomain.
3192         
3193         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
3194         hold the finalizable objects in this domain.
3195
3196         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
3197         appdomain.
3198
3199         * appdomain.c (mono_domain_set): New function to set the current
3200         appdomain, but only if it is not being unloaded.
3201
3202         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
3203         appdomain which is being unloaded.
3204         
3205         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
3206         unloading of the root appdomain.
3207
3208         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
3209         icall to execute a method in another appdomain. Intended as a 
3210         replacement for InternalSetDomain, which can confuse the code 
3211         generation in the JIT.
3212
3213         * appdomain.c (mono_domain_is_unloading): New function to determine
3214         whenever an appdomain is unloading.
3215
3216         * appdomain.c (mono_domain_unload): New function to correctly unload
3217         an appdomain.
3218
3219         * assembly.c (mono_assembly_load_references): Check that an assembly
3220         does not references itself.
3221
3222         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
3223         domain manually, it asks the finalizer thread to do it, then waits for
3224         the result. Also added a timeout.
3225
3226         * icall.c: Register the new icalls.
3227
3228         * threads.h threads.c: Export the mono_gc_stop_world and 
3229         mono_gc_start_world functions.
3230         
3231         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
3232         function to fill out the mempool with 0x2a.
3233
3234 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
3235
3236         * reflection.h (MonoReflectionMethodAux): New structure to store
3237         information which is rarely used, thus is not in the MonoMethod
3238         structure.
3239
3240         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
3241         store the aux info.
3242
3243         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
3244         and marshalling info into the aux structure.
3245
3246         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
3247         from the aux structure.
3248
3249         * loader.c (mono_method_get_param_names): Retrieve the param names from
3250         the aux structure.
3251         
3252 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
3253
3254         * exception.h exception.c: Add AppDomainUnloadedException && fix 
3255         warning.
3256
3257 2003-10-21  Dick Porter  <dick@ximian.com>
3258
3259         * socket-io.c
3260         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
3261         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
3262
3263 2003-10-21  Martin Baulig  <martin@ximian.com>
3264
3265         * reflection.c (mono_reflection_bind_generic_parameters):
3266         `klass->parent' is NULL for interfaces.
3267
3268 2003-10-21  Martin Baulig  <martin@ximian.com>
3269
3270         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
3271
3272 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
3273
3274         * exception.c (mono_exception_from_name_msg): New helper function for
3275         creating exceptions and initializing their message field.
3276
3277         * exception.c: Simplify functions using the new helper.
3278
3279         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
3280         New function.
3281
3282         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
3283         mono_raise_exception, since otherwise gcc doesn't generate the function
3284         epilog for raise_exception, confusing the stack unwinding in the JIT.
3285         Fixes #45043.
3286
3287         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
3288         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
3289         Fixes #49499.
3290
3291 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3292
3293         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
3294         utf8.
3295
3296 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
3297
3298         * icall.c: Removed GetUninitializedObject method because
3299           AllocateUninitializedClassInstance does the same.
3300
3301 2003-10-18  Martin Baulig  <martin@ximian.com>
3302
3303         * class.c (inflate_generic_signature): Renamed to
3304         mono_class_inflate_generic_signature() and made it public.
3305         (my_mono_class_from_generic_parameter): New static function; if we
3306         don't already have the generic parameter's MonoClass, create a
3307         very simple one which is just used internally in the runtime and
3308         not passed back to managed code.
3309
3310         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
3311
3312         * metadata.h (MonoMethodSignature): Moved the
3313         `MonoGenericParam *gen_params' to the MonoMethodHeader.
3314         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
3315
3316         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
3317         ves_icall_MonoMethod_GetGenericArguments(); this is now an
3318         interncall on the MonoMethod class, not on MethodInfo.
3319         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
3320         calling mono_reflection_bind_generic_method_parameters() directly.
3321
3322         * loader.c (mono_method_get_signature): If this is a MethodSpec;
3323         return the already computed `method->signature'.
3324         (method_from_methodspec): New static function to load a method
3325         from a MethodSpec entry.
3326         (mono_get_method_from_token): Call the new method_from_methodspec()
3327         for MethodSpec tokens.  
3328         (mono_get_method_from_token): If we're a generic method, load the
3329         type parameters.
3330
3331         * reflection.c (mono_image_get_memberref_token): Allow
3332         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
3333         table.
3334         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
3335         (mono_image_create_token): First check whether it's a generic
3336         method (so we'd need to create a MethodSpec), then do the other
3337         two alternatives.
3338         (mono_reflection_bind_generic_method_parameters): Return a
3339         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
3340         called directly from the interncall.
3341
3342 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
3343
3344         * reflection.c (load_public_key): Move loading of the public key
3345         into managed code.
3346
3347         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
3348
3349         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
3350         fields.
3351
3352         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
3353         culture, hash_alg and public_key. Fixes #49555.
3354
3355 2003-10-17  Martin Baulig  <martin@ximian.com>
3356
3357         * class.h (MonoGenericInst): Moved this declaration here and added
3358         `MonoMethod *generic_method'.
3359
3360         * icall.c
3361         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
3362         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
3363
3364         * metadata.c (mono_metadata_type_equal): Two types of
3365         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
3366         index; ie. don't compare the address of the `MonoGenericParam'
3367         structure.
3368         (mono_metadata_load_generic_params): Removed the `MonoMethod
3369         *method' argument.
3370
3371         * metadata.h (MonoGenericInst): Moved declaration to class.h.
3372         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
3373
3374         * reflection.c (method_encode_signature): Encode the number of
3375         generic parameters.
3376         (encode_generic_method_sig): New static function.
3377         (method_encode_methodspec): New static function; creates an entry
3378         in the MethodSpec table for a generic method.
3379         (mono_image_get_methodspec_token): New static function.
3380         (mono_image_create_token): Call mono_image_get_methodspec_token()
3381         for generic methods.
3382         (mono_reflection_bind_generic_method_parameters): New public
3383         function.  Instantiates a generic method.
3384
3385 2003-10-16  Martin Baulig  <martin@ximian.com>
3386
3387         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
3388         *gen_params' here from MonoMethodHeader.
3389
3390         * metadata.c (mono_metadata_parse_method_signature): If we have
3391         generic parameters, initialize `method->gen_params' and then set
3392         the correct `type->data.generic_param' in all the parameters.
3393
3394 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
3395
3396         * threads.c (mono_threads_get_default_stacksize): New function to 
3397         return the default stacksize.
3398
3399         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
3400         termination of the finalizer thread, since the previous method had
3401         race conditions. Fixes #49628.
3402
3403         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
3404         as for the other managed threads.
3405
3406 2003-10-16  Martin Baulig  <martin@ximian.com>
3407
3408         * class.c (inflate_generic_signature): Copy `generic_param_count'
3409         and `gen_params'.
3410
3411         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
3412         New interncall.
3413
3414         * metadata.c (mono_metadata_parse_method_signature): Actually set
3415         the `method->generic_param_count' here.
3416         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
3417
3418 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
3419
3420         * object.h: Add a new field to TypedRef to simplify the implementation
3421         of the REFANY opcodes in the JIT.
3422
3423         * icall.c: Make use of the new field.
3424
3425         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
3426         dynamically.
3427
3428 2003-10-15  Martin Baulig  <martin@ximian.com>
3429
3430         * class.c (mono_class_from_gen_param): Renamed to
3431         mono_class_from_generic_parameter() and moved most of the
3432         functionality from mono_reflection_define_generic_parameter()
3433         here; ie. we create a "real" class here.
3434         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
3435         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
3436         previously been called.
3437
3438         * class.h (MonoGenericParam): Moved the declaration of this struct
3439         here from metadata.h and added `MonoMethod *method'.
3440
3441         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
3442         interncall.
3443
3444         * loader.c (mono_get_method_from_token): If we have any generic
3445         parameters, call mono_metadata_load_generic_params() to read them
3446         from the MONO_TABLE_GENERICPAR.
3447
3448         * metadata.c (mono_metadata_load_generic_params): Added
3449         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
3450
3451         * metadata.h (MonoMethodSignature): Replaced
3452         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
3453         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
3454
3455         * reflection.c (mono_reflection_define_generic_parameter): Moved
3456         most of the functionality into the new
3457         mono_class_from_generic_parameter(); set the `method' field if
3458         we're a method parameter.       
3459
3460 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
3461
3462         * marshal.c (emit_struct_conv): if native size is 0
3463         emit no code.
3464
3465 2003-10-14  Martin Baulig  <martin@ximian.com>
3466
3467         * icall.c: The generics API has changed in the spec since it was
3468         added to System.Type; these modifications make it match the spec
3469         again.
3470         (ves_icall_Type_GetGenericParameters): Renamed to
3471         `ves_icall_Type_GetGenericArguments'.
3472         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
3473         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
3474         `ves_icall_MonoType_get_HasGenericArguments'.
3475         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
3476         `ves_icall_MonoType_get_IsGenericParameter'.
3477         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
3478         this is no interncall anymore.
3479         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
3480         `ves_icall_TypeBuilder_get_IsGenericParameter'.
3481
3482 2003-10-14  Martin Baulig  <martin@ximian.com>
3483
3484         * reflection.c (mono_reflection_bind_generic_parameters): Also
3485         inflate generic methods if we're reading the class from IL.
3486
3487 2003-10-13  Martin Baulig  <martin@ximian.com>
3488
3489         * reflection.c (mono_reflection_define_generic_parameter): This
3490         method isn't called directly from the icall anymore; take a
3491         `MonoReflectionAssemblyBuilder *' so we can use this for type and
3492         method generic parameters.
3493         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
3494         (method_builder_encode_signature): Encode generic parameters.
3495         (mono_image_get_method_info): Write generic params to the
3496         MONO_TABLE_GENERICPARAM table.
3497
3498         * reflection.h (MonoReflectionMethodBuilder): Added
3499         `MonoArray *generic_params'.
3500
3501         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
3502
3503         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
3504         wrapper for mono_reflection_define_generic_parameter().
3505         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
3506
3507 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
3508
3509         * marshal.h: Add missing function to fix build.
3510
3511         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
3512         the SetLastError pinvoke attribute.
3513
3514         * marshal.c (mono_marshal_set_last_error): New helper function called
3515         by the generated code.
3516         
3517         * marshal.c (mono_mb_emit_branch): New helper function.
3518
3519         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
3520
3521         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
3522         classes as parameters and return values of delegates. Fixes #29256. 
3523
3524 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
3525
3526         * locales.c: use gint32 in non HAVE_ICU case
3527
3528 2003-10-11  Martin Baulig  <martin@ximian.com>
3529
3530         * mono-debug.c (mono_debug_add_method): Added a workaround for
3531         bug #48591.
3532
3533 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
3534
3535         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
3536         delegates passed to native code must use the STDCALL calling 
3537         convention. Fixes #35987.
3538
3539 2003-10-10  Martin Baulig  <martin@ximian.com>
3540
3541         * class.c (inflate_generic_type): If we're inflating for a generic
3542         type instance (and not for a generic method), return
3543         MONO_TYPE_MVAR unchanged.
3544
3545 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3546
3547         * string-icalls.c: Join ignores null strings in the source array.
3548         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
3549         * threads.c: GetAvailableTheads is slightly more accurate.
3550
3551 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
3552
3553         * threads.h threads.c : add mono_threads_set_default_stacksize
3554         and pass default to CreateThread calls.
3555
3556 2003-10-09  Dick Porter  <dick@ximian.com>
3557
3558         * icall.c:
3559         * locales.h:
3560         * locales.c: Internal calls for constructing CultureInfo and
3561         related objects from libicu (if its available.)
3562
3563 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
3564
3565         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
3566
3567 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3568
3569         * threadpool.c: added an argument to async_invoke_thread that is the
3570         item to process, pass the MonoAsyncResult to the thread start function
3571         when creating a new thread. This way we don't need to acquire any lock
3572         when we're creating a new thread. Readded a semaphore for faster
3573         response times (instead of that Sleep i added).
3574
3575 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
3576
3577         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
3578         get daylight change dates better on Windows, fix handling
3579         of platforms without tm_gmtoff.
3580
3581 2003-10-06  Martin Baulig  <martin@ximian.com>
3582
3583         * class.c (inflate_generic_method): Renamed to
3584         mono_class_inflate_generic_method() and made public.
3585         (mono_class_init): Don't inflate the generic methods here.
3586         (mono_class_from_generic): Added `gboolean inflate_methods'
3587         argument.  Inflate the methods here.
3588
3589         * loader.c (mono_method_get_param_names): Ignore instances of
3590         generic types for the moment.
3591
3592         * reflection.c (fixup_method): Added support for inflated methods.
3593         (mono_image_create_token): Use mono_image_get_methodref_token()
3594         for inflated methods.
3595         (mono_custom_attrs_from_param): Ignore instances of generic types
3596         for the moment.
3597         (mono_reflection_bind_generic_parameters): New public function.
3598         Moved all the functionality from
3599         ves_icall_Type_BindGenericParameters() here and added support for
3600         dynamic types.
3601         (mono_reflection_define_generic_parameter): Initialize
3602         `klass->methods' here.
3603
3604         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
3605         functionality into mono_reflection_define_generic_parameter().
3606         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
3607         TypeBuilder, return that TypeBuilder.
3608
3609 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3610
3611         * appdomain.c: removed mono_delegate_semaphore.
3612
3613         * threadpool.c:
3614         (mono_thread_pool_add): moved hash table creation inside and the thread 
3615         creation outside of the critical region.
3616         (mono_thread_pool_finish): removed obsolete code.
3617         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
3618         continue or exit the thread depending on the queue.
3619
3620 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
3621
3622         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
3623         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
3624         handle more bool marshalling options
3625
3626 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
3627
3628         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
3629         arrays of structs. Also add a more descriptive error message when
3630         a structure member is marshalled as LPArray.
3631
3632 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
3633
3634         * marshal.c (mono_marshal_get_native_wrapper): Add support for
3635         marshalling arrays of complex types. Fixes #29098. Also remove an
3636         usused and incomplete function.
3637
3638 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
3639
3640         * gc.c: report heap_size - free_bytes as total memory allocated
3641         (bug#49362).
3642
3643 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
3644
3645         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
3646         fix timezone handling problems on Windows.
3647         
3648         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
3649         asserts when the year is outside the range handled by ms the functions.
3650
3651         * class.c (setup_interface_offsets): If the class is an interface,
3652         fill out its interface_offsets slot.
3653
3654 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3655
3656         * threadpool.c: mark threadpool threads as background.
3657
3658 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
3659
3660         * decimal.c - define DECINLINE to nothing if not using GCC
3661
3662 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
3663
3664         * assembly.c: More refcount fixes.
3665
3666 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3667
3668         * string-icalls.c: if we're not trimming, return the same string.
3669         When not splitting, don't create a new string.
3670
3671 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3672
3673         * image.c:
3674         (mono_image_open): increment the ref_count inside the critical section.
3675
3676 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
3677
3678         * image.c (mono_image_open): Fix reference counting bug.
3679
3680 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
3681
3682         * marshal.c (mono_marshal_type_size) struct alignment changed for 
3683         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
3684         64bits. Avoid leak in mono_marshal_get_native_wrapper when
3685         mono_lookup_pinvoke_call throws.        
3686
3687 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
3688
3689         * reflection.c (mono_reflection_parse_type): Fix #49114.
3690
3691         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
3692         temporary workaround for cygwin header problem.
3693
3694         * object.c (mono_object_isinst): Synchronize this with the code
3695         generated by the JIT for casts.
3696
3697 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
3698
3699         * reflection.c (encode_type): Fix #38332.
3700
3701 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
3702
3703         * marshal.c (mono_marshal_method_from_wrapper): New function to return
3704         the original method from the wrapper method.
3705
3706 2003-09-25  Martin Baulig  <martin@ximian.com>
3707
3708         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
3709         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
3710         (ves_icall_Type_get_IsGenericInstance): New interncall.
3711
3712 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
3713
3714         * object.c: fix cast warning in big endian code.
3715
3716 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
3717
3718         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
3719         
3720 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3721
3722         * assembly.c: don't call check_env from mono_assembly_load. It's
3723         already done once in mono_assemblies_init and may cause headaches when
3724         multiple threads are loading assemblies.
3725
3726 2003-09-19  Martin Baulig  <martin@ximian.com>
3727
3728         * reflection.c (mono_reflection_define_generic_parameter): Don't
3729         allocate `klass->methods', set `klass->flags' to
3730         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
3731
3732 2003-09-18  Martin Baulig  <martin@ximian.com>
3733
3734         * class.c (mono_class_init): Don't create `class->methods' if it's
3735         already initialized.
3736
3737         * metadata.c (mono_metadata_load_generic_params): Make this
3738         actually work.
3739
3740         * reflection.c (mono_reflection_define_generic_parameter): Set
3741         parent class and interfaces from the constraints.
3742
3743         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
3744         to keep this struct in sync with the declaration in TypeBuilder.cs.
3745
3746 2003-09-17  Martin Baulig  <martin@ximian.com>
3747
3748         * metadata.h (MonoType): Replaced the data's `int type_param'
3749         field with `MonoGenericParam *generic_param'.
3750         (MonoGenericParam): Added `MonoClass *klass'.
3751
3752         * class.c (mono_class_from_gen_param): Removed the
3753         `MonoImage *image' and `int type_num' arguments.
3754
3755         * metadata.c (mono_metadata_parse_generic_param): New static
3756         method; creates a MonoGenericParam which just contains the index.
3757         (do_mono_metadata_parse_type): Call
3758         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
3759         MONO_TYPE_MVAR.
3760
3761         * reflection.c (mono_image_typedef_or_ref): Generic type
3762         parameters may be in the same assembly, but never use a typedef
3763         for them.
3764         (mono_reflection_define_generic_parameter): We're now creating a
3765         "real" class for the type parameter; it's now safe to call
3766         mono_class_from_mono_type() on the class'es type, it'll do the
3767         right thing.
3768
3769 2003-09-16  Martin Baulig  <martin@ximian.com>
3770
3771         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
3772         `symfile->range_entry_size' and `symfile->class_entry_size' here;
3773         the `symfile' data structure must be fully initialized before it
3774         gets added to the table.
3775
3776 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
3777
3778         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
3779
3780         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
3781         class init trampolines.
3782
3783 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
3784
3785         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
3786         to the built-in profiler to turn off time and allocation profiling
3787         respectively.
3788
3789 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
3790
3791         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
3792         g_direct_equal.
3793
3794         * debug-helpers.c (mono_method_full_name): Print the wrapper type
3795         in human readable form.
3796
3797 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
3798
3799         * reflection.c icall.c: Fixed warnings.
3800
3801         * image.c (load_class_names): Use a temporary hash table to hold the
3802         namespaces in order to avoid doing many string comparisons.
3803
3804         * image.h: Fix typo.
3805
3806         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
3807         Pass NULL instead of g_direct_equal to the GHashTable constructor 
3808         since the NULL case is short-circuited inside g_hash_table_lookup, 
3809         leading to better performance.  
3810
3811         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
3812         obtain the first custom attribute for a given index. Depends on the
3813         CustomAttribute table being sorted by the parent field.
3814
3815         * reflection.c (mono_custom_attrs_from_index): Use the new function 
3816         for better performance.
3817
3818 2003-09-07  Martin Baulig  <martin@ximian.com>
3819
3820         * class.c (mono_class_init): If we're a generic instance, inflate
3821         all our methods instead of loading them from the image.
3822         (mono_class_from_generic): Set `class->methods = gklass->methods'.
3823
3824 2003-09-07  Martin Baulig  <martin@ximian.com>
3825
3826         * mono-debug-debugger.c: Added support for constructors.
3827
3828 2003-09-06  Martin Baulig  <martin@ximian.com>
3829
3830         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
3831         New interncall.
3832
3833         * reflection.c (mono_reflection_setup_generic_class): Call
3834         ensure_runtime_vtable() to create the vtable.
3835
3836 2003-09-05  Martin Baulig  <martin@ximian.com>
3837
3838         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
3839         MONO_TYPE_MVAR.
3840
3841 2003-09-04  Martin Baulig  <martin@ximian.com>
3842
3843         * reflection.c (mono_reflection_define_generic_parameter): Generic
3844         parameters start with zero.
3845
3846 2003-09-04  Martin Baulig  <martin@ximian.com>
3847
3848         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
3849
3850         * reflection.h (MonoReflectionGenericParam): New typedef.
3851         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
3852         the generic parameters from the managed TypeBuilder.
3853
3854         * reflection.c (mono_reflection_define_generic_parameter): New function.
3855         (mono_reflection_create_runtime_class): Encode generic parameters.
3856         (mono_reflection_setup_generic_class): New function; this is
3857         called after adding adding all generic params to the TypeBuilder.
3858         (encode_type): Added MONO_TYPE_VAR.
3859
3860 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
3861
3862         * class.h class.c (mono_class_needs_cctor_run): Moved this method
3863         here from the JIT.
3864
3865         * assembly.h assembly.c: Moved the AOT loading code into an assembly
3866         load hook.
3867
3868 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
3869
3870         * reflection.h reflection.c class.h class.c: Delete duplicate 
3871         definition of mono_type_get_name () from reflection.c and export the
3872         one in class.c.
3873
3874         * class.c: Class loading fixes from Bernie Solomon 
3875         (bernard@ugsolutions.com).
3876
3877         * reflection.c: Endianness fixes from Bernie Solomon 
3878         (bernard@ugsolutions.com).
3879         
3880 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
3881
3882         * assembly.h assembly.c: Define a file format version for AOT
3883         libraries.
3884         
3885         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
3886
3887         * appdomain.h (MonoJitInfo): New field to determine whenever the
3888         code is domain neutral.
3889         
3890 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
3891
3892         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
3893
3894 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
3895
3896         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
3897         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
3898         Avoid caching the result since strings must be domain specific. Fixes
3899         #48050.
3900
3901 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
3902
3903         * marshal.c (mono_marshal_init): Make this callable multiple times
3904         since it is hard to find a correct place to call it.
3905
3906         * object.c (mono_runtime_class_init): Execute static constructors in
3907         the correct appdomain.
3908
3909         * image.c (build_guid_table): Handle the case when multiple images have
3910         the same GUID.
3911
3912 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3913
3914         * icall.c: added a couple of icalls for System.Web.
3915
3916 2003-08-28  Martin Baulig  <martin@ximian.com>
3917
3918         * icall.c (ves_icall_Type_BindGenericParameters): Use
3919         `klass->generic_inst' instead of `&klass->byval_arg' in the
3920         mono_type_get_object() call.  The returned type must be
3921         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
3922
3923 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
3924
3925         * NOTES: New file.
3926
3927         * object.c (mono_class_proxy_vtable): Make it thread safe.
3928
3929         * pedump.c: Fix warning.
3930
3931         * object.c appdomain.h: Get rid of metadata_section. 
3932         It is no longer needed and it was causing deadlocks with domain->lock.
3933
3934         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
3935
3936 2003-08-26  Martin Baulig  <martin@ximian.com>
3937
3938         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
3939
3940 2003-08-26  Martin Baulig  <martin@ximian.com>
3941
3942         * pedump.c (main): Call mono_metadata_init(),
3943         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
3944         and mono_loader_init().
3945
3946 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
3947
3948         * loader.h: Add missing include to fix build.
3949
3950         * image.h: mono_image_load_references is no more.
3951
3952         * assembly.c: Reworked assembly loading to make it really thread safe.
3953         After these changes, the assembly returned by mono_assembly_open is
3954         fully initialized, i.e. all its references assemblies are loaded.
3955
3956         * assembly.c (mono_image_load_references): Renamed to 
3957         mono_assembly_load_references, and made private, since clients no
3958         longer need to call it.
3959
3960         * class.c: Removed calls to mono_assembly_load_references, since it was
3961         a source of deadlocks.
3962
3963         * loader.h loader.c class.h class.c: Protect data structures using a 
3964         new lock, the loader lock.
3965
3966         * class.c (mono_class_setup_vtable): Create temporary hash tables and
3967         GPtrArrays only when needed.
3968
3969         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
3970         into empty structures by mcs. Fixes pinvoke7.cs.
3971         
3972         * domain.c (mono_init): Call a new initialization function.
3973
3974         * appdomain.c (mono_runtime_init): Call the new initializer function
3975         of the marshal module.
3976
3977         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
3978         inserted into empty structures by mcs. Fixes pinvoke7.cs.
3979
3980         * marshal.h marshal.c: Added locks around the wrapper caches to make
3981         this module thread safe.
3982
3983         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
3984         this argument. Fixes pinvoke1.exe.
3985
3986 2003-08-25  Lluis Sanchez <lluis@ximian.com>
3987
3988         * object.h: Added call_type field to MonoMethodMessage and the corresponding
3989         enumeration of values. Removed fields to store remote call output values in
3990         MonoAsyncResult. Not needed any more.
3991         * object.c: Initialize call_type and async_result fields in mono_message_init.
3992         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
3993         dispatching the message.
3994         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
3995         async call to finish. To do it use a message with EndInvoke call type.
3996
3997 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
3998
3999         * loader.h loader.c (mono_method_hash_marhal_info): New function which
4000         determines whenever a method has marshalling info.
4001
4002 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4003
4004         * assembly.c: fix the build on windows.
4005
4006 2003-08-22 Lluis Sanchez <lluis@ximian.com>
4007
4008         * object.cs: Fixed bug #47785.
4009
4010 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
4011
4012         * string-icalls.c (StringReplace): If their are no occurances of
4013         the old string found return a reference to the supplied
4014         string. This saves some memory and matches MS behavoir.
4015         
4016 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4017
4018         * socket-io.c: fixed compilation for systems that define AF_INET6
4019         and don't define SOL_IP/SOL_IPV6.
4020
4021 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
4022
4023         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
4024         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
4025
4026         * rawbuffer.c rawbuffer.h: Make this module thread safe.
4027
4028         * domain.c: Make this module thread safe.
4029
4030         * domain.c (mono_init): Call new initialization function.
4031
4032         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
4033         reference types too. Fixes #38812.
4034
4035         * image.c (mono_image_init): Fixed warnings.
4036
4037         * class.c (mono_class_from_typeref): Handle assembly load failure
4038         correctly.
4039
4040         * appdomain.c (add_assemblies_to_domain): Handle the case when
4041         the references of an assembly are not yet loaded.
4042
4043         * metadata.c image.c assembly.c: Moved initialization of global
4044         variables to a separate function called at startup since lazy 
4045         initialization of these variables is not thread safe.
4046         
4047         * image.c assembly.c: Made this module thread safe by adding locks in 
4048         the appropriate places.
4049
4050         * domain.c (mono_init): Call the new initialization functions of the
4051         three modules.
4052
4053 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
4054
4055         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
4056           make a direct call. It is proxy's work to make the call asynchronous.
4057           mono_delegate_end_invoke(): If the targe is a proxy, just collect
4058           the return values.
4059         * object.cs: mono_method_call_message_new(): read AsyncResult and
4060           state object from parameters list, if this info is requested.
4061         * object.h: Added fields to store remote call output values in
4062           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
4063
4064 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
4065
4066         * object.h: add needed fields to MonoThread.
4067         * threads.c, threads.h: allow registering a function to cleanup data
4068         allocated per thread by the JIT.
4069
4070 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4071
4072         * loader.h: portability fix by Bernie Solomon
4073         * <bernard@ugsolutions.com>.
4074
4075 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
4076
4077         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
4078         return a MonoArray. This simplifies the code and also ensures that
4079         the cache allways contains an object reference as a value.
4080
4081         * icall.c (ves_icall_get_parameter_info): Simplified using the new
4082         function.
4083
4084 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4085
4086         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
4087         fixes a problem with byte ordering when getting the address family for
4088         a socket.
4089
4090 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
4091
4092         * .cvsignore: Added monosn.
4093
4094         * reflection.h reflection.c loader.c: Added support for parameter
4095         marshalling to dynamically created types. Fixes #47295.
4096
4097 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
4098
4099         * rand.c: remove useless warnings.
4100
4101 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
4102
4103         * class.c: implemented ldtoken for methods and fieldrefs.
4104
4105 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4106
4107         * threadpool.c: when mono_async_invoke was called, no one took care of
4108         monitoring the queue. So if the method invoked took some time and we
4109         got new async invoke requests after 500 ms (the thread created waited
4110         that long in WaitForSingleObject), the new async invoke was not called
4111         until the previous one finished.
4112
4113         This is fixed now. Thanks to Totte for helping with it.
4114
4115 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4116
4117         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
4118
4119 2003-08-11  Martin Baulig  <martin@ximian.com>
4120
4121         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
4122
4123 2003-08-06  Martin Baulig  <martin@ximian.com>
4124
4125         * mono-debug-debugger.c: Added support for static fields,
4126         properties and methods.
4127
4128 2003-08-06  Martin Baulig  <martin@ximian.com>
4129
4130         * mono-debug-debugger.c: Don't store the MonoString's vtable to
4131         make this work for applications with multiple application domains.
4132
4133 2003-08-04  Martin Baulig  <martin@ximian.com>
4134
4135         * mono-debug-debugger.c: Completely reworked the type support; the
4136         most important thing is that we're now just using one single
4137         `MonoType' instance per type.
4138
4139 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
4140
4141         * mono-endian.h, mono-endian.c, icall.c: Added icall
4142         ves_icall_System_Double_AssertEndianity to assert double word endianity
4143         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
4144
4145 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
4146
4147         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
4148         support, icalls and fixes.
4149
4150 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
4151
4152         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
4153         classes that are a punctuation character in .NET is not the same a
4154         g_unichar_ispunct.
4155
4156 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4157
4158         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
4159
4160 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
4161
4162         * icall.c: Add new MemCopy internalcall.
4163         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
4164         Simplified code; It is not necessary to handle all the cases here,
4165         as the C# code takes care of it.  Only handle the case of the name
4166         resource embedded into the assembly.
4167
4168         Changed signature to return the data pointer and the size of the
4169         data. 
4170
4171 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
4172
4173         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
4174         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
4175
4176 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
4177
4178         * socket-io.c: ignore EINTR error in select.
4179
4180 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
4181
4182         * class.h, class.c: removed unused subclasses field in MonoClass.
4183
4184 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
4185
4186         * icall.c: improve fix of get_base_definition(). If the parent class
4187           doesn't have the mehod, look at the parent of the parent.
4188         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
4189           to check if a parameter is an in or out parameter
4190           (PARAM_ATTRIBUTE_IN is not set by default).
4191           mono_method_return_message_restore(): Use mono_class_value_size to
4192           get the size of a value type. mono_type_stack_size (parameterType)
4193           does not return the correct value if parameterType is byRef.
4194           mono_load_remote_field(), mono_load_remote_field_new(),
4195           mono_store_remote_field(), mono_store_remote_field_new():
4196           raise exception if the remote call returns an exception.
4197
4198 2003-07-28  Martin Baulig  <martin@ximian.com>
4199
4200         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
4201         method.  This is a wrapper around mono_runtime_invoke() which
4202         boxes the instance object if neccessary.
4203
4204 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
4205
4206         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
4207         metadata.h, row-indexes.h, verify.c: first cut of generics support.
4208
4209 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
4210
4211         * icall.c: disable mcs bug workaround.
4212
4213 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
4214
4215         * object.c (mono_runtime_class_init): Take the metadata_section
4216         mutex before obtaining the domain mutex.
4217
4218         * appdomain.h: Added definition of metadata_section mutex here. 
4219
4220         * object.c: define metadata_mutex here.
4221
4222 2003-07-24  Ravi Pratap  <ravi@ximian.com>
4223
4224         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
4225         fixed.
4226
4227 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
4228
4229         * reflection.c: Fix bug #46669
4230
4231 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4232
4233         * exception.c:
4234         * exception.h:
4235         * icall.c:
4236         * object.h: fill in the type name for TypeLoadException.
4237
4238 2003-07-23  Ravi Pratap  <ravi@ximian.com>
4239
4240         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
4241         relationship between TypeBuilders while compiling corlib) and bug
4242         45993 (Array types returned from the runtime while compiling
4243         corlib were from the loaded corlib).
4244
4245 2003-07-22  Martin Baulig  <martin@ximian.com>
4246
4247         * mono-debug-debugger.c: Reworked the type support a bit more;
4248         distinguish between types and classes.
4249
4250 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
4251
4252         * icall.c: add IsArrayImpl icall.
4253
4254 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
4255
4256         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
4257         initializing real_size only once. Also fix bug #46602.
4258
4259 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
4260
4261         * object.c: Renamed mono_metadata_section to metadata_section.
4262
4263 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
4264
4265         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
4266           empty array if the type is an array. Fixed.
4267           ves_icall_MonoMethod_get_base_definition: if the base method
4268           is abstract, get the MethodInfo from the list of methods of
4269           the class.
4270         * reflection.c: ParameterInfo.PositionImpl should be zero-based
4271           and it was 1-based. Fixed in mono_param_get_objects.
4272
4273 2003-07-20  Martin Baulig  <martin@ximian.com>
4274
4275         * mono-debug.h: Set version number to 31.
4276         (mono_debug_init): Added `MonoDomain *' argument.
4277
4278         * mono-debug-debugger.c: Reworked the type support; explicitly
4279         tell the debugger about builtin types; pass the `klass' address to
4280         the debugger.
4281
4282 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
4283
4284         * image.c: Allow new metadata tables to be loaded without a
4285         warning. Also update the warning message to give the new constant value.
4286                 
4287 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
4288
4289         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
4290         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
4291         array type representation changes.
4292
4293 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
4294
4295         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
4296         on Environment.Exit () call.
4297
4298 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
4299
4300         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
4301         requires a matching corlib.
4302
4303 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
4304
4305         * Changelog: My editor decided to add a CR to each line. Sorry about that.
4306           Committed again without the CRs.
4307         
4308 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
4309
4310         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
4311           getting it from the "this" socket instance. Did not work
4312           if the socket is a subclass of Socket.
4313           Also fixed bug #35371.
4314
4315 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
4316
4317         * metadata.c: fixed size for TypedByRef.
4318         * loader.c: when searching for a method, consider the vararg amrker.
4319         * unicode.c, decimal.c: constify some arrays.
4320
4321 2003-07-15  Dick Porter  <dick@ximian.com>
4322
4323         * socket-io.c: Fixed compilation for gcc < 3.2.
4324
4325         Fixed compilation for machines that don't have AF_INET6 (thanks to
4326         Bernie Solomon <bernard@ugsolutions.com> for that part.)
4327
4328         Fixed compile warnings.
4329         
4330         Fixed formatting and line endings.
4331
4332 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
4333
4334         * socket-io.h:
4335         * socket-io.c: Added IPv6 support.
4336
4337 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
4338
4339         * class.c (mono_class_is_assignable_from): New function to implement
4340         the is_assignable_from logic. Used by mono_object_isinst, 
4341         Type::IsAssignableFrom () and the interpreter.
4342
4343         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
4344         Object, even interfaces.
4345         
4346         * object.c (mono_object_isinst): Implement in terms of 
4347         is_assignable_from.
4348
4349         * icall.c (ves_icall_type_is_assignable_from): New icall.
4350
4351 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
4352
4353         * domain.c (foreach_domain): fix compiler warning.
4354
4355 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
4356
4357         * image.c (load_metadata_ptrs): use g_strndup because strndup is
4358         not available on all plattforms
4359
4360 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
4361
4362         * image.h image.c: Store the metadata version string in MonoImage.
4363         * icall.c: New icall to retrieve the image version.
4364         * reflection.c (create_dynamic_image): Fill in the image version field
4365         * reflection.c (build_compressed_metadata): Use the image version
4366         from the image structure.
4367
4368 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4369
4370         * appdomain.c: modified comment.
4371         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
4372         That will be its last iteration when mono_gc_cleanup is called from
4373         mono_runtime_cleanup and before the domain is unloaded.
4374
4375         Fixes bug #45962.
4376
4377 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
4378
4379         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
4380         attributes.
4381
4382 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
4383
4384         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
4385         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
4386         Bernie Solomon <bernard@ugsolutions.com>.
4387
4388 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
4389
4390         * object.c, object.h: provide mono_object_new_fast() for faster
4391         allocation in some special cases.
4392
4393 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
4394
4395         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
4396         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
4397
4398 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
4399
4400         * threadpool.c: fix leaks.
4401
4402 2003-07-01  Dick Porter  <dick@ximian.com>
4403
4404         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
4405         using MonoGHashTables.  Fixes threadpool bug posted to list.
4406
4407 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
4408
4409         * image.h, image.c: added support to load an assembly from a byte array.
4410         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
4411         assembly bundle support.
4412
4413 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
4414
4415         * threadpool.c (mono_thread_pool_add): keep a reference to the
4416         AsyncResult to prevent GC
4417
4418 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
4419
4420         * class.c: leak fix.
4421
4422 2003-06-25  Dick Porter  <dick@ximian.com>
4423
4424         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
4425         for the async object, the WaitHandle object will close the handle.
4426         Fixes bug 45321.
4427
4428 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
4429
4430         * class.c: in mono_array_class_get (), lookup from the hash with the
4431         same type we insert: this works around a bug in
4432         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
4433         lluis. The real fix will have to wait for after the release.
4434
4435 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
4436
4437         * icall.c: fix memory leak when getting type members.
4438
4439 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
4440
4441         * reflection.c: added more pubtoken special cases.
4442
4443 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
4444
4445         * class.c: handle field offset correctly when class size
4446         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
4447
4448 2003-06-20  Martin Baulig  <martin@ximian.com>
4449
4450         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
4451         *image' field.
4452
4453 2003-06-20  Martin Baulig  <martin@ximian.com>
4454
4455         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
4456
4457 2003-06-20  Martin Baulig  <martin@ximian.com>
4458
4459         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
4460         just distinguish between variables in registers and variables at
4461         an offset relative to a register.
4462
4463 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4464
4465         * icall.c: #ifdef out latest changes until mcs is fixed.
4466
4467 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
4468
4469         * icall.c: return members in metadata order.
4470
4471 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
4472
4473         * icall.c: avoid infinite loop in GetTimeZoneData.
4474
4475 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
4476
4477         * icall.c: added Marshal.Prelink/All icalls.
4478
4479 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
4480
4481         * object.c, object.h: fix warnings and do some overflow checking
4482         when creating arrays.
4483
4484 2003-06-17  Dick Porter  <dick@ximian.com>
4485
4486         * file-io.h:
4487         * file-io.c: File attributes need to be tweaked slightly when
4488         passed from the managed to the w32 world.
4489
4490 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
4491         * profiler.h profiler-private.h profiler.c: Rework last patch
4492         based on suggestion by Paolo.
4493         
4494 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
4495
4496         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
4497         instruction level coverage data collection.
4498         * profiler.h profiler.c (: Added new callback function which can be
4499         used by the profiler to limit which functions should have coverage
4500         instrumentation.
4501         * profiler.c (mono_profiler_load): Call g_module_build_path to
4502         generate the file name of the profiler library.
4503
4504 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
4505
4506         * profiler.c, profiler.h, profiler-private.h: added basic block 
4507         coverage profiling API.
4508
4509 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
4510
4511         * reflection.c (mono_reflection_create_runtime_class): Add support
4512         for events in dynamically generated code.
4513
4514         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
4515         not allocated.
4516
4517 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
4518
4519         * icall.c: when getting timezone info, return reasonable values if we
4520         can't get the actual data.
4521
4522 2003-06-14  Dick Porter  <dick@ximian.com>
4523
4524         * threads.c (start_wrapper): Remove the reference to the thread
4525         object in the TLS data, so the thread object can be finalized.
4526         This won't be reached if the thread threw an uncaught exception,
4527         so those thread handles will stay referenced :-( (This is due to
4528         missing support for scanning thread-specific data in the Boehm GC
4529         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
4530
4531 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
4532
4533         * reflection.c: ensure streams and tables are first allocated with
4534         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
4535
4536 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
4537
4538         * icall.c: fixed GetElementType for byrefs (bug# 44792).
4539
4540 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
4541
4542         * reflection.c (mono_reflection_create_runtime_class): Add support for
4543         properties to dynamically created classes.
4544         * reflection.c: Fix a few places where non-MonoObjects were inserted
4545         into the tokens hashtable.
4546
4547 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
4548
4549         * object.c: some support to handle out of memory exceptions.
4550
4551 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
4552
4553         * marshal.c (mono_marshal_get_native_wrapper): support reference
4554         return types
4555
4556 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
4557
4558         * object.h, object.c: more portability stuff from Bernie Solomon.
4559         Unexport mono_object_allocate(). Added mono_object_unbox ().
4560         Set exitcode when an unhandled exception is thrown.
4561
4562 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
4563
4564         * marshal.c (mono_marshal_get_native_wrapper): use custom
4565         marshaler for return types.
4566
4567 2003-06-10  Dick Porter  <dick@ximian.com>
4568
4569         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
4570         ip_mreq is available
4571
4572 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
4573
4574         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
4575         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
4576         by Bernie Solomon <bernard@ugsolutions.com>.
4577
4578 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
4579
4580         * gc.c (mono_gc_init): Avoid error message on shutdown when
4581         GC_DONT_GC=1 is used.
4582
4583         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
4584         New icall to return the GUID of a module.
4585
4586 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
4587
4588         * class.c: ensure instance size always includes the parent's size
4589         even whem class size is set explicitly (fixes bug#44294).
4590
4591 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
4592
4593         * profiler.h, profiler.c: made the simple profiler thread-safe,
4594         get more accurate timing info. Allow the loading of an
4595         externally-developed profiler module.
4596
4597 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
4598
4599         * marshal.c (mono_marshal_get_native_wrapper): improved
4600         class/byref arguments.
4601         (mono_marshal_get_native_wrapper): better string marshaling support.
4602
4603 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
4604
4605         * class.c: ensure .pack and .size are handled correctly and
4606         simplified layout of static fields.
4607
4608 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
4609
4610         * appdomain.c
4611         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
4612
4613         * loader.c (mono_lookup_pinvoke_call): look for modules in the
4614         current directory (fix bug 44008)
4615
4616 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
4617
4618         * marshal.c (mono_marshal_get_native_wrapper): started support for
4619         custom marshalers.
4620         (mono_delegate_to_ftnptr): consider marshalling specifications
4621
4622 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
4623
4624         * reflection.c, reflection.h: emit custom marshal info.
4625
4626 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4627
4628         * object.c: free the GError.
4629         * icall.c: added CloseEvent_internal.
4630         * threads.[ch]:
4631         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
4632         call.
4633
4634 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
4635
4636         * loader.c (mono_method_get_signature): Add support for dynamic
4637         assemblies.
4638
4639 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
4640
4641         * reflection.c: fixed bug #43905.
4642
4643 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
4644
4645         * class.c, domain.c, icall.c, metadata.h, object.h: support for
4646         handling TypedReference and ArgIterator.
4647         * loader.c, loader.h: added function to get signature at call site.
4648
4649 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
4650
4651         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
4652         data readonly. Buglets and warning fixes. Some MethodSpec support.
4653
4654 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
4655
4656         * class.h, class.c, object.c: remove relative numbering support.
4657
4658 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
4659
4660         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
4661         free the string, until we get a chance to fix Gtk#
4662
4663 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4664
4665         * marshal.c: revert last patch.
4666
4667 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
4668
4669         * icall.c: updates for new mono_class_vtable() not calling
4670         the type constructor anymore.
4671
4672 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
4673
4674         * object.h, object.c: separate vtable creation from type
4675         initialization. Make running the .cctor thread safe.
4676
4677 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
4678
4679         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
4680
4681 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
4682
4683         * loader.c (mono_get_method): consider calling convention
4684
4685 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
4686
4687         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
4688         to return the invisible global type for a module.
4689
4690         * reflection.c (mono_image_build_metadata): Emit global fields too.
4691
4692 2003-05-20  Peter Williams  <peterw@ximian.com>
4693
4694         * loader.c (mono_lookup_internal_call): Add a few newlines.
4695
4696 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
4697
4698         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
4699         literal strings.
4700
4701         * appdomain.c (set_domain_search_path): Recalculate search path when
4702         AppDomainSetup.PrivateBinPath changes.
4703
4704         * object.c (mono_class_compute_gc_descriptor): It turns out some
4705         parts of the class libs (like System.Thread) holds pointers to
4706         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
4707         to treat native int a pointer type here.
4708         
4709 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
4710
4711         * appdomain.h, domain.c: add hashtable for jump target resolution.
4712
4713 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
4714
4715         * reflection.h reflection.c icall.c: Added new icalls 
4716         GetManifestResourceInfoInternal, GetModulesInternal and support
4717         infrastructure.
4718
4719 2003-05-16  Dick Porter  <dick@ximian.com>
4720
4721         * icall.c:
4722         * file-io.h:
4723         * file-io.c: Implement System.IO.MonoIO::GetTempPath
4724
4725 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
4726
4727         * object.c: mono_store_remote_field: little fix to previous patch.
4728
4729 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
4730
4731         * class.c: add constructors to array classes.
4732         * icall.c: special case array construction for InternalInvoke (),
4733
4734 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
4735
4736         * class.h class.c reflection.c object.c: Added support for field
4737         defaults in dynamically generated classes.
4738
4739 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
4740
4741         * reflection.c: properly encode charset for ddlimport.
4742
4743 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
4744
4745         * threads.c: allow compiling without GC.
4746
4747 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
4748
4749         * appdomain.h, object.c, object.h, threads.c, threads.h: added
4750         handling of thread static data.
4751
4752 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
4753
4754         * reflection.h, reflection.c: added mono_custom_attrs_free ().
4755
4756 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
4757
4758         * class.c (mono_array_class_get): always set the serializable flags
4759         (mono_array_class_get): always set the SEALED attribute for array types
4760
4761 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
4762
4763         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
4764         attributes (fix for bug 42021).
4765
4766 2003-05-12  Dick Porter  <dick@ximian.com>
4767
4768         * gc.c: Don't run finalizers when the finalizer thread is
4769         finishing up, because the default domain has already been
4770         destroyed.
4771
4772 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
4773
4774         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
4775         value is null, we should throw an exception.   This is slightly
4776         different than the other conventions used for the constructor.
4777
4778 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4779
4780         * socket-io.c: fixed windows build.
4781
4782 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4783
4784         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
4785
4786 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
4787
4788         * object.c (mono_string_new_wrapper): Compatibility fix for MS
4789         compilers.
4790
4791 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
4792
4793         * class.c (mono_class_layout_fields): Add experimental GC aware
4794         auto layout facility. Requires class library changes to work correctly.
4795
4796         (mono_class_setup_vtable): Avoid overriding explicit interface
4797         method implementations. Fixes iface3.exe test.
4798
4799         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
4800         object reference.
4801         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
4802         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
4803
4804         * metadata.h: Add new type classification macro which determines
4805         whenever the type holds an object reference.
4806
4807 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
4808
4809         * marshal.c (mono_marshal_get_native_wrapper): cleanups
4810
4811 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
4812
4813         * gc.c (finalizer_thread): Work around a GC bug.
4814
4815 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
4816
4817         * marshal.c (emit_struct_conv): allow unions
4818
4819         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
4820
4821 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
4822
4823         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
4824
4825 2003-05-06  Martin Baulig  <martin@ximian.com>
4826
4827         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
4828
4829 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4830
4831         * socket-io.c:
4832         (Select_internal): allow NULLs, don't create arrays if not needed.
4833         Coupled with Socket.cs changes.
4834
4835         * threadpool.c:
4836         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
4837         register a finalizer for it that will close the semaphore handle. This
4838         fixes the leak and make Lupus' test run with > 4080 loops.
4839
4840 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
4841
4842         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
4843         Jerome Laban (bug #42287)
4844
4845 2003-05-02  Martin Baulig  <martin@ximian.com>
4846
4847         * debug-mono-symfile.h
4848         (MonoSymbolFile): Moved declaration into mono-debug.h.
4849         (MonoDebugMethodJitInfo): Likewise.
4850         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
4851         argument.
4852         (_mono_debug_address_from_il_offset): Take a
4853         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
4854
4855         * mono-debug.h
4856         (MonoDebugDomainData): New struct.
4857         (mono_debug_get_domain_data): New function.
4858         (mono_debug_add_method): Take an additional `MonoDomain *'
4859         argument.
4860         (mono_debug_source_location_from_address): Likewise.
4861         (mono_debug_il_offset_from_address): Likewise.
4862         (mono_debug_address_from_il_offset): Likewise.
4863
4864 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
4865
4866         * reflection.c: one more check for null type in custom attrs.
4867
4868 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4869
4870         * reflection.c: avoid warning (comparison is always false due to limited
4871         range of data type).
4872
4873 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4874
4875         * icall.c: throw an exception in Type.GetField if the argument 'name'
4876         is NULL.
4877
4878 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
4879
4880         * reflection.c: fixed handling of enums in named arguments to custom
4881         attributes (bug #42123).
4882
4883 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
4884
4885         * reflection.c: use the right array element type and handle
4886         a null for a Type argument, too.
4887
4888 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
4889
4890         * reflection.c: handle arrays as arguments to custom attributes.
4891
4892 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
4893
4894         * reflection.c: handle a string value in a custom attr
4895         ctor that takes an object.
4896
4897 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
4898
4899         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
4900         (fix bug #42063)
4901
4902 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
4903
4904         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
4905
4906 2003-04-27  Martin Baulig  <martin@ximian.com>
4907
4908         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
4909         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
4910         MONO_DEBUGGER_EVENT_BREAKPOINT.
4911         (mono_breakpoint_trampoline_code): Removed.
4912         (mono_debugger_event_handler): The last argument is now a
4913         `guint32'.
4914         (mono_debugger_insert_breakpoint_full): Removed the
4915         `use_trampoline' argument.
4916         (mono_debugger_method_has_breakpoint): Likewise.
4917         (mono_debugger_trampoline_breakpoint_callback): Renamed to
4918         mono_debugger_breakpoint_callback(); take the method and
4919         breakpoint number as arguments.
4920
4921 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
4922
4923         * metadata.c: fix off by one when loading parameters attributes.
4924
4925 2003-04-24  Martin Baulig  <martin@ximian.com>
4926
4927         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
4928
4929 2003-04-24  Martin Baulig  <martin@ximian.com>
4930
4931         * mono-debug-debugger.c: Moved all code which interacts with the
4932         Mono Debugger here.
4933
4934         * debug-mono-symfile.c: This code now just deals with the symbol
4935         file itself, the debugger code is now in mono-debug-debugger.c.
4936
4937 2003-04-23  Martin Baulig  <martin@ximian.com>
4938
4939         * mono-debug.c (mono_debug_source_location_from_il_offset):
4940         New method; like mono_debug_source_location_from_address(), but
4941         takes an IL offset instead of a machine address.
4942
4943 2003-04-23  Martin Baulig  <martin@ximian.com>
4944
4945         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
4946         `line' field; this is now computed by the debugger.
4947
4948 2003-04-23  Martin Baulig  <martin@ximian.com>
4949
4950         * mono-debug.[ch]: New files.  This is the new debugging interface.
4951
4952         * mono-debug-debugger.[ch]: New files.  Moved all code which
4953         interacts with the Mono Debugger here.
4954
4955 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
4956
4957         * domain.c (mono_init): initialize mono_defaults.monitor_class
4958
4959 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
4960
4961         * reflection.c (method_encode_code): Add a spicy exception to help
4962         future compiler authors.
4963
4964 2003-04-21  Martin Baulig  <martin@ximian.com>
4965
4966         * icall.c
4967         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4968         Make this work with relative pathnames; g_filename_to_uri() needs
4969         an absolute filename.
4970
4971 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
4972
4973         * icall.c: Track name changes in Object and ValueType.
4974
4975 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
4976
4977         * metadata.c (mono_type_stack_size): size should be a multiple of
4978         sizeof (gpointer)
4979
4980 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4981
4982         * gc.c:
4983         (internal_domain_finalize): moved into mono_domain_finalize. No need
4984         to create another thread because the finalizers will be run in the
4985         finalizer thread.
4986         
4987         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
4988         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
4989         to be run (MS does this too).
4990
4991 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
4992
4993         * object.c (mono_class_compute_gc_descriptor): Update comment.
4994
4995         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
4996
4997         * image.h: Add synchronized wrapper cache.
4998
4999         * image.c (do_mono_image_open): Initialize cache.
5000
5001         * reflection.c (create_dynamic_mono_image): Initialize cache.
5002
5003 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5004
5005         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
5006         ves_icall_System_Buffer_ByteLengthInternal.
5007
5008 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
5009
5010         * reflection.c: setup klass->nested_in earlier. Allow
5011         a dash in the assembly name.
5012
5013 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
5014
5015         * metadata.c (mono_type_to_unmanaged): dont access
5016         type->data.klass for MONO_TYPE_OBJECT
5017         (mono_type_to_unmanaged): consider System.Delegate class
5018
5019 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
5020
5021         * class.c: just setup supertypes in the proper place instead of
5022         initializing the full element class for arrays.
5023
5024 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
5025
5026         * class.c: ensure the element class of arrays is initialized.
5027         Setup the supertype info for array classes, too.
5028
5029 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
5030
5031         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
5032
5033 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5034
5035         * Makefile.am: re-added -m option when running cygpath. This way,
5036         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
5037         separator.
5038         * mono-config.c: same codepath for locating mono config file for WIN32
5039         and the rest.
5040         * assembly.c: if mono_assembly_setrootdir is called, don't override
5041         the value set.
5042
5043 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5044
5045         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
5046         MONO_ASSEMBLIES variable.
5047
5048 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
5049
5050         * icall.c: added Assembly::GetNamespaces() icall.
5051
5052 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5053
5054         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
5055
5056 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
5057
5058         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
5059         * object.c: fixed bug in the construction of vtable for proxies
5060
5061 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
5062
5063         * object.c (mono_array_new): Mark mono_array_new as an icall.
5064
5065 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5066
5067         * class.c: fixed test for public method when overriding interfaces.
5068         Closes bug #40970.
5069
5070 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
5071
5072         * appdomain.h, domain.c: added mono_domain_foreach() to
5073         be able to access the currently loaded appdomains.
5074         * object.c: make string interning work across sppdomains.
5075         Mark some functions for use as icalls.
5076
5077 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
5078
5079         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
5080
5081         * reflection.h reflection.c: Allocate long living data using 
5082         GC_MALLOC_ATOMIC so the collector does not need to scan it.
5083
5084         * reflection.c: Double the allocation size in streams instead of
5085         increasing it, to prevent unneccesary copying on large assemblies.
5086         
5087         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
5088         creation if the assembly does not have the Run flag set.
5089
5090 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
5091
5092         * class.h: avoid the C++ keywords in header files (Jerome Laban
5093         spotted and fixed this).
5094
5095 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5096
5097         * object.c:
5098         (mono_unhandled_exception): fill in the arguments for the
5099         UnhandledException event. Only trigger that event for the default
5100         domain (as MS does).
5101
5102 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
5103
5104         * object.c: Improve typed allocation stuff based on suggestions from
5105         Paolo. Also turn it on if the GC library supports it.
5106
5107 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
5108
5109         * object.c object.h class.h: Added experimental typed allocation
5110         facility using the interfaces in gc_gcj.h.
5111
5112         * os/gc_wrapper.h: Added new include files.
5113         
5114 2003-04-03  Martin Baulig  <martin@ximian.com>
5115
5116         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
5117         which is not yet enabled by default.
5118
5119         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
5120         functions.
5121         (mono_gc_lock, mono_gc_unlock): New static functions.
5122
5123         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
5124         functions; stop/start the world for the garbage collector.  This
5125         is using the windows API; we need to complete the SuspendThread()/
5126         ResumeThread() implementation in the io-layer to make this work on Unix.
5127         (mono_gc_push_all_stacks): New public function; tells the garbage
5128         collector about the stack pointers from all managed threads.
5129
5130 2003-04-03  Martin Baulig  <martin@ximian.com>
5131
5132         * object.h (MonoThread): Added `gpointer stack_ptr'.
5133
5134         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
5135
5136 2003-04-03  Martin Baulig  <martin@ximian.com>
5137
5138         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
5139
5140 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
5141
5142         * reflection.c (typebuilder_setup_fields): Initialize field.first and
5143         field.last.
5144
5145 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
5146
5147         * loader.c (mono_lookup_internal_call): Report the corlib that is
5148         out of sync.
5149
5150 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
5151
5152         * icall.c (ves_icall_type_GetTypeCode): fixed check for
5153         System.DBNull (it's class not valuetype).
5154
5155 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
5156
5157         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
5158         if the array method was already assigned a token (fixes bug#40646).
5159
5160 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
5161
5162         * reflection.c (mono_reflection_get_type): Attempt type resolve even
5163         if no assembly is given.
5164
5165 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
5166
5167         * metadata.h: Added the new tables.
5168
5169         * row-indexes.h: Added definitions for new tables.
5170
5171         * metadata.c: Add schemas for new tables, and add support for
5172         computing the sizes of them.
5173
5174         * class.c: Update for handling the new type cases.
5175
5176 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
5177
5178         * metadata.h (MONO_TYPE_IS_VOID): new macro
5179
5180 2003-03-31  Martin Baulig  <martin@ximian.com>
5181
5182         * threads.h (MonoThreadCallbacks): Added `thread_created'.
5183
5184         * threads.c (mono_thread_new_init): Call `thread_created' in the
5185         mono_thread_callbacks.
5186
5187 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
5188
5189         * loader.h: added marshalbyrefobject_class to mono_defaults
5190         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
5191         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
5192           generation of output parameters.
5193           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
5194         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
5195           contextbound and the target object belongs to the context of the caller.
5196         * object.h: added context and unwrapped_server variables in MonoRealProxy.
5197         * object.c: Implemented support for interfaces and abstract classes
5198           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
5199           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
5200
5201 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
5202
5203         * class.h class.c (mono_class_is_subclass_of): New function.
5204         
5205         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
5206         routines for most common case (calls from ArrayList::ToArray).
5207
5208         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
5209         routine so programs which call Environment::Exit() can be profiled.
5210
5211         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
5212         Added MONO_ARCH_SAVE_REGS.
5213
5214         * icall.c (ves_icall_type_is_subtype_of): Use new function.
5215
5216 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
5217
5218         * blob.h: Add a couple of new MonoType types definitions.
5219
5220         * tabledefs.h: Add a couple of new call convs.
5221
5222 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
5223
5224         * reflection.h (MonoReflectionDynamicAssembly): track changes in
5225         the layout of the class.
5226
5227         * reflection.c (alloc_table): double the size on overflow to avoid
5228         unnecessary copying.
5229
5230         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
5231         avoid filling out metadata tables and blobs. Also set mb->ilgen to
5232         null so it can be garbage collected.
5233         
5234 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
5235
5236         * reflection.c (mono_reflection_get_type): Return the resolved type
5237         only if it is in the assembly we searched.
5238
5239         * reflection.c (ensure_runtime_vtable): Initialize method slots.
5240
5241         * class.c (mono_class_setup_vtable): Set the slot of the overriding
5242         method.
5243
5244 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5245
5246         * appdomain.c:
5247         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
5248         the right one is 'file:///blah', but MS allows it.
5249         * assembly.c:
5250         (mono_assembly_open): allow 'file://blah'
5251
5252         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
5253
5254 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
5255
5256         * socket-io.c: fixes bug #40310.
5257
5258 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
5259
5260         * reflection.c (mono_reflection_parse_type): handle deeply nested
5261         types correctly.
5262
5263         * reflection.c (mono_image_create_token): Use unique token values
5264         since they will be put into a hash table.
5265
5266         * class.c (mono_class_setup_vtable): If a method occurs in more than
5267         one place in the vtable, and it gets overriden, then change the
5268         other occurances too.
5269
5270         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
5271         object as return type.
5272
5273 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
5274
5275         * icall.c: Deleted "ToString" implementation for double and float
5276         because they are full implemented in managed code.
5277
5278 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
5279
5280         * reflection.c, reflection.h: implemented and exported functions
5281         to retrieve info about custom attributes.
5282
5283 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5284
5285         * appdomain.c: moved Uri handling to assembly.c
5286         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
5287         work when using a file Uri in *nix and windows.
5288
5289         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
5290         GetReferencedAssemblies.
5291
5292 2003-03-18  Dick Porter  <dick@ximian.com>
5293
5294         * icall.c: Rename a couple of internal calls
5295
5296         * threads.c: Set the thread state to Stopped when a thread exits.
5297         Fixes bug 39377.
5298
5299 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
5300
5301         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
5302         New icall.
5303
5304         * object.c (mono_class_vtable): fix warning.
5305
5306 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
5307
5308         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
5309
5310         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
5311         memory.
5312         (method_encode_clauses): Create exception info structures in the right
5313         order.
5314         (mono_reflection_setup_internal_class): Initialize supertypes field.
5315
5316         * class.c object.c: Handle interfaces which implement other interfaces 
5317         correctly.
5318
5319         * class.h class.c: Move the supertypes array initialization code into 
5320         a separate function so it can be used for dynamic types too. Also call
5321         it earlier, in mono_class_init(), since it can be used before the
5322         type is initialized.
5323
5324 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5325
5326         * Makefile.am:
5327         * assembly.c:
5328         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
5329
5330         * appdomain.c:
5331         * appdomain.h:
5332         * marshal.c:
5333         * object.c: remove warnings.
5334
5335 2003-03-13  Martin Baulig  <martin@ximian.com>
5336
5337         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
5338         (MonoDebugLexicalBlockEntry): New types.
5339
5340         * debug-mono-symfile.c
5341         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
5342
5343 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5344
5345         * process.c: ret can be any non-zero value accroding to MS doc.
5346
5347 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
5348
5349         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
5350         fixing a warning for a miss-used prototype, would have cause
5351         random memory corruption.
5352
5353 2003-03-07  Martin Baulig  <martin@ximian.com>
5354
5355         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
5356         getting really annoying ....
5357
5358 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
5359
5360         * reflection.c (fixup_method): added support for array methods.
5361
5362 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
5363
5364         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
5365         (pointed out by Michael Adams).
5366
5367 2003-03-04  Dick Porter  <dick@ximian.com>
5368
5369         * icall.c: Temporarily reverted the Double and Single ToString()
5370         change, because it broke nunit.
5371
5372 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
5373
5374         * object.h, threads.h: make include files compatible with C++
5375         (patch by Jerome Laban <jlaban@wanadoo.fr>).
5376
5377 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
5378
5379         * icall.c: Erased ToString helper functions for Double and Single.
5380         Now, that implementations ar all in managed code (Double and Single
5381         Formatters).
5382
5383 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
5384
5385         * appdomain.c: Added method for initializing the default context of
5386         a domain. Added internal call for getting the default context.
5387         * appdomain.h: Added context variable in MonoDomain struct.
5388         * domain.c: mono_domain_set also sets the default context of the domain
5389         * icall.c: Mapped internal method InternalGetDefaultContext.
5390         * object.c: mono_object_get_virtual_method returns always a remoting
5391         wrapper if the object is a transparent proxy.
5392         mono_runtime_invoke_array: when creating an object by calling the
5393         constructor, if the created object is a proxy, then the constructor should
5394         be called using the a remoting wrapper.
5395
5396 2003-03-03  Dick Porter  <dick@ximian.com>
5397
5398         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
5399         variable so it compiles on solaris.  Problem spotted by
5400         Christopher Taylor <ct@cs.clemson.edu>
5401
5402 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5403
5404         * appdomain.c:
5405         (get_info_from_assembly_name): don't leak value.
5406
5407         * icall.c:
5408         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
5409         result.
5410
5411 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
5412
5413         * assembly.c: export mono_image_load_references ().
5414         * class.c: handle function pointers. mono_class_from_name() now
5415         supports nested type names directly.
5416
5417 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
5418
5419         * reflection.h reflection.c: Encode already created dynamic methods 
5420         and fields correctly as a DEF instead of a REF.
5421
5422         * reflection.c: Get rid of the force_ref argument to 
5423         mono_image_typedef_or_ref since it was wrong in the first place.
5424
5425         * string-icalls.c: add error checking to string constructors according
5426         to the MSDN docs.
5427
5428         * reflection.c: Emit types in the order their TypeBuilders were 
5429         created. Previously, a new table index was assigned to each type before
5430         the tables were emitted. This was wrong because the signature blob
5431         might already refer to a type by its original table index.
5432
5433 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
5434
5435         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
5436         change.
5437         
5438 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5439
5440         * Makefile.am: make assemblies dir have \ instead of / on windows.
5441
5442 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
5443
5444         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
5445         iterate over the NESTEDCLASS table using a linear search since the
5446         table is not guaranteed to be sorted by the secondary key.
5447
5448         * class.c (mono_class_create_from_typedef): fixed up call to
5449         mono_metadata_nesting_typedef.
5450         
5451 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
5452
5453         * marshal.c (mono_string_to_byvalstr): clear the memory as
5454         suggested by Jerome Laban <jlaban@wanadoo.fr>
5455
5456 2003-02-26  Dick Porter  <dick@ximian.com>
5457
5458         * process.c: Cope with padding in .rsrc blocks
5459
5460 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
5461
5462         * metadata.h: reverted the filter_len change, it breaks reflection
5463         
5464 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
5465
5466         * metadata.h: added a new field to store the filter_len
5467         
5468
5469 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
5470
5471         * reflection.c: handle custom attributes for types and members
5472         created with Reflection.Emit (bug#38422).
5473
5474 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
5475
5476         * reflection.c: define RTSpecialName automatically for constructors for
5477         compatibility with MS.NET.
5478
5479         * reflection.c (mono_reflection_create_runtime_class): initialize
5480         nested_in field of dynamically created classes.
5481
5482 2003-02-22  Martin Baulig  <martin@ximian.com>
5483
5484         * debug-mono-symfile.h: Incremented version number.
5485
5486 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
5487
5488         * object.h icall.c process.c: fix warnings.
5489
5490 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
5491
5492         * appdomain.h appdomain.c:
5493         (mono_domain_try_type_resolve): split the 
5494         name_or_tb argument into a name and a tb argument.
5495         (mono_domain_has_type_resolve): new function to check whenever the
5496         application has registered a TypeResolve event handler.
5497         
5498         * icall.c reflection.h reflection.c: move the type resolve logic into
5499         mono_reflection_get_type () so it will be invoked when 
5500         Assembly::GetType () is called.
5501
5502         * reflection.c:
5503         (mono_reflection_get_type): renamed to get_type_internal.
5504         (mono_reflection_get_type): fixed type name generation so it works 
5505         for nested types too.
5506         (mono_reflection_get_type): call has_type_resolve () to avoid the 
5507         costly type name generation if there is no resolve event handler.
5508
5509 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
5510
5511         * class.c, image.c: load exported types from file references.
5512
5513 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
5514
5515         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
5516           used to cache the managed methods used to create proxies and make 
5517           remote invocation of methods.
5518         * class.h: Added in MonoVTable a flag to indicate that a class needs 
5519           to be remotely created.
5520         * object.c: Modified the method mono_class_vtable(). It now initializes 
5521           the remote flag of the vtable. Modified mono_object_new_specific(), 
5522           so now it checks the remote flag.
5523         * icall.c: Added a couple of internal methods, one for enabling instance 
5524           creation interception for a type, and one for creating objects bypassing
5525           the remote check.
5526
5527 2003-02-18  Martin Baulig  <martin@ximian.com>
5528
5529         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
5530         New interncall to get a method's metadata token.
5531
5532         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
5533         New interncall for the debugger.
5534
5535 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
5536
5537         * class.c (mono_class_setup_vtable): allocate supertype array
5538
5539 2003-02-18  Martin Baulig  <martin@ximian.com>
5540
5541         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
5542
5543 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5544
5545         * reflection.c:
5546         (assembly_name_to_aname): jump over unknown properties (i've found
5547         something like: 'type, assembly, version=xxx, custom=null, public...',
5548         so now will ignore custom=null and still get the rest of the values).
5549
5550 2003-02-17  Dick Porter  <dick@ximian.com>
5551
5552         * threads.c: Have Thread.Start() wait for a semaphore to signal
5553         that the thread has set up all its local data.  This fixes bug
5554         34323, where Abort() raced the new thread's TLS data.
5555
5556         Also removes the handle_store() call from start_wrapper, because
5557         threads are now always created suspended and there is no longer a
5558         race between the parent and child threads to store the info.
5559
5560 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
5561
5562         * image.c: explain the #- heap issue in a message, hopefully
5563         avoiding FAQs on mono-list.
5564
5565 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5566
5567         * icall.c:
5568         (GetEntryAssembly): if the domain has not invoked
5569         AppDomain.ExecuteAssembly yet, return the assembly of the default
5570         AppDomain.
5571
5572 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
5573
5574         * class.c (mono_ldtoken): make it work in dynamic assemblies.
5575
5576 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
5577
5578         * metadata.c, reflection.c: simple speedup to type hash
5579         and equals code.
5580
5581 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
5582
5583         * image.c, image.h, class.c, assembly.c: move module loading
5584         to MonoImage. When loading metadata, consider alignemnet from
5585         the start of metadata, not from the metadata address in memory.
5586
5587 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
5588
5589         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
5590         AssemblyBuilder objects. Factored out custom attribute creation into
5591         a separate function.
5592         (create_custom_attr): new function to create custom attributes.
5593
5594 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
5595
5596         * Makefile.am: Got tired of typing the full pathname to pedump.
5597         Until there is another option, am installing this.
5598
5599 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
5600
5601         * class.c (class_compute_field_layout): always set field->parent 
5602         (mono_ldtoken): use mono_defaults.fieldhandle_class;
5603
5604 2003-02-11  Dick Porter  <dick@ximian.com>
5605
5606         * threads-types.h:
5607         * monitor.c: Rewrote Monitor, making lock much faster and
5608         Pulse/Wait work as specified.  Also uses much fewer handles, and only
5609         creates them as needed.
5610
5611         * exception.c: Added SynchronizationLockException
5612
5613         * threads.c: Deleted old Monitor implementation.  The new one is
5614         in a new file.
5615
5616 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
5617
5618         * class.c: handled TypedReference type code. Set the correct size for
5619         class data. Setup interface_offsets for interface classes, too.
5620
5621 2003-02-09  Martin Baulig  <martin@ximian.com>
5622
5623         * debug-mono-symfile.h: Reflect latest symbol writer changes.
5624
5625 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
5626
5627         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
5628         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
5629         * object.c: fixed mono_object_get_virtual_method () for interfaces.
5630         * verify.c: check for code that runs after the end of the method.
5631
5632 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
5633
5634         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
5635         "System.Math::Round2".
5636         * sysmath.h: Added Floor, Round and Round2 definitions.
5637         * sysmath.c: Modified certain functions that were not 100% compliant
5638         with MS.NET (math precision) and added the implementation of Floor,
5639         Round and Round2.
5640
5641 2003-02-07  Martin Baulig  <martin@ximian.com>
5642
5643         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
5644
5645 2003-02-07  Martin Baulig  <martin@ximian.com>
5646
5647         * debug-mono-symfile.c: Reflected latest symwriter changes.
5648         (mono_debug_create_mono_symbol_file): Removed.
5649         (mono_debug_open_mono_symbol_file): Take an argument which
5650         specifies whether to create a dynamic symbol file.
5651
5652 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
5653
5654         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
5655
5656 2003-02-05  Martin Baulig  <martin@ximian.com>
5657
5658         * reflection.c (mono_image_build_metadata): Make this public,
5659         protect it against being called multiple times, don't create
5660         resources and don't build the compressed metadata here.
5661         (mono_image_create_pefile): Do this here.
5662
5663         * icall.c
5664         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
5665
5666 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5667
5668         * socket-io.c: fixed bug #36322.
5669
5670 2003-02-06  Piers Haken <piersh@friskit.com>
5671
5672         * appdomain.[ch]:
5673         * class.h:
5674         * debug-mono-symfile.c:
5675         * icall.c:
5676         * loader.c:
5677         * mono-config.c:
5678         * monosn.c:
5679         * reflection.c:
5680         * socket-io.c: warning cleanups
5681
5682 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
5683
5684         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
5685         function. works like remoting invoke, but does a check for the Proxy first.
5686
5687 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
5688
5689         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
5690
5691 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
5692
5693         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
5694         array of pointers.
5695         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
5696         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
5697
5698         * object.c (mono_store_remote_field_new): used by the new jit
5699         instead of mono_store_remote_field
5700         (mono_load_remote_field_new): used by the new jit
5701         instead of mono_load_remote_field
5702
5703 2003-02-05  Patrik Torstensson
5704
5705         * appdomain.c: changed unload to take the domain id instead
5706         of domain
5707         
5708         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
5709
5710
5711 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5712
5713         * appdomain.c: don't look for assemblies in ApplicationBase if
5714         PrivateBinPathProbe is set.
5715
5716 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5717
5718         * object.c: make the first argument in main_args contain the absolute
5719         path to the assembly. Fixes bug #37511.
5720
5721 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5722
5723         * icall.c: get correct UTC offset for countries not using daylight
5724         time saving. Fixes bug #30030.
5725
5726 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5727
5728         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
5729         and 1 are the family).
5730
5731 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
5732
5733         * icall.c (ves_icall_InternalExecute): removed wrong assertion
5734
5735         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
5736
5737 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
5738
5739         * reflection.c: added support for SignatureHelper tokens, which is
5740         needed by the Calli opcode.
5741
5742         * reflection.h: track changes to SignatureHelper class.
5743
5744         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
5745
5746 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5747
5748         * appdomain.c: fixed loading assemblies from PrivateBinPath.
5749
5750 2003-02-03  Patrik Torstensson
5751         * appdomain.[c|h], domain.c : 
5752          - Added support for getting a domain via domain id
5753          - Support for setting and getting domain from System.AppDomain 
5754            (used in cross appdomain channel)
5755          - Added support for get/set for a MonoAppContext on a thread 
5756            (Context class in System.Runtime.Remoting.Contexts),
5757          - Removed hack in Get/SetData and ExecuteAssembly.
5758         
5759         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
5760         the managed world to get control when a proxy is created.
5761
5762         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
5763         
5764 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
5765
5766         * icall.c
5767         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5768         Populate the codebase field as well.
5769
5770 2003-02-02  Martin Baulig  <martin@ximian.com>
5771
5772         * debug-mono-symfile.c
5773         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
5774         (mono_debug_symfile_add_method): Allow interncalls.
5775
5776 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5777
5778         * icall.c: throw parse exception if strtod fails or the string is empty.
5779
5780 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
5781
5782         * marshal.c: handle object type separately from defined
5783         class types.
5784
5785 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
5786
5787         * marshal.c: handle NATIVE_LPSTR for strings when it's
5788         explicitly specified.
5789
5790 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
5791
5792         * reflection.c, reflection.h, icall.c: setup the reflection
5793         handle cache for ModuleBuilders and AssemblyBuilders.
5794
5795 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
5796
5797         * reflection.c (reflection_methodbuilder_to_mono_method): set
5798         pinvoke flag
5799
5800 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5801
5802         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
5803
5804 2003-01-29  Dick Porter  <dick@ximian.com>
5805
5806         * threads.c: No need for the fake_thread kludge now that Thread
5807         doesn't run a class constructor
5808         
5809 2003-01-29  Dick Porter  <dick@ximian.com>
5810
5811         * threads.c: Use g_direct_hash instead of the rather bogus
5812         g_int_hash
5813
5814 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
5815
5816         * marshal.c (mono_marshal_get_native_wrapper): add check for null
5817         (fix pinvoke12.exe)
5818         (mono_marshal_get_struct_to_ptr): generate valid IL code
5819         (mono_marshal_get_ptr_to_struct): generate valid IL code
5820         (*): correctly set sig->pinvoke, we need to memdup the signature
5821         to do that
5822
5823 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
5824
5825         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
5826         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
5827
5828 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
5829
5830         * profiler.c: provide more callers information.
5831
5832 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
5833
5834         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
5835
5836         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
5837
5838         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
5839
5840 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
5841
5842         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
5843         exception instead of going into an infinite loop on dates which it 
5844         can't yet handle.
5845
5846         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
5847         out-of-range exception if needed.
5848
5849         * class.c (mono_class_setup_vtable): allow a virtual method to provide
5850         an implementation for an interface method and to override an inherited
5851         method at the same time. 
5852         Imagine a scenario when a virtual method is used to override a
5853         virtual abstract method in a parent class, and this same method 
5854         provides an implementation for an method inherited from an interface. 
5855         In this case, the interface resolution code will set im->slot, which 
5856         means that the virtual method override pass will skip this method 
5857         which means a pointer to the abstract method inherited from the parent
5858         will remain in the vtable of this non-abstract class.
5859
5860         * class.c: (mono_class_setup_vtable): continue search for a real 
5861         method if only an abstract method is found.     
5862
5863 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
5864
5865         * reflection.c: add size to encoding for ByValStr and ByValArray
5866         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
5867
5868 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
5869
5870         * class.c (mono_class_setup_vtable): pass the override info as an
5871         argument.
5872
5873         * class.c (mono_class_setup_vtable): set the slot of overriding methods
5874         correctly.
5875         
5876         * reflection.c (ensure_runtime_vtable); add support for method 
5877         overrides.
5878         
5879 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
5880
5881         * reflection.c (resolution_scope_from_image): Hack to work to work with
5882         dynamic assemblies.
5883
5884         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
5885         added a 'force_ref' argument to force this function to allways return 
5886         a TypeRef. This is needed by mono_image_get_memberref_token ().
5887         
5888 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
5889
5890         * reflection.c (mono_image_get_type_info): interfaces really don't have
5891         a parent.
5892
5893         * reflection.c (mono_image_basic_init): fill out missing fields of
5894         image structure.
5895
5896         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
5897         dynamic assemblies. This is required so dynamic assemblies show up in
5898         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
5899         Type::GetType() etc. This is consistent with MS behaviour.
5900
5901         * image.c image.h reflection.c: add newly created classes to the name 
5902         cache so mono_class_get () will find them.      
5903
5904 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
5905
5906         First part of changes to get IKVM.NET running under mono.
5907         
5908         * appdomain.h, appdomain.c: added new function 
5909         mono_domain_try_type_resolve() which will emit TypeResolve events. 
5910         This function will call AppDomain::DoTypeResolve to do the actual work.
5911
5912         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
5913         moved existing code dealing with dynamic tokens to a new function 
5914         called mono_reflection_lookup_dynamic_token (). This function will 
5915         raise TypeResolve events when appropriate. Since reflection.c is not 
5916         part of libmetadata, a new hook function called 
5917         mono_lookup_dynamic_token() is added to class.c which will call this.
5918
5919         * assembly.h assembly.c: make the invoke_load_hook function public,
5920         so it can be called for dynamic assemblies.
5921
5922         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
5923
5924         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
5925         type isn't found.
5926
5927         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
5928         MonoGHashTable, since it contains pointers to objects which the GC 
5929         needs to track.
5930
5931         * assembly.c (search_loaded): remove unused variable.
5932         
5933 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
5934
5935         * object.c: fixed issue exposed by gcc-generated IL programs
5936         that use RVA data for pointers.
5937
5938 2003-01-25  Martin Baulig  <martin@ximian.com>
5939
5940         * threads.c (start_wrapper): Moved the initialization of
5941         `start_func' above the mono_new_thread_init() call to which we
5942         pass it as argument.
5943
5944 2003-01-24  Martin Baulig  <martin@ximian.com>
5945
5946         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
5947         the MonoThread pointer.
5948
5949 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
5950
5951         * icall.c: Rename `PowImpl' to Pow.
5952
5953 2003-01-23  Dick Porter  <dick@ximian.com>
5954
5955         * threads.c (start_wrapper): Create a Thread object if needed, so
5956         the Main() thread can do the class initialisation in a subthread
5957         that has been set up to allow managed code execution.
5958
5959         Pass the thread ID instead of the MonoThread pointer to the thread
5960         start and attach callbacks.  This change is required, because the
5961         jit thread start callback must be called _before_ the Thread
5962         object can be created.
5963         
5964         (mono_thread_init): Removed much object creation code that is no
5965         longer needed.  No managed code is called from here now.
5966
5967         * object.c (mono_runtime_exec_managed_code): Create a subthread
5968         for Main, and call back to the runtime to use it.
5969         Set the exit code when Main exits.
5970
5971         * gc.c: Make sure domain finalisation happens in a subthread.
5972         Re-enable threaded GC, fixing bug 31333 (again).
5973
5974         * environment.c: System.Environment internall calls (so far just
5975         ExitCode is here, the others are still in icall.c)
5976
5977         * appdomain.c (mono_runtime_cleanup): All threads running managed
5978         code should have finished before mono_runtime_cleanup() is
5979         reached, so no need to clean up threads.
5980
5981 2003-01-22  Martin Baulig  <martin@ximian.com>
5982
5983         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
5984         `gpointer func' arguments.      
5985         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
5986         but added `MonoThread *thread' argument.
5987         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
5988
5989         * threads.c (mono_new_thread_init): Added `gpointer func' argument
5990         and pass it to the mono_thread_start_cb callback.
5991         (mono_install_thread_callbacks): New public function to install a
5992         set of callbacks which are set by the debugger.
5993         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
5994
5995 2003-01-22  Martin Baulig  <martin@ximian.com>
5996
5997         * Makefile.am: Install debug-mono-symfile.h.
5998
5999 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
6000
6001         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
6002
6003 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
6004
6005         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
6006         * class.c (mono_ptr_class_get): correctly set access levels of pointers
6007         (mono_array_class_get): correctly set access levels of arrays
6008
6009 2003-01-20      Patrik Torstensson
6010         * image.h (MonoAssemblyName): changed major, minor, build, revision
6011         from signed to unsigned.
6012
6013 2003-01-20  sean kasun <skasun@azstarnet.com>
6014
6015         * reflection.c (load_cattr_value): Now this handles
6016         MONO_TYPE_SZARRAY.  Fixes bug #35629
6017
6018 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
6019
6020         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
6021         integer value
6022
6023 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6024
6025         * decimal.c: fixed bug #26056.
6026
6027 2003-01-17  Martin Baulig  <martin@ximian.com>
6028
6029         * gc.c: Raise an ExecutionEngineException instead of using g_error().
6030
6031 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6032
6033         * exception.[ch]:
6034         (mono_get_exception_type_initialization): new function.
6035
6036         * object.c: throw a TypeInitializationException when an exception is
6037         thrown invoking the class constructor.
6038
6039 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6040
6041         * reflection.c: fixed attribute reading.
6042
6043 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6044
6045         * icall.c:
6046         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
6047         provided, look for the type in the calling assembly and then in
6048         mscorlib; if the assembly name is provided, only try that one.
6049
6050 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
6051
6052         * object.c: register the vtable before there is a chance it's
6053         queried again recursively.
6054
6055 2003-01-13  Duncan Mak  <duncan@ximian.com>
6056
6057         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
6058         gc-internal.h. 
6059         
6060 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
6061
6062         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
6063
6064 2003-01-11  Martin Baulig  <martin@ximian.com>
6065
6066         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
6067         this to 20 for the release.
6068
6069 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
6070
6071         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
6072
6073         * loader.c (mono_method_get_marshal_info): bug fix
6074
6075         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
6076         structures with explicit layout
6077
6078 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
6079
6080         * profiler.c: made the output more readable (and sorted). 
6081         Added caller information for the allocation profiler.
6082
6083 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
6084
6085         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
6086
6087 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6088
6089         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
6090         to get value types.
6091         
6092 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
6093
6094         * object.c, profiler.h, profiler.c, profiler-private.h:
6095         Added object allocation profiler.
6096
6097 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
6098
6099         * reflection.h, reflection.c: handle global methods.
6100         Compress blob entries.
6101
6102 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
6103
6104         * marshal.c: fix compilation.
6105
6106 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
6107
6108         * loader.c (mono_method_get_marshal_info): impl.
6109
6110         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
6111
6112 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6113
6114         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
6115         for reference types.
6116
6117 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
6118
6119         * loader.c: fixed off by one error in loaded parameter names.
6120
6121 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
6122
6123         * marshal.c (mono_marshal_get_icall_wrapper): like
6124         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
6125         instead of a MonoMethod.
6126
6127 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6128
6129         * decimal.c: fixed bug #36537.
6130
6131 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
6132
6133         * marshal.c: throw a missing method exception if a
6134         P/Invoke method is not found.
6135
6136 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
6137
6138         * icall.c: allow a null this for constructors.
6139
6140 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
6141
6142         * icall.c: raise the proper exceptions if the arguments to the
6143         internal Invoke are incorrect.
6144
6145 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
6146
6147         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
6148
6149 2003-01-03  Martin Baulig  <martin@ximian.com>
6150
6151         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
6152
6153 2002-12-31  Martin Baulig  <martin@ximian.com>
6154
6155         * debug-mono-symfile.c: Completely rewrote the type section.
6156         Instead of using individual malloc()ed fields, we use one big
6157         continuous memory area and offsets into this area.
6158         See the comments in the source code for details.
6159
6160 2002-12-30  Martin Baulig  <martin@ximian.com>
6161
6162         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
6163
6164 2002-12-30  Martin Baulig  <martin@ximian.com>
6165
6166         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
6167         line number table in this data blob instead of using an external
6168         pointer.
6169
6170 2002-12-28  Martin Baulig  <martin@ximian.com>
6171
6172         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
6173
6174 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
6175
6176         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
6177         as a boxed return type.
6178
6179 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
6180
6181         * appdomain.c
6182         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
6183         g_build_filename to properly get separators on the filename created.
6184
6185         * object.h: Small change, introduce MonoMarshalByRefObject to
6186         track the layout of that structure in the C# universe as we make
6187         changes there.
6188
6189 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
6190
6191         * object.c: removed assert to allow static fields on interfaces.
6192         * loader.c: a TypeSpec may be used for any type, not just arrays.
6193
6194 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
6195
6196         * class.c, class.h: added mono_class_array_element_size ().
6197         Ignore static methods in interfaces.
6198
6199 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6200
6201         * threads.c: fixed the build under cygwin.
6202
6203 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
6204
6205         * reflection.c: handle nullref constants. Allocate keys for
6206         reflection handles with the GC.
6207
6208 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
6209
6210         * threads.c, threads.h: added mono_thread_get_abort_signal()
6211         to get a suitable signal for thread abort.
6212
6213 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
6214
6215         * metadata.c: fix handling of ExportedType table.
6216
6217 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6218
6219         * icall.c: added WriteWindowsDebugString internal call.
6220
6221 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6222
6223         * reflection.h: added fields to match C# implementation.
6224
6225 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6226
6227         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
6228
6229 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
6230
6231         * gc.h, gc-internal.h: Rename header for GC internal calls to
6232         gc-internal.h from gc.h as to not clash with Boehm GC having its
6233         header installed as <gc.h> in outside include paths.
6234         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
6235         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
6236
6237 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6238
6239         * icall.c: assign minor, build and revision in FillName.
6240
6241 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
6242
6243         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
6244         Added support for running code generated by Reflection.Emit.
6245
6246 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6247
6248         * appdomain.c: check for NULL argument in LoadFrom.
6249
6250 2002-12-10  Dick Porter  <dick@ximian.com>
6251
6252         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
6253
6254 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6255
6256         * appdomain.c: fix buglet when building exe file name.  Handle full
6257         assembly name (needed after latest changes to AssemblyName).
6258         * image.c:
6259         (mono_image_close): free some hashtables.
6260
6261 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
6262
6263         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
6264         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
6265         on some systems (redhat 7.3) 
6266
6267 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
6268
6269         * threads.c: delete the critical section of a sync block,
6270         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
6271
6272 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
6273
6274         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
6275
6276 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6277
6278         * appdomain.[ch]: handle the assembly preload event to try loading the
6279         assemblies using the paths we have in the current domain.
6280
6281         * assembly.[ch]: created an assembly preload hook that is called to try
6282         loading the assembly by other means that the ones provided here.
6283
6284         * domain.c: initialize the domain search path.
6285
6286         From now on, assemblies (TODO: except corlib and System) are loaded
6287         according to these rules when using mono_assembly_load ():
6288
6289                 1. It tries to load the assembly from the ApplicationBase
6290                 of the current domain appending .dll and .exe (TODO: have to
6291                 try loading from name/name.dll and name/name.exe).
6292
6293                 2. It tries the search path specified in PrivateBinPath for the
6294                 current domain (if any).
6295
6296                 3. Previous behavior.
6297
6298 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
6299
6300         * icall.c: implemented GetInterfaceMap() related icall.
6301         * domain.c, loader.h: load MethodInfo in mono_defaults.
6302
6303 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
6304
6305         * gc.c: disable the finalizer thread for now, untill all the issues
6306         with it are resolved.
6307
6308 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
6309
6310         * string-icalls.c: handle embedded nulls in string ctor when the
6311         length is specified.
6312
6313 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
6314
6315         * class.c: look for explicit interface implementation in parent
6316         classes, too.
6317
6318 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
6319
6320         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
6321
6322 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
6323
6324         * gc.c: protect handles with a critical section.
6325
6326 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6327
6328         * icall.c:
6329         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
6330         parameters. If no assembly specified, try getting the type from all
6331         the assemblies in the current domain, else, load the assembly and get
6332         the type from it.
6333
6334 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6335
6336         * marshal.c: applied patch from Aleksey Demakov that fixes
6337         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
6338
6339 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6340
6341         * icall.c: fixed get_location.
6342
6343 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
6344
6345         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
6346         declarations to make it work with older gcc. 
6347
6348         * loader.c (mono_get_method): set signature->pinvoke for native calls
6349
6350 2002-11-20  Dick Porter  <dick@ximian.com>
6351
6352         * threads.c (mono_thread_init): Set the main thread's handle
6353
6354 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
6355
6356         * gc.c: allow compilation without GC support. Changed to match the
6357         mono coding style.
6358
6359 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
6360
6361         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
6362
6363 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
6364
6365         * reflection.c: set a public key token on the core assemblies.
6366
6367 2002-11-18  Dick Porter  <dick@ximian.com>
6368
6369         * threads.c: Split out some thread initialisation so that other
6370         files can set the start callback function.
6371
6372         * gc.c: Run finalisers in a separate thread, to avoid stack
6373         overflow.  Fixes bug 31333.
6374
6375         * appdomain.c: Set up GC finalisation thread.
6376
6377         * reflection.c: 
6378         * object.c: 
6379         * domain.c: Use gc.h macros for GC_malloc
6380         
6381 2002-11-15  Dick Porter  <dick@ximian.com>
6382
6383         * threadpool.c: 
6384         * threads.c:
6385         * appdomain.c: Removed mono_runtime_init_with_attach(),
6386         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
6387         merging the extra parameter with the existing function.  Removed
6388         unneeded code in mono_thread_attach().
6389
6390 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
6391
6392         * image.c (mono_image_loaded_by_guid): a method to get loaded
6393         images by guid. 
6394         (load_metadata_ptrs): we store the guid as string.
6395
6396 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
6397
6398         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
6399
6400         * metadata.c (mono_guid_to_string): imported method form Zoltan
6401         Varga (slightly modified)
6402
6403         * assembly.c (mono_assembly_open): load precompiled code
6404
6405         * loader.h (MonoMethod): we store the method token for use in the
6406         aot compiler. 
6407
6408 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6409
6410         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
6411         the hook function called when an assembly is loaded.
6412         
6413         * domain.c: Modified file.
6414         (mono_domain_assembly_load): removed hash table insertion of assemblies.
6415
6416         Fixes bug #33196.
6417
6418 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
6419
6420         * reflection.c: Map PEFileKind to the value expected by the WinNT
6421         image loader. 
6422
6423 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6424
6425         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
6426         Read until the buffer is filled completely.
6427
6428 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6429
6430         * icall.c: implemented MonoType.InternalGetEvent ().
6431
6432 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6433
6434         * appdomain.c: implemented InitAppDomainSetup. Delayed
6435         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
6436         the entry_assembly.
6437
6438         * assembly.c: base_dir is now an absolute path ending with
6439         G_DIR_SEPARATOR.
6440
6441         * icall.c: modified get_location according to the above changes.
6442
6443         * object.c: init AppDomain.SetupInformation for the default domain after
6444         we have the entry assembly.
6445
6446         * domain.c: when unloading a domain, setup = NULL.
6447
6448 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
6449
6450         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
6451
6452 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
6453
6454         * object.h, object.c: introduced mono_object_get_virtual_method ()
6455         to lookup the method invoked on an object when a callvirt is done on
6456         a method.
6457         * icall.c: make MethodInfo::Invoke() always do a virtual call.
6458
6459 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6460
6461         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
6462         current domain when loaded an assembly and failed to load it.
6463
6464         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
6465
6466 2002-10-31  Dick Porter  <dick@ximian.com>
6467
6468         * icall.c: 
6469         * file-io.h: 
6470         * file-io.c: Return the error status in a parameter, as the
6471         GetLastError() value has long since been blown away if we try and
6472         look it up in a subsequent internal call invocation.  Delete the
6473         GetLastError() internal call, because it's useless.
6474
6475 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
6476
6477         * class.[ch]: added cast_class to fix bug 29517
6478
6479 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
6480
6481         * marshal.c: create valid IL code in the filter clause:
6482         the new JIT is less forgiving:-)
6483
6484 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6485
6486         * icall.c: removed get_property internal call.
6487
6488 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
6489
6490         * appdomain.h domain.c: Added an ID to appdomains.
6491         
6492         * threads.c threads.h icall.c: Implement icall
6493         Thread:GetDomainID(), and remove unused icall 
6494         CurrentThreadDomain_internal.
6495
6496 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6497
6498         * icall.c: Don't recurse through the base types in GetConstructor.
6499         Fixes bug #32063. 
6500
6501 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
6502
6503         * mempool.h, mempool.c: added mono_mempool_empty() and
6504         mono_mempool_stats().
6505
6506 2002-10-23  Dick Porter  <dick@ximian.com>
6507
6508         * file-io.c: 
6509         * file-io.h: 
6510         * icall.c: Added MonoIO.GetFileType internal call
6511
6512 2002-10-17  Dick Porter  <dick@ximian.com>
6513
6514         * appdomain.c (mono_runtime_cleanup): Don't signal the async
6515         delegate semaphore before waiting for all threads to finish,
6516         because new threads can also call async delegates.  Fixes bug
6517         32004.
6518
6519         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
6520         of 3 seconds, in case another async job is queued.  (This part is
6521         needed because the bug fix reintroduced the 3s exit lag.)  This
6522         makes the mono_runtime_shutdown flag superfluous.
6523
6524 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
6525
6526         * reflection.c: include ehader size in method section headers.
6527         Really check for suplicated modules entries.
6528
6529 2002-10-17  Martin Baulig  <martin@gnome.org>
6530
6531         * debug-mono-symfile.c: Added back support for locals.
6532
6533 2002-10-14  Martin Baulig  <martin@gnome.org>
6534
6535         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
6536         MONO_TYPE_VOID.
6537
6538 2002-10-14  Martin Baulig  <martin@gnome.org>
6539
6540         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
6541         mono_class_get() instead of looking in the class cache. 
6542
6543 2002-10-13  Martin Baulig  <martin@gnome.org>
6544
6545         * debug-mono-symfile.c: Set version number to 28, include the
6546         signature in method names.
6547
6548 2002-10-13  Martin Baulig  <martin@gnome.org>
6549
6550         * debug-mono-symfile.h: Set version number to 27.
6551
6552 2002-10-11  Martin Baulig  <martin@gnome.org>
6553
6554         * gc.c: Don't register/unregister NULL pointers as disappearing links.
6555
6556 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
6557
6558         * metadata.c, metadata.h: added helper function to allocate signatures.
6559
6560 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6561
6562         * icall.c: added internal call to get the location of machine.config.
6563
6564 2002-10-08  Martin Baulig  <martin@gnome.org>
6565
6566         * debug-mono-symfile.c: Ignore classes with a pending init for the
6567         moment.
6568
6569 2002-10-03  Dick Porter  <dick@ximian.com>
6570
6571         * threads.c: Freebsd pthread_t is a pointer
6572
6573 2002-10-03  Dick Porter  <dick@ximian.com>
6574
6575         * socket-io.c: Implemented GetHostName_internal
6576
6577 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6578
6579         * mono-config.c:
6580         (mono_config_parse_file): don't leak the text.
6581
6582 2002-10-02  Martin Baulig  <martin@gnome.org>
6583
6584         * debug-mono-symfile.c: Added support for methods.
6585
6586 2002-10-01  Martin Baulig  <martin@gnome.org>
6587
6588         * debug-mono-symfile.c: Don't emit methods and line numbers for
6589         the dynamic symbol file, just write the type table.  We can easily
6590         have an external helper program which creates a symbol file for an
6591         IL file.        
6592
6593 2002-10-01  Dick Porter  <dick@ximian.com>
6594
6595         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
6596         Only add the handle to the cleanup array when we're about to
6597         launch the thread.  Bug 31425 deadlocked when the test was run on
6598         mono under w32.
6599
6600 2002-10-01  Martin Baulig  <martin@gnome.org>
6601
6602         * debug-mono-symfile.c: Added support for properties.
6603
6604 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
6605
6606         * reflection.c: unaligned store fix from Mark Crichton
6607         <crichton@gimp.org>.
6608
6609 2002-09-27  Martin Baulig  <martin@gnome.org>
6610
6611         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
6612         New interncall.
6613
6614 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
6615
6616         * assembly.h, assembly.c: use a sane API to hook into the assembly
6617         loading process instead of a useless special-purpouse hack
6618         (ngen needs a hook, too, for example).
6619
6620 2002-09-27  Dick Porter  <dick@ximian.com>
6621
6622         * threads.c (mono_thread_init): Call GetCurrentProcess() so
6623         io-layer can set up some process handle info.  Not needed on w32,
6624         but doesn't hurt either.
6625
6626         * process.c: Pass the program name in the second parameter to
6627         CreateProcess, so the path is searched.  Include the working
6628         directory. Implemented process name, process enumeration, and some
6629         process detail internal calls.
6630         
6631         * icall.c: Added internal calls for process lookup, and some
6632         process details
6633
6634 2002-09-26  Martin Baulig  <martin@gnome.org>
6635
6636         * assembly.c (mono_install_open_assembly_hook): New global
6637         function to install a function to be invoked each time a new
6638         assembly is loaded.
6639         (mono_assembly_open): Run this callback function if set.
6640
6641         * debug-mono-symfile.c: Put back line numbers for the dynamic
6642         symbol file and also record the .il file as source file.  This
6643         allows us to install the temporary symbol file as `file.dbg' just
6644         like a compiler-generated one.
6645
6646 2002-09-26  Nick Zigarovich <nick@chemlab.org>
6647
6648         * Corrected typo in gc.c (BOHEM vs BOEHM).
6649
6650 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6651
6652         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
6653         GetProperties. Also avoid calling g_slist_length in GetProperties and
6654         GetMethods.
6655
6656 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
6657
6658         * reflection.c: avoid unaligned stores (bug spotted by
6659         Mark Crichton  <crichton@gimp.org>).
6660
6661 2002-09-25  Martin Baulig  <martin@gnome.org>
6662
6663         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
6664         instead of guint64 for addresses and added prologue/epilogue info.
6665
6666 2002-09-25  Martin Baulig  <martin@gnome.org>
6667
6668         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
6669         store line number info.  For the dynamic symbol file, we only need
6670         to provide the JIT generated dynamic line number info for the dynamic
6671         symbol file.
6672
6673 2002-09-25  Martin Baulig  <martin@gnome.org>
6674
6675         * debug-mono-symfile.h: Incremented version number.
6676
6677 2002-09-24  Martin Baulig  <martin@gnome.org>
6678
6679         * class.c (mono_debugger_class_init_func): New global function
6680         pointer variable.
6681         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
6682         call it.
6683
6684         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
6685         function.  This is called via the mono_debugger_class_init_func
6686         hook to add all types to the dynamic type table.
6687         (ves_icall_MonoDebugger_GetType): New interncall to get a class
6688         from its metadata token.
6689
6690         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
6691         New interncall for the debugger.
6692
6693 2002-09-24  Nick Drochak <ndrochak@gol.com>
6694
6695         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
6696         before using it in case it is null.
6697         
6698 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
6699
6700         * metadata.c: allow custom modifiers in local var signatures
6701         (bug spotted by Zoltan Varga).
6702
6703 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
6704
6705         * class.c: deal with the <Module> class that may have a NULL vtable.
6706         Eliminate warnings.
6707
6708 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
6709
6710         * image.c, image.h: more strong name helpers.
6711         * monosn.c: more work: convert pem keys to cryptoapi format.
6712
6713 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
6714
6715         * string-icalls.c: speedup IndexOf.
6716
6717 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
6718
6719         * icall.c: updates from Zoltan.2.Varga@nokia.com.
6720
6721 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
6722
6723         * icall.c: cleanup: use mono_object_domain ().
6724
6725 2002-09-23  Martin Baulig  <martin@gnome.org>
6726
6727         * debug-mono-symfile.c: Improved type support.
6728
6729 2002-09-22  Martin Baulig  <martin@gnome.org>
6730
6731         * debug-mono-symfile.c: Added support for reference types and strings.
6732
6733 2002-09-22  Martin Baulig  <martin@gnome.org>
6734
6735         * debug-mono-symfile.c: Started to work on the type table.
6736
6737 2002-09-21  Martin Baulig  <martin@gnome.org>
6738
6739         * debug-mono-symfile.c: Largely reworked the symbol table format.
6740         The symbol table is now incrementally updated each time a new
6741         method is added.  We're now also using our own magic and version
6742         so that you don't need to recompile all your classes if the
6743         dynamic table changes.
6744         (mono_debug_update_mono_symbol_file): Removed.
6745         (mono_debug_symfile_add_method): New function to add a method.
6746
6747 2002-09-21  Martin Baulig  <martin@gnome.org>
6748
6749         * icall.c
6750         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
6751         New interncall.
6752
6753         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
6754         New interncall to get a method from its metadata token.
6755
6756 2002-09-21  Martin Baulig  <martin@gnome.org>
6757
6758         * debug-mono-symfile.c: Create type table.
6759
6760 2002-09-20  Martin Baulig  <martin@gnome.org>
6761
6762         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
6763
6764 2002-09-20  Martin Baulig  <martin@gnome.org>
6765
6766         * debug-mono-symfile.c: Provide information about params and locals.
6767
6768 2002-09-20  Martin Baulig  <martin@gnome.org>
6769
6770         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
6771         New interncall.
6772
6773         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
6774         interncall to get a method from its metadata token.
6775
6776 2002-09-20  Martin Baulig  <martin@gnome.org>
6777
6778         * debug-mono-symfile.c: Added a few checks for method->header
6779         being non-NULL.  This should never happen, but for the moment
6780         let's use a g_warning() rather than a g_assert().
6781
6782 2002-09-19  Mark Crichton  <crichton@gimp.org>
6783
6784         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
6785         even if support for it isn't present.  Added an #ifdef to fix this.
6786
6787         * socket-io.c: Added checks back for Solaris support.
6788
6789 2002-09-19  Martin Baulig  <martin@gnome.org>
6790
6791         * debug-mono-symfile.c (read_string, write_string): Reflect latest
6792         changes in the symbol file format.
6793
6794 2002-09-18  Martin Baulig  <martin@gnome.org>
6795
6796         * debug-mono-symfile.c: Set version number to 21.
6797
6798 2002-09-18  Dick Porter  <dick@ximian.com>
6799
6800         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
6801         on netbsd.  Fixes bug 30051.
6802
6803 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6804
6805         * reflection.c:
6806         (set_version_from_string): little fix.
6807
6808 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
6809
6810         * monosn.c, Makefile.am: added strong name utility.
6811         * reflection.h, reflection.c: implemented delayed signing,
6812         locale, version and hash id assembly attributes.
6813
6814 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
6815
6816         * loader.c, metadata.c: load param attributes in signatures.
6817
6818 2002-09-16  Martin Baulig  <martin@gnome.org>
6819
6820         * debug-mono-symfile.c: Added string table with all method names.
6821
6822 2002-09-14  Martin Baulig  <martin@gnome.org>
6823
6824         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
6825         fast method lookup.
6826
6827 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
6828
6829         * reflection.c: record the public key token of referenced assemblies.
6830
6831 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
6832
6833         * image.c, image.h: added functions to get the strong name and the
6834         public key of an assembly.
6835         * pedump.c: use them.
6836
6837 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
6838
6839         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
6840
6841 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
6842
6843         * marshal.c (mono_marshal_get_managed_wrapper): Added
6844         MONO_TYPE_BOOLEAN 
6845
6846 2002-09-11  Martin Baulig  <martin@gnome.org>
6847
6848         * gc.c: Call GC_unregister_disappearing_link() on all links when
6849         finalizing them, this is necessary to aviod a crash in boehm's
6850         finalize handler.
6851
6852 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
6853
6854         * gc.c: handle GetTarget for finalized objects spotted and fixed by
6855         nick@chemlab.org.
6856
6857 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
6858
6859         * icall.c: implemented MonoType::Module.
6860         * reflection.c, reflection.h: mono_module_get_object () from
6861         Tomi Pakarinen <tomi.pakarinen@welho.com>.
6862
6863 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
6864
6865         * icall.c: ignore overridden methods in GetMethods ().
6866         Fix for FieldInfo::SetValue().
6867         * object.c: handle float/double in runtime invoke.
6868
6869 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
6870
6871         * object.c: allow a constructor to be called again on an object.
6872
6873 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
6874
6875         * class.h, class.c: move field layout code to it's own function and
6876         export it. Get an interface id earlier. Move fields in MonoClass
6877         so they are more cache friendly and align the bitfields.
6878         * loader.c: temporary handle get_param_names() for a runtime method.
6879         * reflection.c, reflection.h: more code to handle runtime creation of
6880         types.
6881
6882 2002-09-09  Martin Baulig  <martin@gnome.org>
6883
6884         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
6885         signature with the pinvoke field being set for the actual call.
6886
6887 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
6888
6889         * icall.c: removed some unused icalls. Start of map of glib charsets
6890         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
6891
6892 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
6893
6894         * debug-helpers.c: break infinite loop (found and fixed by
6895         Holger Arnold <harnold@gmx.de>).
6896
6897 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
6898
6899         * icall.c: target may be null in create_delegate.
6900
6901 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
6902
6903         * marshal.c: handle a boolean return type.
6904
6905 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
6906
6907         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
6908
6909 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
6910
6911         * gc.c: fix weakreferences.
6912
6913 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
6914
6915         * icall.c: added icall to get default codepage.
6916
6917 2002-09-03  Dick Porter  <dick@ximian.com>
6918
6919         * threads.h: 
6920         * threads.c: Use MonoThread instead of MonoObject where
6921         apropriate.
6922
6923         Store running thread objects in a hash table, so that we have all
6924         the info to hand when waiting for them to finish
6925         (means we don't need OpenThread() any more, so mingw builds should
6926         be fully functional again.)
6927
6928         * verify.c:
6929         * object.h: Added thread ID to MonoThread
6930
6931 2002-09-03  Martin Baulig  <martin@gnome.org>
6932
6933         * icall.c (System.Reflection.Assembly::get_location): New interncall.
6934
6935 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6936
6937         * icall.c: fixed leak in get_temp_path. Thanks lupus.
6938
6939 2002-09-03  Martin Baulig  <martin@gnome.org>
6940
6941         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
6942         argument to store the end address of the disassembled instruction.
6943
6944         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
6945         here from debug-symfile.h.
6946         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
6947         JIT into this struct.
6948         (MonoSymbolFile): Added `char *image_file' field.
6949         (MonoDebugGetMethodFunc): Removed.
6950         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
6951         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
6952         (mono_debug_find_method): New method.
6953
6954         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
6955         create a full symbol file.
6956         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
6957         and static symbol files.
6958         (mono_debug_find_method): The symbol file keeps an internal method hash,
6959         call this to get a MonoDebugMethodInfo from a MonoMethod.
6960
6961         * debug-symfile.[ch]: Removed.
6962
6963 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
6964
6965         * image.c (do_mono_image_open): Remove linker version check.
6966
6967 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
6968
6969         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
6970         wrappers for instance methods.
6971         
6972 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6973
6974         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
6975
6976 2002-08-28  Dick Porter  <dick@ximian.com>
6977
6978         * Makefile.am: Export HOST_CC for w32 builds
6979
6980 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
6981
6982         * file-io.c process.c: MonoString are null terminated, no
6983         need for mono_string_to_utf16() anymore.
6984
6985 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
6986
6987         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
6988
6989 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
6990
6991         * icall.c, reflection.h: speedup System.MonoType.
6992
6993 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
6994
6995         * reflection.c: allow null as the value of a string argument in
6996         custom attributes constructors.
6997
6998 2002-08-27  Martin Baulig  <martin@gnome.org>
6999
7000         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
7001         `trampoline_address' field.
7002
7003 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
7004
7005         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
7006         check (fixes bug #29486) 
7007
7008 2002-08-27  Martin Baulig  <martin@gnome.org>
7009
7010         * debug-mono-symfile.c: Changed the file format in a way that allows us
7011         open it read-only and to use a specially malloced area for all the
7012         dynamic data.  We can now also generate a symbol file on-the-fly if we're
7013         debugging IL code and there is no MCS generated symbol file for it.
7014
7015 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
7016
7017         * object.c: added a define for a good string and array
7018         creation speedup (not enabled by default because we need to deal with
7019         the synch stuff).
7020
7021 2002-08-26  Martin Baulig  <martin@gnome.org>
7022
7023         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
7024         function to create a dynamic symbol file.  This is used by the
7025         debugger to create a symbol file for IL code on-the-fly.
7026
7027 2002-08-26  Martin Baulig  <martin@gnome.org>
7028
7029         * loader.c (mono_lookup_pinvoke_call): Include the error message
7030         from g_module_error() in the error message.
7031
7032 2002-08-24  Martin Baulig  <martin@gnome.org>
7033
7034         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
7035         function to update the symbol file.  The symbol file is mmap()ed
7036         writable, but private.  This allows us to install the symbol file
7037         together with the assembly.
7038
7039 2002-08-24  Martin Baulig  <martin@gnome.org>
7040
7041         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
7042         but they can read the new symbol file format which mcs is now creating.
7043
7044         * debug-symfile.c (mono_debug_find_source_location): Moved to
7045         debug-mono-symfile.c; this is now operating on the new symbol file.
7046
7047 2002-08-23  Martin Baulig  <martin@gnome.org>
7048
7049         * debug-helpers.c (mono_method_desc_from_method): New function to get
7050         a MonoMethodDesc from a MonoMethod.
7051
7052 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
7053
7054         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
7055         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
7056
7057 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
7058
7059         * string-icalls.[ch]: make helper methods static.
7060
7061 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7062
7063         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
7064         types to it and to SetValueInternal.
7065
7066         * object.c: Moved handle_enum label to its proper place. This was the
7067         f... bug! ;-)
7068
7069         This time i compiled mcs and gtk-sharp and they both work.
7070
7071 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7072
7073         * icall.c: reverted partially my previous patch until 
7074         object.c:set_value handles enums correcly.
7075
7076 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7077
7078         * icall.c:
7079         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
7080         (ves_icall_System_Environment_get_MachineName): removed warning when
7081         compiling under cygwin.
7082
7083 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
7084
7085         * object.c: fixed field_get_value() for reference types.
7086
7087 2002-08-22  Dick Porter  <dick@ximian.com>
7088
7089         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
7090         Don't free a buffer while it's still needed.  Patch from Jonathan
7091         Liger <Jonathan.liger@wanadoo.fr>
7092
7093 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
7094
7095         * icall.c (ves_icall_System_Environment_get_Platform): Add new
7096         internal call.
7097
7098 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
7099
7100         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
7101         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
7102
7103         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
7104         we call unmanaged code which throws exceptions.
7105
7106 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
7107
7108         * appdomain.h: added per-domain entry_assembly.
7109         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
7110         arguments.
7111         * icall.c: Assembly::GetEntryAssembly icall.
7112         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
7113         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
7114
7115 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
7116
7117         * appdomain.h, gc.c: added mono_domain_finalize ().
7118
7119 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7120
7121         * object.c:
7122         (mono_print_unhandled_exception): changed g_warning by g_printerr
7123         because g_log has a 1024 characters limit (yeah, i got a big stack
7124         trace). Don't print exception name, that should be in ToString 
7125         returned string.
7126
7127 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7128
7129         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
7130         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
7131
7132 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7133
7134         * object.c:
7135         (mono_print_unhandled_exception): after previous commit, i realized
7136         that MS calls ToString on the exception. I changed this function to
7137         do that. This way we get stack_trace for free.
7138
7139 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7140
7141         * object.c:
7142         (mono_print_unhandled_exception): invoke Message property instead of
7143         getting 'message' field from Exception. Don't allocate memory for
7144         'trace' and 'message' if not needed.
7145
7146 2002-08-18  Dick Porter  <dick@ximian.com>
7147
7148         * unicode.c: Fix asserts to match Encoder.cs checks
7149
7150 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
7151
7152         * marshal.c: fix unaligned store issue and a few wrong
7153         opcode argument types.
7154
7155 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7156
7157         * icall.c: added GetUninitializedObjectInternal internal call.
7158
7159 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
7160
7161         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
7162         to the right domain.
7163
7164 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
7165
7166         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
7167
7168         * class.c (class_compute_field_layout): set blittable to false for Strings
7169
7170         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
7171
7172 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
7173
7174         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
7175         first chunk of code to create types at runtime. Code to
7176         handle ReflectedType/DeclaringType. Make reflection handles
7177         domain specific.
7178
7179 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
7180
7181         * class.c: set correct name in arrays.
7182
7183 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
7184
7185         * appdomain.c (mono_domain_transfer_object): make it work with
7186         valuetypes. bug fixes.
7187
7188 2002-08-12  Dick Porter  <dick@ximian.com>
7189
7190         * object.h: Rename some parameters to avoid c++ keywords (Patch
7191         from Joseph Wenninger <kde@jowenn.at>)
7192
7193 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
7194
7195         * icall.c: added icall to implement Assembly.GetFile*.
7196
7197 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
7198
7199         * reflection.h, reflection.c: code to embed managed resources.
7200
7201 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
7202
7203         * class.c: move all the type size stuff into
7204         class_compute_field_layout().
7205
7206 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
7207
7208         * class.c: ensure enums have always the correct instance size.
7209         * unicode.c: remove wrong assert.
7210
7211 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
7212
7213         * assembly.c: fix mem corruption issue.
7214         * image.h, image.c: added mono_image_get_resource () to access
7215         managed resources.
7216         * icall.c: implemented Assembly.EntryPoint property and some
7217         Managed Resources related internalcalls.
7218
7219
7220 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
7221
7222         * image.c, image.h: impemented mono_image_get_entry_point ().
7223         * appdomain.c: use mono_image_get_entry_point.
7224
7225 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
7226
7227         * reflection.c: support the object type argument when loading
7228         custom attributes.
7229
7230 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
7231
7232         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
7233         String as return type.
7234
7235 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
7236
7237         * reflection.c: fix encoding of named args for custom attrs to match
7238         the ms implementation. Read them back when instantiating custom
7239         attributes.
7240
7241 2002-08-02  Radek Doulik  <rodo@ximian.com>
7242
7243         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
7244         by Dietmar as quick fix
7245         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
7246         16 as stack size, used on more places as quick fix before Dietmar
7247         will fix it properly
7248
7249 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
7250
7251         * object.h, object.c: added accessors for fields and properties.
7252
7253 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
7254
7255         * class.c, class.h: made mono_class_get_field_from_name ()
7256         loop on parent types.
7257         Added mono_class_get_property_from_name ().
7258
7259 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
7260
7261         * class.c, class.h: move the code to setup the type vtable in its own
7262         function so that it can be reused also for types created at runtime.
7263         Eliminate the "class" identifier from the header file.
7264         * reflection.c: setup the vtable for enums so that we can create
7265         objects for use in SetConstant ().
7266
7267 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
7268
7269         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
7270         instead of the delegate itself as this pointer (bug #28383)
7271
7272 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
7273
7274         * marshal.c (mono_marshal_get_managed_wrapper): added return type
7275         conversions.
7276
7277 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
7278
7279         * loader.c: don't set the pinvoke bit on icalls.
7280
7281 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
7282
7283         * debug-helpers.c (mono_method_full_name): only print a number to
7284         indicate wrapper type (so that the output is more readable in traces).
7285
7286 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
7287
7288         * class.c (mono_class_init): include method override patch from Paolo
7289
7290 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
7291
7292         * icall.c: fixed GetTypeCode().
7293
7294 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
7295
7296         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
7297         use real delegate invoke function to make it work with multicast
7298         delegates (fix bug# 28291).
7299
7300 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
7301
7302         * object.c: load constant strings.
7303
7304 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
7305
7306         * reflection.c: no magic numbers.
7307         * tabledefs.h: security action enum.
7308
7309 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
7310
7311         * assembly.c: fix possible memory corruption.
7312
7313 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
7314
7315         * reflection.h, reflection.c: added support for linking resources.
7316         * verify.c: check we have an updated corlib.
7317
7318 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
7319
7320         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
7321         string arrays.
7322         (mono_marshal_string_array): null terminate unmanaged string arrays.
7323         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
7324
7325 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
7326
7327         * icall.c: Type.GetType () can now return also types from the
7328         calling assembly.
7329
7330 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
7331
7332         * loader.h, loader.c: stack walking support.
7333         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
7334         GetCallingAssembly.
7335
7336 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
7337
7338         * marshal.c: added optimisations for blittable types 
7339
7340         * class.c (mono_array_class_get): do not set blittable attribute on arrays
7341         (mono_class_setup_mono_type): set blittable attribute for single
7342         and double.
7343
7344         * marshal.c (mono_string_utf8_to_builder): impl.
7345         (mono_string_builder_to_utf8): impl.
7346         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
7347
7348 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
7349
7350         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
7351         (mono_marshal_get_managed_wrapper): impl. byref types
7352
7353 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7354
7355         * icall.c:
7356         (search_method): don't display debug message. 
7357
7358 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
7359
7360         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
7361
7362 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
7363
7364         * appdomain.c: set the missing filename when throwing exception.
7365
7366 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
7367
7368         * metadata.c (mono_type_size): code cleanup
7369         (mono_type_stack_size): removed some test code
7370
7371 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
7372
7373         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
7374         mono_get_exception_file_not_found now.
7375
7376         * exception.c (mono_exception_from_name_two_strings): New version
7377         that will call a constructor with two string arguments. 
7378         (mono_get_exception_file_not_found): New helper routine, used to
7379         report file-not-found errors.
7380
7381 2002-07-20  Dick Porter  <dick@ximian.com>
7382
7383         * process.h:
7384         * process.c: Pass file handles to CreateProcess
7385         
7386         * icall.c:
7387         * file-io.h:
7388         * file-io.c: Implemented CreatePipe
7389
7390 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
7391
7392         * metadata.c (mono_get_param_info): set alignment for value types
7393
7394 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
7395
7396         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
7397         Constify mono_domain_assembly_open().
7398         * loader.c: handle null namespace in icalls.
7399
7400 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
7401
7402         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
7403         (emit_str_to_ptr_conv): marshal object as structs
7404
7405         * metadata.c (mono_type_to_unmanaged): marshal object as structs
7406
7407         * marshal.c (mono_marshal_get_runtime_invoke): support value types
7408
7409 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
7410
7411         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
7412         (mono_marshal_get_native_wrapper): we an now return value types
7413
7414 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
7415
7416         * verify.c: more checks implemented.
7417
7418 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
7419
7420         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
7421         (fix bug #27695)
7422         (mono_marshal_get_native_wrapper): allow byref arguments
7423         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
7424         impl. PtrToStringXXX methods
7425         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
7426         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
7427         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
7428         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
7429         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
7430
7431 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
7432
7433         * reflection.c: fix buglet in parsing an assembly name.
7434
7435 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
7436
7437         * marshal.c (emit_ptr_to_str_conv): first impl.
7438
7439 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
7440
7441         * object.c, class.h: cache the vtable in the class as suggested by
7442         vargaz@freemail.hu (Zoltan Varga).
7443
7444 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
7445
7446         * class.h, loader.c: added mono_field_from_token().
7447         * verify.c: first cut of type checking code.
7448
7449 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
7450
7451         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
7452
7453 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
7454
7455         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
7456         (fix bug #27782)
7457         (mono_marshal_get_remoting_invoke): impl.
7458         (mono_delegate_begin_invoke): impl.
7459         (mono_mb_emit_save_args): impl.
7460         (mono_delegate_end_invoke): impl.
7461         (mono_marshal_get_delegate_begin_invoke):
7462         (mono_marshal_get_delegate_end_invoke):
7463         (mono_marshal_get_delegate_invoke): generate a special name for
7464         those methods (including the signature) and associate them whith
7465         the delegate class. 
7466
7467 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
7468
7469         * reflection.[ch]: 
7470         (mono_reflection_type_from_name): now it has a MonoImage parameter
7471         which is used as the default image to search the type in. If the image
7472         is NULL or getting the type from it fails, it defaults to corlib.
7473
7474         * icall.c: changed 1 call to mono_reflection_type_from_name to match
7475         new parameter.
7476
7477 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
7478
7479         * reflection.c: update the parameter table index.
7480
7481 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
7482
7483         * domain.c: don't include the mark byte in the string hash.
7484
7485 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
7486
7487         * icall.cs: icall for Type.GetTypeCode ().
7488         * verify: a couple of fixes and disabled local initialization checks.
7489
7490 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
7491
7492         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
7493
7494         * debug-helpers.c (mono_method_full_name): print the type of the
7495         runtime wrapper
7496
7497         * metadata.c (mono_signature_hash): a hash function for signatures
7498         (mono_signature_hash): better hash algorithm
7499
7500         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
7501
7502         * debug-helpers.c (mono_method_full_name): this can now generate
7503         method names with signatures
7504
7505         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
7506         method dont have this pointers.
7507
7508 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
7509
7510         * reflection.c: fixup typebuilder tokens.
7511         * image.c: fix buglet.
7512         * marshal.h: remove whitespace.
7513         * metadata.h, metadata.c: reinstate code that was removed.
7514         * verify.c: handle catch directives and fix another couple of bugs.
7515
7516 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
7517
7518         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
7519         (mono_marshal_get_native_wrapper): make it comp. with the old code
7520         (mono_marshal_get_native_wrapper): support boolean
7521         (mono_marshal_get_managed_wrapper): support more types
7522
7523 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
7524
7525         * class.c (class_compute_field_layout): compute class->blittable attribute.
7526
7527 2002-07-09  Dick Porter  <dick@ximian.com>
7528
7529         * threads.c: Make the thread cleaning up cope with threads that
7530         call ExitThread()
7531
7532 2002-07-08  Radek Doulik  <rodo@ximian.com>
7533
7534         * reflection.c (method_encode_code): use non-translated values to
7535         compute finally_start, this fixes exception handling on ppc, yay!
7536
7537         * decimal.h (struct signscale): fix endianess
7538
7539 2002-07-07  Radek Doulik  <rodo@ximian.com>
7540
7541         * reflection.c: swap box_val and not val
7542
7543 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
7544
7545         * reflection.c, reflection.h: handle full assembly info in type name.
7546         Handle Type arguments when loading custom attributes.
7547         * icall.c: updated to use new mono_reflection_type_from_name () method.
7548
7549 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7550
7551         * loader.c:
7552         (method_from_memberref): also print assembly name when method not found.
7553
7554 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7555
7556         * icall.c:
7557         (ves_icall_TypeGetProperties): fixed bug #27473. 
7558
7559 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7560
7561         * reflection.c: display image name and token when cannot find the
7562         .ctor for an attribute.
7563
7564 2002-07-05  Martin Baulig  <martin@gnome.org>
7565
7566         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
7567
7568 2002-07-04  Dick Porter  <dick@ximian.com>
7569
7570         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
7571         compile on mingw.  This will cause mingw builds to not wait for
7572         subthreads to terminate after the main thread does.  I've lodged a
7573         bug with the mingw developers for them to wrap OpenThread().
7574
7575 2002-07-03  Dick Porter  <dick@ximian.com>
7576
7577         * threads.c: Store thread IDs instead of handles, because
7578         GetCurrentThread() returns a pseudohandle and therefore stores
7579         useless values.  mono_thread_cleanup() continues checking the
7580         array of threads until it is empty, to cope with subthreads
7581         spawning new threads after the main thread has finished.
7582
7583         * profiler.h:
7584         * profiler.c:
7585         * profiler-private.h: Pass the thread ID to thread profiler
7586         functions, instead of a handle
7587
7588 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
7589
7590         * verify.c: fixes to make it more usable.
7591         * pedump.c: added --verify code to verify IL code in an assembly.
7592
7593 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7594
7595         * reflection.c: turn errors into warnings to allow compiling corlib.
7596
7597 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
7598
7599         * reflection.c: add special cases to compile corlib.
7600
7601 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
7602
7603         * reflection.c: handle properties with only a set method.
7604
7605 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
7606
7607         * opcodes.h: add enum with opcodes in opval order.
7608
7609 2002-07-01  Dick Porter  <dick@ximian.com>
7610         
7611         * object.h:
7612         * object.c (mono_runtime_run_main): Removed unneeded argument
7613
7614 2002-06-28  Martin Baulig  <martin@gnome.org>
7615
7616         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
7617
7618 2002-06-27  Dick Porter  <dick@ximian.com>
7619
7620         * threads.c: Store the handle in both the parent thread and in the
7621         subthread, to minimise the time between starting a new thread and
7622         storing its ID.
7623
7624 2002-06-26  Dick Porter  <dick@ximian.com>
7625
7626         * appdomain.c (mono_runtime_cleanup): Close the socket library
7627         after all the threads have finished, not before
7628
7629 2002-06-26  Martin Baulig  <martin@gnome.org>
7630
7631         * debug-symfile.c (mono_debug_find_source_location): Added
7632         `guint32 *line_number' argument.  If it's not NULL, store the line number
7633         there and return the file name without the line number.
7634
7635 2002-06-25  Dick Porter  <dick@ximian.com>
7636
7637         * icall.c:
7638         * process.h:
7639         * process.c: Process forking and other support functions
7640
7641 2002-06-25  Dick Porter  <dick@ximian.com>
7642
7643         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
7644         things dont happen when the image is closed.
7645         (mono_image_lookup_resource): Walk the resource section looking
7646         for a particular entry
7647
7648         * cil-coff.h: PE resource section decoding
7649
7650 2002-06-25  Dick Porter  <dick@ximian.com>
7651         
7652         * assembly.h:
7653         * assembly.c: 
7654         (mono_assembly_foreach): Accessor functions to walk the list of
7655         loaded assemblies
7656         (mono_assembly_set_main):
7657         (mono_assembly_get_main): Process methods need to know which
7658         assembly is the "main" one
7659
7660         * object.c (mono_runtime_run_main): Record the main assembly
7661
7662         * debug-helpers.c: Fix typo
7663
7664 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
7665
7666         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
7667         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
7668
7669 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
7670
7671         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
7672
7673 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
7674
7675         * image.c (do_mono_image_open): Initialize reference count,
7676         otherwise we leak the MonoImage.
7677
7678 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
7679
7680         * reflection.c: small tweak to handle self-hosting.
7681
7682 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
7683
7684         * reflection.c: fix type name parse code.
7685
7686 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
7687
7688         * reflection.c: break out of the loop.
7689         * image.c: special case corlib.
7690
7691 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
7692
7693         * reflection.c: add all the custom attrs at the end to ensure the
7694         ctors have been properly initialized when the attributes are defined
7695         in the current assembly.
7696
7697 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
7698
7699         * reflection.c: handle correctly multiple-nested types.
7700
7701 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
7702
7703         * row-indexes.h: fix typos.
7704         * reflection.c: adjust for typos and fix method_def_or_ref
7705         encoding in MethodImpl table.
7706
7707 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
7708
7709         * reflection.c: fix entry point patching (thanks Serge!).
7710
7711 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
7712
7713         * verify.c: add check for System.Exception
7714
7715 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
7716
7717         * image.c, class.c: minifix for code just c&p'ed.
7718         * reflection.c: warning fix.
7719         * object.h, loader.h, domain.c: load also StringBuilder.
7720
7721 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
7722
7723         * marshal.h, marshal.c: some support code to handle complex marshaling.
7724
7725 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7726
7727         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
7728         Better signatures with vtable error dump.
7729
7730 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
7731
7732         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
7733
7734 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
7735
7736         * icall.c (ves_icall_Type_GetField): impl.
7737
7738 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7739
7740         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
7741         to retrieve a marshal description blob for a field or param.
7742
7743 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
7744
7745         * reflection.h, reflection.c: change order of nested type emission
7746         to avoid table corruption. The NestedTypes table is sorted.
7747         * icall.c: change order of GetConstructor results to workaround mcs bug.
7748
7749 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
7750
7751         * reflection.h, reflection.c: handle field and param marshal
7752         information.
7753
7754 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
7755
7756         * icall.c, marshal.c marshal.h: more Marshal class implementation.
7757
7758 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
7759
7760         * reflection.c: fix call convention.
7761
7762 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
7763
7764         * reflection.h, reflection.c: mono_image_get_memberref_token()
7765         takes a type instead of a class, now. Added
7766         mono_image_get_array_token() to create tokens for the special
7767         multi-dim array methods.
7768
7769 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
7770
7771         * assembly.c: handle modules (no assembly table). Split
7772         loading references in its own function.
7773         * class.c: handle moduleref resolution scope.
7774         * image.c, image.h: cache module name in image.
7775
7776 2002-06-07  Martin Baulig  <martin@gnome.org>
7777
7778         * reflection.c (mono_image_get_type_info): Only add a class layout entry
7779         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
7780
7781 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
7782
7783         * icall.c: more signature fixes that used uint instead of int.
7784
7785 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7786
7787         * reflection.c: fixed signature of field refs.
7788
7789 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
7790
7791         * class.c, reflection.c: handle typerefs of nested types
7792         (both on read and when writing files).
7793
7794 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
7795
7796         * icall.c: fix method signatures that tried to workaround the previous
7797         typo, d'oh!
7798
7799 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
7800
7801         * debug-helpers.c: fix typo.
7802
7803 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
7804
7805         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
7806         rewrote the PE/COFF writing code (our programs are understood by the
7807         ms runtime, now).
7808
7809 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
7810
7811         * gc.c, gc.h, icall.c: weakreference support.
7812
7813 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
7814
7815         * Makefile.am, mono-config.c: use $(sysconfdir).
7816
7817 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
7818
7819         * icall.c: changed default precision of Double.ToString() to 15.
7820         Fixed memory leak. Unified with Single.ToString.
7821
7822 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
7823
7824         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
7825
7826 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
7827
7828         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
7829         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
7830         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
7831         and myself.
7832
7833 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
7834
7835         * debug-symfile.c, sysmath.c: yet more compilation fixes.
7836
7837 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7838
7839         * reflection.c, socket-io.c: more compilation fixes.
7840
7841 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
7842
7843         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
7844         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
7845         unicode.c: warning and compiler compatibility fixes.
7846
7847 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
7848
7849         * class.h, metadata.c: fixed warnings/compilation errors.
7850
7851 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
7852
7853         * Makefile.am, mono-config.c, mono-config.h: configuration file
7854         support routines.
7855         * loader.c, loader.h: make Dll mapping configurable at runtime in the
7856         config file. Export methods to insert and lookup mappings.
7857
7858 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
7859
7860         * reflection.c: handle types and boxed objects in custom attr
7861         constructors.
7862
7863 2002-05-30  Martin Baulig  <martin@gnome.org>
7864
7865         * debug-symfile.c
7866         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
7867
7868 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
7869
7870         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
7871         to lookup the implmap row for a P/Invoke method.
7872         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
7873         P/Invoke method from the runtime on an as needed basis.
7874
7875 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
7876
7877         * metadata.c (mono_metadata_parse_signature): impl.
7878
7879 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
7880
7881         * class.c: handle .pack directive.
7882
7883 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
7884
7885         * object.c: initialize static fields with RVA data.
7886
7887 2002-05-25  Martin Baulig  <martin@gnome.org>
7888
7889         * debug-symfile.c
7890         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
7891
7892 2002-05-24  Martin Baulig  <martin@gnome.org>
7893
7894         * debug-symfile.c
7895         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
7896         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
7897         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
7898
7899 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
7900
7901         * object.c: special case string ctros in invoke.
7902         * gc.c: silly whitespace changes.
7903
7904 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
7905
7906         * threadpool.[ch]: impl. a threadpool that can
7907         be used by mint and mono.
7908
7909 2002-05-22  Martin Baulig  <martin@gnome.org>
7910
7911         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
7912         The first argument is now a `MonoReflectionModuleBuilder *', the return
7913         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
7914         `methods' field to get the method builder.  The `token' argument is the
7915         unfixed token.
7916
7917         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
7918         invalid characters instead of g_assert_not_reached()ing.  This seems
7919         to be the behaviour of mscorlib.
7920
7921 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
7922
7923         * object.c (mono_runtime_invoke_array): applied patch from Rachel
7924         Hestilow to fix bug #25104
7925
7926 2002-05-21  Martin Baulig  <martin@gnome.org>
7927
7928         * debug-symfile.c (mono_debug_find_source_location): New function.
7929         Looks up an IL offset in the line number table and returns the source
7930         location as a string.
7931
7932 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7933
7934         * icall.c:
7935         (mono_double_ToStringImpl): changed %f by %g until we have something
7936         better.
7937
7938 2002-05-21  Nick Drochak  <ndrochak@gol.com>
7939
7940         * icall.c : Use different name for Math.Pow's icall.  Needed to check
7941         parameters first in C#.
7942
7943 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
7944
7945         * icall.c, reflection.h: added icall to get info about an event.
7946
7947 2002-05-20  Radek Doulik  <rodo@ximian.com>
7948
7949         * object.c (mono_value_box): don't use memcpy for boxing on BIG
7950         endian
7951         (mono_value_box): don't use memcpy for small sizes on
7952         architectures with unaligned access
7953
7954 2002-05-20  Martin Baulig  <martin@gnome.org>
7955
7956         * reflection.c (mono_reflection_setup_internal_class): Don't crash
7957         if `tb->parent == NULL'.
7958         (mono_reflection_create_internal_class): New function.  This is
7959         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
7960         for enum types.
7961
7962         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
7963         New interncall.
7964
7965 2002-05-19  Martin Baulig  <martin@gnome.org>
7966
7967         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
7968         argument to get the length, don't default to the array length.
7969
7970 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
7971
7972         * assembly.c (mono_assembly_setrootdir): New function used to
7973         override the MONO_ASSEMBLIES directory.
7974
7975 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
7976
7977         * icall.c: ValueType_GetHashCode() initialize local var.
7978
7979 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
7980
7981         * reflection.c: sort custom attributes table.
7982
7983 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
7984
7985         * reflection.c: support named args in custom attributes (write support).
7986
7987 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
7988
7989         * reflection.c: fix finally position calculation.
7990
7991 2002-05-15  Radek Doulik  <rodo@ximian.com>
7992
7993         * reflection.c: fixed endianess at many places
7994
7995         * icall.c (ves_icall_InitializeArray): comment out debug msg
7996
7997 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
7998
7999         * object.c (mono_unhandled_exception): new function to handle
8000         unhandled exceptions.
8001         (mono_unhandled_exception): call the UnhandledException event.
8002         (mono_runtime_delegate_invoke): impl.
8003
8004 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
8005
8006         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
8007         returns the RVA, not the direct pointer to the data. Handle the case
8008         when the class size is fixed.
8009
8010 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8011
8012         * reflection.c: fix some endianess issues.
8013
8014 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
8015
8016         * object.c (mono_runtime_invoke): is now able to catch exceptions.
8017
8018         * threads.c (mono_thread_init): added a callback which is invoked
8019         at thread start.
8020
8021 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
8022         
8023         * icall.c: make GetHashCode return non-negative values.
8024
8025 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
8026
8027         * object.c, icall.c, gc.c: revert to address-based hashcode.
8028
8029 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
8030
8031         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
8032
8033 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
8034
8035         * icall.c, class.c: special case <Module>.
8036
8037 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
8038
8039         * icall.c: fix bug in GetNow().
8040
8041 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
8042
8043         * object.c (mono_runtime_class_init): make sure that we call all
8044         static class constructors.
8045
8046 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8047
8048         * reflection.c: sort methodsemantics table.
8049
8050 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8051
8052         * reflection.h, reflection.c: honour init locals setting.
8053
8054 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
8055
8056         * icall.c: copied Double ToStringImpl for Single ToStringImpl
8057
8058 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
8059
8060         * reflection.c: support ContructorBuilders in attribute blob creation.
8061
8062 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
8063
8064         * reflection.c: some changes to build a binary that can be run
8065         directly in windows.
8066
8067 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
8068
8069         * loader.c: print a big message when an icall can't be found.
8070
8071 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8072
8073         * string-icalls.c: fix bug 24248.
8074
8075 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
8076
8077         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
8078         icall.c, reflection.h: separate assembly loading by pathname and by
8079         assembly name. Use the MONO_PATH env var to search for assemblies.
8080
8081 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
8082
8083         * assembly.c, image.h: add some support for assemblies
8084         with multiple modules.
8085         * class.c, class.h: export mono_class_from_typeref().
8086         * loader.c: remove duplicated code and use mono_class_from_typeref(),
8087         instead.
8088
8089 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
8090
8091         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
8092         documentation says (the ECMA one is correct).
8093
8094 2002-05-02  Dick Porter  <dick@ximian.com>
8095
8096         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
8097         Don't name the synchronisation mutex.
8098
8099 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
8100
8101         * rand.c
8102         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
8103         Make the prototypes match.
8104         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
8105         Same.
8106
8107         * icall.c
8108         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
8109         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
8110         all systems have tm.tm_zone, so use strftime() with %Z to print
8111         the timezone abreviation into a temp string.
8112
8113         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
8114         rather than mono_array_addr() on a MonoString on Big Endian
8115         machines.
8116
8117 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
8118
8119         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
8120         fix bug 24041
8121
8122 2002-04-30  Dick Porter  <dick@ximian.com>
8123
8124         * socket-io.c: Cope with SOCKET being an integer rather than a
8125         pointer now.
8126
8127         * threads.c: Added Thread_free_internal, to deal with thread
8128         handle cleanup.  Moved calls to handle_store() and handle_remove()
8129         to start_wrapper(), so each can only be called once.  Allocate
8130         synchronisation blocks with GC_malloc(), and use GC finalisation
8131         to close the handles.
8132
8133         * icall.c: added System.Threading.Thread::Thread_free_internal
8134
8135 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8136
8137         * icall.c: support Environment.Exit, CommandLineArgs().
8138
8139 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8140
8141         * object.c, object.h: added mono_runtime_run_main () and
8142         mono_runtime_get_main_args () for use in System.Environment.
8143
8144 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
8145
8146         * gc.c: fix thinko, enable actual finalization since the jit is now
8147         fixed.
8148
8149 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
8150
8151         * gc.c, object.c: take into account that an object may be offset wrt the address
8152         returned by GC_malloc().
8153
8154 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
8155
8156         * image.c: handle files without entries in the assembly table (modules).
8157
8158 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
8159
8160         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
8161         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
8162         allowed to be null when it's System.Object class setup.
8163
8164 2002-04-27  Martin Baulig  <martin@gnome.org>
8165
8166         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
8167         if `tb->parent == NULL' rather than crashing.
8168
8169 2002-04-28  Nick Drochak  <ndrochak@gol.com>
8170
8171         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
8172         calling acos() where asin() should have been called.
8173
8174 2002-04-26  Martin Baulig  <martin@gnome.org>
8175
8176         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
8177         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
8178         there's a subdirectory called `System', but we don't want to read that
8179         subdirectory as an assembly.
8180
8181 2002-04-25  Martin Baulig  <martin@gnome.org>
8182
8183         * debug-symfile.c: Reflect latest MonoString changes.
8184
8185 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8186
8187         * rand.c, rand.h: instance method icalls need to have an explicit
8188         this pointer as first argument in the C implementation.
8189
8190 2002-04-25  Nick Drochak <ndrochak@gol.com>
8191
8192         * icall.c: Fix typo in map for GetNonZeroBytes
8193
8194 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
8195
8196         * string-icalls.c : String does now passes unit tests without any 
8197         errors, the following changes has been made:
8198         
8199         Implemented replace methods.
8200         Renaming of methods to (try) follow the standard.
8201         Fixed compare ordinal
8202         Made all memory allocated directly to function instead of via icall function.
8203         Small performance fix in is_in_array function
8204                         
8205  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
8206
8207         c (mono_string_Internal_ctor_charp_int_int):
8208         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
8209         sindex < 0, throw ArgumentOutOfRangeException instead of
8210         ArgumentNullException.
8211
8212         Added new check for length == 0, however
8213         I need to make it return String.Empty from the C code.
8214         
8215         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
8216         that calculate the length for us here.
8217         
8218         (mono_string_Internal_ctor_sbytep_int_int): Replaced
8219         mono_string_new_utf16 with mono_string_new, since value is utf8.
8220
8221 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8222
8223         * object.c: register the object for finalization if needed.
8224         Allocate one more char in the string for the terminating 0 char.
8225
8226 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8227
8228         * class.c, class.h, image.c: check if a type implemenst a destructor.
8229         Use the proper key for array class lookups.
8230         * icall.c: register the icalls in the System.GC class.
8231         * gc.c, gc.h: GC-related functions and icalls.
8232
8233 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8234
8235         * icall.c:
8236         * socket-io.c:
8237         * unicode.c: free some strings gotten from mono_string_to_utf8 and
8238         changed a couple of free () by g_free ().
8239
8240         * decimal.c: one-liner in the comments for decimal2string ().
8241
8242 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
8243
8244         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
8245
8246 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
8247
8248         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
8249         * object.c (mono_runtime_invoke_array) : handle null in params
8250
8251 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
8252
8253         * string-icalls.c: fixed bug in split (one off bug)
8254
8255 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
8256
8257         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
8258         * icalls.c: added String::Equals as internal method
8259
8260 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
8261
8262         * threads.c: fixed bug in the double interlocked functions
8263
8264 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
8265
8266         * threads.c: implemented all of the new interlocked icalls.
8267         * string-icalls.c: fix a bug in insert.
8268         * icalls.c: added the icalls for interlocked, removed old string functions.
8269         
8270 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
8271
8272         * loader.c: fix off-by-one error when reading argument names.
8273
8274 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
8275
8276         * profiler.c: win32 counter implementation (untested).
8277         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
8278         (the latter needs testing and more complete impl. from win32 folks).
8279
8280 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
8281
8282         * object.c: mono_array_new_full workaround mono_array_class_get
8283         problem.
8284
8285 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
8286
8287         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
8288         * object.h (mono_string_chars): Changed casting type.
8289
8290 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
8291
8292         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
8293                            method signatures to use gunichar2 instead of gint16.
8294
8295 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
8296
8297         * object.h, object.c: domain-specific versions of mono_object_new and
8298         mono_array_new.
8299
8300 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
8301
8302         * object.c: changed String layout
8303
8304         * string-icalls.c (mono_string_Internal_ctor_chara): added
8305         internal string constructors.
8306
8307 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
8308
8309         * threads.c: pass 'this' to the thread start routine.
8310
8311 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8312
8313         * string-icalls.c: fix IndexOf and LastIndexOf. Now
8314         InternalCompareStr don't call twice mono_string_cmp_char for the last
8315         character. Improved performance in mono_string_cmp_char.
8316
8317 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
8318
8319         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
8320         code into its own library: libmonoruntime.
8321
8322 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
8323
8324         * object.h, object.c: changed array format so that szarrays do not
8325         require a bounds structure.
8326         * icall.c, appdomain.c: support for new szarray format.
8327
8328 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
8329
8330         * metadata.c: compare also the retuns type when comparing signatures:
8331         we didn't do this as an optimization since really overloaded methods
8332         must differ also in the arguments, but this doesn't work with
8333         low-level IL code (or when using explicit conversion operators: see
8334         bug#23498 for an example).
8335
8336 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
8337
8338         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
8339
8340 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8341
8342         * icall.c: make MonoType::GetElementType its own icall.
8343
8344 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
8345
8346         * icall.c: remove MonoMethod_get_Name().
8347         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
8348         object.
8349
8350 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
8351
8352         * string-icalls.c: optimized a few methods.
8353
8354 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
8355
8356         * icall.c: added all new string internal calls
8357         * string-icalls.c: added, new string internal call implementation.
8358         * object.c: added mono_string_new_size for allocating a string a size
8359
8360 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
8361
8362         * object.c (mono_object_isinst): use the same code as in the
8363         optimized x86 version.
8364
8365 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
8366
8367         * profiler.c: TSC-based timer code (faster and more accurate).
8368         Not hooked up in configure, yet (set USE_X86TSC to 1).
8369
8370 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
8371
8372         * profiler.c, profiler.h: track time spent compiling methods.
8373         * threads.c: track thread creation/destruction.
8374
8375 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
8376
8377         * profiler.c, profiler.h, profiler-private.h: profiling interface
8378         and sample implementation. Moved here so that it can be used also by
8379         the jit.
8380
8381 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
8382
8383         * reflection.c, reflection.h: keep types and other handles separate in
8384         the hash tables for referred tokens. Add guid for modules.
8385
8386 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
8387
8388         * assembly.c: fix bugs found with valgrind.
8389         * metadata.h, metadata.c: added mono_metadata_guid_heap().
8390
8391 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
8392
8393         * threads: added icall support for getting current domain for
8394                    the thread.
8395  
8396 2002-04-13  Martin Baulig  <martin@gnome.org>
8397
8398         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
8399         (MonoDebugVarInfo): Added `index' field for register based addresses.
8400         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
8401         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
8402         `MonoDebugVarInfo *params' and `guint32 this_offset' with
8403         `MonoDebugVarInfo *this_var'.
8404
8405         * debug-symfile.c (relocate_variable): New static function to write
8406         a location description for a local variable or method parameter.
8407
8408 2002-04-12  Martin Baulig  <martin@gnome.org>
8409
8410         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
8411         stack offset and begin/end scope address of a local variable.
8412         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
8413         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
8414         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
8415
8416         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
8417         Added new relocation types for start/end scope of a local variable.
8418
8419 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8420
8421         * object.h: add mono_object_domain() macro.
8422         * reflection.c: handle typespecs.
8423         * icall.c: MonoMethod::get_Name() implementation.
8424
8425 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
8426
8427         * icall.c: String::GetHashCode() icall implementation.
8428
8429 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8430
8431         * icall.c: String::IndexOfAny icall.
8432         * object.c, object.h: make array->max_length more useful.
8433         Intrduced mono_object_class() and mono_string_length() macros.
8434
8435 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8436
8437         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
8438         instead of g_unichar_isdigit.
8439
8440 2002-04-11  Nick Drochak  <ndrochak@gol.com>
8441
8442         * icall.c: Implement a simple Double.ToString().
8443
8444 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
8445
8446         * appdomain.h: only io-layer.h is supposed to be included.
8447         * icall.c: explicitly import environ. Fix warning.
8448
8449 2002-04-10  Nick Drochak  <ndrochak@gol.com>
8450
8451         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
8452                 return true even if it's not Daylight Savings time.
8453                 Only return false for the case where the function isn't
8454                 implemented for a plaform (read Windows).
8455
8456 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8457
8458         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
8459         data with a mutex.
8460
8461 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
8462
8463         * mempool.c (mono_mempool_alloc): only use g_malloc when
8464         absolutely necessary.
8465
8466 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
8467
8468         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
8469
8470         * class.c (mono_class_vtable): use domain mempool to allocate vtable
8471         (mono_class_proxy_vtable): use domain mempool
8472
8473 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
8474
8475         * appdomain.h, appdomain.c: split initialization that requires the
8476         execution engine support into mono_runtime_init().
8477
8478 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
8479
8480         * class.c (mono_class_init): don't include vtable inside MonoClass
8481         to save some memory, gather some statistics.
8482         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
8483
8484 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
8485
8486         * icall.c: internalcall implementation for ValueType.Equals().
8487
8488 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
8489
8490         * object.c (mono_message_init): moved 
8491         (mono_runtime_exec_main): new arch. independent impl.
8492         (mono_runtime_invoke_array): new method - like
8493         mono_runtime_invoke, but you can pass an array of objects.
8494         (mono_remoting_invoke): new arch. independent impl.
8495         (mono_message_invoke): new arch. independent impl.
8496         (mono_runtime_class_init): new arch. independent impl.
8497         (mono_runtime_object_init): new arch. independent impl.
8498
8499 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
8500
8501         * metadata.c, object.c, reflection.c: documented the exported
8502         functions.
8503
8504 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
8505
8506         * icall.c: simpler code to pass the assembly builder data to corlib.
8507         Implement GetNestedTypes() internalcall.
8508
8509 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
8510
8511         * class.c: warn if a type can't be loaded.
8512
8513 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
8514
8515         * image.h: typedef MonoImageOpenStatus
8516         * types.h: removed unused file
8517         
8518 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
8519
8520         * icall.c: Enum_ToObject accepts enum value arguments.
8521
8522 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
8523
8524         * class.c: move initialization of properties, events and nested
8525         classes, so that they happen for interfaces, too.
8526
8527 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
8528
8529         * icall.c: cleanup some ugly casts in Array_SetValue*.
8530
8531 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
8532
8533         * icall.c: the values array fro enums is of the correct type, now.
8534         Implement (correctly) getFullName instead of assQualifiedName for
8535         MonoType.
8536         * reflection.h, reflection.c: added mono_type_get_name ().
8537
8538 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
8539
8540         * assembly.c, image.h: for each MonoImage, record from wich assembly
8541         it was loaded.
8542         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
8543         Make Type.Assembly work.
8544
8545 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
8546
8547         * debug-symfile.h: use char* instead of gpointer to avoid
8548         unnecessary casts.
8549
8550         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
8551
8552         * icall.c (ves_icall_InternalExecute): impl. FielSetter
8553         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
8554
8555 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
8556
8557         * icall.c (mono_message_init): impl. (code cleanup)
8558         (ves_icall_InternalExecute): impl. FieldGetter
8559
8560         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
8561         defined we call all (non-static)methods through the vtable. 
8562
8563 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
8564
8565         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
8566         finalizer even though the memory is still referenced (and the chunk of
8567         memory is not freed).
8568
8569 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
8570
8571         * assembly.c: fix brokeness.
8572
8573 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
8574
8575         * class.c: kill some warnings. Check explicit interface method
8576         implementation also without considering the namespace.
8577         Load also literal strings in static class data.
8578
8579 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
8580
8581         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
8582         (default_assembly_name_resolver): Make the resolver take the
8583         "base" directory where the assembly was originally defined, so we
8584         can load DLLs that are in the same directory as the assembly that
8585         is being referenced.
8586
8587 2002-03-28  Dick Porter  <dick@ximian.com>
8588
8589         * file-io.h: 
8590         * file-io.c:
8591         * socket-io.c: 
8592         * unicode.h: 
8593         * unicode.c: Warning cleanups
8594
8595 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
8596
8597         * object.h, reflection.h: use the correct type instead of MonoObject.
8598
8599 2002-03-28  Martin Baulig  <martin@gnome.org>
8600
8601         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
8602         (mono_debug_update_symbol_file): Initialize classes if necessary.
8603
8604 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
8605
8606         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
8607         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
8608
8609 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
8610
8611         * assembly.h: fix function prototype.
8612         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
8613         * mono-endian.h: use const cast.
8614
8615 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
8616
8617         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
8618
8619 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
8620
8621         * loader.c: don't assert when a typeref can't be loaded, give
8622         a chance to the runtime to trow an exception instead.
8623         * loader.h: fix warning.
8624
8625 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
8626
8627         * class.c (mono_class_proxy_vtable): added proxy support
8628
8629 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
8630
8631         * icall.c: removed last of PAL calls, added System.Environment
8632         * file-io.h, file-io.c: MonoIO implementation
8633         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
8634
8635 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
8636
8637         * appdomain.c: do not use the byte marker in ldstr table lookup.
8638         * debug-helpers.c: allow two ':' to separate class and method name.
8639         * object.c: allocate arrays bounds with the GC, too.
8640         * verify: add a few more checks.
8641
8642 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
8643
8644         * reflection.c: output also literal strings. Allocate parameter data
8645         with GC_malloc() (thanks, Martin, for catching this!).
8646
8647 2002-03-26  Martin Baulig  <martin@gnome.org>
8648
8649         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
8650         include the `this' offset in the `param_offsets'.
8651
8652 2002-03-25  Martin Baulig  <martin@gnome.org>
8653
8654         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
8655         mono_debug_get_class() function to get the classes. Added new
8656         relocation types for arrays and strings.
8657         (mono_debug_get_class): New static function to search in all
8658         referenced assemblies for a metadata token.
8659
8660         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
8661
8662 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
8663
8664         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
8665         hold gc-allocated objects. Make the string heap a stream like the
8666         others. Removed duplicated code when writing stream info.
8667         Added asserts to catch possible buffer overflows. Set the sorted map
8668         for tables that need sorting. Added some documentation.
8669
8670 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
8671
8672         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
8673         for interned strings and vtables.
8674
8675 2002-03-24  Martin Baulig  <martin@gnome.org>
8676
8677         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
8678         it in the array since it was created with g_slist_prepend().
8679
8680 2002-03-24  Martin Baulig  <martin@gnome.org>
8681
8682         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
8683         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
8684         (mono_debug_method_from_token): Renamed to
8685         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
8686         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
8687
8688         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
8689         relocation types.
8690
8691         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
8692
8693 2002-03-24  Martin Baulig  <martin@gnome.org>
8694
8695         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
8696         (mono_debug_method_from_token): New func.
8697
8698         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
8699         New interncall, calls mono_debug_local_type_from_signature().
8700         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
8701         calls mono_debug_method_from_token().
8702
8703 2002-03-23  Martin Baulig  <martin@gnome.org>
8704
8705         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
8706         specifies the number of bytes to be converted, not the array size.
8707         Return the number of chars, not the number of bytes.
8708         (ves_icall_iconv_get_chars): The `byteCount' argument
8709         specifies the number of bytes to be converted, not the array size.
8710
8711 2002-03-23  Martin Baulig  <martin@gnome.org>
8712
8713         * reflection.h (MonoReflectionSigHelper): New type.
8714
8715         * reflection.c (mono_reflection_sighelper_get_signature_local),
8716         (mono_reflection_sighelper_get_signature_local): New functions.
8717
8718         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
8719         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
8720         interncalls.
8721
8722 2002-03-23  Martin Baulig  <martin@gnome.org>
8723
8724         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
8725         is_writeable is set.
8726         (mono_raw_buffer_update): New function to write the modified map
8727         back to disk.
8728
8729         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
8730
8731         * debug-symfile.c (mono_debug_update_symbol_file): Call
8732         mono_raw_buffer_update() when done writing.
8733
8734 2002-03-23  Martin Baulig  <martin@gnome.org>
8735
8736         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
8737
8738         * debug-symfile.c: Added support for arguments and local variables.
8739
8740 2002-03-23  Dick Porter  <dick@ximian.com>
8741
8742         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
8743         protected by ifdefs, hence breaking the w32 build.
8744
8745 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
8746
8747         * object.c: implement is_interned() the right way.
8748
8749 2002-03-21  Martin Baulig  <martin@gnome.org>
8750
8751         * debug-symfile.[ch]: New files to handle debugging information
8752         files. There's also support to dynamically update these symbol
8753         files to include machine dependent information.
8754
8755 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
8756
8757         * threads.c (mono_thread_create): new function to create thread
8758         from C
8759
8760 2002-03-20  Martin Baulig  <martin@gnome.org>
8761
8762         * icall.c (ves_icall_InternalInvoke): Create a new object if the
8763         method is a constructor.
8764         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
8765         points to ves_icall_InternalInvoke().
8766
8767 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
8768
8769         * file-io.c: Flush shouldn't throw exceptions.
8770
8771 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
8772
8773         * file-io.c: FileStream flush support; FileSetLength now
8774         restores file pointer.
8775
8776 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
8777
8778         * class.c: set image for pointer classes.
8779
8780 2002/03/19  Nick Drochak <ndrochak@gol.com>
8781
8782         * sysmath.c: Forgot one.
8783
8784 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
8785
8786         * sysmath.c: Avoid redefining existing names.
8787
8788 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
8789
8790         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
8791         handled by runtime as icall rather than dllimport from libm.so
8792         * file-io.c, file-io.h: fixed handle argument type.
8793
8794 2002-03-18  Dick Porter  <dick@ximian.com>
8795
8796         * reflection.c (mono_image_get_type_info): rename interface to
8797         iface, because of "#define interface struct" on windows.
8798
8799 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
8800
8801         * class.c, class.h: rename and export mono_ptr_class_get().
8802         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
8803         * reflection.c, reflection.h, icall.c: better/saner type name
8804         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
8805         method signatures.
8806
8807 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
8808
8809         * class.c (mono_class_init): removed hardcoded GHC_SLOT
8810
8811         * icall.c (ves_icall_InternalInvoke): impl.
8812
8813 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
8814
8815         * reflection.c: output the interface map table, too.
8816
8817 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
8818
8819         * class.c (class_compute_field_layout): separate computation of 
8820         static field layout
8821
8822 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
8823
8824         * icall.c: added System.Buffer support.
8825         * file-io.c: moved file icalls from PAL to FileStream.
8826
8827 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
8828
8829         * icall.c (ves_icall_System_Object_GetHashCode): impl.
8830
8831 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
8832
8833         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
8834
8835 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
8836
8837         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
8838
8839 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
8840
8841         * debug-helpers.{c,h}: moved here from monograph some useful functions
8842         to locate a method by name/signature in a class or image. Included
8843         also a small and flexible IL disassembler.
8844
8845 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
8846
8847         * reflection.c: fixup tokens in methods with small header size, too.
8848
8849 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
8850
8851         * object.c (mono_string_to_utf8): remove assert(!error), instead
8852         print a warning. 
8853
8854 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
8855
8856         * icall.c: update to the new mono_Array_class_get interface.
8857
8858 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
8859
8860         * appdomain.c, object.c: Boehm-GC enable.
8861         * icall.c: make get_data_chunk() support split data requests.
8862         Ensure a class is initialized in more cases. Return only the first
8863         property found in GetProperties() or the compiler gets confused. 
8864         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
8865         * reflection.h, reflection.c: add fixup mechanism for field and method
8866         tokens. Initialize assembly->typeref in a single place. Output
8867         properties after events. Support custom attributes for events, too.
8868         Typo fix for paramter custom attrs.
8869
8870 2002-03-07  Martin Baulig  <martin@gnome.org>
8871
8872         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
8873
8874 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
8875
8876         * class.c (mono_array_class_get): fix. for multi. dim. arrays
8877
8878 2002-03-06  Martin Baulig  <martin@gnome.org>
8879
8880         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
8881         non-zero lower bounds. See testcases #F10-#F13.
8882
8883 2002-03-05  Martin Baulig  <martin@gnome.org>
8884
8885         * exception.c (mono_get_exception_argument_out_of_range): New exception.
8886
8887         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
8888         ves_icall_System_Array_GetValue(), only calculate the absolute array position
8889         here.
8890         (ves_icall_System_Array_SetValue): Likewise.
8891         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
8892         as argument and does the actual work. This function is used when copying a
8893         multi-dimensional array.
8894         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
8895         now do all the widening conversions of value types.
8896         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
8897
8898 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
8899
8900         * class.c: remove some magic numbers and use the smbolic names,
8901         instead. Added init_events() to load event info at class init time.
8902         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
8903         and mono_metadata_methods_from_event().
8904         * reflection.h, reflection.c: added support for writing out the evnets
8905         related information.
8906
8907 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
8908
8909         * reflection.h, icall.c: use a different method (GetInterfaces)
8910         to gather interface info and add isbyref, isprimitive and
8911         ispointer to the ves_icall_get_type_info() return value.
8912
8913 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
8914
8915         * class.h: stared adding support for events.
8916         * icall.c: split find_members implementation. Added debug icall to get
8917         the address of an object.
8918         * reflection.c: handle TypeBuilders in mono_type_get_object().
8919
8920 2002-03-01  Martin Baulig  <martin@gnome.org>
8921
8922         * icall.c (ves_icall_System_Array_GetLength): This must throw an
8923         ArgumentOutOfRangeException(), not an ArgumentException().
8924         (ves_icall_System_Array_GetLowerBound): Likewise.
8925         (ves_icall_System_Array_GetValue): Improved argument checking.
8926         (ves_icall_System_Array_SetValue): Improved argument checking.
8927
8928 2002-03-01  Martin Baulig  <martin@gnome.org>
8929
8930         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
8931         called with invalid arguments rather than just dying with g_assert().
8932         (ves_icall_System_Array_SetValue): Likewise.
8933         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
8934         raise a NotImplementedException instead.
8935         (ves_icall_System_Array_GetLength): Added argument checking.
8936         (ves_icall_System_Array_GetLowerBound): Added argument checking.
8937
8938 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
8939
8940         * object.h (mono_assert): new macros mono_assert and
8941         mono_assert_not_reached
8942
8943 2002-02-28  Martin Baulig  <martin@gnome.org>
8944
8945         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
8946         and "System::String::IsInterned" to "System::String::_IsInterned".
8947
8948 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
8949
8950         * icall.c: remove hacks for typebuilder. Added icall to create a
8951         modified type from a tybebuilder.
8952         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
8953         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
8954         to create a backing MonoClass for a TypeBuilder.
8955
8956 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
8957
8958         * class.c, class.h: more refactoring of class init.
8959         Export mono_class_setup_mono_type() and mono_class_setup_parent().
8960
8961 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
8962
8963         * marshal.c, marshal.h: start of marshaling interface.
8964
8965 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
8966
8967         * icall.c: fix order in assembly qualified name icall.
8968
8969 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
8970
8971         * class.c: do not free str, since we store it in the hash table.
8972         * reflection.h: add label field to MonoILExceptionInfo.
8973         * reflection.c: handle references to more than one assembly. Handle
8974         case when there isn't a module created in the assembly.
8975
8976 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
8977
8978         * class.c: Fix typo. Start refactoring of class init code.
8979
8980 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
8981
8982         * appdomain.c: exit with 1 on error.
8983         * class.c: we already have the name in MonoClassField.
8984         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
8985         MonoStreamHeader instead of an offset of image->raw_metadata.
8986
8987 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
8988
8989         * appdomain.c (mono_init): Be even more descriptive about the error.
8990
8991 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
8992
8993         * appdomain.c: give the user an informative message when corlib can't
8994         be loaded.
8995
8996 2002-02-26  Martin Baulig  <martin@gnome.org>
8997
8998         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
8999         New icall to get the time zone data.
9000
9001 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9002
9003         * reflection.c: set virtual and raw size of section correctly.
9004         * threads.c: transfer domain information to newly created threads.
9005
9006 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
9007
9008         * class.c: when instancing a class in a domain, load the default
9009         vaules for static fields from the constant table. Fix System.Enum to
9010         not be an enum.
9011         * icall.c: implement Object::GetType() internalcall. Implemented
9012         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
9013         Fixed checking of binding flags in find_members().
9014         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
9015         * reflection.c: handle enumerations when writing to the constant
9016         table. Use a different object cache for types.
9017
9018
9019 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
9020
9021         * object.c (mono_object_isinst): fix for arrays
9022
9023         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
9024
9025 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
9026
9027         * object.c: don't use mprotect ()  and fix intern pool hash table
9028         lookup for big endian systems.
9029
9030 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
9031
9032         * icall.c: change type_is_subtype_of () signature.
9033
9034 2002-02-21  Mark Crichton  <crichton@gimp.org>
9035
9036         * rand.c, rand.h: Added random number generator for
9037         System.Security.Cryptography classes.
9038
9039         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
9040
9041         * icall.c: Added System.Security.Cryptography calls.
9042
9043 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
9044
9045         * class.c, icall.c, metadata.c: better support for pointer types.
9046         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
9047         * reflection.c: Add support for getting custom attrs for properties
9048         and simplify some code.
9049
9050 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
9051
9052         * icall.c: change getToken () and add custom attribute GetBlob()helper
9053         method.
9054         * reflection.h: add custom attrs array to the reflection builder structures.
9055         * reflection.c: encode and emit custom attributes for all the relevant
9056         reflection objects. Cache fieldref and methodref tokens. Change
9057         mono_image_create_token() interface to take a MonoDynamicAssembly.
9058         More complete custom attributes decoder. Load custom attributes for
9059         Assembly, Field, Method and Constructor objects, too. Make the
9060         returned array an Attribute[] one, not object[]. Added
9061         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
9062         custom attribute constructor.
9063
9064 2002-02-20  Dick Porter  <dick@ximian.com>
9065
9066         * icall.c:
9067         * rawbuffer.c:
9068         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
9069         problem code out for now).
9070
9071 2002-02-19  Radek Doulik  <rodo@ximian.com>
9072
9073         * object.c (mono_ldstr): use hash table to avoid multiple swapping
9074
9075 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
9076
9077         * icall.c: register the GetCustomAttributes method.
9078         * object.c, object.h: add mono_string_new_len ().
9079         * reflection.h, reflection.c: added mono_runtime_invoke(),
9080         mono_install_runtime_invoke(). Added
9081         mono_reflection_get_custom_attrs () to load custom attributes and
9082         create the attribute objects.
9083
9084 2002-02-19  Dick Porter  <dick@ximian.com>
9085         * threads-dummy-types.c:
9086         * threads-dummy-types.h:
9087         * threads-dummy.c:
9088         * threads-dummy.h:
9089         * threads-pthread-types.c:
9090         * threads-pthread-types.h:
9091         * threads-pthread.c:
9092         * threads-pthread.h:  Deleted obsolete files
9093
9094 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
9095
9096         * class.c (mono_class_vtable): runtime init the class when we
9097         allocate static class data.
9098
9099         * icall.c (ves_icall_System_Array_SetValue): check for null values.
9100
9101         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
9102         and String - but we will need generic marshalling support in the
9103         future. 
9104         (mono_init): set the domain name in a ms compatible way
9105
9106         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
9107         String[].
9108
9109 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
9110
9111         * object.c (mono_array_clone): use alloca() instead of g_malloc  
9112         for sizes
9113
9114         * appdomain.c (mono_domain_unload): impl.
9115
9116 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9117
9118         * appdomain.c, object.c: fix intern pool implementation.
9119         * class.c: fix alignment code.
9120
9121 2002-02-16  Radek Doulik  <rodo@ximian.com>
9122
9123         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
9124         and s2 > s1, just copy lower bytes to be compatible with little
9125         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
9126         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
9127
9128         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
9129         force big_endian to be 1 for big endian machines 
9130         (ves_icall_iconv_new_decoder): ditto
9131
9132 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
9133
9134         * socket-io.c (convert_sockopt_level_and_name): If the system
9135         doesn't define SOL_IP or SOL_TCP, get them by hand using
9136         getprotobyname() and caching the values (because this could be a
9137         slow operation).
9138         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
9139         Use the appropriate struct when the system does support it. Ie,
9140         not all systems have struct ip_mreqn so use struct ip_mreq when
9141         appropriate.
9142
9143 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
9144
9145         * reflection.c: handle finally clauses.
9146
9147 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
9148
9149         * socket-io.c: use g_snprintf() instead of snprintf.
9150
9151 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
9152
9153         * reflection.c (mono_param_get_objects): Cast second argument to
9154         mono_method_get_param_names to a const char** to silence the
9155         compiler warning.
9156
9157         * appdomain.c (mono_domain_assembly_open): Put parens around the
9158         truth statement in the for-loop.
9159
9160         * unicode.c (iconv_convert): Got rid of a compiler warning about
9161         int i being unused when the system has a new iconv.
9162         (iconv_get_length): Same.
9163
9164         * image.c (load_class_names): Cast the second argument to
9165         g_hash_table_insert() to char* to hush compiler warnings about the
9166         arg being a const.
9167         (mono_image_open): Same here.
9168
9169         * socket-io.c: Don't conditionally include sys/filio.h or
9170         sys/sockio.h here anymore since we now get them from
9171         io-layer/io-layer.h
9172         (inet_pton): If the system doesn't support inet_aton, implement
9173         using inet_addr and also #define INADDR_NONE if it isn't defined
9174         by the system.
9175
9176 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
9177
9178         * metadata.c, metadata.h: added function to get packing and size info
9179         of a typedef.
9180         * reflection.h, reflection.c: handle field RVA data. Save info about
9181         the table layout if needed. Assign typedef indexes to all the types
9182         before dumping the info about them to avoid forward reference problems.
9183
9184 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
9185
9186         * socket-io.c (convert_sockopt_level_and_name): ifdef
9187         SO_ACCEPTCONN because it is not defined on my system (old debian)
9188
9189 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9190
9191         * opcode.c: use stddef.h to get NULL.
9192
9193 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
9194
9195         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
9196         for FIONBIO, FIONREAD and SIOCATMARK.
9197         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
9198         define INADDR_NONE and besides, inet_addr() is deprecated and
9199         should not be used. Use inet_pton() instead - it also has the
9200         added bonus that it can easily handle IPv6 addresses as well.
9201         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
9202
9203 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
9204
9205         * decimal.c: remove _MSC_VER conditional.
9206
9207 2002-02-13  Dick Porter  <dick@ximian.com>
9208
9209         * socket-io.c: 
9210         * icall.c: Internal calls for Blocking, Select, Shutdown,
9211         GetSocketOption and SetSocketOption
9212
9213 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9214
9215         * assembly.cs: better resolver: use it instead of some kludgy
9216         code.
9217
9218 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
9219
9220         * reflection.c: the best way to speed-up the compiler is to avoid
9221         infinite loops.
9222
9223 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
9224
9225         * class.c (mono_class_vtable): changed the object layout
9226         (obj->vtable->class). 
9227         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
9228
9229 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9230
9231         * assembly.c: look for assemblies in the assembly dir, too.
9232
9233 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9234
9235         * class.c: fix thinko in mono_class_from_type().
9236
9237 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9238
9239         * exception.h, exception.c: added TypeLoadException.
9240         * object.h, object.c: added mono_array_clone ().
9241         * icall.c: handle throwOnError in AssemblyGetType().
9242         Added Array.Clone().
9243         * opcode.h, opcode.c: use a single value for the opcode val.
9244         Compile fix for non-gcc compilers.
9245
9246 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
9247
9248         * opcodes.c, opcodes.h: export interesting info about opcodes.
9249
9250 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
9251
9252         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
9253         icalls. 
9254
9255         * class.c (class_compute_field_layout): set element_class for enums
9256         (mono_class_create_from_typedef): set element_class for normal classes
9257
9258         * icall.c (ves_icall_System_Enum_get_value): impl.
9259
9260         * class.c (mono_class_create_from_typedef): do not set valuetype
9261         flag for System.ValueType and System.Enum
9262
9263 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
9264
9265         * unicode.c (iconv_convert): fix big endian problem.
9266
9267 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9268
9269         * class.c: add asserts if we are ever going to scribble over memory.
9270         * socket-io.c: not all systems have AF_IRDA defined.
9271
9272 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
9273
9274         * class.c (class_compute_field_layout): do not consider static
9275         fields to compute alignment
9276
9277 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
9278
9279         * appdomain.c (mono_appdomain_get): impl.
9280         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
9281
9282 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
9283
9284         * icall.c: ignore "file://" prefix when loading an assembly.
9285
9286 2002-01-23  Dick Porter  <dick@ximian.com>
9287
9288         * socket-io.c:
9289         * icall.c:
9290         * Makefile.am: Added socket support
9291
9292 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
9293
9294         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
9295         code back.  This should return the assemblies that are loaded by
9296         the runtime on behalf of an application domain. 
9297
9298         The current implementation is still broken, it just returns every
9299         assembly loaded, but until we get real applications domain this
9300         will do.
9301
9302 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
9303
9304         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
9305         AppDomain object.
9306
9307 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
9308
9309         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
9310         the mono_class_from_name lookup.
9311         (ves_icall_get_parameter_info): ditto.
9312         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
9313         method.
9314         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
9315
9316 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9317
9318         * class.c: load also nested classes on class init.
9319         System.ValueType instance methods gets passed boxed
9320         values, unless methods in derived classed that get a pointer to the
9321         data.
9322         * icall.c: use better name parsing code in GetType().
9323         * image.c, image.h: add mono_image_loaded ().
9324         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
9325         * reflection.c, reflection.h: added mono_reflection_parse_type().
9326
9327 2002-01-22  Veronica De Santis <veron78@interfree.it>
9328
9329         * icall.c : Added mapping of internal calls for Manual and Auto reset events
9330         * threads.c : Added the implementation of internal calls for events
9331         * threads.h : Added prototypes of internal calls for events
9332         
9333 2002-01-21  Radek Doulik  <rodo@ximian.com>
9334
9335         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
9336
9337 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
9338
9339         * class.c (mono_class_init): set min_align to 1 (instead of 0)
9340         (mono_class_value_size): use min_align
9341
9342 2002-01-20  Dick Porter  <dick@ximian.com>
9343
9344         * threads.h:
9345         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
9346         so it compiles on w32.
9347
9348 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
9349
9350         * metadata.c (mono_type_stack_size): impl.
9351
9352         * class.c (mono_class_get_field): impl. memberref token
9353
9354 2002-01-16 Veronica De Santis <veron78@@interfree.it>
9355
9356         * icall.h : Added the internal calls mapping for CreateMutex_internal
9357                     and ReleaseMutex_internal.
9358         * threads.h : Added the prototype of mutexes internal calls.
9359         * threads.c : Added the implementations of mutexes internal calls.
9360
9361 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
9362
9363         * metaparse.h: removed unused file.
9364         * reflection.c, reflection.h: added stream_data_align () function 
9365         to align data in streams and keep stream aligned. Add support for
9366         exception support in method headers.
9367
9368 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
9369
9370         * unicode.c: make iconv_convert () return the number of bytess written
9371         in the output buffer.
9372
9373 2002-01-15  Dick Porter  <dick@ximian.com>
9374         * threads.c: Make the runtime's idea of infinite timeouts coincide
9375         with the class library's
9376
9377         Fix a particularly egregious bug in mono_thread_cleanup(). That
9378         code was so utterly bogus it must have been written on a Monday.
9379
9380 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
9381
9382         * reflection.h: add subtypes field to TypeBuilder.
9383         * reflection.c: encode constants for literal fields.
9384         Handle subtypes. Fix user string token (and add a zero byte)
9385         at the end.
9386         
9387 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
9388
9389         * class.c (mono_class_init): bug fix: assign slot numbers for
9390         abstract methods.
9391
9392 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9393
9394         * reflection.c: don't try to output a code RVA for abstract methods.
9395         Small fixes for method header format. Output parameter info to the
9396         ParamDef table. Save method overriding info to MethodImpl table.
9397         Fix property support. Allow typedef.extends to be a type in the
9398         building assembly.
9399         * verify.c: fix off-by-one error.
9400
9401 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
9402
9403         * class.c: fix mono_class_from_mono_type () for szarray types.
9404         Remove unused cache check in mono_class_from_type_spec().
9405         * icall.c: *type_from_name () functions handle simple arrays and byref.
9406         * reflection.c: handle byref and szarray types. Handle methods without
9407         body (gets P/Invoke compilation working). Handle types and fields in
9408         get_token ().
9409         * reflection.h: add rank to MonoTypeInfo.
9410
9411 2002-01-10  Dick Porter  <dick@ximian.com>
9412
9413         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
9414         internal calls
9415
9416 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
9417
9418         * icall.c: initialize class in type_from_handle ().
9419         Loop also in parent classes for get_method ().
9420         * reflection.c: properly encode class and valuetype types.
9421         Start on encoding TypeBuilder types. Handle fieldrefs.
9422         Use correct length when registering a user string.
9423         Handle ConstructorBuilder and MonoMethod in get_token ().
9424         Make mono_type_get_object () aware of cached types.
9425         * object.c: back out change to mono_string_new ().
9426
9427 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
9428         * object.c: mono_string_new should return a NULL when the string 
9429         passed in is NULL -- not try to deference it.
9430         
9431 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
9432
9433         * icall.c: hack to make IsSubType work for TypeBuilders.
9434         * reflection.c: emit constructors before methods.
9435         Retrieve param names in mono_param_get_objects().
9436
9437 2002/01/05  Nick Drochak  <ndrochak@gol.com>
9438
9439         * Makefile.am: fix list of headers and sources so automake 1.5
9440         doesn't complain. Removed \# at end of list.
9441
9442 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
9443
9444         * reflection.c: get token for a method ref. Set return type of
9445         constructor to void.
9446         * loader.c: debug message.
9447         * class.c: typo fix.
9448
9449 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
9450
9451         * icall.c: fix array init with rank > 1. FindMembers
9452         loops in parent class as well.
9453         * image.c: do not insert nested types in name cache.
9454         * reflection.c: warning fix.
9455         * reflection.h: add override method (for interface impl).
9456
9457 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
9458
9459         * metadata.c: fix customattr decoding.
9460
9461 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
9462
9463         * rawbuffer.cs: Added native Win32 implementation, avoids using
9464         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
9465
9466 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
9467
9468         * class.c: make the low-level routines handle the cache.
9469
9470 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
9471
9472         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
9473
9474 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
9475
9476         * class.c: fix mono_array_element_size() for objects.
9477         * class.h, class.c: add properties to MonoClass and load them
9478         at init time.
9479         * icall.c: check with isinst() when assigning a value to an array
9480         instead of requiring the classes to match exactly.
9481         Implemented icall for System.Type::GetType().
9482         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
9483         enums. Handle bindingflags when looking for methods and fields.
9484         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
9485         and mono_metadata_methods_from_property().
9486         * reflection.h, reflection.c: added structures for propreties,
9487         parameters and enums. Implemented mono_property_get_object() and
9488         mono_param_get_objects().
9489
9490 2001-12-18  Dick Porter  <dick@ximian.com>
9491
9492         * file-io.c: Use mono_string_to_utf16() instead of
9493         mono_string_chars()
9494
9495         * object.c: Added mono_string_to_utf16(), which copies the non
9496         NULL-terminated MonoString into a new double-null-terminated
9497         buffer.
9498
9499 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
9500
9501         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
9502
9503 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
9504
9505         * file-io.c: raise exceptions if handle is invalid.
9506
9507 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
9508
9509         * assembly.c: yet another check for mscorlib.
9510         * class.c, class.h: load nesting info for classes.
9511         * icall.c: many new functions to support the Reflection classes.
9512         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
9513         * reflection.h, reflection.c: mono_image_create_token(),
9514         mono_assembly_get_object(), mono_type_get_object(),
9515         mono_method_get_object(), mono_field_get_object(): methods to return
9516         objects that parallel the C representation of assemblies, types,
9517         methods, fields.
9518
9519 2001-12-11  Dick Porter  <dick@ximian.com>
9520
9521         * icall.c:
9522         * file-io.c: Internal calls for file IO.
9523
9524 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
9525
9526         * tabledefs.h: missing FileAttributes.
9527         * verify.h, verify.c: use is_valid_string () to simplify and check for
9528         valid strings more correctly. Fix warnings and speeling.
9529         Check more tables: Filed, File, ModuleRef, StandAloneSig.
9530         Check code: branches, maxstack, method calls.
9531
9532 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
9533
9534         * object.c (mono_object_allocate): removed static, so that the jit
9535         can allocate value types.
9536
9537         * icall.c (ves_icall_System_DateTime_GetNow): impl.
9538
9539 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
9540
9541         * class.c: init enum types right away and register the
9542         token->MonoClass map in mono_class_create_from_typedef ().
9543         * verify.h, verify.c: first cut of the verifier.
9544         * pedump.c: add --verify switch to verify metadata tables.
9545         * tabledefs.h: add some missing enums.
9546
9547 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
9548
9549         * class.c (mono_install_runtime_class_init): impl.
9550         (mono_class_init): renamed mono_class_metadata_init to
9551         mono_class_init, also removed the metadata_inited flag
9552
9553         * object.c (mono_object_isinst): use faster algorithm
9554
9555 2001-11-30  Radek Doulik  <rodo@ximian.com>
9556
9557         * mono-endian.h: reverted last change
9558         added function prototypes
9559
9560         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
9561         add mono-endian.c back
9562
9563         * mono-endian.c: returned back, as Paolo pointed out, it's needed
9564         for unaligned access, I've mistaked it with endianess. I am
9565         sorry.
9566         (mono_read16): fix reverted endianess
9567         (mono_read64): ditto
9568         (mono_read32): ditto
9569
9570 2001-11-30  Dick Porter  <dick@ximian.com>
9571
9572         * exception.c: Implement mono_exception_from_name()
9573
9574 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
9575
9576         * metadata.h, metadata.c: remove params_size and locals_size and their
9577         calculation from the metadata code: they are only usefult to the
9578         interp.
9579
9580 2001-11-29  Radek Doulik  <rodo@ximian.com>
9581
9582         * object.c (mono_ldstr): swap bytes here, it's probably not the
9583         best place, but works for me now, I'll redo it once I know mono
9584         better, also note that I add PROT_WRITE and don't reset back, also
9585         note that it's only affects big endians, so x86 should be OK
9586
9587         * mono-endian.h (read16): use just glib macros for both endians
9588
9589         * mono-endian.c: removed as glib macros are used in in
9590         mono-endian.h so we don't need to care about endianess for read
9591         macros as glib does that for us already
9592
9593 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
9594
9595         * class.h, class.h: take minimum alignment into consideration so
9596         that the fields of a class remain aligned also when in an array.
9597
9598 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
9599
9600         * loader.h, loader.c: add mono_method_get_param_names().
9601         * class.c: 0-init class fields.
9602
9603 2001-11-26  Dick Porter  <dick@ximian.com>
9604
9605         * icall.c:
9606         * threads-types.h:
9607         * threads.c: New file that handles System.Threading on all platforms
9608
9609         * object.c: 
9610         * object.h: Remove the synchronisation struct from MonoObject,
9611         replace it with a pointer that gets initialised on demand
9612
9613         * Makefile.am: Replace all the system-specific threading code with
9614         a single file that uses the new wrapper library
9615
9616 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
9617
9618         * class.c, class.h: add mono_install_trampoline() so that the runtime
9619         can register a function to create a trampoline: removes the ugly
9620         requirement that a runtime needed to export arch_create_jit_trampoline.
9621         * object.h, object.c: added mono_install_handler() so that the runtime
9622         can install an handler for exceptions generated in C code (with
9623         mono_raise_exception()). Added C struct for System.Delegate.
9624         * pedump.c: removed arch_create_jit_trampoline.
9625         * reflection.c: some cleanups to allow registering user strings and
9626         later getting a token for methodrefs and fieldrefs before the assembly
9627         is built.
9628         * row-indexes.h: updates and fixes from the new ECMA specs.
9629
9630 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
9631
9632         * class.h, class.c: add enum_basetype field to MonoClass.
9633         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
9634         to get index in the constant table reated to a field, param or
9635         property.
9636         * reflection.h, reflection.c: handle constructors. Set public-key and
9637         version number of the built assembly to 0.
9638         * row-indexes.h: update from new ECMA spec.
9639
9640 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
9641
9642         * class.h, class.c: add a max_interface_id to MonoClass.
9643         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
9644         since it's used to do that. Added mono_type_type_from_obj().
9645         Make GetType() return NULL instead of segfaulting if the type was not
9646         found. Handle simple arrays in assQualifiedName.
9647         * object.h: add a struct to represent an Exception.
9648         * reflection.c: output call convention in method signature.
9649         Add code to support P/Invoke methods and fixed offsets for fields.
9650
9651 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
9652
9653         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
9654         the value.
9655         * icall.c: use mono_array_addr instead of array->vector: fixes the
9656         reflection image writing.
9657         * reflection.c: init call convention byte to 0 in method signature.
9658         Encode the property signature. Don't output property-related methods
9659         twice. Really process the properties for a type (don't cast a field to
9660         a property, my mom always told me that).
9661         Fix 64 bit issues in pointer alignment in a different and more
9662         readable way.
9663
9664 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
9665
9666         * loader.h: Removed type class from MonoDefaults, added monotype
9667
9668         * loader.c: Loaded MonoType, removed loading of Type
9669
9670         * icall.c (my_mono_new_object): Now returns a System.MonoType,
9671         and fills in System.Type._impl with a RuntimeTypeHandle rather
9672         than the actual MonoClass *
9673
9674         (ves_icall_type_from_handle): change from type_class to
9675         monotype_class
9676
9677         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
9678         implemented
9679
9680         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
9681         implemented
9682
9683         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
9684
9685         (ves_icall_System_Reflection_Assembly_GetType): implemented
9686
9687         (ves_icall_System_MonoType_assQualifiedName): implemented
9688
9689         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
9690
9691 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
9692
9693         * assembly.c (mono_assembly_open): Implement a cache for the
9694         assemblies. 
9695
9696         (mono_assembly_close): only destroy the assembly when the last
9697         reference is gone.
9698         
9699 2001-11-09  Dick Porter  <dick@ximian.com>
9700
9701         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
9702
9703 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
9704
9705         * class.c (mono_class_metadata_init): bug fix: compute the right slot
9706
9707 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
9708
9709         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
9710         from Martin Weindel.
9711         * object.h: add mono_string_chars ().
9712
9713 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
9714
9715         * reflection.c (build_compressed_metadata): Eliminates warnings
9716         and uses 64-bit clean code.
9717
9718         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
9719         (mono_type_equal): Change signature to eliminate warnings.
9720
9721 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
9722
9723         * icall.c, loader.c: remove the internalcall array constructors.
9724         Changes to match the new MonoArray structure.
9725         * object.h, object.c: an array object doesn't allocate an extra
9726         vector. Add mono_array_new_full () to create jagged arrays easily.
9727
9728 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
9729
9730         * metadata.h, metadata.c: add mono_metadata_field_info () to
9731         retreive all the info about a field from vairous tables.
9732         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
9733         * class.h, class.c: augment MonoClassField with more info.
9734         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
9735         policy and load a field's RVA if needed.
9736
9737 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
9738
9739         * class.c (mono_class_metadata_init): create a trampoline for all
9740         virtual functions instead of actually compiling them.
9741
9742 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
9743
9744         * class.h, class.c: include name in MonoClassField.
9745         * class.c: fix fundamental type of System.Object and System.String.
9746         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
9747         tokens in ldtoken.
9748         * icall.c: remove internalcalls for the Reflection stuff that is now
9749         done in C# code.
9750         * loader.c: mono_field_from_memberref () implementation.
9751         * mono-endian.c: thinko (s/struct/union/g).
9752         * object.c, object.h: make the mono_string_* prototypes actually use
9753         MonoString instead of MonoObject.
9754         * reflection.c, reflection.h: updates for changes in the reflection
9755         code in corlib: we use C structures that map to the actual C# classes.
9756         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
9757         fat method header if needed and use the info from the ILGenerator for
9758         methods. Handle fields in types. Misc fixes.
9759
9760 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
9761
9762         * class.c (mono_class_metadata_init): bug fix: always allocate
9763         space for static class data
9764
9765 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
9766
9767         * class.c (mono_compute_relative_numbering): use relative
9768         numbering to support fast runtime type checks.
9769
9770 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
9771
9772         * class.c (mono_class_create_from_typeref): added debugging output
9773         to print class name when MonoDummy is returned instead of real class
9774
9775 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
9776
9777         * class.c (mono_class_metadata_init): interface offset table now
9778         contains pointers into the vtable - this is more efficient for the jit
9779
9780 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
9781
9782         * class.c (mono_class_metadata_init): use a temporary vtable (the
9783         old algorithm only worked for the interpreter, but not for the jit)
9784
9785 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
9786
9787         * loader.c (method_from_memberref): use mono_class_get to get the
9788         class of an array instead of using System.Array directly.
9789         (mono_get_method): also add MEMBERREF methods to the method cache
9790         which usefull for arrays.
9791
9792 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
9793
9794         * pedump.c (arch_compile_method): added to compute vtable entry
9795
9796         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
9797         number of interfaces.
9798         
9799         * class.h: merged MonoArrayClass into MonoClass
9800
9801         * class.c (mono_class_create_from_typedef): compute the vtable size and
9802         allocate space to include the vtable inside MonoClass
9803         (mono_class_metadata_init): initialize the vtable
9804
9805 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
9806
9807         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
9808         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
9809         * image.c: endian fixes by Laurent Rioux.
9810         * object.h, object.c: rename MonoStringObject to MonoString and
9811         MonoArrayObject to MonoArray. Change some function names to conform to
9812         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
9813         guint16* as first argument, so don't use char*.
9814         Provide macros to do the interesting things on arrays in a portable way.
9815         * threads-pthread.c: updates for the API changes and #include <sched.h>
9816         (required for sched_yield()).
9817         * icall.c: updates for the API changes above.
9818         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
9819         platforms that need them.
9820
9821 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
9822
9823         * class.c: set the correct type for all the fundamental
9824         type when loading the class.
9825
9826 2001-10-05  Dick Porter  <dick@ximian.com>
9827
9828         * threads-pthread.c (pthread_mutex_timedlock): Simple
9829         compatibility version for C libraries that lack this call.
9830
9831 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
9832
9833         * class.c: MonoTypes stored in MonoClass are stored as
9834         fundamental MonoTypes when the class represents a
9835         fundamental type (System.Int32, ...).
9836         The TypeHandle return by ldtoken is a MonoType*.
9837         * icall.c: ves_icall_get_data_chunk () write out all the
9838         PE/COFF stuff. Implement ves_icall_define_method (),
9839         ves_icall_set_method_body (), ves_icall_type_from_handle ().
9840         * image.c: properly skip unknown streams.
9841         * loader.h, loader.c: add type_class to mono_defaults.
9842         * metadata.c, metadata.h: export compute_size () as
9843         mono_metadata_compute_size () with a better interface.
9844         Typo and C&P fixes.
9845         * pedump.c: don't try to print the entry point RVA if there is no entry point.
9846         * reflection.c, reflection.h: many cleanups, fixes, output method
9847         signatures and headers, typedef and typeref info, compress the metadata
9848         tables, output all the heap streams, cli header etc.
9849         * row-indexes.h: typo fixes.
9850
9851 2001-10-04  Dick Porter  <dick@ximian.com>
9852
9853         * object.h: Add a synchronisation mutex struct to MonoObject
9854
9855         * object.c (mono_new_object): Initialise the object
9856         synchronisation mutexes
9857
9858         * icall.c: System.Threading.Monitor internal calls
9859         
9860         * threads-pthread.h:
9861         * threads-pthread.c: System.Threading.Monitor internal calls
9862
9863         * threads-types.h: New file, includes the system-specific thread
9864         structures
9865         
9866         * threads-pthread-types.h:
9867         * threads-pthread-types.c: New files, handle pthread-specific
9868         synchronisation types
9869
9870         * threads-dummy-types.h: 
9871         * threads-dummy-types.c: New files of dummy support for
9872         thread-specific types
9873
9874         * metadata.c:
9875         * image.c:
9876         * pedump.c: include mono-endian.h not endian.h
9877         
9878         * Makefile.am: More threads files.
9879         Name mono-endian.h not endian.h
9880
9881 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
9882
9883         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
9884         stuff and implement a few more bits.
9885         * icall.c: a field needs to be dereferenced twice. Do not use the same
9886         name for two variables in the same scope.
9887         * image.c, image.h: cleanups.
9888
9889 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
9890
9891         * class.c (mono_class_metadata_init): bug fix: compute the right size
9892
9893 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
9894
9895         * icall.c: implemented some of the Reflection internalcalls.
9896         * image.c, image.h: start writing out the PE/COFF image.
9897         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
9898         that does the reverse than decode_blob_size ().
9899         * object.c: use mono_metadata_encode_value (). Move here
9900         temporary implementation of mono_string_to_utf8 ().
9901         * rawbuffer.c: make malloc_map static.
9902
9903 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
9904
9905         * metadata.c: fix type comparison for arrays.
9906         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
9907         Added a couple of new classes to monodefaults.
9908         * icall.c: added a couple of Reflection-related internalcalls.
9909         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
9910         Added a byval_arg MonoType to MonoClass.
9911
9912 2001-09-28  Dick Porter  <dick@ximian.com>
9913
9914         * icall.c:
9915         * threads-pthread.h: 
9916         * threads-pthread.c: Implemented internal calls for
9917         LocalDataStoreSlot operations.  Applied mutexes around all shared
9918         data.  Reworked the thread creation and Start() operations to
9919         avoid a race condition.
9920         
9921         * threads-dummy.h:
9922         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
9923
9924 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
9925
9926         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
9927
9928 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
9929
9930         * class.c, loader.c: warn and return NULL instead of erroring out.
9931         * icall.c: added System.AppDomain::getCurDomain().
9932         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
9933
9934 2001-09-25  Dick Porter  <dick@ximian.com>
9935
9936         * threads-pthread.h:
9937         * threads-pthread.c: Implemented timed thread joining and added
9938         System.Threading.Thread::Join_internal internal call
9939
9940         * icall.c: Added System.Threading.Thread::Join_internal internal call
9941
9942         * threads-dummy.h:
9943         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
9944
9945 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
9946
9947         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
9948         mono_string_intern () to implement the semantics of the ldstr opcode
9949         and the interning of System.Strings.
9950         * icall.c: provide hooks to make String::IsIntern and String::Intern
9951         internalcalls.
9952
9953 2001-09-23  Dick Porter  <dick@ximian.com>
9954
9955         * threads-dummy.c: 
9956         * threads-dummy.h: New files of dummy threading routines
9957
9958         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
9959         support code based on system specifics
9960
9961         Rename PTHREAD_LIBS to THREAD_LIBS
9962         
9963 2001-09-23  Dick Porter  <dick@ximian.com>
9964
9965         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
9966         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
9967         internal calls.
9968         (mono_thread_init): Set up a Thread object instance to return when
9969         the main thread calls Thread.CurrentThread
9970         (mono_thread_cleanup): Wait for all subthreads to exit
9971
9972         * icall.c: New internal calls for System.Threading.Thread::Sleep
9973         (including Schedule) and CurrentThread
9974
9975         * threads.h: New file, to insulate thread-specific stuff from the
9976         rest of the code
9977
9978 2001-09-21  Dick Porter  <dick@ximian.com>
9979
9980         * threads-pthread.h: 
9981         * threads-pthread.c: New file, for handling pthreads-style
9982         threading support.  Start() now starts a new thread and executes
9983         the ThreadStart delegate instance.
9984
9985         * icall.c: Added the internalcall for
9986         System.Threading.Thread::Start_internal
9987
9988         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
9989
9990 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
9991
9992         * loader.c: work around the different signatures for delegates
9993         constructors csc generates in compiled code vs the ones compiled in mscorlib.
9994
9995 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
9996
9997         * class.h, class.c: add mono_class_get_field_from_name ().
9998         * *: Fix C comments and other ANSI C issues.
9999
10000 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
10001
10002         * endian.h, assembly.c: fix some endianness issues.
10003
10004 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
10005
10006         * loader.h, load.c: add delegate_class to mono_defaults.
10007         Handle runtime provided methods in mono_get_method ().
10008
10009 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
10010
10011         * loader.c (mono_get_method): use pinvoke for internal call
10012
10013         * icall.c: use pinvoke for internal call
10014
10015         * loader.c (method_from_memberref): set the method name
10016
10017 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
10018
10019         * metadata.c: help the compiler generate better code for
10020         mono_class_from_mono_type ().
10021
10022 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
10023
10024         * class.c (mono_class_metadata_init): delayed computing of the
10025         class size to mono_class_metadata_init ()
10026
10027 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
10028
10029         * class.c, class.h: add an interfaces member to MonoClass.
10030         * image.c, image.h: add assembly_name field to MonoImage
10031         from the assembly table.
10032         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
10033
10034 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
10035
10036         * class.c: Handle Array in mono_class_from_mono_type ().
10037         * metadata.c, pedump.c: some endian fixes.
10038
10039 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
10040
10041         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
10042         * metadata.c: fix small problem introduced with the latest commit.
10043
10044 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
10045
10046         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
10047         We don't need a MonoMetadata pointer anymore to compare signatures in
10048         mono_metadata_signature_equal (), update callers.
10049         Reduced memory usage an number of allocations for MonoMethodHeader and
10050         MonoMethodSignature.
10051
10052 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
10053
10054         * metadata.c: added compare for szarray.
10055
10056 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
10057
10058         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
10059         and add a couple more types to it and mono_defaults. Give an hint on
10060         classes that need implementing in our corlib and are referenced
10061         in mscorlib.
10062
10063 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
10064
10065         * class.h, class.c: keep track if a class is also an Enum.
10066         * loader.c: Implement a couple more types for use in libffi
10067         marshalling. Gives better diagnostics when failing to dlopen
10068         a library. Set method->klass for P/Invoke methods, too.
10069
10070 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
10071
10072         * class.c, class.h: add a MonoType this_arg to MonoClass that
10073         represents a pointer to an object of the class' type that
10074         can be used by the interpreter and later the type cache.
10075         Add best guess alignment info for valuetype objects.
10076
10077 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
10078
10079         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
10080         into MonoType: one less level of indirection and allocation and
10081         simplifies quite a bit of code. Added cache for MonoTypes that are
10082         used frequently, so that we don't need to allocate them all the time.
10083
10084 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
10085
10086         * class.c (mono_class_create_from_typedef): System.Enum is also a
10087         value type, although it does not derive from System.ValueType
10088         (maybe a bug in the ms compiler?)
10089
10090         * metadata.c (mono_type_size): return the right size for value types
10091
10092         * loader.c (mono_get_method): only initialize method header if not abstract
10093
10094         * class.c (mono_class_from_mono_type): use mono_default values. 
10095
10096 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
10097
10098         * *: use MonoClass pointers instead of <type_tokens>
10099         
10100         * class.h: new flag: metadata_inited.
10101
10102         * class.c (mono_class_metadata_init): impl.
10103         (mono_class_instance_size): impl.
10104         (mono_class_data_size): impl.
10105
10106 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
10107
10108         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
10109         MonoClass now has the name and name_space fields. 
10110         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
10111         mono_get_method () takes and optional MonoClass as argument.
10112         Removed mono_typedef_from_name() and added mono_class_token_from_name()
10113         instead that takes advantage of a map from class names to typedef
10114         tokens in MonoImage.
10115
10116 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
10117
10118         * metadata.c: zero is not a valid alignment boundary.
10119         Merge MONO_TYPE_VOID in default decoding code.
10120
10121 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
10122
10123         * image.h: merged MonoMetadata into MonoImage
10124
10125         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
10126         identify the type of elements.
10127
10128 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
10129
10130         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
10131         * cil-coff.h: split MonoMSDOSHeader and add size info.
10132         * image.c: add some consistency checks.
10133         * metadata.c: fix row size computation: one programmer
10134         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
10135         add explanation for the locator routine.
10136         Fix decoding of size in method header.
10137         
10138 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
10139
10140         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
10141         (g_concat_dir_and_file): Bring g_concat_dir_and_file
10142         function from gnome-libs.  This uses the right path separator
10143         based on the OS, and also works around a bug in some systems where
10144         a double slash is not allowed. 
10145         (default_assembly_name_resolver): Use g_concat_dir_and_file
10146         (mono_assembly_open): ditto.
10147
10148 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
10149
10150         * metadata.c (mono_metadata_signature_equal): impl.
10151
10152         * *: void is now a realy MonoType (instead of using NULL)
10153         
10154         * metadata.c (do_mono_metadata_parse_type): use
10155         mono_metadata_parse_type to parse void value.
10156
10157 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
10158
10159         * metadata.c, metadata.h: in the signature and method header store
10160         only the space required for holding the loca vars and incoming arguments.
10161
10162 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
10163
10164         * metadata.c (do_mono_metadata_parse_type): treat void like any
10165         other type (instead of assigning NULL);
10166
10167 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
10168
10169         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
10170
10171 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
10172
10173         * image.c (do_mono_image_open): added a cache for arrays.
10174
10175 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
10176
10177         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
10178         decode a single column from a row in a metadata table and changes
10179         to take advantage of it in the typedef locator (gives a nice speed up).
10180         Store offset info for function params.
10181
10182 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
10183
10184         * image.h (MONO_IMAGE_IS_CORLIB): removed 
10185
10186 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
10187
10188         * assembly.c: how could mono_assembly_close () had ever worked?
10189         * metadata.c, metadata.h: provide offset info for local vars.
10190         Implement mono_type_size () to take care of alignment as well
10191         as size (it was mono_field_type_size in cli/class.c before).
10192
10193 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
10194
10195         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
10196
10197         * assembly.h (CORLIB_NAME): set to corlib.dll
10198
10199         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
10200
10201 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
10202
10203         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
10204         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
10205         tokentype.h: massive namespace cleanup.
10206
10207 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
10208
10209         * metadata.h, metadata.c: decode exception clauses when parsing method header.
10210
10211 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
10212
10213         * metadata.c (mono_metadata_free_type): added check for type !=
10214         NULL (void) before calling mono_metadata_free_type()
10215
10216 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
10217
10218         * metadata.h, row_indexes.h: added header with enumerations to use
10219         to index in the columns from tables in metadata and to decode coded
10220         tokens: we should start using this instead of embedding magic numbers
10221         all over the code.
10222
10223 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
10224
10225         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
10226         Move metadata_t info from cli_image_info_t to MonoImage, where
10227         it's easily accessible. Changed all the uses accordingly.
10228         Added the method and class caches to MonoImage.
10229         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
10230         and mono_metadata_decode_value () signature to be more consistent
10231         with the other parse functions (and simplify code). Taken advantage
10232         of zero-length array allocation with GCC. Removed reduntant (and
10233         wrong) MonoFieldType struct and use MonoParam instead. Changed
10234         mono_metadata_parse_field_type () to use common code for parsing.
10235         Added mono_metadata_typedef_from_field () and
10236         mono_metadata_typedef_from_method () to lookup a typedef index from a
10237         field or method token.
10238         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
10239
10240 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
10241
10242         * metadata.c (mono_metadata_parse_field_type): Implement. 
10243         (do_mono_metadata_parse_type): Split engine from
10244         mono_metadata_parse_type, so that we can create smaller structures
10245         for things that just have one pointer to the MonoType (look at
10246         the MonoFieldType)
10247
10248 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
10249
10250         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
10251         as Jan Gray found out, it is incorrect. 
10252
10253 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
10254
10255         * assembly.c: Implement asssembly loading.  This loads an image
10256         and loads all the referenced assemblies.  Come to think of it, we
10257         could always do lazy loading of the assemblies. 
10258
10259         * image.c (mono_image_open): Keep loaded images in a hashtable.
10260
10261         * image.h (MonoImage): Add reference count.
10262
10263 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
10264
10265         * assembly.c (mono_assembly_open): Keep track of the file name in
10266         case the assembly has no ASSEMBLY table.
10267
10268         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
10269         from get.c here.
10270
10271 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
10272
10273         * metadata.c, metadata.h: decode local vars in method header
10274         parse function. Change callers accordingly.
10275
10276 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
10277
10278         * metadata.h, cil-coff.h: protect against multiple inclusion.
10279         Added some new structures to hold information decoded from metadata:
10280         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
10281         and relevant decoding/free functions.
10282         * metadata.c: implement decoding functions. Add warning for out of bounds
10283         index in mono_metadata_locate(). Implement mono_get_method () to retreive
10284         all the info about a method signature and invocation. Remove check on
10285         uninitialized local var in parse_mh() and fix memory leak.
10286
10287 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
10288
10289         * metadata.h: More macros.
10290
10291         * tokentype.h: New file.
10292
10293 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
10294
10295         * assembly.c: added a consistency check and initialize
10296         some structures with g_new0().
10297         * metadata.c: fixed a couple more bugs in table size computation
10298         and add other checks for out-of bound access to metadata.
10299
10300 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
10301
10302         * metatada.c: fix bugs computing table sizes. Spew a
10303         warning when index in string heap is out of bounds.
10304
10305 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
10306
10307         * metadata.h: Add a couple of macros to manipulate tokens. 
10308
10309 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
10310
10311         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
10312         cli_section_tables).
10313
10314 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
10315
10316         * metadata.c (mono_metadata_user_string): New function, provides
10317         access to the UserString heap. 
10318
10319 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
10320
10321         * metadata.c: Add inline documentation.
10322
10323 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
10324
10325         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
10326         files. 
10327
10328 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
10329
10330         * typeattr.h: New file, TypeAttribute flags. 
10331
10332 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
10333
10334         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
10335         mono_assembly_ensure_section): Section loading code.
10336         (load_section_tables): Load the sections.
10337
10338         * mono/metadata/metadata.c (mono_metadata_locate_token,
10339         mono_metadata_locate): Functions to locate the information
10340         definition given a token or a table and an index.
10341         (mono_metadata_compute_table_bases): New.
10342         (compute_size): New function to compute the sizes of the various
10343         tables.
10344
10345         * mono/metadata/metadata.h: Finish listing the different index
10346         types. 
10347
10348         * mono/metadata/pedump.c: Improve to dump new information.
10349
10350 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
10351
10352         * mono/metadata/metadata.c: Entered all the tables matching
10353         Beta2. 
10354
10355         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
10356
10357
10358
10359
10360
10361
10362
10363