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