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