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