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