Rationalize MonoTODO
[mono.git] / mcs / class / corlib / System.Reflection.Emit / ChangeLog
1 2006-10-06  Miguel de Icaza  <miguel@novell.com>
2
3         * AssemblyBuilder.cs: Am doing a try/catch for pulling the LCID
4         from the AssemblyCulture that is provided, as Microsoft allows
5         arbitrary locales (even non-existing ones) to be specified.
6
7         The .locale information is actually pulled from the AssemblyName,
8         not from this lcid.  But this LCID is used to encode the
9         resource.  In my exploration of this, we are setting this field,
10         even if CSC never sets the field itself (its always zero).
11
12         Maybe we should completely remove this.
13
14 2006-09-12  Mart Roosma  <roosma@gmail.com>
15
16         * DynamicMethod.cs: Allow empty name and null return type. 
17         Fixes bug #79367.
18
19 2006-09-05  Miguel de Icaza  <miguel@novell.com>
20
21         * TypeBuilder.cs (SetParent): Null parent is allowed for
22         interfaces. 
23
24 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
25
26         * DynamicMethod.cs: Fix a warning.
27
28         * TypeBuilder.cs: Allow static methods on interfaces. Fixes #79249.
29
30 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
31
32         * *.cs: Use String.Empty instead of "" in a lot of places.
33
34 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
35
36         * ConstructorBuilder.cs (GetILGenerator): Avoid creating a new ILGenerator each time
37         this is called. Fixes #78859.
38
39 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
40
41         * MethodBuilder.cs (SetCustomAttribute): Fix handling of SpecialNameAttribute.
42
43 2006-07-09  Gert Driesen  <drieseng@users.sourceforge.net>
44
45         * DynamicMethod.cs: Fix check for empty method body, avoids SIGSEV.
46
47 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
48
49         * DynamicMethod.cs: Create all other DynamicMethod's referenced by
50         this method as well. Check for an empty method body.
51
52         * ILGenerator.cs (Emit): Handle DynamicMethod's which might not have a
53         declaring type.
54
55 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
56
57         * AssemblyBuilder.cs (MonoResource): Add a 'stream' field.
58
59         * ModuleBuilder.cs (DefineManifestResource): Add new net 2.0 method.
60
61 2006-04-26  Miguel de Icaza  <miguel@novell.com>
62
63         * MethodBuilder.cs: better error messages when we close the
64         method. 
65
66 2006-03-28  Marek Safar  <marek.safar@seznam.cz>
67
68         * ILGenerator.cs: Delayed the exception stack creation. It saves ~1.5 MB
69         for corlib compilation.
70
71 2006-03-27  Marek Safar  <marek.safar@seznam.cz>
72
73         * ILGenerator.cs: Tune up label defaults, switched to double resizing.
74
75 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
76
77         * AssemblyBuilder.cs (AddTypeForwarder): New internal method for
78         adding type forwarders to an assembly.
79
80 2006-02-27  Gert Driesen  <drieseng@users.sourceforge.net>
81
82         * ConstructorBuilder.cs: In AddDeclarativeSecurity, throw an
83         ArgumentOutOfRangeException instead of an ArgumentException if action 
84         is a Request* action. Fixes bug #77640.
85         * MethodBuilder.cs: Same.
86         * TypeBuilder.cs: Same.
87
88 Mon Feb 27 17:12:40 CET 2006 Paolo Molaro <lupus@ximian.com>
89
90         * ModuleBuilder.cs: unlink the file before saving
91         otherwise we might overwrite a file mmapped by the runtime.
92
93 2006-02-17  Zoltan Varga  <vargaz@gmail.com>
94
95         * DynamicMethod.cs: Implement DefineParameter ().
96
97         * ParameterBuilder.cs: Add support for DynamicMethod parents.
98
99 2006-02-15  Martin Baulig  <martin@ximian.com>
100
101         * TypeBuilder.cs (TypeBuilder.DefineMethod): Also enable the
102         2-argument version in the `BOOTSTRAP_NET_2_0' profile.
103         (TypeBuilder.DefineGenericMethod): Removed.
104
105 2006-02-14  Martin Baulig  <martin@ximian.com>
106
107         * ConstructorBuilder.cs
108         (ConstructorBuilder.IsGenericMethod): Override this and return
109         false; the MS runtime doesn't throw an exception here.
110         (ConstructorBuilder.IsGenericMethodDefinition): Likewise.
111
112         * MethodBuilder.cs
113         (MethodBuilder.IsGenericMethod): Implement this.
114         (MethodBuilder.IsGenericMethodDefinition): Likewise.
115
116 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
117
118         * TypeBuilder.cs (CreateType): Add a check for Sealed parents.
119
120 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
121
122         * OpCodes.cs: Readonly is a net 2.0 only field.
123
124 Tue Jan 31 13:37:02 CET 2006 Paolo Molaro <lupus@ximian.com>
125
126         * OpCodes.cs: Added Readonly field.
127
128 2006-01-29  Raja R Harinath  <harinath@gmail.com>
129
130         * GenericTypeParameterBuilder.cs (DeclaringType): Return the
131         declaring type of a generic method.
132
133 2005-12-15  Raja R Harinath  <rharinath@novell.com>
134
135         * TypeBuilder.cs (IsGenericType): Implement override.
136
137 2005-12-07  Martin Baulig  <martin@ximian.com>
138
139         * GenericTypeParameterBuilder.cs: Add support for custom attributes.
140         (GenericTypeParameterBuilder.cattrs): New field.
141         (GenericTypeParameterBuilder.SetCustomAttribute): Implement this.
142
143 Mon Dec 5 15:13:26 CET 2005 Paolo Molaro <lupus@ximian.com>
144
145         * ILGenerator.cs: fixed emitting doubles on ARM.
146
147 2005-12-02  Alp Toker  <alp@atoker.com>
148
149         * GenericTypeParameterBuilder.cs:
150         * TypeBuilder.cs: DeclaringMethod should return MethodBase, not MethodInfo
151
152 2005-11-19  Zoltan Varga  <vargaz@gmail.com>
153
154         * AssemblyBuilder.cs: Add support for setting FileVersion unmanaged 
155         resource. Fixes #64427.
156
157 2005-11-18  Zoltan Varga  <vargaz@gmail.com>
158
159         * ParameterBuilder.cs (SetCustomAttribute): Handle DefaultParameterValueAttribute as well.
160
161         * CustomAttributeBuilder.cs: Add support for decoding more types of
162         constructor parameters.
163
164 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
165
166         * TypeBuilder.cs (SetCustomAttribute): Handle ComImportAttribute as well.
167
168 2005-11-11  Marek Safar  <marek.safar@seznam.cz>
169
170         * EnumBuilder.cs, GenericTypeParameterBuilder.cs: Reflect Type changes.
171
172 2005-11-06  Zoltan Varga  <vargaz@freemail.hu>
173
174         * Label.cs: Add == and != operators.
175
176 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
177
178         * FieldBuilder.cs: Add implementation of new UMarshal property.
179
180 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
181
182         * FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Add support for
183         returing custom attributes in created types. MS.NET supports this by
184         returning non-builder objects from GetMethod/GetField etc., but we return
185         builder objects in this case. Fixes #76521.
186
187 2005-10-24  Martin Baulig  <martin@ximian.com>
188
189         * TypeBuilder.cs (TypeBuilder.IsGenericTypeDefinition): Override this.
190
191 2005-10-03  Atsushi Enomoto  <atsushi@ximian.com>
192
193         * CustomAttributeBuilder.cs : internal attributes should be allowed.
194           Fixed bug #75723.
195
196 2005-09-26  Marek Safar  <marek.safar@seznam.cz>
197
198         * PropertyBuilder.cs: Throw NotSupportedException for unsupported
199         methods.
200
201 2005-09-14  Martin Baulig  <martin@ximian.com>
202
203         * LocalBuilder.cs
204         (LocalBuilder.Mono_GetLocalIndex): New static internal method;
205         same as the .NET 2.0 property `LocalIndex'.
206
207 Mon Sep 5 18:08:09 CEST 2005 Paolo Molaro <lupus@ximian.com>
208
209         * EventBuilder.cs, FieldBuilder.cs, MethodBuilder.cs, TypeBuilder.cs,
210         PropertyBuilder.cs: take care of the SpecialName attribute (bug #75768).
211
212 2005-09-01  Raja R Harinath  <rharinath@novell.com>
213
214         * CustomAttributeBuilder.cs (get_umarshal): Don't cause a nullref
215         exception when passed a custom marshaller type that belongs to the
216         assembly being built.  When user specifies MarshalType rather than
217         MarshalTypeRef, don't attempt to resolve the type.
218
219 2005-08-31  Raja R Harinath  <rharinath@novell.com>
220
221         * CustomAttributeBuilder.cs (get_umarshal): Fix typo.  The name of
222         the field is "SizeParamIndex", not "SizeSizeParamIndex".
223
224         * ParameterBuilder.cs (SetCustomAttribute) [MarshalAsAttribute]:
225         Set ParameterAttributes.HasFieldMarshal flag.
226
227 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
228
229         * DynamicMethod.cs (CreateDelegate): Don't cache the delegate since it
230         needs to be different for each target.
231         
232         * DynamicMethod.cs (CreateDynMethod): Call ilgen.label_fixup ().
233
234         * DynamicMethod.cs (AddRef): Reserve every second ref slot for use by the
235         runtime.
236
237 2005-08-05  Gert Driesen  <drieseng@users.sourceforge.net>
238
239         * AssemblyBuilder.cs: Implement _AssemblyBuilder, CA fixes to 
240         correspond with MS.NET
241         * ConstructorBuilder.cs: Implement _ConstructorBuilder, CA fixes to 
242         correspond with MS.NET
243         * CustomAttributeBuilder.cs: Implement _CustomAttributeBuilder, CA 
244         fixes to correspond with MS.NET
245         * EnumBuilder.cs: Implement _EnumBuilder, CA fixes to correspond with 
246         MS.NET
247         * EventBuilder.cs: Implement _EventBuilder, CA fixes to correspond 
248         with MS.NET
249         * FieldBuilder.cs: Implement _FieldBuilder, CA fixes to correspond 
250         with MS.NET
251         * LocalBuilder.cs: Implement _LocalBuilder, CA fixes to correspond 
252         with MS.NET
253         * MethodBuilder.cs: Implement _MethodBuilder, CA fixes to correspond 
254         with MS.NET
255         * MethodRental.cs: CA fixes to correspond with MS.NET, implemented
256         _MethodRental.
257         * ModuleBuilder.cs: Implement _ModuleBuilder, CA fixes to correspond 
258         with MS.NET
259         * ILGenerator.cs: Implement _ILGenerator, CA fixes to correspond 
260         with MS.NET
261         * ParameterBuilder.cs Implement _ParameterBuilder, CA fixes to 
262         correspond with MS.NET
263         * PropertyBuilder.cs: Implement _PropertyBuilder, CA fixes to 
264         correspond with MS.NET
265         * SignatureHelper.cs: Implement _SignatureHelper, CA fixes to 
266         correspond with MS.NET
267         * TypeBuilder.cs: Implement _TypeBuilder, CA fixes to correspond 
268         with MS.NET
269
270 2005-07-21  Jb Evain  <jbevain@gmail.com>
271
272         * ILGenerator.cs: Implement filter blocks support.
273         Fixes bug #75010.
274
275 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
276
277         * ILGenerator.cs (BeginFaultBlock): Call InternalEndClause () here
278         too. Reported by Jeroen Frijters.
279
280 2005-07-11  Martin Baulig  <martin@ximian.com>
281
282         * TypeBuilder.cs (TypeBuilder.CreateType): Call
283         create_generic_class() here as well; fixes #75454.
284
285 2005-06-27  Marek Safar  <marek.safar@seznam.cz>
286
287         * TypeBuilder.cs (check_name): Wrong exception argument order.
288
289 2005-06-14  Sebastien Pouliot  <sebastien@ximian.com>
290
291         * AssemblyBuilder.cs: Override UnprotectedGetName to set the public 
292         key (if available).
293
294 2005-06-12  Gert Driesen <drieseng@users.sourceforge.net>
295
296         * MethodBuilder.cs: In CreateMethodBody, throw 
297         ArgumentOutOfRangeException instead of ArgumentException when count 
298         is not within range of array. Do not allow zero length method body 
299         to be emitted when using 2.0 profile. Fixes bug #75236.
300
301 2005-06-12  Gert Driesen <drieseng@users.sourceforge.net>
302
303         * FieldBuilder.cs: FieldBuilder.FieldHandle should throw
304         NotSupportedException to match MS.NET (both 1.x and 2.x). 
305         Fixes regression introduced in r45750.
306         * MethodBuilder.cs: MethodBuilder.MethodHandle should throw
307         NotSupportedException to match MS.NET (both 1.x and 2.x).
308         Fixes regression introduced in r45750.
309
310 2005-06-09  Kamil Skalski <nazgul@nemerle.org>
311         * ConstructorBuilder.cs FieldBuilders.cs MethodBuilder.cs: Return
312         RuntimeHandles when requested
313         
314         * TypeBuilder.cs: Add static Get{Method,Constructor,Field} methods
315         from .NET 2.0 beta 2 API for obtaining instanciated *Info objects
316         from non-instanciated counterparts 
317
318 2005-06-08  Zoltan Varga  <vargaz@freemail.hu>
319
320         * ConstructorBuilder.cs FieldBuilder.cs MethodBuilder.cs PropertyBuilder.cs:
321         Add 2.0 Module property.
322
323         * *.cs: Updates for net 2.0 beta 2.
324
325 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
326
327         * *Token.cs: Add net 2.0 Equals methods.
328
329         * *.cs: Updates for net 2.0 beta 2.
330
331         * *.cs: Updates for net 2.0 beta 2.
332
333 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
334
335         * AssemblyBuilder.cs: Update after PortableExecutableKinds name change.
336
337 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
338
339         * MethodBuilder.cs CustomAttributeBuilder.cs: Rework DllImportAttribute
340         decoding to improve compatibility with MS.NET.
341         
342         * MethodBuilder.cs (SetCustomAttribute): Set PinvokeImpl attribute if
343         a DllImportAttribute is present.
344
345 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
346
347         * MethodBuilder.cs (SetCustomAttribute): Handle the case when the
348         calling convention inside the DllImportAttribute is empty.
349
350 2005-06-01  Zoltan Varga  <vargaz@freemail.hu>
351
352         * MethodBuilder.cs (SetCustomAttribute): Handle DllImportAttribute
353         as well.
354
355         * CustomAttributeBuilder.cs: Add a decode_cattr helper method.
356
357 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
358
359         * MethodBuilder.cs: Add extra_flags field to encode P/Invoke
360         bits that can't be specified via MethodBuilder directly; fixes
361         #75060.
362
363 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
364
365         * GenericTypeParameterBuilder.cs: Return this in UnderlyingSystemType.
366
367 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
368
369         * ModuleBuilder.cs: Implemented DefineDocument(). Generate debug
370         info when saving the module.
371         * ILGenerator.cs: Keep marked sequence points in a list.
372         Added a GenerateDebugInfo method, which dumps the info collected
373         during code generation.
374         * TypeBuilder.cs:
375         * ConstructorBuilder.cs:
376         * MethodBuilder.cs: Added method for generating debug info.
377         * LocalBuilder.cs: Added StartOffset and EndOffset properties.
378         * CustomAttributeBuilder.cs: Use IsInstanceOfType instead of
379         IsAssignableFrom when possible.
380
381 2005-05-20  Miguel de Icaza  <miguel@novell.com>
382
383         * TypeBuilder.cs (UnderlyingSystemType): should always return this
384         according to Zoltan.  Old code left there, but should probably be removed.
385
386 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
387
388         * MethodBuilder.cs (fixup): Take into account CreateMethodBody as
389         well.
390
391         * ConstructorBuilder.cs MethodBuilder.cs: Check that elements of
392         parameterTypes are not null. Fixes #74928.
393
394 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
395
396         * ConstructorBuilder.cs MethodBuilder.cs (fixup): Fix this.
397         
398         * ConstructorBuilder.cs MethodBuilder.cs (fixup): Throw an exception if a
399         method body is empty. Fixes #74906.
400
401 2005-04-13  Marek Safar  <marek.safar@seznam.cz>
402
403         * TypeBuilder.cs (SetCustomAttribute): StructLayoutAttribute.CharSet
404         has to overwrite current settings.
405
406 2005-04-05  Sebastien Pouliot  <sebastien@ximian.com>
407
408         * AssemblyBuilder.cs: Don't call GetCurrentDirectory if building an 
409         assembly that will never be serialized to disk (because CAS may not
410         allow disk access but still allow generating a in-memory assembly).
411
412 2005-03-24  Miguel de Icaza  <miguel@novell.com>
413
414         * DynamicMethod.cs (CreateDelegate): Add second overload based on
415         the first one that allows for a `target' argument.
416
417 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
418
419         * MethodRental.cs: Added Demand for UnmanagedCode on SwapMethodBody 
420         method.
421
422 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
423
424         * MethodBuilder.cs: Add internal BestFitMapping and 
425         ThrowOnUnmappableChar properties used by mcs.
426
427 2005-03-09  Marek Safar  <marek.safar@seznam.cz>
428
429         * ILGenerator.cs (DeclareLocal): Throw an exception for null argument.
430
431 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
432
433         * CustomAttributeBuilder.cs UnmanagedMarshal.cs: Allow sizeConst and
434         sizeParamIndex to be -1, which means they are not given.
435         
436         * CustomAttributeBuilder.cs (get_umarshal): Only call the internal
437         LPArray creation method if sizeConst of sizeParamIndex is given.
438
439         * UnmanagedMarshal.cs: Add has_size field.
440
441 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
442
443         * CustomAttributeBuilder.cs (get_umarshal): Marshal sizeConst and
444         sizeParamIndex fields as well.
445
446         * UnmanagedMarshal.cs: Add param_num field and a new internal creation
447         method which sets it.
448
449 2005-02-11  Zoltan Varga  <vargaz@freemail.hu>
450
451         * TypeBuilder.cs (IsAssignableTo): New helper method. Fixes #70838.
452         
453         * TypeBuilder.cs: Fix warning.
454
455 2005-01-21 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
456         
457         * MethodBuilder.cs, TypeBuilder: missing 'params' in some method signature
458         patch by Kamil Skalski <nazgul@nemerle.org>
459
460 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
461
462         * ModuleBuilder.cs: Interfaces should have null BaseType.
463         Fixes #71301.
464
465 2005-01-18  Miguel de Icaza  <miguel@ximian.com>
466
467         * TypeBuilder.cs: Add check for creation.  Fix from Geoff.
468
469 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
470
471         * CustomAttributeBuilder.cs: Fix a warning.
472
473 Wed Dec 15 11:34:13 CET 2004 Paolo Molaro <lupus@ximian.com>
474
475         * ModuleBuilder.cs, EnumBuilder.cs: actually add the enumbuilder
476         to the type list of the module (bug#70488).
477
478 2004-12-09  Martin Baulig  <martin@ximian.com>
479
480         * GenericTypeParameterBuilder.cs
481         (GenericTypeParameterBuilder.IsValueType): Fixed the FIXME.
482
483 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
484
485         * AssemblyBuilder.cs: Move corlib_internal field here from Assembly.
486         
487         * AssemblyBuilder.cs: Add corlib_internal to the ctor parameters.
488
489 2004-12-06  Ben Maurer  <bmaurer@ximian.com>
490
491         * TypeBuilder.cs (CreateType): Creating a type twice does not
492         throw in msft.
493
494 2004-11-22  Zoltan Varga  <vargaz@freemail.hu>
495
496         * ModuleBuilder.cs: Check that all types inside the module are created.
497         Fixes #69780.
498
499 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
500
501         * ModuleBuilder.cs (Save): Use new WriteToFile icall.
502
503 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
504
505         * TypeBuilder.cs: Make some members work if the type is created since
506         MS does this.
507
508 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
509
510         * CustomAttributeBuilder.cs: Check that arguments are not 
511         multi-dimensional arrays.
512
513 2004-10-12  Martin Baulig  <martin@ximian.com>
514
515         * TypeBuilder.cs (TypeBuilder.setup_generic_class): Renamed to
516         create_generic_class() and added a new setup_generic_class().
517         (TypeBuilder.DefineGenericParameters): Call setup_generic_class()
518         before creating the type parameters.
519
520 2004-10-11  Martin Baulig  <martin@ximian.com>
521
522         * TypeBuilder.cs (TypeBuilder.generic_container): New private field.
523
524         * MethodBuilder.cs (MethodBuilder.generic_container): New private field.
525
526         * GenericTypeParameterBuilder.cs
527         (GenericTypeParameterBuilder.GetGenericTypeParameterConstraints):
528         Return `Type.EmptyTypes' instead of an array of `typeof (object)'.      
529
530 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
531
532         * ModuleBuilder.cs: Create global type after creation.
533
534 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
535
536         * ModuleBuilder.cs (GetTypes): Fix length of returned array. Fixes
537         #65931.
538
539 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
540
541         * ModuleBuilder.cs (DefineType): Check for duplicate type names. Fixes
542         #65988.
543
544 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
545
546         * AssemblyBuilderAccess.cs: Remove [Flags].
547
548         * PackingSize.cs: Add new 2.0 members. Remove [Flags].
549
550         * AssemblyBuilder.cs: Add net 2.0 Save method.
551
552         * LocalBuilder.cs: Make this inherit from LocalVariableInfo under
553         net 2.0. Reorganize fields so the layout visible to the runtime is the
554         same under 1.0 and 2.0. Add 2.0 properties.
555
556 2004-10-02  Gert Driesen  <drieseng@users.sourceforge.net>
557
558         * TypeBuilder.cs: throw NotSupportedException when defining default
559         ctor if parent type does not have default ctor
560
561 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
562
563         * TypeBuilder.cs: Make 'created' field visible to the runtime.
564
565 2004-09-28  Martin Baulig  <martin@ximian.com>
566
567         * GenericTypeParameterBuilder.cs
568         (GenericTypeParameterBuilder.ContainsGenericParameters): Return
569         true here; System.Type.ContainsGenericParameters returns true when
570         called on a type parameter, so let's do the same here.
571
572 2004-09-27  Zoltan Varga  <vargaz@freemail.hu>
573
574         * ConstructorBuilder.cs: Add 2.0 GetILGenerator(size) method.
575
576 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
577
578         * UnmanagedMarshal.cs: Add ToMarshalAsAttribute method.
579
580 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
581
582         * TypeBuilder.cs: Add IsCreated method.
583
584 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
585
586         * FieldBuilder.cs: Add dummy GetFieldOffset method.
587
588 2004-09-24  Martin Baulig  <martin@ximian.com>
589
590         * GenericTypeParameterBuilder.cs
591         (GenericTypeParameterBuilder.GetGenericParameterConstraints): Override.
592
593 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
594
595         * DynamicMethod.cs: Add MetadataToken property and tweak Module property.
596
597 2004-09-23  Martin Baulig  <martin@ximian.com>
598
599         * GenericTypeParameterBuilder.cs
600         (GenericTypeParameterBuilder.SetGenericParameterAttributes): New
601         public method, replaces the old Mono_* hacks.
602
603 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
604
605         * AssemblyBuilder.cs: Fixed assembly-level permissions. I don't know 
606         why I splitted them all into individual entries when only a single set
607         is accepted for each security action :(.
608
609 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
610
611         * CustomAttributeBuilder.cs: Applied patch from Marcus Urban
612         (mathpup@mylinuxisp.com). Add support for defining custom
613         marshallers by calling SetCustomAttribute.      
614
615 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
616
617         * AssemblyBuilder.cs: Keep a copy of the 3 permission set as an array
618         of RefEmitPermissionSet. This will allow to reuse existing 
619         functionalities already present in the runtime.
620
621 2004-09-12  Marek Safar  <marek.safar@seznam.cz>
622
623         * TypeBuilder.cs: Do not create default constructor for
624         static classes.
625
626 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
627
628         * TypeBuilder.cs: Set the table_idx of the global type to 1.
629
630         * ModuleBuilder.cs: Save the main module of the assembly even if it is 
631         transient.
632
633 2004-09-02 Ben Maurer  <bmaurer@users.sourceforge.net>
634
635         * LocalBuilder.cs: another s.ioe
636
637 2004-09-02 Ben Maurer  <bmaurer@users.sourceforge.net>
638
639         * ModuleBuilder.cs: dont throw an S.IOE for debugging stuff.
640         makes sre apps work
641
642 2004-09-02  Martin Baulig  <martin@ximian.com>
643
644         * MethodBuilder.cs (MethodBuilder.GetParameters): Throw a
645         NotSupportedException() until the type has been fully created.
646
647 2004-09-01  Martin Baulig  <martin@ximian.com>
648
649         * IMonoSymbolWriter.cs: Removed.
650
651         * ModuleBuilder.cs, LocalBuilder.cs, ILGenerator.cs: Removed the
652         old debugging code.
653
654 2004-08-13  Sebastien Pouliot  <sebastien@ximian.com>
655
656         * AssemblyBuilder.cs: (Partly) Fix delay-signing issue (#56621) when 
657         MCS is used on the MS runtime (other part of the fix is for MCS).
658
659 2004-08-11  Marek Safar  <marek.safar@seznam.cz>
660
661         * AssemblyBuilder.cs: Added AddPermissionRequests method
662         used be mcs for SecurityPermissionAttribute handling.
663
664 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
665
666         * EnumBuilder.cs: Call setup_enum_type () in the constructor. Fixes
667         #62237.
668
669 2004-08-07  Jackson Harper  <jackson@ximian.com>
670
671         * AssemblyBuilder.cs: "neutral" culture is invariant culture
672         (String.Empty).
673
674 2004-08-07  Atsushi Enomoto  <atsushi@ximian.com>
675
676         * OpCodes.cs : csc complains CS1034 Line cannot exceed 2046 characters.
677
678 2004-08-05  Duncan Mak  <duncan@ximian.com>
679
680         * OpCodes.cs (TakesSingleByteArgument): Add this back.
681
682 2004-08-05  Duncan Mak  <duncan@ximian.com>     
683
684         This patch is based on an idea of Ben's to reduce the code size
685         in MCS. 
686
687         * OpCodes.cs: Instead pushing the data onto the stack when each
688         OpCode is initialized, pack the data into 2 ints and store only
689         that.  Furthermore, the names of each OpCode are stored in a
690         separate string array in the new OpCodeNames class.
691
692         * OpCodeNames.cs: The names of each OpCode are moved here to delay
693         the initialization of the strings, as they are not used frequently.
694
695         * OpCode.cs: Rewrote this to take in everything as 2 ints.
696
697 2004-07-29  Martin Baulig  <martin@ximian.com>
698
699         * ILGenerator.cs (ILGenerator.Mono_GetCurrentOffset): New static
700         internal method.
701
702         * ModuleBuilder.cs (ModuleBuilder.Mono_GetGuid): New static
703         internal method.
704
705 2004-07-24  Martin Baulig  <martin@ximian.com>
706
707         * TypeBuilder.cs (TypeBuilder.UnspecifiedTypeSize): Set this to 0
708         and initialize it to 0 everywhere.
709
710 2004-07-22  Martin Baulig  <martin@ximian.com>
711
712         * ILGenerator.cs (ILGenerator.BeginFaultBlock): Implemented.
713
714 2004-07-07  Miguel de Icaza  <miguel@ximian.com>
715
716         * LocalBuilder.cs: Remove MakePinned, we are now going to use
717         ILGenerator.DeclaraLocal that takes the `bool pinned' argument. 
718
719         * ILGenerator.cs (DeclareLocal): Add `pinned' version of the
720         method on the 2.0 profile.
721
722 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
723
724         * EnumBuilder.cs (CreateType): Call a new icall to set the internal
725         type field. Fixes #59833.
726
727 Thu Jun 24 15:33:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
728
729         * ParameterBuilder.cs: implement SetConstant ().
730
731 Wed Jun 23 15:40:48 CEST 2004 Paolo Molaro <lupus@ximian.com>
732
733         * TypeBuilder.cs: handle properly the case when SetParent() 
734         is called (requires an updated runtime, too bug#60474).
735
736 Wed Jun 23 14:20:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
737
738         * EnumBuilder.cs, TypeBuilder.cs: patch from Gert Driesen
739         to implement EnumBuilder (slightly tweaked).
740
741 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
742
743         * MethodRental.cs: fixed value of JitOnDemand
744
745 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
746
747         * FieldBuilder.cs: fixed implementation to match MS.NET,
748         meaning throw InvalidOperationException for methods that
749         should not be allowed to execute when type has been
750         created, and throw NotSupportedException for methods and
751         properties that should not be called on FieldBuilder
752
753 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
754
755         * MethodBuilder.cs: move check to see if type has already 
756         been created up, to match MS.NET behaviour. Fix GetHashCode 
757         (removed TODO)
758
759 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
760
761         * MethodRental.cs: Added check for method size
762
763 2004-06-08  Martin Baulig  <martin@ximian.com>
764
765         * ILGenerator.cs (TokenGenerator.GetToken): Added overloaded
766         version which takes a MethodInfo and a Type[].
767         (IlGenerator.EmitCall): When emitting a call to a varargs method,
768         use the new GetToken() to pass the optional argument types to the
769         runtime.
770
771         * ModuleBuilder.cs (ModuleBuilder.getMethodToken): New interncall.
772
773 2004-05-29  Gert Driesen (drieseng@users.sourceforge.net)
774
775         * AssemblyBuilder.cs: removed extra method, fixes public API
776         compatibility with MS.NET
777         * TypeBuilder.cs: removed extra method, fixes public API
778         compatibility with MS.NET
779
780 2004-05-28  Jackson Harper  <jackson@ximian.com>
781
782         * CustomAttributeBuilder.cs: GetBlob now takes a ref to the
783         assembly so it can encode type names properly.
784         
785 2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>
786
787         * MethodBuilder.cs: Now use FastNewGuidArray to create new random 
788         Guids without using CryptoConfig. Speed up for MCS.
789
790 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
791
792         * MethodBuilder.cs: Add Equals and GetHashCode.
793
794         * TypeBuilder.cs: Add IsSubclassOf.
795
796 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
797
798         * AssemblyBuilder.cs: Make extra methods internal. mcs was changed
799         to handle this a long time ago.
800
801         * TypeBuilder.cs: Add IsAssignableFrom and IsInstanceOfType.
802         
803         * TypeBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Implement
804         ToString ().
805
806         * TypeBuilder.cs (ToString): Make this consistent with MS.NET.
807
808 2004-05-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
809
810         * OpCodes.cs: Refactored to avoid the static constructor
811
812 2004-05-10  Gert Driesen (drieseng@users.sourceforge.net)
813         * AssemblyBuilder.cs: fixed warning
814         * MethodRental.cs: added private default ctror to match MS.NET
815
816 2004-05-03 Lluis Sanches Gual  <lluis@ximian.com>
817
818         * ModuleBuilder.cs: Use name const to load the debugger assembly.
819
820 2004-05-01  Todd Berman  <tberman@sevenl.net>
821
822         * ModuleBuilder.cs: Load the proper assembly for a gac-only install.
823
824 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
825
826         * ILGenerator.cs, ModuleBuilder.cs: readonlyificate.
827
828 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
829
830         * MethodRental.cs: New file.
831
832 2004-04-28  Raja R Harinath  <rharinath@novell.com>
833
834         * TypeBuilder.cs (SetCustomAttribute): Handle the presence of the
835         full type name in the data stream.  This is emitted for value
836         types by the Mono runtime.
837
838 2004-04-23  Atsushi Enomoto  <atsushi@ximian.com>
839
840         * ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
841           GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
842           OpCodes.cs, TypeBuilder.cs :
843           The fix should be easier ;)
844
845 2004-04-23  Atsushi Enomoto  <atsushi@ximian.com>
846
847         * ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
848           GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
849           OpCodes.cs, TypeBuilder.cs :
850           NET_2_0 related build fix.
851
852 2004-04-07  Martin Baulig  <martin@ximian.com>
853
854         * GenericTypeParameterBuilder.cs
855         (Mono_SetReferenceTypeConstraint): New public method.
856         (Mono_SetValueTypeConstraint): New public method.
857
858 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
859
860         * MethodBuilder.cs, TypeBuilder.cs: always have 
861         slot for generic_params for consistent offsets.
862
863 2004-04-07  Martin Baulig  <martin@ximian.com>
864
865         * GenericTypeParameterBuilder.cs
866         (Mono_SetConstructorConstraint): New public method.     
867
868 2004-04-07  Martin Baulig  <martin@ximian.com>
869
870         * GenericTypeParameterBuilder.cs: New file.
871
872         * TypeBuilder.cs (TypeBuilder.DefineGenericParameters): New public
873         method.  This is the new public API.
874         (TypeBuilder.DefineGenericParameter): Removed.
875         (TypeBuilder.SetGenericParameterConstraints): Removed.
876
877         * MethodBuilder.cs (MethodBuilder.DefineGenericParameters): New public
878         method.  This is the new public API.
879         (MethodBuilder.DefineGenericParameter): Removed.
880         (MethodBuilder.SetGenericParameterConstraints): Removed.
881
882 2004-04-01  Martin Baulig  <martin@ximian.com>
883
884         * OpCodes.cs (OpCodes.Constrained): New opcode.
885
886 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
887
888         * LocalBuilder.cs: Fix pinned support.
889
890 2004-03-30  Martin Baulig  <martin@ximian.com>
891
892         * TypeBuilder.cs (TypeBuilder.SetGenericParameterConstraints):
893         Added `bool has_ctor_constraint' argument.
894
895         * MethodBuilder.cs (MethodBuilder.SetGenericParameterConstraints):
896         Added `bool has_ctor_constraint' argument.
897
898 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
899
900         * LocalBuilder.cs: pinned support.
901
902 2004-03-29  Martin Baulig  <martin@ximian.com>
903
904         * TypeBuilder.cs (TypeBuilder.ContainsGenericParameters): Implemented.
905
906 2004-03-25  Sebastien Pouliot  <sebastien@ximian.com>
907
908         * AssemblyBuilder.cs: Changed strongname support to match MS 
909         implementation (i.e. attributes are used by the compiler - not by
910         AssemblyBuilder).
911
912 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
913
914         * TypeBuilder.cs (GetMethod): Implement.
915
916         * CustomAttributeBuilder.cs: Reenable argument checking with MS.NET
917         compatibility tweaks.
918
919 2004-03-23  Martin Baulig  <martin@ximian.com>
920
921         * TypeBuilder.cs (TypeBuilder.GetEvents_internal): New internal
922         method; this is basically GetEvents(), but see the FIXME in that method.
923
924 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
925
926         * CustomAttributeBuilder.cs: Disable argument checking since it causes
927         regressions.
928
929 2004-03-22  Zoltan Varga  <vargaz@freemail.hu>
930
931         * CustomAttributeBuilder.cs (Initialize): Add more argument checking. 
932         Fixes #55793.
933
934 2004-03-09  Jackson Harper  <jackson@ximian.com>
935
936         * CustomAttributeBuilder.cs: Add some argument checking. Handle
937         default arguments properly.
938
939 2004-03-09  Sebastien Pouliot  <spouliot@videotron.ca>
940
941         * AssemblyBuilder.cs: The strong name key file existance will now be
942         checked in the current compilation directory AND in the assembly
943         output directory. Fix bugzilla entry #55320.
944
945 2004-02-23  Martin Baulig  <martin@ximian.com>
946
947         * MethodBuilder.cs (MethodBuilder.SetGenericMethodSignature):
948         Added MethodAttributes and CallingConventions arguments.
949
950 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
951
952         * TypeBuilder.cs: Implement DefineUninitializedData and 
953         AddDeclarativeSecurity.
954
955 2004-01-27  Zoltan Varga  <vargaz@freemail.hu>
956
957         * AssemblyBuilder.cs (SetCustomAttribute): Move the reading of the
958         keyfile to the Save () method.
959
960 2004-01-26  Sebastien Pouliot  <spouliot@videotron.ca>
961
962         * AssemblyBuilder.cs: Save will now strongname the assembly is (a) a
963         StrongName is present and (b) the signature isn't delayed.
964
965 2004-01-24 David Sheldon <dave-mono@earth.li>
966
967         * AssemblyBuilder.cs: Added override for GetFiles() that throws
968           NotSupportedException. 
969
970 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
971
972         * AssemblyBuilder.cs (Save): Handle entry points with an int return
973         type as well.
974         
975         * AssemblyBuilder.cs (Save): If the entry point is in a module, create
976         a new entry point which calls the real one, since the entry point must
977         be in the module which contains the manifest.
978
979         * ModuleBuilder.cs (Save): Create the global type automatically if not
980         already done.
981
982 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
983
984         * AssemblyBuilder.cs (DefineVersionInfoResource): Set more 
985         version info properties.
986
987 2004-01-08  Zoltan Varga  <vargaz@freemail.hu>
988
989         * CustomAttributeBuilder.cs (string_arg): New helper method.
990
991         * AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
992
993         * AssemblyBuilder.cs (SetCustomAttribute): Use the new helper method.
994
995         * AssemblyBuilder.cs (DefineUnmanagedResource): Implement.
996
997         * AssemblyBuilder.cs (DefineIconResource): New internal method to
998         support mcs.
999
1000         * TypeBuilder.cs (IsDefined): Implement this, since some corlib classes
1001         make calls to IsDefined.
1002
1003 2004-01-06  Zoltan Varga  <vargaz@freemail.hu>
1004
1005         * AssemblyBuilder.cs: Fix warning.
1006
1007 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
1008
1009         * AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
1010
1011 2003-12-29 Ben Maurer  <bmaurer@users.sourceforge.net>
1012
1013         * MethodBuilder.cs, ConstructorBuilder.cs: Override GetParameterCount.
1014         * ILGenerator.cs: Use GetParameterCount.
1015
1016 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
1017
1018         * AssemblyBuilder.cs (AddModule): New internal method to support 
1019         /addmodule in mcs.
1020
1021 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
1022
1023         * AssemblyBuilder.cs: New internal property to support /target:module in
1024         mcs.
1025
1026 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
1027
1028         * ILGenerator.cs: Applied patch from Ben Maurer 
1029         (bmaurer@users.sourceforge.net). Allocate arrays holding label data
1030         lazily and reduce their size.
1031
1032 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
1033
1034         * AssemblyBuilder.cs (MonoResource): New 'offset' field used by the
1035         runtime.
1036
1037         * ModuleBuilder: Implement DefineResource.
1038
1039 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
1040
1041         * AssemblyBuilder.cs (RefEmitPermissionSet): New helper structure.
1042         
1043         * MethodBuilder.cs (AddDeclarativeSecurity): Implement.
1044
1045         * ConstructorBuilder.cs (AddDeclarativeSecurity): Ditto.
1046
1047 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
1048
1049         * MethodBuilder.cs: Add stubs for missing methods.
1050
1051         * TypeBuilder.cs (GetEvents): Add new override.
1052
1053         * ModuleBuilder.cs: Implement some missing methods, add stubs for others.
1054
1055         * AssemblyBuilder.cs (GetFiles): Get rid of unneccessary override.
1056
1057         * AssemblyBuilder.cs (ImageRuntimeVersion): Add override to keep
1058         signature compatibility with MS.NET.
1059
1060         * TypeBuilder.cs (MemberType): Get rid of unneccessary override.
1061
1062 2003-12-08  Martin Baulig  <martin@ximian.com>
1063
1064         * TypeBuilder.cs (TypeBuilder.MonoGenericParam): Removed; use the
1065         new `MonoGenericParam' class instead (in S.R/MonoGenericInst.cs).
1066
1067 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
1068
1069         * ModuleBuilder.cs: Double the size of the types array during insertion
1070         do avoid excessive memory allocation and copying. Track the number of
1071         types in a separate variable.
1072
1073         * TypeBuilder.cs: Same for the 'fields' and 'methods' arrays.
1074
1075 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
1076
1077         * ModuleBuilder.cs (DefinePInvokeMethod): Implement.
1078
1079         * ModuleBuilder.cs (DefineGlobalMethod): Implement the Net 1.2 variants.
1080
1081 2003-11-28  Dick Porter  <dick@ximian.com>
1082
1083         * ModuleBuilder.cs: Do string compares with the Invariant culture.
1084
1085 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
1086
1087         * AssemblyBuilder.cs (SetCustomAttribute): Implement automatic 
1088         generation of build and revision numbers. Fixes #46492.
1089
1090 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
1091
1092         * TypeBuilder.cs: Implement GetField.
1093
1094 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
1095
1096         * DynamicMethod.cs: New class.
1097
1098         * ILGenerator.cs MethodBuilder.cs ConstructorBuilder.cs: Retrieve 
1099         tokens from a token generator object instead of from the ModuleBuilder,
1100         to support the implementation of DynamicMethod. Also get rid of the 
1101         unused 'mbuilder' field.
1102
1103         * ModuleBuilder.cs: Create a token generator object which can be
1104         passed to ILGenerator.
1105
1106         * LocalBuilder.cs ILGenerator.cs: Get rid of 'module' field, obtain 
1107         needed objects from the ilgen object instead.
1108
1109 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
1110
1111         * TypeBuilder.cs FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs:  Add support for custom modifiers from NET 1.2.
1112
1113         * ILGenerator.cs: Remove unused abuilder member.
1114
1115 2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1116
1117         * OpCodes.cs: Remove Boxval for v1.1+
1118
1119 2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1120
1121         * OpCodes.cs: Small rearrange to fix csc compiler warning about obsolete member used
1122
1123 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
1124
1125         * AssemblyBuilderAccess.cs PackingSize: Add [Flags].
1126
1127         * AssemblyBuilder.cs (DefineDynamicModule): Make internal method
1128         private.
1129
1130         * AssemblyBuilder.cs (Save): Write out the main module at the end.
1131         
1132 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
1133         
1134         * ConstructorBuilder.cs (.ctor): Automatically add RTSpecialName flag
1135         as MS does.
1136
1137 2003-11-06  Martin Baulig  <martin@ximian.com>
1138
1139         * ModuleBuilder.cs (ModuleBuilder.Save): Call `build_metadata'
1140         before writing the symbol file.
1141
1142 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
1143
1144         * AssemblyBuilder.cs (.ctor): Initialize the 'dir' field to something
1145         sensible.
1146         
1147         * AssemblyBuilder.cs (Save): Set 'created' flag.
1148
1149         * AssemblyBuilder.cs (get_next_table_index): Moved to ModuleBuilder,
1150         since table indexes are per-module.
1151
1152 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
1153
1154         * TypeBuilder.cs (DefineDefaultConstructor): Pass an array instead of 
1155         null to DefineConstructor, to avoid NullReferenceExceptions in the 
1156         binder code.
1157
1158         * AssemblyBuilder.cs ModuleBuilder.cs ILGenerator.cs: Move getUSIndex 
1159         and getToken methods, and the associated icalls to ModuleBuilder, 
1160         since tokens are per-module.
1161
1162         * AssemblyBuilder.cs ModuleBuilder.cs: Partially revert the previous
1163         patch, since having the 'is_main' field is useful in the unmanaged 
1164         code.
1165
1166         * AssemblyBuilder.cs ModuleBuilder.cs: Move the metadata creation and
1167         file creation logic to ModuleBuilder:Save (), since this needs to be
1168         done for every module. Also move the corresponding icalls to 
1169         ModuleBuilder.
1170
1171 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
1172
1173         * AssemblyBuilder.cs ModuleBuilder.cs: First steps toward a fix for
1174         #48700 (proper module support in Ref.Emit). Remove is_main field from
1175         ModuleBuilder and add a mainModule field to AssemblyBuilder instead.
1176         This is neccesary, since the main module is determined during the 
1177         Save () call: the module with the same file name as the assembly is
1178         the main module. Also create a default main module, if one is not
1179         existing.
1180
1181 2003-11-03  Martin Baulig  <martin@ximian.com>
1182
1183         * OpCodes.cs: Added Ldelem_Any, Stelem_Any and Unbox_Any from .NET 1.2.
1184
1185 2003-10-18  Sebastien Pouliot  <spouliot@videotron.ca>
1186
1187         * AssemblyBuilder.cs (SetCustomAttribute): Changed PK extraction to
1188         use Mono.Security.StrongName (#49785).
1189
1190 2003-10-18  Zoltan Varga  <vargaz@freemail.hu>
1191
1192         * AssemblyBuilder.cs (SetCustomAttribute): Extract the public key from
1193         the keyfile.
1194
1195 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
1196
1197         * AssemblyBuilder.cs (SetCustomAttribute): Ignore empty keyfile name.
1198         
1199         * AssemblyBuilder.cs: Moved loading of the public key file into
1200         managed code from reflection.c. 
1201
1202         * AssemblyBuilder.cs: Set cultureInfo and version from the AssemblyName
1203         passed to the constructor.
1204
1205 2003-10-13  Martin Baulig  <martin@ximian.com>
1206
1207         * MethodBuilder.cs (MethodBuilder): Added
1208         `TypeBuilder.MonoGenericParam[] generic_params' field.
1209         (DefineGenericParameter, SetGenericMethodSignature): New public methods.
1210
1211         * TypeBuilder.cs (DefineGenericMethod): New public method.
1212
1213 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
1214
1215         * OpCode.cs: Fix Value property. Fixes #49328.
1216
1217 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
1218
1219         * TypeBuilder.cs (CreateType): Fire TypeResolve events for unfinished 
1220         nested value types. Fixes #47022.
1221
1222 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
1223
1224         * TypeBuilder.cs: Really fix #48695.
1225
1226 Sat Sep 27 16:17:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
1227
1228         * ILGenerator.cs: instance fields are loaded from this.
1229
1230 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
1231
1232         * TypeBuilder.cs (DefineDefaultConstructor): Make this work on types
1233         without a parent. Fixes #48695.
1234
1235 2003-09-17  Martin Baulig  <martin@ximian.com>
1236
1237         * TypeBuilder.cs (TypeBuilder.CreateType): Don't append the type
1238         parameters to the type name; ie. use `Stack' instead of `Stack<T>'.
1239
1240 2003-09-06  Martin Baulig  <martin@ximian.com>
1241
1242         * TypeBuilder.cs (TypeBuilder.IsUnboundGenericParameter): Implemented.
1243
1244 2003-09-04  Martin Baulig  <martin@ximian.com>
1245
1246         * TypeBuilder.cs (TypeBuilder.MonoGenericParam): Make this nested
1247         class internal, not protected.
1248
1249 2003-08-29  Martin Baulig  <martin@ximian.com>
1250
1251         * TypeBuilder.cs (TypeBuilder.DefineGenericParameter): New public
1252         method.  We can now create generic types.
1253         (TypeBuilder.GetGenericTypeDefinition): Override this; call the
1254         `setup_internal_class' interncall before calling our base impl.
1255
1256 Sat Aug  2 13:04:55 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
1257
1258         * ILGenerator.cs: Emission of doubles now utilise the Double.AssertEndianity
1259         icall to assert double word endianity on ARM.
1260
1261 2003-07-25  Duncan Mak  <duncan@ximian.com>
1262
1263         * OpCodes.cs (Boxval): Marked with ObsoleteAttribute.
1264
1265 2003-07-24  Miguel de Icaza  <miguel@ximian.com>
1266
1267         * TypeBuilder.cs: Added generics stubs.
1268
1269         * EnumBuilder.cs: Added generics  stubs, changed bracing style for
1270         routines.
1271
1272 2003-07-23  Duncan Mak  <duncan@ximian.com>
1273
1274         * SignatureHelper.cs: This class does not have the
1275         SerializableAttribute.
1276
1277 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
1278
1279         * AssemblyBuilder.cs: Added argument checking to all methods according
1280         to the MSDN docs. Also marked DefineUnmanagedResource and its friends
1281         as not implemented.
1282         * ModuleBuilder.cs: Added new property FileName used by AssemblyBuilder.
1283         * ModuleBuilder.cs AssemblyBuilder.cs: Implemented IsTransient ().
1284
1285 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
1286
1287         * EventBuilder.cs: Add argument checking to methods.
1288
1289 Thu Jun 5 20:18:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
1290
1291         * AssemblyBuilder.cs: implemented DefineResource ().
1292
1293 Thu Jun 5 12:36:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
1294
1295         * OpCode.cs: implemented Equals/GetHashCode.
1296
1297 Tue Jun 3 11:14:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
1298
1299         * ILGenerator.cs, OpCode.cs: optimize opcode space usage.
1300
1301 Tue Jun 3 11:13:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
1302
1303         * UnmanagedMarshal.cs: add ability to define custom attributes (the MS
1304         runtime doesn't support this).
1305
1306 2003-05-30  Zoltan Varga  <vargaz@freemail.hu>
1307
1308         * TypeBuilder.cs: Implement DefineTypeInitializer.
1309
1310 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
1311
1312         * ModuleBuilder.cs: 
1313         - Implement DefineInitializedData in terms of DefineUninitializedData
1314         - Name the types of global fields $ArrayType$<len> to cut back on the
1315         number of types created
1316         - Add argument checking
1317
1318 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
1319
1320         * AssemblyBuilder.cs: Implement GetDynamicModule. "Implement" various
1321         methods not supported under MS.NET.
1322
1323 2003-05-18  Martin Baulig  <martin@ximian.com>
1324
1325         * AssemblyBuilder.cs (corlib_void_type): New internal field.
1326         (SetCorlibTypeBuilders): Added overloaded version which takes 4
1327         arguments to set the `corlib_void_type'.
1328
1329         * TypeBuilder.cs: Use `pmodule.assemblyb.corlib_void_type' instead
1330         of `typeof (void)' to make this work when compiling corlib.
1331
1332 Thu May 15 19:16:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
1333
1334         * MethodBuilder.cs: off by one in CreateMethodBody().
1335         * TypeBuilder.cs: if the return type for a method is null, use void.
1336
1337 2003-04-28  Miguel de Icaza  <miguel@ximian.com>
1338
1339         * MethodBuilder.cs: Mono allows the parameter position to be zero
1340         to indicate the "returns:" attribute.
1341
1342 2003-04-20  Miguel de Icaza  <miguel@ximian.com>
1343
1344         * ILGenerator.cs (EmitCall): Implement.
1345
1346         Flag a few unimplemented methods with MonoTODO, make coding style
1347         for method definitions Mono consistent.
1348
1349 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
1350
1351         * ILGenerator.cs: Implement EmitWriteLine methods.
1352
1353         * TypeBuilder.cs (CreateType): Avoid creating a default constructor
1354         for the global type.
1355
1356 2003-04-15  Miguel de Icaza  <miguel@ximian.com>
1357
1358         * TypeBuilder.cs (DefineDefaultConstructor): Make it generate code
1359         by default for a default constructor.  This is what the MS runtime
1360         does.  The PythonNet code expected this.
1361
1362         (TypeBuilder.GetConstructorImpl): Implement this.
1363
1364         (TypeBuilder.CreateType): If there are no constructors defined, we
1365         create one.
1366
1367 Tue Apr 15 13:50:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
1368
1369         * ModuleBuilder.cs, TypeBuilder.cs: set nesting_type before
1370         calling setup_internal_class ().
1371
1372 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
1373
1374         * AssemblyBuilder.cs: Added 'access' member, which is needed by the
1375         runtime.
1376
1377 2003-03-26  Zoltan Varga  <vargaz@freemail.hu>
1378
1379         * ILGenerator.cs: Implemented ThrowException.
1380
1381 2003-03-10  Zoltan Varga  <vargaz@freemail.hu>
1382
1383         * ILGenerator.cs: Propagate maxstack info along branches.
1384
1385 2003-03-06  Zoltan Varga  <vargaz@freemail.hu>
1386
1387         * ILGenerator.cs (Emit): Do not pop the arguments off the stack for
1388         ldftn etc. Fixes bug #39196.
1389
1390 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
1391
1392         * ILGenerator.cs (Emit): Add fixup for already created methods and
1393         fields. Do not add fixup for types since their table index do not 
1394         change any more.
1395
1396 2003-02-26  Zoltan Varga  <vargaz@freemail.hu>
1397
1398         * TypeBuilder.cs (DefineInitializedData): Removed unnecessary assignments.
1399
1400         * ModuleBuilder.cs (DefineInitializedData): Do not call 
1401         TypeBuilder::DefineInitializedData since that would mean defining a
1402         nested type of the global type, which is wrong. Instead define a
1403         new public type as MS does.
1404
1405         * ModuleBuilder.cs (DefineUninitializedData): Ditto.
1406
1407 Thu Feb 13 18:40:52 CET 2003 Paolo Molaro <lupus@ximian.com>
1408
1409         * ModuleBuilder.cs: add the basic initialization call.
1410
1411 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
1412
1413         * AssemblyBuilder.cs: Added basic error checking to some methods
1414         according to the MSDN docs.
1415
1416 2003-02-10  Zoltan Varga  <vargaz@freemail.hu>
1417
1418         * ConstructorBuilder.cs: 
1419         - Added basic error checking to all methods according to the MSDN docs.
1420         - modified a lot of methods to throw NotSupportedException, to comply
1421           with MS.NET.
1422
1423 2003-02-09  Zoltan Varga  <vargaz@freemail.hu>
1424
1425         * TypeBuilder.cs:
1426         - Added basic error checking to all methods according to the MSDN docs.
1427         - fixed AssemblyQualifiedName.
1428         - implemented 'Size'.
1429         - modified a lot of methods to throw NotSupportedException, to comply
1430           with MS.NET.
1431         - changes tested by running a full bootstrap.
1432
1433 2003-02-09  Martin Baulig  <martin@ximian.com>
1434
1435         * AssemblyBuilder.cs (AssemblyBuilder.methods): Removed.  This was
1436         a hack for the symbol writer which is no longer needed.
1437
1438 2003-02-09  Martin Baulig  <martin@ximian.com>
1439
1440         * IMonoSymbolWriter.cs (DefineNamespace, OpenMethod): New methods.
1441
1442 2003-02-09  Martin Baulig  <martin@ximian.com>
1443
1444         * IMonoSymbolWriter.cs (MarkSequencePoint): New method which takes
1445         just the required arguments as scalars, not arrays.
1446
1447         * ILGenerator.cs (ILGenerator.MarkSequencePoint): Use that new
1448         interface method; unnecessarily creating such a large number of
1449         arrays is both slow and too memory consuming.   
1450
1451 2003-02-08  Zoltan Varga  <vargaz@freemail.hu>
1452
1453         * MethodBuilder.cs: Added error checking to methods so they conform to
1454         MSDN docs. Implemented 'GetModule' and 'CallingConvention' members. 
1455         Some other tweaks to improve compatibility with MS .NET.
1456
1457         * TypeBuilder.cs: Added 'is_created' property which will be used for
1458         checking 'type is already created' errors.
1459
1460 2003-02-07  Martin Baulig  <martin@ximian.com>
1461
1462         * ModuleBuilder.cs (.ctor): Added `bool IsMainModule' argument.
1463         (Save): New internal method; creates the module's symbol file if
1464         we're compiling with debugging information.
1465
1466         * AssemblyBuilder.cs (EmbedResource): Added internal overloaded
1467         version of this method which takes a `byte[] blob' instead of a file.
1468         (DefineDynamicMethod): If this is the first module, tell the
1469         ModuleBuilder that this is the main module.
1470         (Save): Call a new interncall `build_metadata' to create the final
1471         metadata and save all the symbol files before creating the actual
1472         output.
1473
1474         * IMonoSymbolWriter.cs: New public class; it is in the namespace
1475         Mono.CSharp.Debugger.  The Mono symbol writer implements this interface.
1476
1477 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
1478
1479         * AssemblyBuilder.cs: added GetToken (SignatureHelper).
1480
1481         * ILGenerator.cs: implemented EmitCalli() methods
1482
1483         * SignatureHelper.cs: implemented GetMethoSigHelper() methods.
1484
1485 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1486
1487         * MethodBuilder.cs: GetBaseDefinition () returns this.
1488
1489 Mon Jan 27 17:07:38 CET 2003 Paolo Molaro <lupus@ximian.com>
1490
1491         * CustomAttributeBuilder.cs, FieldBuilder.cs: applied
1492         (reformatted) patch from "Jerome Laban" <jlaban@wanadoo.fr>
1493         to fix ByValStr and ByValArray encodings.
1494
1495 2003-01-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1496
1497         * AssemblyBuilder.cs: fixed compilation with csc.
1498
1499 2003-01-26  Miguel de Icaza  <miguel@ximian.com>
1500
1501         * AssemblyBuilder.cs (Save): Set the executable bit at the end.
1502         This uses a non-official enumeration value to call SetFileAttributes.
1503
1504 2003-01-17  Zoltan Varga  <vargaz@freemail.hu>
1505
1506         * MethodBuilder.cs ConstructorBuilder.cs: modify GetParameters() so it
1507         returns information even when the app did not use DefineParameter() to
1508         define the parameters.
1509
1510         * ConstructorBuilder.cs (ctor): allways define SpecialName attribute
1511         for constructors as done by MS.
1512
1513 Mon Jan 13 11:37:14 CET 2003 Paolo Molaro <lupus@ximian.com>
1514
1515         * TypeBuilder.cs, ModuleBuilder.cs: better type name cache.
1516
1517 2003-01-10  Zoltan Varga  <vargaz@freemail.hu>
1518
1519         * ILGenerator.cs: Implemented EmitWriteLine(string).
1520
1521         * TypeBuilder.cs (DefineInitializedData): Call DefineNestedType() 
1522         instead of DefineType() so the auxiliary types do not pollute the 
1523         global namespace. This is consistent with the behaviour of MS .NET.
1524
1525 Fri Jan 10 16:03:30 CET 2003 Paolo Molaro <lupus@ximian.com>
1526
1527         * ILGenerator.cs, MethodBuilder.cs, TypeBuilder.cs,
1528         ConstructorBuilder.cs: some tweaks to reduce memory usage.
1529
1530 Thu Jan 2 18:46:09 CET 2003 Paolo Molaro <lupus@ximian.com>
1531
1532         * ModuleBuilder.cs, TypeBuilder.cs: support global fields and methods.
1533
1534 Thu Dec 19 00:06:57 CET 2002 Paolo Molaro <lupus@ximian.com>
1535
1536         * AssemblyBuilder.cs: remove duplicated user string entries.
1537
1538 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
1539
1540         * FieldBuilder.cs: added 'handle' field which is needed by some new
1541         code in reflection.c.
1542
1543 2002-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1544
1545         * TypeBuilder.cs: implemented GetInterfaceMap () when the Type has been
1546         created.
1547
1548 Fri Nov 8 14:53:03 CET 2002 Paolo Molaro <lupus@ximian.com>
1549
1550         * ILGenerator.cs: account for the exception object being passed to the
1551         catch handler to calc max_stack.
1552
1553 2002-09-21  Martin Baulig  <martin@gnome.org>
1554
1555         * ModuleBuilder.cs (ModuleBuilder.symbol_writer): Make this
1556         field internal, not private.
1557         (ModuleBuilder.SymWriter_DefineLocalVariable): Removed.
1558
1559         * LocalBuilder.cs (LocalBuilder.SetLocalSymInfo): Use the
1560         ISymbolWriter's DefineLocalVariable() method instead of the
1561         IMonoSymbolWriter hack.
1562
1563 Mon Sep 16 19:02:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
1564
1565         * AssemblyBuilder.c: special case some custom attributes.
1566
1567 2002-09-12  Dick Porter  <dick@ximian.com>
1568
1569         * TypeBuilder.cs: Say _which_ Type has already been created
1570
1571 2002-09-11  Miguel de Icaza  <miguel@ximian.com>
1572
1573         * ModuleBuilder.cs (GetTypes): Implement.
1574
1575 Tue Sep 10 12:12:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1576
1577         * ConstructorBuilder.cs: added a field to hold the handle.
1578
1579 Mon Sep 9 17:31:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
1580
1581         * TypeBuilder.cs: prepare for the real CreateType implementation.
1582
1583 Tue Aug 27 16:57:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
1584
1585         * TypeBuilder.cs: remove duplicate code and fix
1586         named field reading in custom attr.
1587
1588 2002-08-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1589
1590         * TypeBuilder.cs: UnspecifiedTypeSize is 0.
1591
1592 Wed Aug 14 17:38:41 CEST 2002 Paolo Molaro <lupus@ximian.com>
1593
1594         * TypeBuilder.cs: ReflectedType and CreateType fixes.
1595
1596 Thu Aug 8 10:25:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1597
1598         * AssemblyBuilder.cs: added API to embed managed resources.
1599
1600 2002-08-03  Martin Baulig  <martin@gnome.org>
1601
1602         * TypeBuilder.cs (TypeBuilder.DeclaringType): Implemented.
1603
1604 Thu Jul 25 13:57:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
1605
1606         * AssemblyBuilder.cs: support linking external resources.
1607
1608 2002-07-19  Martin Baulig  <martin@gnome.org>
1609
1610         * ILGenerator.cs (Emit (OpCode, LocalBuilder)): Throw an exception
1611         when trying to emit a local that was defined in a different ILGenerator.
1612
1613         * LocalBuilder.cs (LocalBuilder): Added `ILGenetator' argument to
1614         the constructor.
1615
1616 Tue Jul 16 19:32:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
1617
1618         * ILGenerator.cs: stack size check fix.
1619
1620 Sat Jul 13 17:30:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1621
1622         * AssemblyBuilder.cs: add also the enum_type for compiling corlib.
1623         * TypeBuilder.cs: complete IsValueType.
1624
1625 Sat Jul 13 15:08:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
1626
1627         * TypeBuilder.cs: better IsValueType.
1628
1629 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1630
1631         * CustomAttributeBuilder.cs: removed compile warning.
1632
1633 Fri Jul 12 11:34:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
1634
1635         * ILGenerator.cs: fixup typebuilder tokens as well.
1636
1637 Tue Jul 9 19:03:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
1638
1639         * TypeBuilder.cs: special case SerializarionAttribute.
1640         Tweaks to get correct code in corlib.
1641
1642 2002-07-06  Miguel de Icaza  <miguel@ximian.com>
1643
1644         * ILGenerator.cs (ILGenerator.Emit): For doubles and floats, swap
1645         the bytes on big endian systems. 
1646
1647 2002-07-03  Martin Baulig  <martin@gnome.org>
1648
1649         * AssemblyBuilder.cs (corlib_object_type, corlib_value_type): Moved
1650         these fields up after the last entry in MonoReflectionAssemblyBuilder
1651         in reflection.h.
1652
1653         * TypeBuilder.cs (IsValueTypeImpl): Use the AssemblyBuilder's
1654         `corlib_value_type' instead of `typeof (System.ValueType)'.
1655         (DefineNestedType): Use the AssemblyBuilder's `corlib_object_type'
1656         instead of `typeof (object)'.
1657
1658 2002-07-02  Martin Baulig  <martin@gnome.org>
1659
1660         * AssemblyBuilder.cs (corlib_object_type, corlib_value_type): New
1661         internal fields.  When compiling corlib, they point to the newly
1662         created System.Object and System.ValueType types.
1663         (SetCorlibTypeBuilders): New public function.  This will be
1664         dynamically called from MCS when compiling corlib.
1665
1666         * TypeBuilder.cs (DefineInitializedData): Use the AssemblyBuilder's
1667         `corlib_value_type' as parent type instead of `typeof (System.ValueType)'
1668         to make it work when compiling corlib.
1669
1670         * ModuleBuilder.cs (assemblyb): Made this field internal, not private.
1671
1672 Tue Jul 2 18:34:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
1673
1674         * TypeBuilder.cs: implemented AssemblyQualifiedName.
1675         * MethodBuilder.cs, ConstructorBuilder.cs: special case custom attr.
1676
1677 Mon Jul 1 16:17:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
1678
1679         * TypeBuilder.cs: implemented AddInterfaceImplementation().
1680
1681 2002-06-28  Martin Baulig  <martin@gnome.org>
1682
1683         * MethodBuilder.cs (GetParameters): Return all parameters, not all
1684         but the last one.
1685
1686 2002-06-27  Martin Baulig  <martin@gnome.org>
1687
1688         * ConstructorBuilder.cs (GetParameters): Implemented.
1689
1690 Mon Jun 17 14:55:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
1691
1692         * ModuleBuilder.cs, TypeBuilder.cs: fixes for nested types handling.
1693
1694 Fri Jun 14 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
1695
1696         * CustomAttributeBuilder.cs: added custom attribute related internal
1697         helper methods.
1698         * FieldBuilder.cs, ParameterBuilder.cs: handle MarshalAs attribute.
1699         * UnmanagedMarshal.cs: implemented.
1700
1701 Mon Jun 10 18:58:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
1702
1703         * PropertyBuilder.cs: implemented ReflectedType and DeclaringType
1704         properties.
1705
1706 2002-06-07  Martin Baulig  <martin@gnome.org>
1707
1708         * TypeBuilder.cs (TypeBuilder): Added `PackingSize packing_size' and
1709         `int type_size' fields to the constructor.
1710         (DefineNestedType): Pass packing_size and type_size to the constructor.
1711
1712         * ModuleBuilder.cs (DefineType): Pass the packing_size and type_size
1713         fields to the TypeBuilder's constructor.
1714
1715 2002-06-07  Martin Baulig  <martin@gnome.org>
1716
1717         * TypeBuilder.cs (DefineNestedType): There is no overload for this
1718         method which takes 5 args in the specs, removed it.
1719
1720 Fri Jun 7 17:04:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
1721
1722         * AssemblyBuilder.cs: updates for PE/COFF rewrite.
1723
1724 2002-05-30  Martin Baulig  <martin@gnome.org>
1725
1726         * AssemblyBuilder.cs (methods): Made this internal and don't
1727         initialize it.  It will be initialized by the ModuleBuilder's
1728         GetSymbolWriter() method.
1729         (get_next_table_index): Only store the method in the `methods'
1730         array if it's not null.
1731
1732         * ModuleBuilder.cs (GetSymbolWriter): Initialize the AssemblyBuilder's
1733         `methods' field if necessary and pass it as third argument to the
1734         symbol writer's constructor.
1735
1736 2002-05-25  Martin Baulig  <martin@gnome.org>
1737
1738         * TypeBuilder.cs (TypeToken): Implemented.
1739
1740 2002-05-24  Martin Baulig  <martin@gnome.org>
1741
1742         * ModuleBuilder.cs (symwriter_define_local): New private variable.
1743         (GetSymbolWriter): Look for a custom version of "DefineLocalVariable"
1744         and store it in `symwriter_define_local'.
1745         (SymWriter_DefineLocalVariable): New internal method to call the
1746         symbol writer's custom DefineLocalVariable() method.  It is safe to
1747         call this method if there's no symbol writer.
1748
1749         * LocalBuilder.cs (SetLocalSymInfo): Use the MethodBuilder'snew
1750         SymWriter_DefineLocalVariable().
1751
1752         * MethodBuilder.cs (GetParameters): Implemented.
1753
1754 2002-05-22  Martin Baulig  <martin@gnome.org>
1755
1756         * ModuleBuilder.cs (GetSymbolWriter): Pass the this pointer to the
1757         symbol writer's constructor.
1758
1759 2002-05-22  Martin Baulig  <martin@gnome.org>
1760
1761         * AssemblyBuilder.cs (methods): New field.
1762         (get_next_table_index): Record all methods and constructors
1763         (table 0x06) in the `methods' array.  This is read by the
1764         Mono.CSharp.Debugger.MonoSymbolWriter::get_method interncall to
1765         get the MethodBuilder / ConstructorBuilder back from the token.
1766
1767         * *Builder.cs (get_next_table_index): Added `object obj' argument.
1768         (<constructors>): pass the this pointer to get_next_table_index ().
1769
1770 2002-05-20  Martin Baulig  <martin@gnome.org>
1771
1772         * TypeBuilder.cs (DefineField): Call the new `create_internal_class'
1773         interncall after adding the first field.  This is used when creating
1774         enum types to set `klass->enum_basetype'.
1775
1776 Thu May 16 16:09:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1777
1778         * TypeBuilder.cs: complete special acse support for CharSet, Size and
1779         Pack named args in StructLayout attribute.
1780
1781 Tue May 14 17:13:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
1782
1783         * MethodBuilder.cs: revert change in accessibility of
1784         GetILGenerator(int).
1785
1786 Tue May 14 13:31:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
1787
1788         * FieldBuilder.cs, ParameterBuilder.cs: more special-casing of
1789         attributes.
1790
1791 Fri May 10 20:57:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1792
1793         * CustomAttributeBuilder.cs: expose internal data for use in
1794         reflection.
1795         * FieldBuilder.cs, TypeBuilder.cs: special case FieldOffset and
1796         StructLayout attributes.
1797
1798 Fri May 10 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
1799
1800         * MethodBuilder.cs, ConstructorBuilder.cs: implemented InitLocals
1801         property.
1802
1803 2002-04-26  Martin Baulig  <martin@gnome.org>
1804
1805         * ModuleBuilder.cs (DefineDocument): Implemented.
1806
1807 Tue Apr 16 13:02:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
1808
1809         * AssemblyBuilder.cs: pad output file to file alignment.
1810         * FieldBuilder.cs: ReflectedType.
1811         * ModuleBuilder.cs: added guid generation and array method creation.
1812         * MonoArrayMethod.cs: array method support code.
1813         
1814 Wed Apr 10 12:57:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
1815
1816         * ILGenerator.cs: use a stack to keep track of exception blocks.
1817
1818 Mon Apr  8 06:19:01  2002 Piers Haken <piersh@friskit.com>
1819
1820         * ILGenerator.cs: added LabelField.label_base to allow for
1821         arbitrary offsets (for switch statement)
1822
1823 Fri Apr 5 15:41:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1824
1825         * AssemblyBuilder.cs: simpler protocol wih the runtime to
1826         get the assembly data.
1827
1828 Tue Mar 26 20:10:24 CET 2002 Paolo Molaro <lupus@ximian.com>
1829
1830         * AssemblyBuilder.cs: use FileMode.Create.
1831         * ILGenerator.cs: optimize localbuilder related opcodes.
1832         Track parameters to adjust maxstack.
1833         * LocalBuilder.cS: use unsigned for position.
1834
1835 2002-03-23  Miguel de Icaza  <miguel@ximian.com>
1836
1837         * LocalBuilder.cs: Drop the symbol_writer as LocalBuilder fields.
1838         Do this lazily in SetLocalSymInfo.
1839         
1840 2002-03-24  Martin Baulig  <martin@gnome.org>
1841
1842         * ModuleBuilder.cs (GetSymbolWriter): The MonoSymbolWriter's constructor
1843         now takes a `string assembly_filename' argument, pass it our fully
1844         qualified assembly name.
1845
1846 2002-03-24  Nick Drochak  <ndrochak@gol.com>
1847
1848         * ILGenerator.cs: Use #if-#endif instead of if(false){} to disable
1849         code.  This way there is no compiler warning.
1850
1851         * TypeBuilder.cs: Removed the returns that came after the throws.
1852         This removes a few more compiler warnings. Also marked with MonoTODO
1853         all places where we throw NotImplemented exceptions.
1854
1855 2002-03-23  Martin Baulig  <martin@gnome.org>
1856
1857         * SignatureHelper.cs (GetFieldSignatureHelper, GetLocalSignatureHelper):
1858         Implemented.
1859
1860         * LocalBuilder.cs (LocalBuilder): This internal constructor now takes
1861         a ModuleBuilder argument instead of a ISymbolWriter one.
1862         (SetLocalSymInfo): Create and pass type signature to DefineLocalVariable.
1863
1864 2002-03-23  Martin Baulig  <martin@gnome.org>
1865
1866         * ILGenerator.cs (BeginScope, EndScope): Implemented.
1867
1868 2002-03-20  Martin Baulig  <martin@gnome.org>
1869
1870         * ModuleBuilder.cs (GetSymbolWriter): New internal function. Dynamically
1871         loads the default symbol writer, catch all possible exceptions and return
1872         null on failure.
1873         (ModuleBuilder): Added `bool emitSymbolInfo' argument to this internal
1874         constructor; if set, call GetSymbolWriter ().
1875         (GetSymWriter): Implemented.
1876
1877         * LocalBuilder.cs (LocalBuilder): Added ISymbolWriter argument to this
1878         internal method.
1879         (SetLocalSymInfo): Implemented, call ISymbolWriter.DefineLocalVariable ()
1880         if the symbol writer is not null.
1881
1882         * ILGenerator.cs (ILGenerator): Call ModuleBuilder.GetSymWriter () to get
1883         and store the symbol writer.
1884         (DeclareLocal): Pass the symbol writer to LocalBuilder's constructor.
1885         (MarkSequencePoint): Implemented, call ISymbolWriter.DefineSequencePoints ()
1886         if the symbol writer is not null.
1887
1888         * AssemblyBuilder.cs (DefineDynamicModule): Pass the `bool emitSymbolInfo'
1889         to ModuleBuilder's constructor.
1890
1891 Sat Mar 16 19:11:47 CET 2002 Paolo Molaro <lupus@ximian.com>
1892
1893         * ModuleBuilder.cs: handle modified types correctly.
1894
1895 Thu Mar 7 17:10:42 CET 2002 Paolo Molaro <lupus@ximian.com>
1896
1897         * AssemblyBuilder.cs: allow saving bigger assemblies.
1898         * ILGenerator.cs: add fixup table for fields and methods, since
1899         at the end of the compile they may end up with a different table
1900         index.
1901         * ModuleBuilder.cs: add cache for type names to speed up the type
1902         lookups from the compiler.
1903         * TypeBuilder.cs: GetInterfaces () returns only interfaces in the
1904         current type, not in parents (the docs are wrong).
1905
1906 Tue Mar 5 18:09:34 CET 2002 Paolo Molaro <lupus@ximian.com>
1907
1908         * EventBuilder.cs: implemented.
1909         * TypeBuilder.cs: implemented DefineEvent() method and UnderlyingSystemType
1910         property.
1911
1912 Mon Mar 4 20:34:52 CET 2002 Paolo Molaro <lupus@ximian.com>
1913
1914         * ILGenerator.cs: make enough room in the byte array for string
1915         tokens.
1916         * TypeBuilder.cs: fixed GetInterfaces().
1917
1918 Mon Mar 4 11:30:40 CET 2002 Paolo Molaro <lupus@ximian.com>
1919
1920         * TypeBuilder.cs: implemented GetConstructors(), GetFields(),
1921         GetMethods(), GetProperties().
1922
1923 Thu Feb 28 19:15:10 CET 2002 Paolo Molaro <lupus@ximian.com>
1924
1925         * AssemblyBuilder.cs: call into the runtime to init some basic
1926         assembly stuff. Reserve slot 1 of typedef table for .<Module>.
1927         * ModuleBuilder.cs: call into the runtime if we need to create a
1928         modief type, such as arrays, byref etc.
1929         * TypeBuilder.cs: call into the runtime to create the MonoClass
1930         representation for the type. Throw exceptions with not implemented
1931         stuff.
1932
1933 Wed Feb 27 18:48:47 CET 2002 Paolo Molaro <lupus@ximian.com>
1934
1935         * ILGenerator.cs: fix nested exception blocks.
1936
1937 Wed Feb 20 22:30:49 CET 2002 Paolo Molaro <lupus@ximian.com>
1938
1939         * AssemblyBuilder.cs: upped compiled assembly size limit.
1940         Implemented SetCustomAttribute () methods.
1941         * CustomAttributeBuilder.cs: implemented the needed constructor
1942         stuff.
1943         * Cosntructorbuilder.cs, EnumBuilder.cs, FieldBuilder.cs,
1944         MethodBuilder.cs, ModuleBuilder.cs, ParameterBuilder.cs,
1945         PropertyBuilder.cs, TypeBuilder.cs: Implemented SetCustomAttribute () methods.
1946
1947 Wed Feb 20 14:54:01 CET 2002 Paolo Molaro <lupus@ximian.com>
1948
1949         * AssemblyBuilder.cs: add SetCustomAttribute () to keep the compiler
1950         going.
1951
1952 Fri Feb 15 18:15:04 CET 2002 Paolo Molaro <lupus@ximian.com>
1953
1954         * ILGenerator.cs: finally block support and fixes.
1955
1956 Thu Feb 14 18:55:52 CET 2002 Paolo Molaro <lupus@ximian.com>
1957
1958         * FieldBuilder.cs: Add SetRVAData().
1959         * ILGenerator.cs: speed up code array growth.
1960         * TypeBuilder.cs: fix IsValueTypeImpl(). Add class_size member.
1961         Implement DefineInitializedData().
1962
1963 Tue Jan 22 23:01:11 CET 2002 Paolo Molaro <lupus@ximian.com>
1964
1965         * EnumBuilder.cs, TypeBuilder.cs: updates for changes in Type.cs.
1966         * ModuleBuilder.cs: fix lookup of nested types.
1967
1968 Tue Jan 15 22:46:21 CET 2002 Paolo Molaro <lupus@ximian.com>
1969
1970         * ILGenerator.cs: implement some of the exception support methods.
1971
1972 Mon Jan 14 17:07:32 CET 2002 Paolo Molaro <lupus@ximian.com>
1973
1974         * ModulerBuilder.cs: search also for subtypes in GetTypes().
1975         * TypeBuilder.cs: bugfix in FullName. Implemented DefineNestedType().
1976
1977 Fri Jan 11 19:00:29 CET 2002 Paolo Molaro <lupus@ximian.com>
1978
1979         * MethodBuilder.cs, ConstructorBuilder.cs: save parameter info.
1980
1981 Thu Jan 10 21:07:54 CET 2002 Paolo Molaro <lupus@ximian.com>
1982
1983         * ILGenerator.cs: handle type tokens (used for box opcode).
1984
1985 Wed Jan 9 19:37:55 CET 2002 Paolo Molaro <lupus@ximian.com>
1986
1987         * ILGenerator.cs: emit float and doubles.
1988         * ModuleBuilder.cs: off-by-one error fix and GetType()
1989         implementations.
1990         * TypeBuilder.cs: AttributesImpl added.
1991         * UnmanagedMarshal.cs: stubbed out class.
1992
1993 Sat Jan 5 15:59:05 CET 2002 Paolo Molaro <lupus@ximian.com>
1994
1995         * ILGenerator.cs: fix emission of two-bytes opcodes.
1996         Missing slot for locals array. Throw exceptions on unimplemented
1997         methods.
1998         * OpCode.cs: add a comment: the Value property is useless.
1999         * OpCodes.cs: fix name of tail opcode (Tail -> Tailcall).
2000
2001 2002-01-05  Ravi Pratap  <ravi@ximian.com>
2002
2003         * ConstructorBuilder.cs : Use the MonoTODO attribute.
2004
2005         * ILGenerator.cs, Label.cs, MethodBuilder.cs, ModuleBuilder.cs,
2006         ParameterBuilder.cs, TypeBuilder.cs : Ditto.
2007         
2008 Thu Jan 3 23:26:15 CET 2002 Paolo Molaro <lupus@ximian.com>
2009
2010         * ILGenerator.cs: typo fix.
2011
2012 Mon Dec 24 17:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
2013
2014         * TypeBuilder.cs: added DefineMethodOverride().
2015         * MethodBuilder.cs: add override_method member and setter.
2016
2017 Mon Nov 19 13:58:01 CET 2001 Paolo Molaro <lupus@ximian.com>
2018
2019         * AssemblyBuilder.cs: add method to register a string in the "#US"
2020         stream.
2021         * EnumBuilder.cs, SignatureHelper.cs: added stubs.
2022         * ILGenerator.cs: more stuff implemented.
2023         * LocalBuilder.cs: keep track of local var index.
2024
2025 Thu Nov 15 18:11:23 CET 2001 Paolo Molaro <lupus@ximian.com>
2026
2027         * ConstructorBuilder.cs: implement the interesting methods.
2028         * ILGenerator.cs: adapt for use with both a MethodBuilder and a
2029         ConstructorBuilder.
2030         * MethodBuilder.cs: add ImplAttributes.
2031         * ParameterBuilder.cs: adapt for ConstructorBuilder.
2032         * TypeBuilder.cs: add constructors handling.
2033
2034 Wed Nov 14 17:01:45 CET 2001 Paolo Molaro <lupus@ximian.com>
2035
2036         * ConstructorBuilder.cs: added missing stubs and some implementation.
2037         * CustomAttributeBuilder.cs: added.
2038         * EventBuilder.cs: added.
2039         * FieldBuilder.cs: updates.
2040         * MethodBuilder.cs: stuff to implement P/Invoke methods.
2041         * ModuleBuilder.cs: added GetArrayMethod() stub.
2042         * ParameterBuilder.cs, PropertyBuilder.cs: updates.
2043         * TypeBuilder.cs: updates and stubs.
2044
2045 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
2046
2047         * TypeBuilder.cs: Added implementation for TypeHandle.
2048
2049 Tue Nov 6 09:13:45 CET 2001 Paolo Molaro <lupus@ximian.com>
2050
2051         * AssemblyBuilder.cs: define an internal constructor.
2052
2053 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
2054
2055         * AssemblyBuilder.cs: Reformatted.
2056
2057         Added override keywords to those that needed them.
2058
2059         Removed methods that we do not override, but just inherit
2060
2061 Tue Sep 25 16:53:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
2062
2063         * TypeBuilder.cs, ConstructorBuilder.cs, ModuleBuilder.cs: added.