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