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