2003-01-27 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / metadata / ChangeLog
1 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
2
3         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
4         exception instead of going into an infinite loop on dates which it 
5         can't yet handle.
6
7         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
8         out-of-range exception if needed.
9
10         * class.c (mono_class_setup_vtable): allow a virtual method to provide
11         an implementation for an interface method and to override an inherited
12         method at the same time. 
13         Imagine a scenario when a virtual method is used to override a
14         virtual abstract method in a parent class, and this same method 
15         provides an implementation for an method inherited from an interface. 
16         In this case, the interface resolution code will set im->slot, which 
17         means that the virtual method override pass will skip this method 
18         which means a pointer to the abstract method inherited from the parent
19         will remain in the vtable of this non-abstract class.
20
21         * class.c: (mono_class_setup_vtable): continue search for a real 
22         method if only an abstract method is found.     
23
24 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
25
26         * reflection.c: add size to encoding for ByValStr and ByValArray
27         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
28
29 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30
31         * class.c (mono_class_setup_vtable): pass the override info as an
32         argument.
33
34         * class.c (mono_class_setup_vtable): set the slot of overriding methods
35         correctly.
36         
37         * reflection.c (ensure_runtime_vtable); add support for method 
38         overrides.
39         
40 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
41
42         * reflection.c (resolution_scope_from_image): Hack to work to work with
43         dynamic assemblies.
44
45         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
46         added a 'force_ref' argument to force this function to allways return 
47         a TypeRef. This is needed by mono_image_get_memberref_token ().
48         
49 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
50
51         * reflection.c (mono_image_get_type_info): interfaces really don't have
52         a parent.
53
54         * reflection.c (mono_image_basic_init): fill out missing fields of
55         image structure.
56
57         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
58         dynamic assemblies. This is required so dynamic assemblies show up in
59         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
60         Type::GetType() etc. This is consistent with MS behaviour.
61
62         * image.c image.h reflection.c: add newly created classes to the name 
63         cache so mono_class_get () will find them.      
64
65 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
66
67         First part of changes to get IKVM.NET running under mono.
68         
69         * appdomain.h, appdomain.c: added new function 
70         mono_domain_try_type_resolve() which will emit TypeResolve events. 
71         This function will call AppDomain::DoTypeResolve to do the actual work.
72
73         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
74         moved existing code dealing with dynamic tokens to a new function 
75         called mono_reflection_lookup_dynamic_token (). This function will 
76         raise TypeResolve events when appropriate. Since reflection.c is not 
77         part of libmetadata, a new hook function called 
78         mono_lookup_dynamic_token() is added to class.c which will call this.
79
80         * assembly.h assembly.c: make the invoke_load_hook function public,
81         so it can be called for dynamic assemblies.
82
83         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
84
85         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
86         type isn't found.
87
88         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
89         MonoGHashTable, since it contains pointers to objects which the GC 
90         needs to track.
91
92         * assembly.c (search_loaded): remove unused variable.
93         
94 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
95
96         * object.c: fixed issue exposed by gcc-generated IL programs
97         that use RVA data for pointers.
98
99 2003-01-25  Martin Baulig  <martin@ximian.com>
100
101         * threads.c (start_wrapper): Moved the initialization of
102         `start_func' above the mono_new_thread_init() call to which we
103         pass it as argument.
104
105 2003-01-24  Martin Baulig  <martin@ximian.com>
106
107         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
108         the MonoThread pointer.
109
110 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
111
112         * icall.c: Rename `PowImpl' to Pow.
113
114 2003-01-23  Dick Porter  <dick@ximian.com>
115
116         * threads.c (start_wrapper): Create a Thread object if needed, so
117         the Main() thread can do the class initialisation in a subthread
118         that has been set up to allow managed code execution.
119
120         Pass the thread ID instead of the MonoThread pointer to the thread
121         start and attach callbacks.  This change is required, because the
122         jit thread start callback must be called _before_ the Thread
123         object can be created.
124         
125         (mono_thread_init): Removed much object creation code that is no
126         longer needed.  No managed code is called from here now.
127
128         * object.c (mono_runtime_exec_managed_code): Create a subthread
129         for Main, and call back to the runtime to use it.
130         Set the exit code when Main exits.
131
132         * gc.c: Make sure domain finalisation happens in a subthread.
133         Re-enable threaded GC, fixing bug 31333 (again).
134
135         * environment.c: System.Environment internall calls (so far just
136         ExitCode is here, the others are still in icall.c)
137
138         * appdomain.c (mono_runtime_cleanup): All threads running managed
139         code should have finished before mono_runtime_cleanup() is
140         reached, so no need to clean up threads.
141
142 2003-01-22  Martin Baulig  <martin@ximian.com>
143
144         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
145         `gpointer func' arguments.      
146         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
147         but added `MonoThread *thread' argument.
148         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
149
150         * threads.c (mono_new_thread_init): Added `gpointer func' argument
151         and pass it to the mono_thread_start_cb callback.
152         (mono_install_thread_callbacks): New public function to install a
153         set of callbacks which are set by the debugger.
154         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
155
156 2003-01-22  Martin Baulig  <martin@ximian.com>
157
158         * Makefile.am: Install debug-mono-symfile.h.
159
160 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
161
162         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
163
164 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
165
166         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
167         * class.c (mono_ptr_class_get): correctly set access levels of pointers
168         (mono_array_class_get): correctly set access levels of arrays
169
170 2003-01-20      Patrik Torstensson
171         * image.h (MonoAssemblyName): changed major, minor, build, revision
172         from signed to unsigned.
173
174 2003-01-20  sean kasun <skasun@azstarnet.com>
175
176         * reflection.c (load_cattr_value): Now this handles
177         MONO_TYPE_SZARRAY.  Fixes bug #35629
178
179 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
180
181         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
182         integer value
183
184 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
185
186         * decimal.c: fixed bug #26056.
187
188 2003-01-17  Martin Baulig  <martin@ximian.com>
189
190         * gc.c: Raise an ExecutionEngineException instead of using g_error().
191
192 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
193
194         * exception.[ch]:
195         (mono_get_exception_type_initialization): new function.
196
197         * object.c: throw a TypeInitializationException when an exception is
198         thrown invoking the class constructor.
199
200 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
201
202         * reflection.c: fixed attribute reading.
203
204 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
205
206         * icall.c:
207         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
208         provided, look for the type in the calling assembly and then in
209         mscorlib; if the assembly name is provided, only try that one.
210
211 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
212
213         * object.c: register the vtable before there is a chance it's
214         queried again recursively.
215
216 2003-01-13  Duncan Mak  <duncan@ximian.com>
217
218         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
219         gc-internal.h. 
220         
221 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
222
223         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
224
225 2003-01-11  Martin Baulig  <martin@ximian.com>
226
227         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
228         this to 20 for the release.
229
230 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
231
232         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
233
234         * loader.c (mono_method_get_marshal_info): bug fix
235
236         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
237         structures with explicit layout
238
239 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
240
241         * profiler.c: made the output more readable (and sorted). 
242         Added caller information for the allocation profiler.
243
244 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
245
246         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
247
248 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
249
250         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
251         to get value types.
252         
253 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
254
255         * object.c, profiler.h, profiler.c, profiler-private.h:
256         Added object allocation profiler.
257
258 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
259
260         * reflection.h, reflection.c: handle global methods.
261         Compress blob entries.
262
263 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
264
265         * marshal.c: fix compilation.
266
267 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
268
269         * loader.c (mono_method_get_marshal_info): impl.
270
271         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
272
273 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
274
275         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
276         for reference types.
277
278 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
279
280         * loader.c: fixed off by one error in loaded parameter names.
281
282 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
283
284         * marshal.c (mono_marshal_get_icall_wrapper): like
285         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
286         instead of a MonoMethod.
287
288 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
289
290         * decimal.c: fixed bug #36537.
291
292 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
293
294         * marshal.c: throw a missing method exception if a
295         P/Invoke method is not found.
296
297 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
298
299         * icall.c: allow a null this for constructors.
300
301 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
302
303         * icall.c: raise the proper exceptions if the arguments to the
304         internal Invoke are incorrect.
305
306 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
307
308         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
309
310 2003-01-03  Martin Baulig  <martin@ximian.com>
311
312         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
313
314 2002-12-31  Martin Baulig  <martin@ximian.com>
315
316         * debug-mono-symfile.c: Completely rewrote the type section.
317         Instead of using individual malloc()ed fields, we use one big
318         continuous memory area and offsets into this area.
319         See the comments in the source code for details.
320
321 2002-12-30  Martin Baulig  <martin@ximian.com>
322
323         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
324
325 2002-12-30  Martin Baulig  <martin@ximian.com>
326
327         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
328         line number table in this data blob instead of using an external
329         pointer.
330
331 2002-12-28  Martin Baulig  <martin@ximian.com>
332
333         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
334
335 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
336
337         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
338         as a boxed return type.
339
340 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
341
342         * appdomain.c
343         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
344         g_build_filename to properly get separators on the filename created.
345
346         * object.h: Small change, introduce MonoMarshalByRefObject to
347         track the layout of that structure in the C# universe as we make
348         changes there.
349
350 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
351
352         * object.c: removed assert to allow static fields on interfaces.
353         * loader.c: a TypeSpec may be used for any type, not just arrays.
354
355 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
356
357         * class.c, class.h: added mono_class_array_element_size ().
358         Ignore static methods in interfaces.
359
360 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
361
362         * threads.c: fixed the build under cygwin.
363
364 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
365
366         * reflection.c: handle nullref constants. Allocate keys for
367         reflection handles with the GC.
368
369 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
370
371         * threads.c, threads.h: added mono_thread_get_abort_signal()
372         to get a suitable signal for thread abort.
373
374 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
375
376         * metadata.c: fix handling of ExportedType table.
377
378 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
379
380         * icall.c: added WriteWindowsDebugString internal call.
381
382 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
383
384         * reflection.h: added fields to match C# implementation.
385
386 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
387
388         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
389
390 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
391
392         * gc.h, gc-internal.h: Rename header for GC internal calls to
393         gc-internal.h from gc.h as to not clash with Boehm GC having its
394         header installed as <gc.h> in outside include paths.
395         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
396         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
397
398 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
399
400         * icall.c: assign minor, build and revision in FillName.
401
402 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
403
404         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
405         Added support for running code generated by Reflection.Emit.
406
407 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
408
409         * appdomain.c: check for NULL argument in LoadFrom.
410
411 2002-12-10  Dick Porter  <dick@ximian.com>
412
413         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
414
415 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
416
417         * appdomain.c: fix buglet when building exe file name.  Handle full
418         assembly name (needed after latest changes to AssemblyName).
419         * image.c:
420         (mono_image_close): free some hashtables.
421
422 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
423
424         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
425         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
426         on some systems (redhat 7.3) 
427
428 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
429
430         * threads.c: delete the critical section of a sync block,
431         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
432
433 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
434
435         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
436
437 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
438
439         * appdomain.[ch]: handle the assembly preload event to try loading the
440         assemblies using the paths we have in the current domain.
441
442         * assembly.[ch]: created an assembly preload hook that is called to try
443         loading the assembly by other means that the ones provided here.
444
445         * domain.c: initialize the domain search path.
446
447         From now on, assemblies (TODO: except corlib and System) are loaded
448         according to these rules when using mono_assembly_load ():
449
450                 1. It tries to load the assembly from the ApplicationBase
451                 of the current domain appending .dll and .exe (TODO: have to
452                 try loading from name/name.dll and name/name.exe).
453
454                 2. It tries the search path specified in PrivateBinPath for the
455                 current domain (if any).
456
457                 3. Previous behavior.
458
459 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
460
461         * icall.c: implemented GetInterfaceMap() related icall.
462         * domain.c, loader.h: load MethodInfo in mono_defaults.
463
464 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
465
466         * gc.c: disable the finalizer thread for now, untill all the issues
467         with it are resolved.
468
469 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
470
471         * string-icalls.c: handle embedded nulls in string ctor when the
472         length is specified.
473
474 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
475
476         * class.c: look for explicit interface implementation in parent
477         classes, too.
478
479 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
480
481         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
482
483 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
484
485         * gc.c: protect handles with a critical section.
486
487 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
488
489         * icall.c:
490         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
491         parameters. If no assembly specified, try getting the type from all
492         the assemblies in the current domain, else, load the assembly and get
493         the type from it.
494
495 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
496
497         * marshal.c: applied patch from Aleksey Demakov that fixes
498         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
499
500 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
501
502         * icall.c: fixed get_location.
503
504 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
505
506         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
507         declarations to make it work with older gcc. 
508
509         * loader.c (mono_get_method): set signature->pinvoke for native calls
510
511 2002-11-20  Dick Porter  <dick@ximian.com>
512
513         * threads.c (mono_thread_init): Set the main thread's handle
514
515 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
516
517         * gc.c: allow compilation without GC support. Changed to match the
518         mono coding style.
519
520 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
521
522         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
523
524 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
525
526         * reflection.c: set a public key token on the core assemblies.
527
528 2002-11-18  Dick Porter  <dick@ximian.com>
529
530         * threads.c: Split out some thread initialisation so that other
531         files can set the start callback function.
532
533         * gc.c: Run finalisers in a separate thread, to avoid stack
534         overflow.  Fixes bug 31333.
535
536         * appdomain.c: Set up GC finalisation thread.
537
538         * reflection.c: 
539         * object.c: 
540         * domain.c: Use gc.h macros for GC_malloc
541         
542 2002-11-15  Dick Porter  <dick@ximian.com>
543
544         * threadpool.c: 
545         * threads.c:
546         * appdomain.c: Removed mono_runtime_init_with_attach(),
547         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
548         merging the extra parameter with the existing function.  Removed
549         unneeded code in mono_thread_attach().
550
551 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
552
553         * image.c (mono_image_loaded_by_guid): a method to get loaded
554         images by guid. 
555         (load_metadata_ptrs): we store the guid as string.
556
557 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
558
559         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
560
561         * metadata.c (mono_guid_to_string): imported method form Zoltan
562         Varga (slightly modified)
563
564         * assembly.c (mono_assembly_open): load precompiled code
565
566         * loader.h (MonoMethod): we store the method token for use in the
567         aot compiler. 
568
569 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
570
571         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
572         the hook function called when an assembly is loaded.
573         
574         * domain.c: Modified file.
575         (mono_domain_assembly_load): removed hash table insertion of assemblies.
576
577         Fixes bug #33196.
578
579 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
580
581         * reflection.c: Map PEFileKind to the value expected by the WinNT
582         image loader. 
583
584 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
585
586         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
587         Read until the buffer is filled completely.
588
589 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
590
591         * icall.c: implemented MonoType.InternalGetEvent ().
592
593 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
594
595         * appdomain.c: implemented InitAppDomainSetup. Delayed
596         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
597         the entry_assembly.
598
599         * assembly.c: base_dir is now an absolute path ending with
600         G_DIR_SEPARATOR.
601
602         * icall.c: modified get_location according to the above changes.
603
604         * object.c: init AppDomain.SetupInformation for the default domain after
605         we have the entry assembly.
606
607         * domain.c: when unloading a domain, setup = NULL.
608
609 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
610
611         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
612
613 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
614
615         * object.h, object.c: introduced mono_object_get_virtual_method ()
616         to lookup the method invoked on an object when a callvirt is done on
617         a method.
618         * icall.c: make MethodInfo::Invoke() always do a virtual call.
619
620 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
621
622         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
623         current domain when loaded an assembly and failed to load it.
624
625         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
626
627 2002-10-31  Dick Porter  <dick@ximian.com>
628
629         * icall.c: 
630         * file-io.h: 
631         * file-io.c: Return the error status in a parameter, as the
632         GetLastError() value has long since been blown away if we try and
633         look it up in a subsequent internal call invocation.  Delete the
634         GetLastError() internal call, because it's useless.
635
636 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
637
638         * class.[ch]: added cast_class to fix bug 29517
639
640 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
641
642         * marshal.c: create valid IL code in the filter clause:
643         the new JIT is less forgiving:-)
644
645 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
646
647         * icall.c: removed get_property internal call.
648
649 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
650
651         * appdomain.h domain.c: Added an ID to appdomains.
652         
653         * threads.c threads.h icall.c: Implement icall
654         Thread:GetDomainID(), and remove unused icall 
655         CurrentThreadDomain_internal.
656
657 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
658
659         * icall.c: Don't recurse through the base types in GetConstructor.
660         Fixes bug #32063. 
661
662 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
663
664         * mempool.h, mempool.c: added mono_mempool_empty() and
665         mono_mempool_stats().
666
667 2002-10-23  Dick Porter  <dick@ximian.com>
668
669         * file-io.c: 
670         * file-io.h: 
671         * icall.c: Added MonoIO.GetFileType internal call
672
673 2002-10-17  Dick Porter  <dick@ximian.com>
674
675         * appdomain.c (mono_runtime_cleanup): Don't signal the async
676         delegate semaphore before waiting for all threads to finish,
677         because new threads can also call async delegates.  Fixes bug
678         32004.
679
680         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
681         of 3 seconds, in case another async job is queued.  (This part is
682         needed because the bug fix reintroduced the 3s exit lag.)  This
683         makes the mono_runtime_shutdown flag superfluous.
684
685 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
686
687         * reflection.c: include ehader size in method section headers.
688         Really check for suplicated modules entries.
689
690 2002-10-17  Martin Baulig  <martin@gnome.org>
691
692         * debug-mono-symfile.c: Added back support for locals.
693
694 2002-10-14  Martin Baulig  <martin@gnome.org>
695
696         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
697         MONO_TYPE_VOID.
698
699 2002-10-14  Martin Baulig  <martin@gnome.org>
700
701         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
702         mono_class_get() instead of looking in the class cache. 
703
704 2002-10-13  Martin Baulig  <martin@gnome.org>
705
706         * debug-mono-symfile.c: Set version number to 28, include the
707         signature in method names.
708
709 2002-10-13  Martin Baulig  <martin@gnome.org>
710
711         * debug-mono-symfile.h: Set version number to 27.
712
713 2002-10-11  Martin Baulig  <martin@gnome.org>
714
715         * gc.c: Don't register/unregister NULL pointers as disappearing links.
716
717 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
718
719         * metadata.c, metadata.h: added helper function to allocate signatures.
720
721 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
722
723         * icall.c: added internal call to get the location of machine.config.
724
725 2002-10-08  Martin Baulig  <martin@gnome.org>
726
727         * debug-mono-symfile.c: Ignore classes with a pending init for the
728         moment.
729
730 2002-10-03  Dick Porter  <dick@ximian.com>
731
732         * threads.c: Freebsd pthread_t is a pointer
733
734 2002-10-03  Dick Porter  <dick@ximian.com>
735
736         * socket-io.c: Implemented GetHostName_internal
737
738 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
739
740         * mono-config.c:
741         (mono_config_parse_file): don't leak the text.
742
743 2002-10-02  Martin Baulig  <martin@gnome.org>
744
745         * debug-mono-symfile.c: Added support for methods.
746
747 2002-10-01  Martin Baulig  <martin@gnome.org>
748
749         * debug-mono-symfile.c: Don't emit methods and line numbers for
750         the dynamic symbol file, just write the type table.  We can easily
751         have an external helper program which creates a symbol file for an
752         IL file.        
753
754 2002-10-01  Dick Porter  <dick@ximian.com>
755
756         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
757         Only add the handle to the cleanup array when we're about to
758         launch the thread.  Bug 31425 deadlocked when the test was run on
759         mono under w32.
760
761 2002-10-01  Martin Baulig  <martin@gnome.org>
762
763         * debug-mono-symfile.c: Added support for properties.
764
765 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
766
767         * reflection.c: unaligned store fix from Mark Crichton
768         <crichton@gimp.org>.
769
770 2002-09-27  Martin Baulig  <martin@gnome.org>
771
772         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
773         New interncall.
774
775 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
776
777         * assembly.h, assembly.c: use a sane API to hook into the assembly
778         loading process instead of a useless special-purpouse hack
779         (ngen needs a hook, too, for example).
780
781 2002-09-27  Dick Porter  <dick@ximian.com>
782
783         * threads.c (mono_thread_init): Call GetCurrentProcess() so
784         io-layer can set up some process handle info.  Not needed on w32,
785         but doesn't hurt either.
786
787         * process.c: Pass the program name in the second parameter to
788         CreateProcess, so the path is searched.  Include the working
789         directory. Implemented process name, process enumeration, and some
790         process detail internal calls.
791         
792         * icall.c: Added internal calls for process lookup, and some
793         process details
794
795 2002-09-26  Martin Baulig  <martin@gnome.org>
796
797         * assembly.c (mono_install_open_assembly_hook): New global
798         function to install a function to be invoked each time a new
799         assembly is loaded.
800         (mono_assembly_open): Run this callback function if set.
801
802         * debug-mono-symfile.c: Put back line numbers for the dynamic
803         symbol file and also record the .il file as source file.  This
804         allows us to install the temporary symbol file as `file.dbg' just
805         like a compiler-generated one.
806
807 2002-09-26  Nick Zigarovich <nick@chemlab.org>
808
809         * Corrected typo in gc.c (BOHEM vs BOEHM).
810
811 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
812
813         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
814         GetProperties. Also avoid calling g_slist_length in GetProperties and
815         GetMethods.
816
817 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
818
819         * reflection.c: avoid unaligned stores (bug spotted by
820         Mark Crichton  <crichton@gimp.org>).
821
822 2002-09-25  Martin Baulig  <martin@gnome.org>
823
824         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
825         instead of guint64 for addresses and added prologue/epilogue info.
826
827 2002-09-25  Martin Baulig  <martin@gnome.org>
828
829         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
830         store line number info.  For the dynamic symbol file, we only need
831         to provide the JIT generated dynamic line number info for the dynamic
832         symbol file.
833
834 2002-09-25  Martin Baulig  <martin@gnome.org>
835
836         * debug-mono-symfile.h: Incremented version number.
837
838 2002-09-24  Martin Baulig  <martin@gnome.org>
839
840         * class.c (mono_debugger_class_init_func): New global function
841         pointer variable.
842         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
843         call it.
844
845         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
846         function.  This is called via the mono_debugger_class_init_func
847         hook to add all types to the dynamic type table.
848         (ves_icall_MonoDebugger_GetType): New interncall to get a class
849         from its metadata token.
850
851         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
852         New interncall for the debugger.
853
854 2002-09-24  Nick Drochak <ndrochak@gol.com>
855
856         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
857         before using it in case it is null.
858         
859 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
860
861         * metadata.c: allow custom modifiers in local var signatures
862         (bug spotted by Zoltan Varga).
863
864 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
865
866         * class.c: deal with the <Module> class that may have a NULL vtable.
867         Eliminate warnings.
868
869 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
870
871         * image.c, image.h: more strong name helpers.
872         * monosn.c: more work: convert pem keys to cryptoapi format.
873
874 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
875
876         * string-icalls.c: speedup IndexOf.
877
878 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
879
880         * icall.c: updates from Zoltan.2.Varga@nokia.com.
881
882 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
883
884         * icall.c: cleanup: use mono_object_domain ().
885
886 2002-09-23  Martin Baulig  <martin@gnome.org>
887
888         * debug-mono-symfile.c: Improved type support.
889
890 2002-09-22  Martin Baulig  <martin@gnome.org>
891
892         * debug-mono-symfile.c: Added support for reference types and strings.
893
894 2002-09-22  Martin Baulig  <martin@gnome.org>
895
896         * debug-mono-symfile.c: Started to work on the type table.
897
898 2002-09-21  Martin Baulig  <martin@gnome.org>
899
900         * debug-mono-symfile.c: Largely reworked the symbol table format.
901         The symbol table is now incrementally updated each time a new
902         method is added.  We're now also using our own magic and version
903         so that you don't need to recompile all your classes if the
904         dynamic table changes.
905         (mono_debug_update_mono_symbol_file): Removed.
906         (mono_debug_symfile_add_method): New function to add a method.
907
908 2002-09-21  Martin Baulig  <martin@gnome.org>
909
910         * icall.c
911         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
912         New interncall.
913
914         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
915         New interncall to get a method from its metadata token.
916
917 2002-09-21  Martin Baulig  <martin@gnome.org>
918
919         * debug-mono-symfile.c: Create type table.
920
921 2002-09-20  Martin Baulig  <martin@gnome.org>
922
923         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
924
925 2002-09-20  Martin Baulig  <martin@gnome.org>
926
927         * debug-mono-symfile.c: Provide information about params and locals.
928
929 2002-09-20  Martin Baulig  <martin@gnome.org>
930
931         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
932         New interncall.
933
934         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
935         interncall to get a method from its metadata token.
936
937 2002-09-20  Martin Baulig  <martin@gnome.org>
938
939         * debug-mono-symfile.c: Added a few checks for method->header
940         being non-NULL.  This should never happen, but for the moment
941         let's use a g_warning() rather than a g_assert().
942
943 2002-09-19  Mark Crichton  <crichton@gimp.org>
944
945         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
946         even if support for it isn't present.  Added an #ifdef to fix this.
947
948         * socket-io.c: Added checks back for Solaris support.
949
950 2002-09-19  Martin Baulig  <martin@gnome.org>
951
952         * debug-mono-symfile.c (read_string, write_string): Reflect latest
953         changes in the symbol file format.
954
955 2002-09-18  Martin Baulig  <martin@gnome.org>
956
957         * debug-mono-symfile.c: Set version number to 21.
958
959 2002-09-18  Dick Porter  <dick@ximian.com>
960
961         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
962         on netbsd.  Fixes bug 30051.
963
964 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
965
966         * reflection.c:
967         (set_version_from_string): little fix.
968
969 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
970
971         * monosn.c, Makefile.am: added strong name utility.
972         * reflection.h, reflection.c: implemented delayed signing,
973         locale, version and hash id assembly attributes.
974
975 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
976
977         * loader.c, metadata.c: load param attributes in signatures.
978
979 2002-09-16  Martin Baulig  <martin@gnome.org>
980
981         * debug-mono-symfile.c: Added string table with all method names.
982
983 2002-09-14  Martin Baulig  <martin@gnome.org>
984
985         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
986         fast method lookup.
987
988 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
989
990         * reflection.c: record the public key token of referenced assemblies.
991
992 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
993
994         * image.c, image.h: added functions to get the strong name and the
995         public key of an assembly.
996         * pedump.c: use them.
997
998 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
999
1000         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
1001
1002 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
1003
1004         * marshal.c (mono_marshal_get_managed_wrapper): Added
1005         MONO_TYPE_BOOLEAN 
1006
1007 2002-09-11  Martin Baulig  <martin@gnome.org>
1008
1009         * gc.c: Call GC_unregister_disappearing_link() on all links when
1010         finalizing them, this is necessary to aviod a crash in boehm's
1011         finalize handler.
1012
1013 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
1014
1015         * gc.c: handle GetTarget for finalized objects spotted and fixed by
1016         nick@chemlab.org.
1017
1018 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
1019
1020         * icall.c: implemented MonoType::Module.
1021         * reflection.c, reflection.h: mono_module_get_object () from
1022         Tomi Pakarinen <tomi.pakarinen@welho.com>.
1023
1024 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
1025
1026         * icall.c: ignore overridden methods in GetMethods ().
1027         Fix for FieldInfo::SetValue().
1028         * object.c: handle float/double in runtime invoke.
1029
1030 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
1031
1032         * object.c: allow a constructor to be called again on an object.
1033
1034 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
1035
1036         * class.h, class.c: move field layout code to it's own function and
1037         export it. Get an interface id earlier. Move fields in MonoClass
1038         so they are more cache friendly and align the bitfields.
1039         * loader.c: temporary handle get_param_names() for a runtime method.
1040         * reflection.c, reflection.h: more code to handle runtime creation of
1041         types.
1042
1043 2002-09-09  Martin Baulig  <martin@gnome.org>
1044
1045         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
1046         signature with the pinvoke field being set for the actual call.
1047
1048 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1049
1050         * icall.c: removed some unused icalls. Start of map of glib charsets
1051         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
1052
1053 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
1054
1055         * debug-helpers.c: break infinite loop (found and fixed by
1056         Holger Arnold <harnold@gmx.de>).
1057
1058 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
1059
1060         * icall.c: target may be null in create_delegate.
1061
1062 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
1063
1064         * marshal.c: handle a boolean return type.
1065
1066 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
1067
1068         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
1069
1070 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
1071
1072         * gc.c: fix weakreferences.
1073
1074 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
1075
1076         * icall.c: added icall to get default codepage.
1077
1078 2002-09-03  Dick Porter  <dick@ximian.com>
1079
1080         * threads.h: 
1081         * threads.c: Use MonoThread instead of MonoObject where
1082         apropriate.
1083
1084         Store running thread objects in a hash table, so that we have all
1085         the info to hand when waiting for them to finish
1086         (means we don't need OpenThread() any more, so mingw builds should
1087         be fully functional again.)
1088
1089         * verify.c:
1090         * object.h: Added thread ID to MonoThread
1091
1092 2002-09-03  Martin Baulig  <martin@gnome.org>
1093
1094         * icall.c (System.Reflection.Assembly::get_location): New interncall.
1095
1096 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1097
1098         * icall.c: fixed leak in get_temp_path. Thanks lupus.
1099
1100 2002-09-03  Martin Baulig  <martin@gnome.org>
1101
1102         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
1103         argument to store the end address of the disassembled instruction.
1104
1105         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
1106         here from debug-symfile.h.
1107         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
1108         JIT into this struct.
1109         (MonoSymbolFile): Added `char *image_file' field.
1110         (MonoDebugGetMethodFunc): Removed.
1111         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
1112         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
1113         (mono_debug_find_method): New method.
1114
1115         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
1116         create a full symbol file.
1117         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
1118         and static symbol files.
1119         (mono_debug_find_method): The symbol file keeps an internal method hash,
1120         call this to get a MonoDebugMethodInfo from a MonoMethod.
1121
1122         * debug-symfile.[ch]: Removed.
1123
1124 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
1125
1126         * image.c (do_mono_image_open): Remove linker version check.
1127
1128 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
1129
1130         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
1131         wrappers for instance methods.
1132         
1133 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1134
1135         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
1136
1137 2002-08-28  Dick Porter  <dick@ximian.com>
1138
1139         * Makefile.am: Export HOST_CC for w32 builds
1140
1141 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1142
1143         * file-io.c process.c: MonoString are null terminated, no
1144         need for mono_string_to_utf16() anymore.
1145
1146 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1147
1148         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
1149
1150 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
1151
1152         * icall.c, reflection.h: speedup System.MonoType.
1153
1154 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
1155
1156         * reflection.c: allow null as the value of a string argument in
1157         custom attributes constructors.
1158
1159 2002-08-27  Martin Baulig  <martin@gnome.org>
1160
1161         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
1162         `trampoline_address' field.
1163
1164 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
1165
1166         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
1167         check (fixes bug #29486) 
1168
1169 2002-08-27  Martin Baulig  <martin@gnome.org>
1170
1171         * debug-mono-symfile.c: Changed the file format in a way that allows us
1172         open it read-only and to use a specially malloced area for all the
1173         dynamic data.  We can now also generate a symbol file on-the-fly if we're
1174         debugging IL code and there is no MCS generated symbol file for it.
1175
1176 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
1177
1178         * object.c: added a define for a good string and array
1179         creation speedup (not enabled by default because we need to deal with
1180         the synch stuff).
1181
1182 2002-08-26  Martin Baulig  <martin@gnome.org>
1183
1184         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
1185         function to create a dynamic symbol file.  This is used by the
1186         debugger to create a symbol file for IL code on-the-fly.
1187
1188 2002-08-26  Martin Baulig  <martin@gnome.org>
1189
1190         * loader.c (mono_lookup_pinvoke_call): Include the error message
1191         from g_module_error() in the error message.
1192
1193 2002-08-24  Martin Baulig  <martin@gnome.org>
1194
1195         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
1196         function to update the symbol file.  The symbol file is mmap()ed
1197         writable, but private.  This allows us to install the symbol file
1198         together with the assembly.
1199
1200 2002-08-24  Martin Baulig  <martin@gnome.org>
1201
1202         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
1203         but they can read the new symbol file format which mcs is now creating.
1204
1205         * debug-symfile.c (mono_debug_find_source_location): Moved to
1206         debug-mono-symfile.c; this is now operating on the new symbol file.
1207
1208 2002-08-23  Martin Baulig  <martin@gnome.org>
1209
1210         * debug-helpers.c (mono_method_desc_from_method): New function to get
1211         a MonoMethodDesc from a MonoMethod.
1212
1213 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
1214
1215         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
1216         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
1217
1218 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
1219
1220         * string-icalls.[ch]: make helper methods static.
1221
1222 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1223
1224         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
1225         types to it and to SetValueInternal.
1226
1227         * object.c: Moved handle_enum label to its proper place. This was the
1228         f... bug! ;-)
1229
1230         This time i compiled mcs and gtk-sharp and they both work.
1231
1232 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1233
1234         * icall.c: reverted partially my previous patch until 
1235         object.c:set_value handles enums correcly.
1236
1237 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1238
1239         * icall.c:
1240         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
1241         (ves_icall_System_Environment_get_MachineName): removed warning when
1242         compiling under cygwin.
1243
1244 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
1245
1246         * object.c: fixed field_get_value() for reference types.
1247
1248 2002-08-22  Dick Porter  <dick@ximian.com>
1249
1250         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
1251         Don't free a buffer while it's still needed.  Patch from Jonathan
1252         Liger <Jonathan.liger@wanadoo.fr>
1253
1254 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
1255
1256         * icall.c (ves_icall_System_Environment_get_Platform): Add new
1257         internal call.
1258
1259 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
1260
1261         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
1262         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
1263
1264         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
1265         we call unmanaged code which throws exceptions.
1266
1267 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
1268
1269         * appdomain.h: added per-domain entry_assembly.
1270         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
1271         arguments.
1272         * icall.c: Assembly::GetEntryAssembly icall.
1273         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
1274         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
1275
1276 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
1277
1278         * appdomain.h, gc.c: added mono_domain_finalize ().
1279
1280 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1281
1282         * object.c:
1283         (mono_print_unhandled_exception): changed g_warning by g_printerr
1284         because g_log has a 1024 characters limit (yeah, i got a big stack
1285         trace). Don't print exception name, that should be in ToString 
1286         returned string.
1287
1288 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1289
1290         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
1291         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
1292
1293 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1294
1295         * object.c:
1296         (mono_print_unhandled_exception): after previous commit, i realized
1297         that MS calls ToString on the exception. I changed this function to
1298         do that. This way we get stack_trace for free.
1299
1300 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1301
1302         * object.c:
1303         (mono_print_unhandled_exception): invoke Message property instead of
1304         getting 'message' field from Exception. Don't allocate memory for
1305         'trace' and 'message' if not needed.
1306
1307 2002-08-18  Dick Porter  <dick@ximian.com>
1308
1309         * unicode.c: Fix asserts to match Encoder.cs checks
1310
1311 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
1312
1313         * marshal.c: fix unaligned store issue and a few wrong
1314         opcode argument types.
1315
1316 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1317
1318         * icall.c: added GetUninitializedObjectInternal internal call.
1319
1320 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
1321
1322         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
1323         to the right domain.
1324
1325 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
1326
1327         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
1328
1329         * class.c (class_compute_field_layout): set blittable to false for Strings
1330
1331         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
1332
1333 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1334
1335         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
1336         first chunk of code to create types at runtime. Code to
1337         handle ReflectedType/DeclaringType. Make reflection handles
1338         domain specific.
1339
1340 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
1341
1342         * class.c: set correct name in arrays.
1343
1344 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
1345
1346         * appdomain.c (mono_domain_transfer_object): make it work with
1347         valuetypes. bug fixes.
1348
1349 2002-08-12  Dick Porter  <dick@ximian.com>
1350
1351         * object.h: Rename some parameters to avoid c++ keywords (Patch
1352         from Joseph Wenninger <kde@jowenn.at>)
1353
1354 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
1355
1356         * icall.c: added icall to implement Assembly.GetFile*.
1357
1358 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
1359
1360         * reflection.h, reflection.c: code to embed managed resources.
1361
1362 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
1363
1364         * class.c: move all the type size stuff into
1365         class_compute_field_layout().
1366
1367 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
1368
1369         * class.c: ensure enums have always the correct instance size.
1370         * unicode.c: remove wrong assert.
1371
1372 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
1373
1374         * assembly.c: fix mem corruption issue.
1375         * image.h, image.c: added mono_image_get_resource () to access
1376         managed resources.
1377         * icall.c: implemented Assembly.EntryPoint property and some
1378         Managed Resources related internalcalls.
1379
1380
1381 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
1382
1383         * image.c, image.h: impemented mono_image_get_entry_point ().
1384         * appdomain.c: use mono_image_get_entry_point.
1385
1386 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
1387
1388         * reflection.c: support the object type argument when loading
1389         custom attributes.
1390
1391 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
1392
1393         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
1394         String as return type.
1395
1396 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
1397
1398         * reflection.c: fix encoding of named args for custom attrs to match
1399         the ms implementation. Read them back when instantiating custom
1400         attributes.
1401
1402 2002-08-02  Radek Doulik  <rodo@ximian.com>
1403
1404         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
1405         by Dietmar as quick fix
1406         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
1407         16 as stack size, used on more places as quick fix before Dietmar
1408         will fix it properly
1409
1410 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
1411
1412         * object.h, object.c: added accessors for fields and properties.
1413
1414 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
1415
1416         * class.c, class.h: made mono_class_get_field_from_name ()
1417         loop on parent types.
1418         Added mono_class_get_property_from_name ().
1419
1420 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
1421
1422         * class.c, class.h: move the code to setup the type vtable in its own
1423         function so that it can be reused also for types created at runtime.
1424         Eliminate the "class" identifier from the header file.
1425         * reflection.c: setup the vtable for enums so that we can create
1426         objects for use in SetConstant ().
1427
1428 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
1429
1430         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
1431         instead of the delegate itself as this pointer (bug #28383)
1432
1433 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
1434
1435         * marshal.c (mono_marshal_get_managed_wrapper): added return type
1436         conversions.
1437
1438 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
1439
1440         * loader.c: don't set the pinvoke bit on icalls.
1441
1442 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
1443
1444         * debug-helpers.c (mono_method_full_name): only print a number to
1445         indicate wrapper type (so that the output is more readable in traces).
1446
1447 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
1448
1449         * class.c (mono_class_init): include method override patch from Paolo
1450
1451 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
1452
1453         * icall.c: fixed GetTypeCode().
1454
1455 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
1456
1457         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
1458         use real delegate invoke function to make it work with multicast
1459         delegates (fix bug# 28291).
1460
1461 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
1462
1463         * object.c: load constant strings.
1464
1465 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
1466
1467         * reflection.c: no magic numbers.
1468         * tabledefs.h: security action enum.
1469
1470 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
1471
1472         * assembly.c: fix possible memory corruption.
1473
1474 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
1475
1476         * reflection.h, reflection.c: added support for linking resources.
1477         * verify.c: check we have an updated corlib.
1478
1479 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
1480
1481         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
1482         string arrays.
1483         (mono_marshal_string_array): null terminate unmanaged string arrays.
1484         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
1485
1486 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
1487
1488         * icall.c: Type.GetType () can now return also types from the
1489         calling assembly.
1490
1491 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
1492
1493         * loader.h, loader.c: stack walking support.
1494         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
1495         GetCallingAssembly.
1496
1497 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
1498
1499         * marshal.c: added optimisations for blittable types 
1500
1501         * class.c (mono_array_class_get): do not set blittable attribute on arrays
1502         (mono_class_setup_mono_type): set blittable attribute for single
1503         and double.
1504
1505         * marshal.c (mono_string_utf8_to_builder): impl.
1506         (mono_string_builder_to_utf8): impl.
1507         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
1508
1509 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
1510
1511         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
1512         (mono_marshal_get_managed_wrapper): impl. byref types
1513
1514 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1515
1516         * icall.c:
1517         (search_method): don't display debug message. 
1518
1519 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
1520
1521         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
1522
1523 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
1524
1525         * appdomain.c: set the missing filename when throwing exception.
1526
1527 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
1528
1529         * metadata.c (mono_type_size): code cleanup
1530         (mono_type_stack_size): removed some test code
1531
1532 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
1533
1534         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
1535         mono_get_exception_file_not_found now.
1536
1537         * exception.c (mono_exception_from_name_two_strings): New version
1538         that will call a constructor with two string arguments. 
1539         (mono_get_exception_file_not_found): New helper routine, used to
1540         report file-not-found errors.
1541
1542 2002-07-20  Dick Porter  <dick@ximian.com>
1543
1544         * process.h:
1545         * process.c: Pass file handles to CreateProcess
1546         
1547         * icall.c:
1548         * file-io.h:
1549         * file-io.c: Implemented CreatePipe
1550
1551 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
1552
1553         * metadata.c (mono_get_param_info): set alignment for value types
1554
1555 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1556
1557         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
1558         Constify mono_domain_assembly_open().
1559         * loader.c: handle null namespace in icalls.
1560
1561 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
1562
1563         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
1564         (emit_str_to_ptr_conv): marshal object as structs
1565
1566         * metadata.c (mono_type_to_unmanaged): marshal object as structs
1567
1568         * marshal.c (mono_marshal_get_runtime_invoke): support value types
1569
1570 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
1571
1572         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
1573         (mono_marshal_get_native_wrapper): we an now return value types
1574
1575 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
1576
1577         * verify.c: more checks implemented.
1578
1579 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
1580
1581         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
1582         (fix bug #27695)
1583         (mono_marshal_get_native_wrapper): allow byref arguments
1584         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
1585         impl. PtrToStringXXX methods
1586         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
1587         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
1588         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
1589         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
1590         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
1591
1592 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
1593
1594         * reflection.c: fix buglet in parsing an assembly name.
1595
1596 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
1597
1598         * marshal.c (emit_ptr_to_str_conv): first impl.
1599
1600 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
1601
1602         * object.c, class.h: cache the vtable in the class as suggested by
1603         vargaz@freemail.hu (Zoltan Varga).
1604
1605 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
1606
1607         * class.h, loader.c: added mono_field_from_token().
1608         * verify.c: first cut of type checking code.
1609
1610 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
1611
1612         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
1613
1614 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
1615
1616         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
1617         (fix bug #27782)
1618         (mono_marshal_get_remoting_invoke): impl.
1619         (mono_delegate_begin_invoke): impl.
1620         (mono_mb_emit_save_args): impl.
1621         (mono_delegate_end_invoke): impl.
1622         (mono_marshal_get_delegate_begin_invoke):
1623         (mono_marshal_get_delegate_end_invoke):
1624         (mono_marshal_get_delegate_invoke): generate a special name for
1625         those methods (including the signature) and associate them whith
1626         the delegate class. 
1627
1628 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
1629
1630         * reflection.[ch]: 
1631         (mono_reflection_type_from_name): now it has a MonoImage parameter
1632         which is used as the default image to search the type in. If the image
1633         is NULL or getting the type from it fails, it defaults to corlib.
1634
1635         * icall.c: changed 1 call to mono_reflection_type_from_name to match
1636         new parameter.
1637
1638 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1639
1640         * reflection.c: update the parameter table index.
1641
1642 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
1643
1644         * domain.c: don't include the mark byte in the string hash.
1645
1646 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
1647
1648         * icall.cs: icall for Type.GetTypeCode ().
1649         * verify: a couple of fixes and disabled local initialization checks.
1650
1651 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
1652
1653         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
1654
1655         * debug-helpers.c (mono_method_full_name): print the type of the
1656         runtime wrapper
1657
1658         * metadata.c (mono_signature_hash): a hash function for signatures
1659         (mono_signature_hash): better hash algorithm
1660
1661         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
1662
1663         * debug-helpers.c (mono_method_full_name): this can now generate
1664         method names with signatures
1665
1666         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
1667         method dont have this pointers.
1668
1669 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
1670
1671         * reflection.c: fixup typebuilder tokens.
1672         * image.c: fix buglet.
1673         * marshal.h: remove whitespace.
1674         * metadata.h, metadata.c: reinstate code that was removed.
1675         * verify.c: handle catch directives and fix another couple of bugs.
1676
1677 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
1678
1679         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
1680         (mono_marshal_get_native_wrapper): make it comp. with the old code
1681         (mono_marshal_get_native_wrapper): support boolean
1682         (mono_marshal_get_managed_wrapper): support more types
1683
1684 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
1685
1686         * class.c (class_compute_field_layout): compute class->blittable attribute.
1687
1688 2002-07-09  Dick Porter  <dick@ximian.com>
1689
1690         * threads.c: Make the thread cleaning up cope with threads that
1691         call ExitThread()
1692
1693 2002-07-08  Radek Doulik  <rodo@ximian.com>
1694
1695         * reflection.c (method_encode_code): use non-translated values to
1696         compute finally_start, this fixes exception handling on ppc, yay!
1697
1698         * decimal.h (struct signscale): fix endianess
1699
1700 2002-07-07  Radek Doulik  <rodo@ximian.com>
1701
1702         * reflection.c: swap box_val and not val
1703
1704 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
1705
1706         * reflection.c, reflection.h: handle full assembly info in type name.
1707         Handle Type arguments when loading custom attributes.
1708         * icall.c: updated to use new mono_reflection_type_from_name () method.
1709
1710 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1711
1712         * loader.c:
1713         (method_from_memberref): also print assembly name when method not found.
1714
1715 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1716
1717         * icall.c:
1718         (ves_icall_TypeGetProperties): fixed bug #27473. 
1719
1720 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1721
1722         * reflection.c: display image name and token when cannot find the
1723         .ctor for an attribute.
1724
1725 2002-07-05  Martin Baulig  <martin@gnome.org>
1726
1727         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
1728
1729 2002-07-04  Dick Porter  <dick@ximian.com>
1730
1731         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
1732         compile on mingw.  This will cause mingw builds to not wait for
1733         subthreads to terminate after the main thread does.  I've lodged a
1734         bug with the mingw developers for them to wrap OpenThread().
1735
1736 2002-07-03  Dick Porter  <dick@ximian.com>
1737
1738         * threads.c: Store thread IDs instead of handles, because
1739         GetCurrentThread() returns a pseudohandle and therefore stores
1740         useless values.  mono_thread_cleanup() continues checking the
1741         array of threads until it is empty, to cope with subthreads
1742         spawning new threads after the main thread has finished.
1743
1744         * profiler.h:
1745         * profiler.c:
1746         * profiler-private.h: Pass the thread ID to thread profiler
1747         functions, instead of a handle
1748
1749 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
1750
1751         * verify.c: fixes to make it more usable.
1752         * pedump.c: added --verify code to verify IL code in an assembly.
1753
1754 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1755
1756         * reflection.c: turn errors into warnings to allow compiling corlib.
1757
1758 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
1759
1760         * reflection.c: add special cases to compile corlib.
1761
1762 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
1763
1764         * reflection.c: handle properties with only a set method.
1765
1766 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
1767
1768         * opcodes.h: add enum with opcodes in opval order.
1769
1770 2002-07-01  Dick Porter  <dick@ximian.com>
1771         
1772         * object.h:
1773         * object.c (mono_runtime_run_main): Removed unneeded argument
1774
1775 2002-06-28  Martin Baulig  <martin@gnome.org>
1776
1777         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
1778
1779 2002-06-27  Dick Porter  <dick@ximian.com>
1780
1781         * threads.c: Store the handle in both the parent thread and in the
1782         subthread, to minimise the time between starting a new thread and
1783         storing its ID.
1784
1785 2002-06-26  Dick Porter  <dick@ximian.com>
1786
1787         * appdomain.c (mono_runtime_cleanup): Close the socket library
1788         after all the threads have finished, not before
1789
1790 2002-06-26  Martin Baulig  <martin@gnome.org>
1791
1792         * debug-symfile.c (mono_debug_find_source_location): Added
1793         `guint32 *line_number' argument.  If it's not NULL, store the line number
1794         there and return the file name without the line number.
1795
1796 2002-06-25  Dick Porter  <dick@ximian.com>
1797
1798         * icall.c:
1799         * process.h:
1800         * process.c: Process forking and other support functions
1801
1802 2002-06-25  Dick Porter  <dick@ximian.com>
1803
1804         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
1805         things dont happen when the image is closed.
1806         (mono_image_lookup_resource): Walk the resource section looking
1807         for a particular entry
1808
1809         * cil-coff.h: PE resource section decoding
1810
1811 2002-06-25  Dick Porter  <dick@ximian.com>
1812         
1813         * assembly.h:
1814         * assembly.c: 
1815         (mono_assembly_foreach): Accessor functions to walk the list of
1816         loaded assemblies
1817         (mono_assembly_set_main):
1818         (mono_assembly_get_main): Process methods need to know which
1819         assembly is the "main" one
1820
1821         * object.c (mono_runtime_run_main): Record the main assembly
1822
1823         * debug-helpers.c: Fix typo
1824
1825 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
1826
1827         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
1828         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
1829
1830 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
1831
1832         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
1833
1834 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
1835
1836         * image.c (do_mono_image_open): Initialize reference count,
1837         otherwise we leak the MonoImage.
1838
1839 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
1840
1841         * reflection.c: small tweak to handle self-hosting.
1842
1843 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
1844
1845         * reflection.c: fix type name parse code.
1846
1847 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
1848
1849         * reflection.c: break out of the loop.
1850         * image.c: special case corlib.
1851
1852 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
1853
1854         * reflection.c: add all the custom attrs at the end to ensure the
1855         ctors have been properly initialized when the attributes are defined
1856         in the current assembly.
1857
1858 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
1859
1860         * reflection.c: handle correctly multiple-nested types.
1861
1862 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
1863
1864         * row-indexes.h: fix typos.
1865         * reflection.c: adjust for typos and fix method_def_or_ref
1866         encoding in MethodImpl table.
1867
1868 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
1869
1870         * reflection.c: fix entry point patching (thanks Serge!).
1871
1872 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
1873
1874         * verify.c: add check for System.Exception
1875
1876 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
1877
1878         * image.c, class.c: minifix for code just c&p'ed.
1879         * reflection.c: warning fix.
1880         * object.h, loader.h, domain.c: load also StringBuilder.
1881
1882 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
1883
1884         * marshal.h, marshal.c: some support code to handle complex marshaling.
1885
1886 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1887
1888         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
1889         Better signatures with vtable error dump.
1890
1891 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
1892
1893         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
1894
1895 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
1896
1897         * icall.c (ves_icall_Type_GetField): impl.
1898
1899 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1900
1901         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
1902         to retrieve a marshal description blob for a field or param.
1903
1904 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
1905
1906         * reflection.h, reflection.c: change order of nested type emission
1907         to avoid table corruption. The NestedTypes table is sorted.
1908         * icall.c: change order of GetConstructor results to workaround mcs bug.
1909
1910 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
1911
1912         * reflection.h, reflection.c: handle field and param marshal
1913         information.
1914
1915 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
1916
1917         * icall.c, marshal.c marshal.h: more Marshal class implementation.
1918
1919 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1920
1921         * reflection.c: fix call convention.
1922
1923 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1924
1925         * reflection.h, reflection.c: mono_image_get_memberref_token()
1926         takes a type instead of a class, now. Added
1927         mono_image_get_array_token() to create tokens for the special
1928         multi-dim array methods.
1929
1930 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1931
1932         * assembly.c: handle modules (no assembly table). Split
1933         loading references in its own function.
1934         * class.c: handle moduleref resolution scope.
1935         * image.c, image.h: cache module name in image.
1936
1937 2002-06-07  Martin Baulig  <martin@gnome.org>
1938
1939         * reflection.c (mono_image_get_type_info): Only add a class layout entry
1940         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
1941
1942 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
1943
1944         * icall.c: more signature fixes that used uint instead of int.
1945
1946 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1947
1948         * reflection.c: fixed signature of field refs.
1949
1950 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
1951
1952         * class.c, reflection.c: handle typerefs of nested types
1953         (both on read and when writing files).
1954
1955 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
1956
1957         * icall.c: fix method signatures that tried to workaround the previous
1958         typo, d'oh!
1959
1960 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
1961
1962         * debug-helpers.c: fix typo.
1963
1964 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
1965
1966         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
1967         rewrote the PE/COFF writing code (our programs are understood by the
1968         ms runtime, now).
1969
1970 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
1971
1972         * gc.c, gc.h, icall.c: weakreference support.
1973
1974 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1975
1976         * Makefile.am, mono-config.c: use $(sysconfdir).
1977
1978 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
1979
1980         * icall.c: changed default precision of Double.ToString() to 15.
1981         Fixed memory leak. Unified with Single.ToString.
1982
1983 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
1984
1985         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
1986
1987 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
1988
1989         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
1990         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
1991         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
1992         and myself.
1993
1994 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
1995
1996         * debug-symfile.c, sysmath.c: yet more compilation fixes.
1997
1998 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1999
2000         * reflection.c, socket-io.c: more compilation fixes.
2001
2002 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
2003
2004         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
2005         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
2006         unicode.c: warning and compiler compatibility fixes.
2007
2008 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
2009
2010         * class.h, metadata.c: fixed warnings/compilation errors.
2011
2012 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
2013
2014         * Makefile.am, mono-config.c, mono-config.h: configuration file
2015         support routines.
2016         * loader.c, loader.h: make Dll mapping configurable at runtime in the
2017         config file. Export methods to insert and lookup mappings.
2018
2019 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
2020
2021         * reflection.c: handle types and boxed objects in custom attr
2022         constructors.
2023
2024 2002-05-30  Martin Baulig  <martin@gnome.org>
2025
2026         * debug-symfile.c
2027         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
2028
2029 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
2030
2031         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
2032         to lookup the implmap row for a P/Invoke method.
2033         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
2034         P/Invoke method from the runtime on an as needed basis.
2035
2036 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
2037
2038         * metadata.c (mono_metadata_parse_signature): impl.
2039
2040 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2041
2042         * class.c: handle .pack directive.
2043
2044 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
2045
2046         * object.c: initialize static fields with RVA data.
2047
2048 2002-05-25  Martin Baulig  <martin@gnome.org>
2049
2050         * debug-symfile.c
2051         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
2052
2053 2002-05-24  Martin Baulig  <martin@gnome.org>
2054
2055         * debug-symfile.c
2056         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
2057         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
2058         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
2059
2060 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
2061
2062         * object.c: special case string ctros in invoke.
2063         * gc.c: silly whitespace changes.
2064
2065 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
2066
2067         * threadpool.[ch]: impl. a threadpool that can
2068         be used by mint and mono.
2069
2070 2002-05-22  Martin Baulig  <martin@gnome.org>
2071
2072         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
2073         The first argument is now a `MonoReflectionModuleBuilder *', the return
2074         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
2075         `methods' field to get the method builder.  The `token' argument is the
2076         unfixed token.
2077
2078         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
2079         invalid characters instead of g_assert_not_reached()ing.  This seems
2080         to be the behaviour of mscorlib.
2081
2082 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
2083
2084         * object.c (mono_runtime_invoke_array): applied patch from Rachel
2085         Hestilow to fix bug #25104
2086
2087 2002-05-21  Martin Baulig  <martin@gnome.org>
2088
2089         * debug-symfile.c (mono_debug_find_source_location): New function.
2090         Looks up an IL offset in the line number table and returns the source
2091         location as a string.
2092
2093 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2094
2095         * icall.c:
2096         (mono_double_ToStringImpl): changed %f by %g until we have something
2097         better.
2098
2099 2002-05-21  Nick Drochak  <ndrochak@gol.com>
2100
2101         * icall.c : Use different name for Math.Pow's icall.  Needed to check
2102         parameters first in C#.
2103
2104 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
2105
2106         * icall.c, reflection.h: added icall to get info about an event.
2107
2108 2002-05-20  Radek Doulik  <rodo@ximian.com>
2109
2110         * object.c (mono_value_box): don't use memcpy for boxing on BIG
2111         endian
2112         (mono_value_box): don't use memcpy for small sizes on
2113         architectures with unaligned access
2114
2115 2002-05-20  Martin Baulig  <martin@gnome.org>
2116
2117         * reflection.c (mono_reflection_setup_internal_class): Don't crash
2118         if `tb->parent == NULL'.
2119         (mono_reflection_create_internal_class): New function.  This is
2120         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
2121         for enum types.
2122
2123         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
2124         New interncall.
2125
2126 2002-05-19  Martin Baulig  <martin@gnome.org>
2127
2128         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
2129         argument to get the length, don't default to the array length.
2130
2131 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
2132
2133         * assembly.c (mono_assembly_setrootdir): New function used to
2134         override the MONO_ASSEMBLIES directory.
2135
2136 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
2137
2138         * icall.c: ValueType_GetHashCode() initialize local var.
2139
2140 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
2141
2142         * reflection.c: sort custom attributes table.
2143
2144 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
2145
2146         * reflection.c: support named args in custom attributes (write support).
2147
2148 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
2149
2150         * reflection.c: fix finally position calculation.
2151
2152 2002-05-15  Radek Doulik  <rodo@ximian.com>
2153
2154         * reflection.c: fixed endianess at many places
2155
2156         * icall.c (ves_icall_InitializeArray): comment out debug msg
2157
2158 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
2159
2160         * object.c (mono_unhandled_exception): new function to handle
2161         unhandled exceptions.
2162         (mono_unhandled_exception): call the UnhandledException event.
2163         (mono_runtime_delegate_invoke): impl.
2164
2165 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
2166
2167         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
2168         returns the RVA, not the direct pointer to the data. Handle the case
2169         when the class size is fixed.
2170
2171 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
2172
2173         * reflection.c: fix some endianess issues.
2174
2175 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
2176
2177         * object.c (mono_runtime_invoke): is now able to catch exceptions.
2178
2179         * threads.c (mono_thread_init): added a callback which is invoked
2180         at thread start.
2181
2182 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
2183         
2184         * icall.c: make GetHashCode return non-negative values.
2185
2186 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
2187
2188         * object.c, icall.c, gc.c: revert to address-based hashcode.
2189
2190 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
2191
2192         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
2193
2194 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
2195
2196         * icall.c, class.c: special case <Module>.
2197
2198 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
2199
2200         * icall.c: fix bug in GetNow().
2201
2202 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
2203
2204         * object.c (mono_runtime_class_init): make sure that we call all
2205         static class constructors.
2206
2207 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2208
2209         * reflection.c: sort methodsemantics table.
2210
2211 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
2212
2213         * reflection.h, reflection.c: honour init locals setting.
2214
2215 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
2216
2217         * icall.c: copied Double ToStringImpl for Single ToStringImpl
2218
2219 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
2220
2221         * reflection.c: support ContructorBuilders in attribute blob creation.
2222
2223 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
2224
2225         * reflection.c: some changes to build a binary that can be run
2226         directly in windows.
2227
2228 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
2229
2230         * loader.c: print a big message when an icall can't be found.
2231
2232 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2233
2234         * string-icalls.c: fix bug 24248.
2235
2236 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
2237
2238         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
2239         icall.c, reflection.h: separate assembly loading by pathname and by
2240         assembly name. Use the MONO_PATH env var to search for assemblies.
2241
2242 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
2243
2244         * assembly.c, image.h: add some support for assemblies
2245         with multiple modules.
2246         * class.c, class.h: export mono_class_from_typeref().
2247         * loader.c: remove duplicated code and use mono_class_from_typeref(),
2248         instead.
2249
2250 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
2251
2252         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
2253         documentation says (the ECMA one is correct).
2254
2255 2002-05-02  Dick Porter  <dick@ximian.com>
2256
2257         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
2258         Don't name the synchronisation mutex.
2259
2260 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
2261
2262         * rand.c
2263         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
2264         Make the prototypes match.
2265         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
2266         Same.
2267
2268         * icall.c
2269         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
2270         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
2271         all systems have tm.tm_zone, so use strftime() with %Z to print
2272         the timezone abreviation into a temp string.
2273
2274         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
2275         rather than mono_array_addr() on a MonoString on Big Endian
2276         machines.
2277
2278 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
2279
2280         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
2281         fix bug 24041
2282
2283 2002-04-30  Dick Porter  <dick@ximian.com>
2284
2285         * socket-io.c: Cope with SOCKET being an integer rather than a
2286         pointer now.
2287
2288         * threads.c: Added Thread_free_internal, to deal with thread
2289         handle cleanup.  Moved calls to handle_store() and handle_remove()
2290         to start_wrapper(), so each can only be called once.  Allocate
2291         synchronisation blocks with GC_malloc(), and use GC finalisation
2292         to close the handles.
2293
2294         * icall.c: added System.Threading.Thread::Thread_free_internal
2295
2296 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
2297
2298         * icall.c: support Environment.Exit, CommandLineArgs().
2299
2300 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
2301
2302         * object.c, object.h: added mono_runtime_run_main () and
2303         mono_runtime_get_main_args () for use in System.Environment.
2304
2305 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
2306
2307         * gc.c: fix thinko, enable actual finalization since the jit is now
2308         fixed.
2309
2310 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
2311
2312         * gc.c, object.c: take into account that an object may be offset wrt the address
2313         returned by GC_malloc().
2314
2315 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
2316
2317         * image.c: handle files without entries in the assembly table (modules).
2318
2319 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
2320
2321         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
2322         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
2323         allowed to be null when it's System.Object class setup.
2324
2325 2002-04-27  Martin Baulig  <martin@gnome.org>
2326
2327         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
2328         if `tb->parent == NULL' rather than crashing.
2329
2330 2002-04-28  Nick Drochak  <ndrochak@gol.com>
2331
2332         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
2333         calling acos() where asin() should have been called.
2334
2335 2002-04-26  Martin Baulig  <martin@gnome.org>
2336
2337         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
2338         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
2339         there's a subdirectory called `System', but we don't want to read that
2340         subdirectory as an assembly.
2341
2342 2002-04-25  Martin Baulig  <martin@gnome.org>
2343
2344         * debug-symfile.c: Reflect latest MonoString changes.
2345
2346 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
2347
2348         * rand.c, rand.h: instance method icalls need to have an explicit
2349         this pointer as first argument in the C implementation.
2350
2351 2002-04-25  Nick Drochak <ndrochak@gol.com>
2352
2353         * icall.c: Fix typo in map for GetNonZeroBytes
2354
2355 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
2356
2357         * string-icalls.c : String does now passes unit tests without any 
2358         errors, the following changes has been made:
2359         
2360         Implemented replace methods.
2361         Renaming of methods to (try) follow the standard.
2362         Fixed compare ordinal
2363         Made all memory allocated directly to function instead of via icall function.
2364         Small performance fix in is_in_array function
2365                         
2366  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
2367
2368         c (mono_string_Internal_ctor_charp_int_int):
2369         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
2370         sindex < 0, throw ArgumentOutOfRangeException instead of
2371         ArgumentNullException.
2372
2373         Added new check for length == 0, however
2374         I need to make it return String.Empty from the C code.
2375         
2376         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
2377         that calculate the length for us here.
2378         
2379         (mono_string_Internal_ctor_sbytep_int_int): Replaced
2380         mono_string_new_utf16 with mono_string_new, since value is utf8.
2381
2382 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2383
2384         * object.c: register the object for finalization if needed.
2385         Allocate one more char in the string for the terminating 0 char.
2386
2387 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
2388
2389         * class.c, class.h, image.c: check if a type implemenst a destructor.
2390         Use the proper key for array class lookups.
2391         * icall.c: register the icalls in the System.GC class.
2392         * gc.c, gc.h: GC-related functions and icalls.
2393
2394 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2395
2396         * icall.c:
2397         * socket-io.c:
2398         * unicode.c: free some strings gotten from mono_string_to_utf8 and
2399         changed a couple of free () by g_free ().
2400
2401         * decimal.c: one-liner in the comments for decimal2string ().
2402
2403 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
2404
2405         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
2406
2407 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
2408
2409         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
2410         * object.c (mono_runtime_invoke_array) : handle null in params
2411
2412 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
2413
2414         * string-icalls.c: fixed bug in split (one off bug)
2415
2416 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
2417
2418         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
2419         * icalls.c: added String::Equals as internal method
2420
2421 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
2422
2423         * threads.c: fixed bug in the double interlocked functions
2424
2425 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
2426
2427         * threads.c: implemented all of the new interlocked icalls.
2428         * string-icalls.c: fix a bug in insert.
2429         * icalls.c: added the icalls for interlocked, removed old string functions.
2430         
2431 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
2432
2433         * loader.c: fix off-by-one error when reading argument names.
2434
2435 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
2436
2437         * profiler.c: win32 counter implementation (untested).
2438         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
2439         (the latter needs testing and more complete impl. from win32 folks).
2440
2441 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
2442
2443         * object.c: mono_array_new_full workaround mono_array_class_get
2444         problem.
2445
2446 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
2447
2448         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
2449         * object.h (mono_string_chars): Changed casting type.
2450
2451 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
2452
2453         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
2454                            method signatures to use gunichar2 instead of gint16.
2455
2456 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
2457
2458         * object.h, object.c: domain-specific versions of mono_object_new and
2459         mono_array_new.
2460
2461 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
2462
2463         * object.c: changed String layout
2464
2465         * string-icalls.c (mono_string_Internal_ctor_chara): added
2466         internal string constructors.
2467
2468 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
2469
2470         * threads.c: pass 'this' to the thread start routine.
2471
2472 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2473
2474         * string-icalls.c: fix IndexOf and LastIndexOf. Now
2475         InternalCompareStr don't call twice mono_string_cmp_char for the last
2476         character. Improved performance in mono_string_cmp_char.
2477
2478 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
2479
2480         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
2481         code into its own library: libmonoruntime.
2482
2483 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
2484
2485         * object.h, object.c: changed array format so that szarrays do not
2486         require a bounds structure.
2487         * icall.c, appdomain.c: support for new szarray format.
2488
2489 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
2490
2491         * metadata.c: compare also the retuns type when comparing signatures:
2492         we didn't do this as an optimization since really overloaded methods
2493         must differ also in the arguments, but this doesn't work with
2494         low-level IL code (or when using explicit conversion operators: see
2495         bug#23498 for an example).
2496
2497 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
2498
2499         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
2500
2501 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
2502
2503         * icall.c: make MonoType::GetElementType its own icall.
2504
2505 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
2506
2507         * icall.c: remove MonoMethod_get_Name().
2508         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
2509         object.
2510
2511 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
2512
2513         * string-icalls.c: optimized a few methods.
2514
2515 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
2516
2517         * icall.c: added all new string internal calls
2518         * string-icalls.c: added, new string internal call implementation.
2519         * object.c: added mono_string_new_size for allocating a string a size
2520
2521 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
2522
2523         * object.c (mono_object_isinst): use the same code as in the
2524         optimized x86 version.
2525
2526 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
2527
2528         * profiler.c: TSC-based timer code (faster and more accurate).
2529         Not hooked up in configure, yet (set USE_X86TSC to 1).
2530
2531 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
2532
2533         * profiler.c, profiler.h: track time spent compiling methods.
2534         * threads.c: track thread creation/destruction.
2535
2536 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
2537
2538         * profiler.c, profiler.h, profiler-private.h: profiling interface
2539         and sample implementation. Moved here so that it can be used also by
2540         the jit.
2541
2542 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
2543
2544         * reflection.c, reflection.h: keep types and other handles separate in
2545         the hash tables for referred tokens. Add guid for modules.
2546
2547 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
2548
2549         * assembly.c: fix bugs found with valgrind.
2550         * metadata.h, metadata.c: added mono_metadata_guid_heap().
2551
2552 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
2553
2554         * threads: added icall support for getting current domain for
2555                    the thread.
2556  
2557 2002-04-13  Martin Baulig  <martin@gnome.org>
2558
2559         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
2560         (MonoDebugVarInfo): Added `index' field for register based addresses.
2561         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
2562         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
2563         `MonoDebugVarInfo *params' and `guint32 this_offset' with
2564         `MonoDebugVarInfo *this_var'.
2565
2566         * debug-symfile.c (relocate_variable): New static function to write
2567         a location description for a local variable or method parameter.
2568
2569 2002-04-12  Martin Baulig  <martin@gnome.org>
2570
2571         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
2572         stack offset and begin/end scope address of a local variable.
2573         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
2574         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
2575         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
2576
2577         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
2578         Added new relocation types for start/end scope of a local variable.
2579
2580 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2581
2582         * object.h: add mono_object_domain() macro.
2583         * reflection.c: handle typespecs.
2584         * icall.c: MonoMethod::get_Name() implementation.
2585
2586 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
2587
2588         * icall.c: String::GetHashCode() icall implementation.
2589
2590 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
2591
2592         * icall.c: String::IndexOfAny icall.
2593         * object.c, object.h: make array->max_length more useful.
2594         Intrduced mono_object_class() and mono_string_length() macros.
2595
2596 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2597
2598         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
2599         instead of g_unichar_isdigit.
2600
2601 2002-04-11  Nick Drochak  <ndrochak@gol.com>
2602
2603         * icall.c: Implement a simple Double.ToString().
2604
2605 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
2606
2607         * appdomain.h: only io-layer.h is supposed to be included.
2608         * icall.c: explicitly import environ. Fix warning.
2609
2610 2002-04-10  Nick Drochak  <ndrochak@gol.com>
2611
2612         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
2613                 return true even if it's not Daylight Savings time.
2614                 Only return false for the case where the function isn't
2615                 implemented for a plaform (read Windows).
2616
2617 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
2618
2619         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
2620         data with a mutex.
2621
2622 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
2623
2624         * mempool.c (mono_mempool_alloc): only use g_malloc when
2625         absolutely necessary.
2626
2627 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
2628
2629         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
2630
2631         * class.c (mono_class_vtable): use domain mempool to allocate vtable
2632         (mono_class_proxy_vtable): use domain mempool
2633
2634 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
2635
2636         * appdomain.h, appdomain.c: split initialization that requires the
2637         execution engine support into mono_runtime_init().
2638
2639 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
2640
2641         * class.c (mono_class_init): don't include vtable inside MonoClass
2642         to save some memory, gather some statistics.
2643         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
2644
2645 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
2646
2647         * icall.c: internalcall implementation for ValueType.Equals().
2648
2649 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
2650
2651         * object.c (mono_message_init): moved 
2652         (mono_runtime_exec_main): new arch. independent impl.
2653         (mono_runtime_invoke_array): new method - like
2654         mono_runtime_invoke, but you can pass an array of objects.
2655         (mono_remoting_invoke): new arch. independent impl.
2656         (mono_message_invoke): new arch. independent impl.
2657         (mono_runtime_class_init): new arch. independent impl.
2658         (mono_runtime_object_init): new arch. independent impl.
2659
2660 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
2661
2662         * metadata.c, object.c, reflection.c: documented the exported
2663         functions.
2664
2665 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
2666
2667         * icall.c: simpler code to pass the assembly builder data to corlib.
2668         Implement GetNestedTypes() internalcall.
2669
2670 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
2671
2672         * class.c: warn if a type can't be loaded.
2673
2674 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
2675
2676         * image.h: typedef MonoImageOpenStatus
2677         * types.h: removed unused file
2678         
2679 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
2680
2681         * icall.c: Enum_ToObject accepts enum value arguments.
2682
2683 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
2684
2685         * class.c: move initialization of properties, events and nested
2686         classes, so that they happen for interfaces, too.
2687
2688 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
2689
2690         * icall.c: cleanup some ugly casts in Array_SetValue*.
2691
2692 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
2693
2694         * icall.c: the values array fro enums is of the correct type, now.
2695         Implement (correctly) getFullName instead of assQualifiedName for
2696         MonoType.
2697         * reflection.h, reflection.c: added mono_type_get_name ().
2698
2699 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
2700
2701         * assembly.c, image.h: for each MonoImage, record from wich assembly
2702         it was loaded.
2703         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
2704         Make Type.Assembly work.
2705
2706 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
2707
2708         * debug-symfile.h: use char* instead of gpointer to avoid
2709         unnecessary casts.
2710
2711         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
2712
2713         * icall.c (ves_icall_InternalExecute): impl. FielSetter
2714         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
2715
2716 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
2717
2718         * icall.c (mono_message_init): impl. (code cleanup)
2719         (ves_icall_InternalExecute): impl. FieldGetter
2720
2721         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
2722         defined we call all (non-static)methods through the vtable. 
2723
2724 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
2725
2726         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
2727         finalizer even though the memory is still referenced (and the chunk of
2728         memory is not freed).
2729
2730 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
2731
2732         * assembly.c: fix brokeness.
2733
2734 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
2735
2736         * class.c: kill some warnings. Check explicit interface method
2737         implementation also without considering the namespace.
2738         Load also literal strings in static class data.
2739
2740 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
2741
2742         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
2743         (default_assembly_name_resolver): Make the resolver take the
2744         "base" directory where the assembly was originally defined, so we
2745         can load DLLs that are in the same directory as the assembly that
2746         is being referenced.
2747
2748 2002-03-28  Dick Porter  <dick@ximian.com>
2749
2750         * file-io.h: 
2751         * file-io.c:
2752         * socket-io.c: 
2753         * unicode.h: 
2754         * unicode.c: Warning cleanups
2755
2756 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
2757
2758         * object.h, reflection.h: use the correct type instead of MonoObject.
2759
2760 2002-03-28  Martin Baulig  <martin@gnome.org>
2761
2762         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
2763         (mono_debug_update_symbol_file): Initialize classes if necessary.
2764
2765 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
2766
2767         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
2768         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
2769
2770 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
2771
2772         * assembly.h: fix function prototype.
2773         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
2774         * mono-endian.h: use const cast.
2775
2776 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
2777
2778         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
2779
2780 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
2781
2782         * loader.c: don't assert when a typeref can't be loaded, give
2783         a chance to the runtime to trow an exception instead.
2784         * loader.h: fix warning.
2785
2786 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
2787
2788         * class.c (mono_class_proxy_vtable): added proxy support
2789
2790 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
2791
2792         * icall.c: removed last of PAL calls, added System.Environment
2793         * file-io.h, file-io.c: MonoIO implementation
2794         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
2795
2796 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
2797
2798         * appdomain.c: do not use the byte marker in ldstr table lookup.
2799         * debug-helpers.c: allow two ':' to separate class and method name.
2800         * object.c: allocate arrays bounds with the GC, too.
2801         * verify: add a few more checks.
2802
2803 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
2804
2805         * reflection.c: output also literal strings. Allocate parameter data
2806         with GC_malloc() (thanks, Martin, for catching this!).
2807
2808 2002-03-26  Martin Baulig  <martin@gnome.org>
2809
2810         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
2811         include the `this' offset in the `param_offsets'.
2812
2813 2002-03-25  Martin Baulig  <martin@gnome.org>
2814
2815         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
2816         mono_debug_get_class() function to get the classes. Added new
2817         relocation types for arrays and strings.
2818         (mono_debug_get_class): New static function to search in all
2819         referenced assemblies for a metadata token.
2820
2821         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
2822
2823 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
2824
2825         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
2826         hold gc-allocated objects. Make the string heap a stream like the
2827         others. Removed duplicated code when writing stream info.
2828         Added asserts to catch possible buffer overflows. Set the sorted map
2829         for tables that need sorting. Added some documentation.
2830
2831 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
2832
2833         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
2834         for interned strings and vtables.
2835
2836 2002-03-24  Martin Baulig  <martin@gnome.org>
2837
2838         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
2839         it in the array since it was created with g_slist_prepend().
2840
2841 2002-03-24  Martin Baulig  <martin@gnome.org>
2842
2843         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
2844         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
2845         (mono_debug_method_from_token): Renamed to
2846         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
2847         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
2848
2849         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
2850         relocation types.
2851
2852         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
2853
2854 2002-03-24  Martin Baulig  <martin@gnome.org>
2855
2856         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
2857         (mono_debug_method_from_token): New func.
2858
2859         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
2860         New interncall, calls mono_debug_local_type_from_signature().
2861         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
2862         calls mono_debug_method_from_token().
2863
2864 2002-03-23  Martin Baulig  <martin@gnome.org>
2865
2866         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
2867         specifies the number of bytes to be converted, not the array size.
2868         Return the number of chars, not the number of bytes.
2869         (ves_icall_iconv_get_chars): The `byteCount' argument
2870         specifies the number of bytes to be converted, not the array size.
2871
2872 2002-03-23  Martin Baulig  <martin@gnome.org>
2873
2874         * reflection.h (MonoReflectionSigHelper): New type.
2875
2876         * reflection.c (mono_reflection_sighelper_get_signature_local),
2877         (mono_reflection_sighelper_get_signature_local): New functions.
2878
2879         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
2880         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
2881         interncalls.
2882
2883 2002-03-23  Martin Baulig  <martin@gnome.org>
2884
2885         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
2886         is_writeable is set.
2887         (mono_raw_buffer_update): New function to write the modified map
2888         back to disk.
2889
2890         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
2891
2892         * debug-symfile.c (mono_debug_update_symbol_file): Call
2893         mono_raw_buffer_update() when done writing.
2894
2895 2002-03-23  Martin Baulig  <martin@gnome.org>
2896
2897         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
2898
2899         * debug-symfile.c: Added support for arguments and local variables.
2900
2901 2002-03-23  Dick Porter  <dick@ximian.com>
2902
2903         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
2904         protected by ifdefs, hence breaking the w32 build.
2905
2906 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
2907
2908         * object.c: implement is_interned() the right way.
2909
2910 2002-03-21  Martin Baulig  <martin@gnome.org>
2911
2912         * debug-symfile.[ch]: New files to handle debugging information
2913         files. There's also support to dynamically update these symbol
2914         files to include machine dependent information.
2915
2916 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
2917
2918         * threads.c (mono_thread_create): new function to create thread
2919         from C
2920
2921 2002-03-20  Martin Baulig  <martin@gnome.org>
2922
2923         * icall.c (ves_icall_InternalInvoke): Create a new object if the
2924         method is a constructor.
2925         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
2926         points to ves_icall_InternalInvoke().
2927
2928 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
2929
2930         * file-io.c: Flush shouldn't throw exceptions.
2931
2932 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
2933
2934         * file-io.c: FileStream flush support; FileSetLength now
2935         restores file pointer.
2936
2937 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
2938
2939         * class.c: set image for pointer classes.
2940
2941 2002/03/19  Nick Drochak <ndrochak@gol.com>
2942
2943         * sysmath.c: Forgot one.
2944
2945 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
2946
2947         * sysmath.c: Avoid redefining existing names.
2948
2949 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
2950
2951         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
2952         handled by runtime as icall rather than dllimport from libm.so
2953         * file-io.c, file-io.h: fixed handle argument type.
2954
2955 2002-03-18  Dick Porter  <dick@ximian.com>
2956
2957         * reflection.c (mono_image_get_type_info): rename interface to
2958         iface, because of "#define interface struct" on windows.
2959
2960 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
2961
2962         * class.c, class.h: rename and export mono_ptr_class_get().
2963         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
2964         * reflection.c, reflection.h, icall.c: better/saner type name
2965         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
2966         method signatures.
2967
2968 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
2969
2970         * class.c (mono_class_init): removed hardcoded GHC_SLOT
2971
2972         * icall.c (ves_icall_InternalInvoke): impl.
2973
2974 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
2975
2976         * reflection.c: output the interface map table, too.
2977
2978 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
2979
2980         * class.c (class_compute_field_layout): separate computation of 
2981         static field layout
2982
2983 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
2984
2985         * icall.c: added System.Buffer support.
2986         * file-io.c: moved file icalls from PAL to FileStream.
2987
2988 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
2989
2990         * icall.c (ves_icall_System_Object_GetHashCode): impl.
2991
2992 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
2993
2994         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
2995
2996 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
2997
2998         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
2999
3000 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
3001
3002         * debug-helpers.{c,h}: moved here from monograph some useful functions
3003         to locate a method by name/signature in a class or image. Included
3004         also a small and flexible IL disassembler.
3005
3006 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
3007
3008         * reflection.c: fixup tokens in methods with small header size, too.
3009
3010 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
3011
3012         * object.c (mono_string_to_utf8): remove assert(!error), instead
3013         print a warning. 
3014
3015 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
3016
3017         * icall.c: update to the new mono_Array_class_get interface.
3018
3019 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
3020
3021         * appdomain.c, object.c: Boehm-GC enable.
3022         * icall.c: make get_data_chunk() support split data requests.
3023         Ensure a class is initialized in more cases. Return only the first
3024         property found in GetProperties() or the compiler gets confused. 
3025         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
3026         * reflection.h, reflection.c: add fixup mechanism for field and method
3027         tokens. Initialize assembly->typeref in a single place. Output
3028         properties after events. Support custom attributes for events, too.
3029         Typo fix for paramter custom attrs.
3030
3031 2002-03-07  Martin Baulig  <martin@gnome.org>
3032
3033         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
3034
3035 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
3036
3037         * class.c (mono_array_class_get): fix. for multi. dim. arrays
3038
3039 2002-03-06  Martin Baulig  <martin@gnome.org>
3040
3041         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
3042         non-zero lower bounds. See testcases #F10-#F13.
3043
3044 2002-03-05  Martin Baulig  <martin@gnome.org>
3045
3046         * exception.c (mono_get_exception_argument_out_of_range): New exception.
3047
3048         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
3049         ves_icall_System_Array_GetValue(), only calculate the absolute array position
3050         here.
3051         (ves_icall_System_Array_SetValue): Likewise.
3052         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
3053         as argument and does the actual work. This function is used when copying a
3054         multi-dimensional array.
3055         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
3056         now do all the widening conversions of value types.
3057         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
3058
3059 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3060
3061         * class.c: remove some magic numbers and use the smbolic names,
3062         instead. Added init_events() to load event info at class init time.
3063         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
3064         and mono_metadata_methods_from_event().
3065         * reflection.h, reflection.c: added support for writing out the evnets
3066         related information.
3067
3068 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
3069
3070         * reflection.h, icall.c: use a different method (GetInterfaces)
3071         to gather interface info and add isbyref, isprimitive and
3072         ispointer to the ves_icall_get_type_info() return value.
3073
3074 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
3075
3076         * class.h: stared adding support for events.
3077         * icall.c: split find_members implementation. Added debug icall to get
3078         the address of an object.
3079         * reflection.c: handle TypeBuilders in mono_type_get_object().
3080
3081 2002-03-01  Martin Baulig  <martin@gnome.org>
3082
3083         * icall.c (ves_icall_System_Array_GetLength): This must throw an
3084         ArgumentOutOfRangeException(), not an ArgumentException().
3085         (ves_icall_System_Array_GetLowerBound): Likewise.
3086         (ves_icall_System_Array_GetValue): Improved argument checking.
3087         (ves_icall_System_Array_SetValue): Improved argument checking.
3088
3089 2002-03-01  Martin Baulig  <martin@gnome.org>
3090
3091         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
3092         called with invalid arguments rather than just dying with g_assert().
3093         (ves_icall_System_Array_SetValue): Likewise.
3094         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
3095         raise a NotImplementedException instead.
3096         (ves_icall_System_Array_GetLength): Added argument checking.
3097         (ves_icall_System_Array_GetLowerBound): Added argument checking.
3098
3099 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
3100
3101         * object.h (mono_assert): new macros mono_assert and
3102         mono_assert_not_reached
3103
3104 2002-02-28  Martin Baulig  <martin@gnome.org>
3105
3106         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
3107         and "System::String::IsInterned" to "System::String::_IsInterned".
3108
3109 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
3110
3111         * icall.c: remove hacks for typebuilder. Added icall to create a
3112         modified type from a tybebuilder.
3113         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
3114         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
3115         to create a backing MonoClass for a TypeBuilder.
3116
3117 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
3118
3119         * class.c, class.h: more refactoring of class init.
3120         Export mono_class_setup_mono_type() and mono_class_setup_parent().
3121
3122 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
3123
3124         * marshal.c, marshal.h: start of marshaling interface.
3125
3126 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
3127
3128         * icall.c: fix order in assembly qualified name icall.
3129
3130 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
3131
3132         * class.c: do not free str, since we store it in the hash table.
3133         * reflection.h: add label field to MonoILExceptionInfo.
3134         * reflection.c: handle references to more than one assembly. Handle
3135         case when there isn't a module created in the assembly.
3136
3137 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
3138
3139         * class.c: Fix typo. Start refactoring of class init code.
3140
3141 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
3142
3143         * appdomain.c: exit with 1 on error.
3144         * class.c: we already have the name in MonoClassField.
3145         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
3146         MonoStreamHeader instead of an offset of image->raw_metadata.
3147
3148 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
3149
3150         * appdomain.c (mono_init): Be even more descriptive about the error.
3151
3152 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
3153
3154         * appdomain.c: give the user an informative message when corlib can't
3155         be loaded.
3156
3157 2002-02-26  Martin Baulig  <martin@gnome.org>
3158
3159         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
3160         New icall to get the time zone data.
3161
3162 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
3163
3164         * reflection.c: set virtual and raw size of section correctly.
3165         * threads.c: transfer domain information to newly created threads.
3166
3167 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
3168
3169         * class.c: when instancing a class in a domain, load the default
3170         vaules for static fields from the constant table. Fix System.Enum to
3171         not be an enum.
3172         * icall.c: implement Object::GetType() internalcall. Implemented
3173         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
3174         Fixed checking of binding flags in find_members().
3175         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
3176         * reflection.c: handle enumerations when writing to the constant
3177         table. Use a different object cache for types.
3178
3179
3180 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
3181
3182         * object.c (mono_object_isinst): fix for arrays
3183
3184         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
3185
3186 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
3187
3188         * object.c: don't use mprotect ()  and fix intern pool hash table
3189         lookup for big endian systems.
3190
3191 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
3192
3193         * icall.c: change type_is_subtype_of () signature.
3194
3195 2002-02-21  Mark Crichton  <crichton@gimp.org>
3196
3197         * rand.c, rand.h: Added random number generator for
3198         System.Security.Cryptography classes.
3199
3200         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
3201
3202         * icall.c: Added System.Security.Cryptography calls.
3203
3204 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
3205
3206         * class.c, icall.c, metadata.c: better support for pointer types.
3207         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
3208         * reflection.c: Add support for getting custom attrs for properties
3209         and simplify some code.
3210
3211 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
3212
3213         * icall.c: change getToken () and add custom attribute GetBlob()helper
3214         method.
3215         * reflection.h: add custom attrs array to the reflection builder structures.
3216         * reflection.c: encode and emit custom attributes for all the relevant
3217         reflection objects. Cache fieldref and methodref tokens. Change
3218         mono_image_create_token() interface to take a MonoDynamicAssembly.
3219         More complete custom attributes decoder. Load custom attributes for
3220         Assembly, Field, Method and Constructor objects, too. Make the
3221         returned array an Attribute[] one, not object[]. Added
3222         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
3223         custom attribute constructor.
3224
3225 2002-02-20  Dick Porter  <dick@ximian.com>
3226
3227         * icall.c:
3228         * rawbuffer.c:
3229         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
3230         problem code out for now).
3231
3232 2002-02-19  Radek Doulik  <rodo@ximian.com>
3233
3234         * object.c (mono_ldstr): use hash table to avoid multiple swapping
3235
3236 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
3237
3238         * icall.c: register the GetCustomAttributes method.
3239         * object.c, object.h: add mono_string_new_len ().
3240         * reflection.h, reflection.c: added mono_runtime_invoke(),
3241         mono_install_runtime_invoke(). Added
3242         mono_reflection_get_custom_attrs () to load custom attributes and
3243         create the attribute objects.
3244
3245 2002-02-19  Dick Porter  <dick@ximian.com>
3246         * threads-dummy-types.c:
3247         * threads-dummy-types.h:
3248         * threads-dummy.c:
3249         * threads-dummy.h:
3250         * threads-pthread-types.c:
3251         * threads-pthread-types.h:
3252         * threads-pthread.c:
3253         * threads-pthread.h:  Deleted obsolete files
3254
3255 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
3256
3257         * class.c (mono_class_vtable): runtime init the class when we
3258         allocate static class data.
3259
3260         * icall.c (ves_icall_System_Array_SetValue): check for null values.
3261
3262         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
3263         and String - but we will need generic marshalling support in the
3264         future. 
3265         (mono_init): set the domain name in a ms compatible way
3266
3267         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
3268         String[].
3269
3270 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
3271
3272         * object.c (mono_array_clone): use alloca() instead of g_malloc  
3273         for sizes
3274
3275         * appdomain.c (mono_domain_unload): impl.
3276
3277 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
3278
3279         * appdomain.c, object.c: fix intern pool implementation.
3280         * class.c: fix alignment code.
3281
3282 2002-02-16  Radek Doulik  <rodo@ximian.com>
3283
3284         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
3285         and s2 > s1, just copy lower bytes to be compatible with little
3286         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
3287         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
3288
3289         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
3290         force big_endian to be 1 for big endian machines 
3291         (ves_icall_iconv_new_decoder): ditto
3292
3293 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
3294
3295         * socket-io.c (convert_sockopt_level_and_name): If the system
3296         doesn't define SOL_IP or SOL_TCP, get them by hand using
3297         getprotobyname() and caching the values (because this could be a
3298         slow operation).
3299         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
3300         Use the appropriate struct when the system does support it. Ie,
3301         not all systems have struct ip_mreqn so use struct ip_mreq when
3302         appropriate.
3303
3304 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
3305
3306         * reflection.c: handle finally clauses.
3307
3308 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
3309
3310         * socket-io.c: use g_snprintf() instead of snprintf.
3311
3312 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
3313
3314         * reflection.c (mono_param_get_objects): Cast second argument to
3315         mono_method_get_param_names to a const char** to silence the
3316         compiler warning.
3317
3318         * appdomain.c (mono_domain_assembly_open): Put parens around the
3319         truth statement in the for-loop.
3320
3321         * unicode.c (iconv_convert): Got rid of a compiler warning about
3322         int i being unused when the system has a new iconv.
3323         (iconv_get_length): Same.
3324
3325         * image.c (load_class_names): Cast the second argument to
3326         g_hash_table_insert() to char* to hush compiler warnings about the
3327         arg being a const.
3328         (mono_image_open): Same here.
3329
3330         * socket-io.c: Don't conditionally include sys/filio.h or
3331         sys/sockio.h here anymore since we now get them from
3332         io-layer/io-layer.h
3333         (inet_pton): If the system doesn't support inet_aton, implement
3334         using inet_addr and also #define INADDR_NONE if it isn't defined
3335         by the system.
3336
3337 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
3338
3339         * metadata.c, metadata.h: added function to get packing and size info
3340         of a typedef.
3341         * reflection.h, reflection.c: handle field RVA data. Save info about
3342         the table layout if needed. Assign typedef indexes to all the types
3343         before dumping the info about them to avoid forward reference problems.
3344
3345 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
3346
3347         * socket-io.c (convert_sockopt_level_and_name): ifdef
3348         SO_ACCEPTCONN because it is not defined on my system (old debian)
3349
3350 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
3351
3352         * opcode.c: use stddef.h to get NULL.
3353
3354 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
3355
3356         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
3357         for FIONBIO, FIONREAD and SIOCATMARK.
3358         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
3359         define INADDR_NONE and besides, inet_addr() is deprecated and
3360         should not be used. Use inet_pton() instead - it also has the
3361         added bonus that it can easily handle IPv6 addresses as well.
3362         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
3363
3364 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
3365
3366         * decimal.c: remove _MSC_VER conditional.
3367
3368 2002-02-13  Dick Porter  <dick@ximian.com>
3369
3370         * socket-io.c: 
3371         * icall.c: Internal calls for Blocking, Select, Shutdown,
3372         GetSocketOption and SetSocketOption
3373
3374 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3375
3376         * assembly.cs: better resolver: use it instead of some kludgy
3377         code.
3378
3379 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
3380
3381         * reflection.c: the best way to speed-up the compiler is to avoid
3382         infinite loops.
3383
3384 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
3385
3386         * class.c (mono_class_vtable): changed the object layout
3387         (obj->vtable->class). 
3388         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
3389
3390 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3391
3392         * assembly.c: look for assemblies in the assembly dir, too.
3393
3394 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
3395
3396         * class.c: fix thinko in mono_class_from_type().
3397
3398 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
3399
3400         * exception.h, exception.c: added TypeLoadException.
3401         * object.h, object.c: added mono_array_clone ().
3402         * icall.c: handle throwOnError in AssemblyGetType().
3403         Added Array.Clone().
3404         * opcode.h, opcode.c: use a single value for the opcode val.
3405         Compile fix for non-gcc compilers.
3406
3407 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
3408
3409         * opcodes.c, opcodes.h: export interesting info about opcodes.
3410
3411 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
3412
3413         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
3414         icalls. 
3415
3416         * class.c (class_compute_field_layout): set element_class for enums
3417         (mono_class_create_from_typedef): set element_class for normal classes
3418
3419         * icall.c (ves_icall_System_Enum_get_value): impl.
3420
3421         * class.c (mono_class_create_from_typedef): do not set valuetype
3422         flag for System.ValueType and System.Enum
3423
3424 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
3425
3426         * unicode.c (iconv_convert): fix big endian problem.
3427
3428 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
3429
3430         * class.c: add asserts if we are ever going to scribble over memory.
3431         * socket-io.c: not all systems have AF_IRDA defined.
3432
3433 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
3434
3435         * class.c (class_compute_field_layout): do not consider static
3436         fields to compute alignment
3437
3438 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
3439
3440         * appdomain.c (mono_appdomain_get): impl.
3441         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
3442
3443 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
3444
3445         * icall.c: ignore "file://" prefix when loading an assembly.
3446
3447 2002-01-23  Dick Porter  <dick@ximian.com>
3448
3449         * socket-io.c:
3450         * icall.c:
3451         * Makefile.am: Added socket support
3452
3453 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
3454
3455         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
3456         code back.  This should return the assemblies that are loaded by
3457         the runtime on behalf of an application domain. 
3458
3459         The current implementation is still broken, it just returns every
3460         assembly loaded, but until we get real applications domain this
3461         will do.
3462
3463 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
3464
3465         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
3466         AppDomain object.
3467
3468 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
3469
3470         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
3471         the mono_class_from_name lookup.
3472         (ves_icall_get_parameter_info): ditto.
3473         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
3474         method.
3475         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
3476
3477 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
3478
3479         * class.c: load also nested classes on class init.
3480         System.ValueType instance methods gets passed boxed
3481         values, unless methods in derived classed that get a pointer to the
3482         data.
3483         * icall.c: use better name parsing code in GetType().
3484         * image.c, image.h: add mono_image_loaded ().
3485         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
3486         * reflection.c, reflection.h: added mono_reflection_parse_type().
3487
3488 2002-01-22  Veronica De Santis <veron78@interfree.it>
3489
3490         * icall.c : Added mapping of internal calls for Manual and Auto reset events
3491         * threads.c : Added the implementation of internal calls for events
3492         * threads.h : Added prototypes of internal calls for events
3493         
3494 2002-01-21  Radek Doulik  <rodo@ximian.com>
3495
3496         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
3497
3498 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
3499
3500         * class.c (mono_class_init): set min_align to 1 (instead of 0)
3501         (mono_class_value_size): use min_align
3502
3503 2002-01-20  Dick Porter  <dick@ximian.com>
3504
3505         * threads.h:
3506         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
3507         so it compiles on w32.
3508
3509 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
3510
3511         * metadata.c (mono_type_stack_size): impl.
3512
3513         * class.c (mono_class_get_field): impl. memberref token
3514
3515 2002-01-16 Veronica De Santis <veron78@@interfree.it>
3516
3517         * icall.h : Added the internal calls mapping for CreateMutex_internal
3518                     and ReleaseMutex_internal.
3519         * threads.h : Added the prototype of mutexes internal calls.
3520         * threads.c : Added the implementations of mutexes internal calls.
3521
3522 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
3523
3524         * metaparse.h: removed unused file.
3525         * reflection.c, reflection.h: added stream_data_align () function 
3526         to align data in streams and keep stream aligned. Add support for
3527         exception support in method headers.
3528
3529 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
3530
3531         * unicode.c: make iconv_convert () return the number of bytess written
3532         in the output buffer.
3533
3534 2002-01-15  Dick Porter  <dick@ximian.com>
3535         * threads.c: Make the runtime's idea of infinite timeouts coincide
3536         with the class library's
3537
3538         Fix a particularly egregious bug in mono_thread_cleanup(). That
3539         code was so utterly bogus it must have been written on a Monday.
3540
3541 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
3542
3543         * reflection.h: add subtypes field to TypeBuilder.
3544         * reflection.c: encode constants for literal fields.
3545         Handle subtypes. Fix user string token (and add a zero byte)
3546         at the end.
3547         
3548 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
3549
3550         * class.c (mono_class_init): bug fix: assign slot numbers for
3551         abstract methods.
3552
3553 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
3554
3555         * reflection.c: don't try to output a code RVA for abstract methods.
3556         Small fixes for method header format. Output parameter info to the
3557         ParamDef table. Save method overriding info to MethodImpl table.
3558         Fix property support. Allow typedef.extends to be a type in the
3559         building assembly.
3560         * verify.c: fix off-by-one error.
3561
3562 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
3563
3564         * class.c: fix mono_class_from_mono_type () for szarray types.
3565         Remove unused cache check in mono_class_from_type_spec().
3566         * icall.c: *type_from_name () functions handle simple arrays and byref.
3567         * reflection.c: handle byref and szarray types. Handle methods without
3568         body (gets P/Invoke compilation working). Handle types and fields in
3569         get_token ().
3570         * reflection.h: add rank to MonoTypeInfo.
3571
3572 2002-01-10  Dick Porter  <dick@ximian.com>
3573
3574         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
3575         internal calls
3576
3577 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
3578
3579         * icall.c: initialize class in type_from_handle ().
3580         Loop also in parent classes for get_method ().
3581         * reflection.c: properly encode class and valuetype types.
3582         Start on encoding TypeBuilder types. Handle fieldrefs.
3583         Use correct length when registering a user string.
3584         Handle ConstructorBuilder and MonoMethod in get_token ().
3585         Make mono_type_get_object () aware of cached types.
3586         * object.c: back out change to mono_string_new ().
3587
3588 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
3589         * object.c: mono_string_new should return a NULL when the string 
3590         passed in is NULL -- not try to deference it.
3591         
3592 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
3593
3594         * icall.c: hack to make IsSubType work for TypeBuilders.
3595         * reflection.c: emit constructors before methods.
3596         Retrieve param names in mono_param_get_objects().
3597
3598 2002/01/05  Nick Drochak  <ndrochak@gol.com>
3599
3600         * Makefile.am: fix list of headers and sources so automake 1.5
3601         doesn't complain. Removed \# at end of list.
3602
3603 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
3604
3605         * reflection.c: get token for a method ref. Set return type of
3606         constructor to void.
3607         * loader.c: debug message.
3608         * class.c: typo fix.
3609
3610 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
3611
3612         * icall.c: fix array init with rank > 1. FindMembers
3613         loops in parent class as well.
3614         * image.c: do not insert nested types in name cache.
3615         * reflection.c: warning fix.
3616         * reflection.h: add override method (for interface impl).
3617
3618 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
3619
3620         * metadata.c: fix customattr decoding.
3621
3622 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
3623
3624         * rawbuffer.cs: Added native Win32 implementation, avoids using
3625         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
3626
3627 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
3628
3629         * class.c: make the low-level routines handle the cache.
3630
3631 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
3632
3633         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
3634
3635 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
3636
3637         * class.c: fix mono_array_element_size() for objects.
3638         * class.h, class.c: add properties to MonoClass and load them
3639         at init time.
3640         * icall.c: check with isinst() when assigning a value to an array
3641         instead of requiring the classes to match exactly.
3642         Implemented icall for System.Type::GetType().
3643         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
3644         enums. Handle bindingflags when looking for methods and fields.
3645         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
3646         and mono_metadata_methods_from_property().
3647         * reflection.h, reflection.c: added structures for propreties,
3648         parameters and enums. Implemented mono_property_get_object() and
3649         mono_param_get_objects().
3650
3651 2001-12-18  Dick Porter  <dick@ximian.com>
3652
3653         * file-io.c: Use mono_string_to_utf16() instead of
3654         mono_string_chars()
3655
3656         * object.c: Added mono_string_to_utf16(), which copies the non
3657         NULL-terminated MonoString into a new double-null-terminated
3658         buffer.
3659
3660 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
3661
3662         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
3663
3664 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
3665
3666         * file-io.c: raise exceptions if handle is invalid.
3667
3668 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
3669
3670         * assembly.c: yet another check for mscorlib.
3671         * class.c, class.h: load nesting info for classes.
3672         * icall.c: many new functions to support the Reflection classes.
3673         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
3674         * reflection.h, reflection.c: mono_image_create_token(),
3675         mono_assembly_get_object(), mono_type_get_object(),
3676         mono_method_get_object(), mono_field_get_object(): methods to return
3677         objects that parallel the C representation of assemblies, types,
3678         methods, fields.
3679
3680 2001-12-11  Dick Porter  <dick@ximian.com>
3681
3682         * icall.c:
3683         * file-io.c: Internal calls for file IO.
3684
3685 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
3686
3687         * tabledefs.h: missing FileAttributes.
3688         * verify.h, verify.c: use is_valid_string () to simplify and check for
3689         valid strings more correctly. Fix warnings and speeling.
3690         Check more tables: Filed, File, ModuleRef, StandAloneSig.
3691         Check code: branches, maxstack, method calls.
3692
3693 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
3694
3695         * object.c (mono_object_allocate): removed static, so that the jit
3696         can allocate value types.
3697
3698         * icall.c (ves_icall_System_DateTime_GetNow): impl.
3699
3700 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
3701
3702         * class.c: init enum types right away and register the
3703         token->MonoClass map in mono_class_create_from_typedef ().
3704         * verify.h, verify.c: first cut of the verifier.
3705         * pedump.c: add --verify switch to verify metadata tables.
3706         * tabledefs.h: add some missing enums.
3707
3708 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
3709
3710         * class.c (mono_install_runtime_class_init): impl.
3711         (mono_class_init): renamed mono_class_metadata_init to
3712         mono_class_init, also removed the metadata_inited flag
3713
3714         * object.c (mono_object_isinst): use faster algorithm
3715
3716 2001-11-30  Radek Doulik  <rodo@ximian.com>
3717
3718         * mono-endian.h: reverted last change
3719         added function prototypes
3720
3721         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
3722         add mono-endian.c back
3723
3724         * mono-endian.c: returned back, as Paolo pointed out, it's needed
3725         for unaligned access, I've mistaked it with endianess. I am
3726         sorry.
3727         (mono_read16): fix reverted endianess
3728         (mono_read64): ditto
3729         (mono_read32): ditto
3730
3731 2001-11-30  Dick Porter  <dick@ximian.com>
3732
3733         * exception.c: Implement mono_exception_from_name()
3734
3735 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
3736
3737         * metadata.h, metadata.c: remove params_size and locals_size and their
3738         calculation from the metadata code: they are only usefult to the
3739         interp.
3740
3741 2001-11-29  Radek Doulik  <rodo@ximian.com>
3742
3743         * object.c (mono_ldstr): swap bytes here, it's probably not the
3744         best place, but works for me now, I'll redo it once I know mono
3745         better, also note that I add PROT_WRITE and don't reset back, also
3746         note that it's only affects big endians, so x86 should be OK
3747
3748         * mono-endian.h (read16): use just glib macros for both endians
3749
3750         * mono-endian.c: removed as glib macros are used in in
3751         mono-endian.h so we don't need to care about endianess for read
3752         macros as glib does that for us already
3753
3754 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
3755
3756         * class.h, class.h: take minimum alignment into consideration so
3757         that the fields of a class remain aligned also when in an array.
3758
3759 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
3760
3761         * loader.h, loader.c: add mono_method_get_param_names().
3762         * class.c: 0-init class fields.
3763
3764 2001-11-26  Dick Porter  <dick@ximian.com>
3765
3766         * icall.c:
3767         * threads-types.h:
3768         * threads.c: New file that handles System.Threading on all platforms
3769
3770         * object.c: 
3771         * object.h: Remove the synchronisation struct from MonoObject,
3772         replace it with a pointer that gets initialised on demand
3773
3774         * Makefile.am: Replace all the system-specific threading code with
3775         a single file that uses the new wrapper library
3776
3777 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
3778
3779         * class.c, class.h: add mono_install_trampoline() so that the runtime
3780         can register a function to create a trampoline: removes the ugly
3781         requirement that a runtime needed to export arch_create_jit_trampoline.
3782         * object.h, object.c: added mono_install_handler() so that the runtime
3783         can install an handler for exceptions generated in C code (with
3784         mono_raise_exception()). Added C struct for System.Delegate.
3785         * pedump.c: removed arch_create_jit_trampoline.
3786         * reflection.c: some cleanups to allow registering user strings and
3787         later getting a token for methodrefs and fieldrefs before the assembly
3788         is built.
3789         * row-indexes.h: updates and fixes from the new ECMA specs.
3790
3791 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
3792
3793         * class.h, class.c: add enum_basetype field to MonoClass.
3794         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
3795         to get index in the constant table reated to a field, param or
3796         property.
3797         * reflection.h, reflection.c: handle constructors. Set public-key and
3798         version number of the built assembly to 0.
3799         * row-indexes.h: update from new ECMA spec.
3800
3801 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
3802
3803         * class.h, class.c: add a max_interface_id to MonoClass.
3804         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
3805         since it's used to do that. Added mono_type_type_from_obj().
3806         Make GetType() return NULL instead of segfaulting if the type was not
3807         found. Handle simple arrays in assQualifiedName.
3808         * object.h: add a struct to represent an Exception.
3809         * reflection.c: output call convention in method signature.
3810         Add code to support P/Invoke methods and fixed offsets for fields.
3811
3812 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
3813
3814         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
3815         the value.
3816         * icall.c: use mono_array_addr instead of array->vector: fixes the
3817         reflection image writing.
3818         * reflection.c: init call convention byte to 0 in method signature.
3819         Encode the property signature. Don't output property-related methods
3820         twice. Really process the properties for a type (don't cast a field to
3821         a property, my mom always told me that).
3822         Fix 64 bit issues in pointer alignment in a different and more
3823         readable way.
3824
3825 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
3826
3827         * loader.h: Removed type class from MonoDefaults, added monotype
3828
3829         * loader.c: Loaded MonoType, removed loading of Type
3830
3831         * icall.c (my_mono_new_object): Now returns a System.MonoType,
3832         and fills in System.Type._impl with a RuntimeTypeHandle rather
3833         than the actual MonoClass *
3834
3835         (ves_icall_type_from_handle): change from type_class to
3836         monotype_class
3837
3838         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
3839         implemented
3840
3841         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
3842         implemented
3843
3844         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
3845
3846         (ves_icall_System_Reflection_Assembly_GetType): implemented
3847
3848         (ves_icall_System_MonoType_assQualifiedName): implemented
3849
3850         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
3851
3852 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
3853
3854         * assembly.c (mono_assembly_open): Implement a cache for the
3855         assemblies. 
3856
3857         (mono_assembly_close): only destroy the assembly when the last
3858         reference is gone.
3859         
3860 2001-11-09  Dick Porter  <dick@ximian.com>
3861
3862         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
3863
3864 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
3865
3866         * class.c (mono_class_metadata_init): bug fix: compute the right slot
3867
3868 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
3869
3870         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
3871         from Martin Weindel.
3872         * object.h: add mono_string_chars ().
3873
3874 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
3875
3876         * reflection.c (build_compressed_metadata): Eliminates warnings
3877         and uses 64-bit clean code.
3878
3879         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
3880         (mono_type_equal): Change signature to eliminate warnings.
3881
3882 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
3883
3884         * icall.c, loader.c: remove the internalcall array constructors.
3885         Changes to match the new MonoArray structure.
3886         * object.h, object.c: an array object doesn't allocate an extra
3887         vector. Add mono_array_new_full () to create jagged arrays easily.
3888
3889 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
3890
3891         * metadata.h, metadata.c: add mono_metadata_field_info () to
3892         retreive all the info about a field from vairous tables.
3893         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
3894         * class.h, class.c: augment MonoClassField with more info.
3895         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
3896         policy and load a field's RVA if needed.
3897
3898 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
3899
3900         * class.c (mono_class_metadata_init): create a trampoline for all
3901         virtual functions instead of actually compiling them.
3902
3903 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
3904
3905         * class.h, class.c: include name in MonoClassField.
3906         * class.c: fix fundamental type of System.Object and System.String.
3907         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
3908         tokens in ldtoken.
3909         * icall.c: remove internalcalls for the Reflection stuff that is now
3910         done in C# code.
3911         * loader.c: mono_field_from_memberref () implementation.
3912         * mono-endian.c: thinko (s/struct/union/g).
3913         * object.c, object.h: make the mono_string_* prototypes actually use
3914         MonoString instead of MonoObject.
3915         * reflection.c, reflection.h: updates for changes in the reflection
3916         code in corlib: we use C structures that map to the actual C# classes.
3917         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
3918         fat method header if needed and use the info from the ILGenerator for
3919         methods. Handle fields in types. Misc fixes.
3920
3921 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
3922
3923         * class.c (mono_class_metadata_init): bug fix: always allocate
3924         space for static class data
3925
3926 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
3927
3928         * class.c (mono_compute_relative_numbering): use relative
3929         numbering to support fast runtime type checks.
3930
3931 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
3932
3933         * class.c (mono_class_create_from_typeref): added debugging output
3934         to print class name when MonoDummy is returned instead of real class
3935
3936 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
3937
3938         * class.c (mono_class_metadata_init): interface offset table now
3939         contains pointers into the vtable - this is more efficient for the jit
3940
3941 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
3942
3943         * class.c (mono_class_metadata_init): use a temporary vtable (the
3944         old algorithm only worked for the interpreter, but not for the jit)
3945
3946 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
3947
3948         * loader.c (method_from_memberref): use mono_class_get to get the
3949         class of an array instead of using System.Array directly.
3950         (mono_get_method): also add MEMBERREF methods to the method cache
3951         which usefull for arrays.
3952
3953 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
3954
3955         * pedump.c (arch_compile_method): added to compute vtable entry
3956
3957         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
3958         number of interfaces.
3959         
3960         * class.h: merged MonoArrayClass into MonoClass
3961
3962         * class.c (mono_class_create_from_typedef): compute the vtable size and
3963         allocate space to include the vtable inside MonoClass
3964         (mono_class_metadata_init): initialize the vtable
3965
3966 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
3967
3968         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
3969         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
3970         * image.c: endian fixes by Laurent Rioux.
3971         * object.h, object.c: rename MonoStringObject to MonoString and
3972         MonoArrayObject to MonoArray. Change some function names to conform to
3973         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
3974         guint16* as first argument, so don't use char*.
3975         Provide macros to do the interesting things on arrays in a portable way.
3976         * threads-pthread.c: updates for the API changes and #include <sched.h>
3977         (required for sched_yield()).
3978         * icall.c: updates for the API changes above.
3979         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
3980         platforms that need them.
3981
3982 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
3983
3984         * class.c: set the correct type for all the fundamental
3985         type when loading the class.
3986
3987 2001-10-05  Dick Porter  <dick@ximian.com>
3988
3989         * threads-pthread.c (pthread_mutex_timedlock): Simple
3990         compatibility version for C libraries that lack this call.
3991
3992 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
3993
3994         * class.c: MonoTypes stored in MonoClass are stored as
3995         fundamental MonoTypes when the class represents a
3996         fundamental type (System.Int32, ...).
3997         The TypeHandle return by ldtoken is a MonoType*.
3998         * icall.c: ves_icall_get_data_chunk () write out all the
3999         PE/COFF stuff. Implement ves_icall_define_method (),
4000         ves_icall_set_method_body (), ves_icall_type_from_handle ().
4001         * image.c: properly skip unknown streams.
4002         * loader.h, loader.c: add type_class to mono_defaults.
4003         * metadata.c, metadata.h: export compute_size () as
4004         mono_metadata_compute_size () with a better interface.
4005         Typo and C&P fixes.
4006         * pedump.c: don't try to print the entry point RVA if there is no entry point.
4007         * reflection.c, reflection.h: many cleanups, fixes, output method
4008         signatures and headers, typedef and typeref info, compress the metadata
4009         tables, output all the heap streams, cli header etc.
4010         * row-indexes.h: typo fixes.
4011
4012 2001-10-04  Dick Porter  <dick@ximian.com>
4013
4014         * object.h: Add a synchronisation mutex struct to MonoObject
4015
4016         * object.c (mono_new_object): Initialise the object
4017         synchronisation mutexes
4018
4019         * icall.c: System.Threading.Monitor internal calls
4020         
4021         * threads-pthread.h:
4022         * threads-pthread.c: System.Threading.Monitor internal calls
4023
4024         * threads-types.h: New file, includes the system-specific thread
4025         structures
4026         
4027         * threads-pthread-types.h:
4028         * threads-pthread-types.c: New files, handle pthread-specific
4029         synchronisation types
4030
4031         * threads-dummy-types.h: 
4032         * threads-dummy-types.c: New files of dummy support for
4033         thread-specific types
4034
4035         * metadata.c:
4036         * image.c:
4037         * pedump.c: include mono-endian.h not endian.h
4038         
4039         * Makefile.am: More threads files.
4040         Name mono-endian.h not endian.h
4041
4042 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
4043
4044         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
4045         stuff and implement a few more bits.
4046         * icall.c: a field needs to be dereferenced twice. Do not use the same
4047         name for two variables in the same scope.
4048         * image.c, image.h: cleanups.
4049
4050 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
4051
4052         * class.c (mono_class_metadata_init): bug fix: compute the right size
4053
4054 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
4055
4056         * icall.c: implemented some of the Reflection internalcalls.
4057         * image.c, image.h: start writing out the PE/COFF image.
4058         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
4059         that does the reverse than decode_blob_size ().
4060         * object.c: use mono_metadata_encode_value (). Move here
4061         temporary implementation of mono_string_to_utf8 ().
4062         * rawbuffer.c: make malloc_map static.
4063
4064 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
4065
4066         * metadata.c: fix type comparison for arrays.
4067         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
4068         Added a couple of new classes to monodefaults.
4069         * icall.c: added a couple of Reflection-related internalcalls.
4070         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
4071         Added a byval_arg MonoType to MonoClass.
4072
4073 2001-09-28  Dick Porter  <dick@ximian.com>
4074
4075         * icall.c:
4076         * threads-pthread.h: 
4077         * threads-pthread.c: Implemented internal calls for
4078         LocalDataStoreSlot operations.  Applied mutexes around all shared
4079         data.  Reworked the thread creation and Start() operations to
4080         avoid a race condition.
4081         
4082         * threads-dummy.h:
4083         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
4084
4085 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
4086
4087         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
4088
4089 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
4090
4091         * class.c, loader.c: warn and return NULL instead of erroring out.
4092         * icall.c: added System.AppDomain::getCurDomain().
4093         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
4094
4095 2001-09-25  Dick Porter  <dick@ximian.com>
4096
4097         * threads-pthread.h:
4098         * threads-pthread.c: Implemented timed thread joining and added
4099         System.Threading.Thread::Join_internal internal call
4100
4101         * icall.c: Added System.Threading.Thread::Join_internal internal call
4102
4103         * threads-dummy.h:
4104         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
4105
4106 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
4107
4108         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
4109         mono_string_intern () to implement the semantics of the ldstr opcode
4110         and the interning of System.Strings.
4111         * icall.c: provide hooks to make String::IsIntern and String::Intern
4112         internalcalls.
4113
4114 2001-09-23  Dick Porter  <dick@ximian.com>
4115
4116         * threads-dummy.c: 
4117         * threads-dummy.h: New files of dummy threading routines
4118
4119         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
4120         support code based on system specifics
4121
4122         Rename PTHREAD_LIBS to THREAD_LIBS
4123         
4124 2001-09-23  Dick Porter  <dick@ximian.com>
4125
4126         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
4127         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
4128         internal calls.
4129         (mono_thread_init): Set up a Thread object instance to return when
4130         the main thread calls Thread.CurrentThread
4131         (mono_thread_cleanup): Wait for all subthreads to exit
4132
4133         * icall.c: New internal calls for System.Threading.Thread::Sleep
4134         (including Schedule) and CurrentThread
4135
4136         * threads.h: New file, to insulate thread-specific stuff from the
4137         rest of the code
4138
4139 2001-09-21  Dick Porter  <dick@ximian.com>
4140
4141         * threads-pthread.h: 
4142         * threads-pthread.c: New file, for handling pthreads-style
4143         threading support.  Start() now starts a new thread and executes
4144         the ThreadStart delegate instance.
4145
4146         * icall.c: Added the internalcall for
4147         System.Threading.Thread::Start_internal
4148
4149         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
4150
4151 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
4152
4153         * loader.c: work around the different signatures for delegates
4154         constructors csc generates in compiled code vs the ones compiled in mscorlib.
4155
4156 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
4157
4158         * class.h, class.c: add mono_class_get_field_from_name ().
4159         * *: Fix C comments and other ANSI C issues.
4160
4161 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
4162
4163         * endian.h, assembly.c: fix some endianness issues.
4164
4165 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
4166
4167         * loader.h, load.c: add delegate_class to mono_defaults.
4168         Handle runtime provided methods in mono_get_method ().
4169
4170 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
4171
4172         * loader.c (mono_get_method): use pinvoke for internal call
4173
4174         * icall.c: use pinvoke for internal call
4175
4176         * loader.c (method_from_memberref): set the method name
4177
4178 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
4179
4180         * metadata.c: help the compiler generate better code for
4181         mono_class_from_mono_type ().
4182
4183 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
4184
4185         * class.c (mono_class_metadata_init): delayed computing of the
4186         class size to mono_class_metadata_init ()
4187
4188 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
4189
4190         * class.c, class.h: add an interfaces member to MonoClass.
4191         * image.c, image.h: add assembly_name field to MonoImage
4192         from the assembly table.
4193         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
4194
4195 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
4196
4197         * class.c: Handle Array in mono_class_from_mono_type ().
4198         * metadata.c, pedump.c: some endian fixes.
4199
4200 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
4201
4202         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
4203         * metadata.c: fix small problem introduced with the latest commit.
4204
4205 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
4206
4207         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
4208         We don't need a MonoMetadata pointer anymore to compare signatures in
4209         mono_metadata_signature_equal (), update callers.
4210         Reduced memory usage an number of allocations for MonoMethodHeader and
4211         MonoMethodSignature.
4212
4213 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
4214
4215         * metadata.c: added compare for szarray.
4216
4217 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
4218
4219         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
4220         and add a couple more types to it and mono_defaults. Give an hint on
4221         classes that need implementing in our corlib and are referenced
4222         in mscorlib.
4223
4224 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
4225
4226         * class.h, class.c: keep track if a class is also an Enum.
4227         * loader.c: Implement a couple more types for use in libffi
4228         marshalling. Gives better diagnostics when failing to dlopen
4229         a library. Set method->klass for P/Invoke methods, too.
4230
4231 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
4232
4233         * class.c, class.h: add a MonoType this_arg to MonoClass that
4234         represents a pointer to an object of the class' type that
4235         can be used by the interpreter and later the type cache.
4236         Add best guess alignment info for valuetype objects.
4237
4238 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
4239
4240         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
4241         into MonoType: one less level of indirection and allocation and
4242         simplifies quite a bit of code. Added cache for MonoTypes that are
4243         used frequently, so that we don't need to allocate them all the time.
4244
4245 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
4246
4247         * class.c (mono_class_create_from_typedef): System.Enum is also a
4248         value type, although it does not derive from System.ValueType
4249         (maybe a bug in the ms compiler?)
4250
4251         * metadata.c (mono_type_size): return the right size for value types
4252
4253         * loader.c (mono_get_method): only initialize method header if not abstract
4254
4255         * class.c (mono_class_from_mono_type): use mono_default values. 
4256
4257 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
4258
4259         * *: use MonoClass pointers instead of <type_tokens>
4260         
4261         * class.h: new flag: metadata_inited.
4262
4263         * class.c (mono_class_metadata_init): impl.
4264         (mono_class_instance_size): impl.
4265         (mono_class_data_size): impl.
4266
4267 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
4268
4269         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
4270         MonoClass now has the name and name_space fields. 
4271         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
4272         mono_get_method () takes and optional MonoClass as argument.
4273         Removed mono_typedef_from_name() and added mono_class_token_from_name()
4274         instead that takes advantage of a map from class names to typedef
4275         tokens in MonoImage.
4276
4277 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
4278
4279         * metadata.c: zero is not a valid alignment boundary.
4280         Merge MONO_TYPE_VOID in default decoding code.
4281
4282 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
4283
4284         * image.h: merged MonoMetadata into MonoImage
4285
4286         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
4287         identify the type of elements.
4288
4289 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
4290
4291         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
4292         * cil-coff.h: split MonoMSDOSHeader and add size info.
4293         * image.c: add some consistency checks.
4294         * metadata.c: fix row size computation: one programmer
4295         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
4296         add explanation for the locator routine.
4297         Fix decoding of size in method header.
4298         
4299 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
4300
4301         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
4302         (g_concat_dir_and_file): Bring g_concat_dir_and_file
4303         function from gnome-libs.  This uses the right path separator
4304         based on the OS, and also works around a bug in some systems where
4305         a double slash is not allowed. 
4306         (default_assembly_name_resolver): Use g_concat_dir_and_file
4307         (mono_assembly_open): ditto.
4308
4309 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
4310
4311         * metadata.c (mono_metadata_signature_equal): impl.
4312
4313         * *: void is now a realy MonoType (instead of using NULL)
4314         
4315         * metadata.c (do_mono_metadata_parse_type): use
4316         mono_metadata_parse_type to parse void value.
4317
4318 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
4319
4320         * metadata.c, metadata.h: in the signature and method header store
4321         only the space required for holding the loca vars and incoming arguments.
4322
4323 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
4324
4325         * metadata.c (do_mono_metadata_parse_type): treat void like any
4326         other type (instead of assigning NULL);
4327
4328 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
4329
4330         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
4331
4332 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
4333
4334         * image.c (do_mono_image_open): added a cache for arrays.
4335
4336 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
4337
4338         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
4339         decode a single column from a row in a metadata table and changes
4340         to take advantage of it in the typedef locator (gives a nice speed up).
4341         Store offset info for function params.
4342
4343 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
4344
4345         * image.h (MONO_IMAGE_IS_CORLIB): removed 
4346
4347 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
4348
4349         * assembly.c: how could mono_assembly_close () had ever worked?
4350         * metadata.c, metadata.h: provide offset info for local vars.
4351         Implement mono_type_size () to take care of alignment as well
4352         as size (it was mono_field_type_size in cli/class.c before).
4353
4354 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
4355
4356         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
4357
4358         * assembly.h (CORLIB_NAME): set to corlib.dll
4359
4360         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
4361
4362 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
4363
4364         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
4365         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
4366         tokentype.h: massive namespace cleanup.
4367
4368 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
4369
4370         * metadata.h, metadata.c: decode exception clauses when parsing method header.
4371
4372 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
4373
4374         * metadata.c (mono_metadata_free_type): added check for type !=
4375         NULL (void) before calling mono_metadata_free_type()
4376
4377 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
4378
4379         * metadata.h, row_indexes.h: added header with enumerations to use
4380         to index in the columns from tables in metadata and to decode coded
4381         tokens: we should start using this instead of embedding magic numbers
4382         all over the code.
4383
4384 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
4385
4386         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
4387         Move metadata_t info from cli_image_info_t to MonoImage, where
4388         it's easily accessible. Changed all the uses accordingly.
4389         Added the method and class caches to MonoImage.
4390         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
4391         and mono_metadata_decode_value () signature to be more consistent
4392         with the other parse functions (and simplify code). Taken advantage
4393         of zero-length array allocation with GCC. Removed reduntant (and
4394         wrong) MonoFieldType struct and use MonoParam instead. Changed
4395         mono_metadata_parse_field_type () to use common code for parsing.
4396         Added mono_metadata_typedef_from_field () and
4397         mono_metadata_typedef_from_method () to lookup a typedef index from a
4398         field or method token.
4399         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
4400
4401 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
4402
4403         * metadata.c (mono_metadata_parse_field_type): Implement. 
4404         (do_mono_metadata_parse_type): Split engine from
4405         mono_metadata_parse_type, so that we can create smaller structures
4406         for things that just have one pointer to the MonoType (look at
4407         the MonoFieldType)
4408
4409 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
4410
4411         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
4412         as Jan Gray found out, it is incorrect. 
4413
4414 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
4415
4416         * assembly.c: Implement asssembly loading.  This loads an image
4417         and loads all the referenced assemblies.  Come to think of it, we
4418         could always do lazy loading of the assemblies. 
4419
4420         * image.c (mono_image_open): Keep loaded images in a hashtable.
4421
4422         * image.h (MonoImage): Add reference count.
4423
4424 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
4425
4426         * assembly.c (mono_assembly_open): Keep track of the file name in
4427         case the assembly has no ASSEMBLY table.
4428
4429         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
4430         from get.c here.
4431
4432 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
4433
4434         * metadata.c, metadata.h: decode local vars in method header
4435         parse function. Change callers accordingly.
4436
4437 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
4438
4439         * metadata.h, cil-coff.h: protect against multiple inclusion.
4440         Added some new structures to hold information decoded from metadata:
4441         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
4442         and relevant decoding/free functions.
4443         * metadata.c: implement decoding functions. Add warning for out of bounds
4444         index in mono_metadata_locate(). Implement mono_get_method () to retreive
4445         all the info about a method signature and invocation. Remove check on
4446         uninitialized local var in parse_mh() and fix memory leak.
4447
4448 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
4449
4450         * metadata.h: More macros.
4451
4452         * tokentype.h: New file.
4453
4454 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
4455
4456         * assembly.c: added a consistency check and initialize
4457         some structures with g_new0().
4458         * metadata.c: fixed a couple more bugs in table size computation
4459         and add other checks for out-of bound access to metadata.
4460
4461 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
4462
4463         * metatada.c: fix bugs computing table sizes. Spew a
4464         warning when index in string heap is out of bounds.
4465
4466 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
4467
4468         * metadata.h: Add a couple of macros to manipulate tokens. 
4469
4470 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
4471
4472         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
4473         cli_section_tables).
4474
4475 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
4476
4477         * metadata.c (mono_metadata_user_string): New function, provides
4478         access to the UserString heap. 
4479
4480 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
4481
4482         * metadata.c: Add inline documentation.
4483
4484 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
4485
4486         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
4487         files. 
4488
4489 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
4490
4491         * typeattr.h: New file, TypeAttribute flags. 
4492
4493 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
4494
4495         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
4496         mono_assembly_ensure_section): Section loading code.
4497         (load_section_tables): Load the sections.
4498
4499         * mono/metadata/metadata.c (mono_metadata_locate_token,
4500         mono_metadata_locate): Functions to locate the information
4501         definition given a token or a table and an index.
4502         (mono_metadata_compute_table_bases): New.
4503         (compute_size): New function to compute the sizes of the various
4504         tables.
4505
4506         * mono/metadata/metadata.h: Finish listing the different index
4507         types. 
4508
4509         * mono/metadata/pedump.c: Improve to dump new information.
4510
4511 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
4512
4513         * mono/metadata/metadata.c: Entered all the tables matching
4514         Beta2. 
4515
4516         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
4517
4518