(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / corlib / System.Reflection.Emit / ChangeLog
blobd4f660aae5ea2e6bff6370aa31a1c1bfc8a453cd
1 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
3         * TypeBuilder.cs: Make some members work if the type is created since
4         MS does this.
6 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
8         * CustomAttributeBuilder.cs: Check that arguments are not 
9         multi-dimensional arrays.
11 2004-10-12  Martin Baulig  <martin@ximian.com>
13         * TypeBuilder.cs (TypeBuilder.setup_generic_class): Renamed to
14         create_generic_class() and added a new setup_generic_class().
15         (TypeBuilder.DefineGenericParameters): Call setup_generic_class()
16         before creating the type parameters.
18 2004-10-11  Martin Baulig  <martin@ximian.com>
20         * TypeBuilder.cs (TypeBuilder.generic_container): New private field.
22         * MethodBuilder.cs (MethodBuilder.generic_container): New private field.
24         * GenericTypeParameterBuilder.cs
25         (GenericTypeParameterBuilder.GetGenericTypeParameterConstraints):
26         Return `Type.EmptyTypes' instead of an array of `typeof (object)'.      
28 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
30         * ModuleBuilder.cs: Create global type after creation.
32 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
34         * ModuleBuilder.cs (GetTypes): Fix length of returned array. Fixes
35         #65931.
37 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
39         * ModuleBuilder.cs (DefineType): Check for duplicate type names. Fixes
40         #65988.
42 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
44         * AssemblyBuilderAccess.cs: Remove [Flags].
46         * PackingSize.cs: Add new 2.0 members. Remove [Flags].
48         * AssemblyBuilder.cs: Add net 2.0 Save method.
50         * LocalBuilder.cs: Make this inherit from LocalVariableInfo under
51         net 2.0. Reorganize fields so the layout visible to the runtime is the
52         same under 1.0 and 2.0. Add 2.0 properties.
54 2004-10-02  Gert Driesen  <drieseng@users.sourceforge.net>
56         * TypeBuilder.cs: throw NotSupportedException when defining default
57         ctor if parent type does not have default ctor
59 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
61         * TypeBuilder.cs: Make 'created' field visible to the runtime.
63 2004-09-28  Martin Baulig  <martin@ximian.com>
65         * GenericTypeParameterBuilder.cs
66         (GenericTypeParameterBuilder.ContainsGenericParameters): Return
67         true here; System.Type.ContainsGenericParameters returns true when
68         called on a type parameter, so let's do the same here.
70 2004-09-27  Zoltan Varga  <vargaz@freemail.hu>
72         * ConstructorBuilder.cs: Add 2.0 GetILGenerator(size) method.
74 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
76         * UnmanagedMarshal.cs: Add ToMarshalAsAttribute method.
78 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
80         * TypeBuilder.cs: Add IsCreated method.
82 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
84         * FieldBuilder.cs: Add dummy GetFieldOffset method.
86 2004-09-24  Martin Baulig  <martin@ximian.com>
88         * GenericTypeParameterBuilder.cs
89         (GenericTypeParameterBuilder.GetGenericParameterConstraints): Override.
91 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
93         * DynamicMethod.cs: Add MetadataToken property and tweak Module property.
95 2004-09-23  Martin Baulig  <martin@ximian.com>
97         * GenericTypeParameterBuilder.cs
98         (GenericTypeParameterBuilder.SetGenericParameterAttributes): New
99         public method, replaces the old Mono_* hacks.
101 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
103         * AssemblyBuilder.cs: Fixed assembly-level permissions. I don't know 
104         why I splitted them all into individual entries when only a single set
105         is accepted for each security action :(.
107 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
109         * CustomAttributeBuilder.cs: Applied patch from Marcus Urban
110         (mathpup@mylinuxisp.com). Add support for defining custom
111         marshallers by calling SetCustomAttribute.      
113 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
115         * AssemblyBuilder.cs: Keep a copy of the 3 permission set as an array
116         of RefEmitPermissionSet. This will allow to reuse existing 
117         functionalities already present in the runtime.
119 2004-09-12  Marek Safar  <marek.safar@seznam.cz>
121         * TypeBuilder.cs: Do not create default constructor for
122         static classes.
124 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
126         * TypeBuilder.cs: Set the table_idx of the global type to 1.
128         * ModuleBuilder.cs: Save the main module of the assembly even if it is 
129         transient.
131 2004-09-02 Ben Maurer  <bmaurer@users.sourceforge.net>
133         * LocalBuilder.cs: another s.ioe
135 2004-09-02 Ben Maurer  <bmaurer@users.sourceforge.net>
137         * ModuleBuilder.cs: dont throw an S.IOE for debugging stuff.
138         makes sre apps work
140 2004-09-02  Martin Baulig  <martin@ximian.com>
142         * MethodBuilder.cs (MethodBuilder.GetParameters): Throw a
143         NotSupportedException() until the type has been fully created.
145 2004-09-01  Martin Baulig  <martin@ximian.com>
147         * IMonoSymbolWriter.cs: Removed.
149         * ModuleBuilder.cs, LocalBuilder.cs, ILGenerator.cs: Removed the
150         old debugging code.
152 2004-08-13  Sebastien Pouliot  <sebastien@ximian.com>
154         * AssemblyBuilder.cs: (Partly) Fix delay-signing issue (#56621) when 
155         MCS is used on the MS runtime (other part of the fix is for MCS).
157 2004-08-11  Marek Safar  <marek.safar@seznam.cz>
159         * AssemblyBuilder.cs: Added AddPermissionRequests method
160         used be mcs for SecurityPermissionAttribute handling.
162 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
164         * EnumBuilder.cs: Call setup_enum_type () in the constructor. Fixes
165         #62237.
167 2004-08-07  Jackson Harper  <jackson@ximian.com>
169         * AssemblyBuilder.cs: "neutral" culture is invariant culture
170         (String.Empty).
172 2004-08-07  Atsushi Enomoto  <atsushi@ximian.com>
174         * OpCodes.cs : csc complains CS1034 Line cannot exceed 2046 characters.
176 2004-08-05  Duncan Mak  <duncan@ximian.com>
178         * OpCodes.cs (TakesSingleByteArgument): Add this back.
180 2004-08-05  Duncan Mak  <duncan@ximian.com>     
182         This patch is based on an idea of Ben's to reduce the code size
183         in MCS. 
185         * OpCodes.cs: Instead pushing the data onto the stack when each
186         OpCode is initialized, pack the data into 2 ints and store only
187         that.  Furthermore, the names of each OpCode are stored in a
188         separate string array in the new OpCodeNames class.
190         * OpCodeNames.cs: The names of each OpCode are moved here to delay
191         the initialization of the strings, as they are not used frequently.
193         * OpCode.cs: Rewrote this to take in everything as 2 ints.
195 2004-07-29  Martin Baulig  <martin@ximian.com>
197         * ILGenerator.cs (ILGenerator.Mono_GetCurrentOffset): New static
198         internal method.
200         * ModuleBuilder.cs (ModuleBuilder.Mono_GetGuid): New static
201         internal method.
203 2004-07-24  Martin Baulig  <martin@ximian.com>
205         * TypeBuilder.cs (TypeBuilder.UnspecifiedTypeSize): Set this to 0
206         and initialize it to 0 everywhere.
208 2004-07-22  Martin Baulig  <martin@ximian.com>
210         * ILGenerator.cs (ILGenerator.BeginFaultBlock): Implemented.
212 2004-07-07  Miguel de Icaza  <miguel@ximian.com>
214         * LocalBuilder.cs: Remove MakePinned, we are now going to use
215         ILGenerator.DeclaraLocal that takes the `bool pinned' argument. 
217         * ILGenerator.cs (DeclareLocal): Add `pinned' version of the
218         method on the 2.0 profile.
220 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
222         * EnumBuilder.cs (CreateType): Call a new icall to set the internal
223         type field. Fixes #59833.
225 Thu Jun 24 15:33:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
227         * ParameterBuilder.cs: implement SetConstant ().
229 Wed Jun 23 15:40:48 CEST 2004 Paolo Molaro <lupus@ximian.com>
231         * TypeBuilder.cs: handle properly the case when SetParent() 
232         is called (requires an updated runtime, too bug#60474).
234 Wed Jun 23 14:20:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
236         * EnumBuilder.cs, TypeBuilder.cs: patch from Gert Driesen
237         to implement EnumBuilder (slightly tweaked).
239 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
241         * MethodRental.cs: fixed value of JitOnDemand
243 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
245         * FieldBuilder.cs: fixed implementation to match MS.NET,
246         meaning throw InvalidOperationException for methods that
247         should not be allowed to execute when type has been
248         created, and throw NotSupportedException for methods and
249         properties that should not be called on FieldBuilder
251 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
253         * MethodBuilder.cs: move check to see if type has already 
254         been created up, to match MS.NET behaviour. Fix GetHashCode 
255         (removed TODO)
257 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
259         * MethodRental.cs: Added check for method size
261 2004-06-08  Martin Baulig  <martin@ximian.com>
263         * ILGenerator.cs (TokenGenerator.GetToken): Added overloaded
264         version which takes a MethodInfo and a Type[].
265         (IlGenerator.EmitCall): When emitting a call to a varargs method,
266         use the new GetToken() to pass the optional argument types to the
267         runtime.
269         * ModuleBuilder.cs (ModuleBuilder.getMethodToken): New interncall.
271 2004-05-29  Gert Driesen (drieseng@users.sourceforge.net)
273         * AssemblyBuilder.cs: removed extra method, fixes public API
274         compatibility with MS.NET
275         * TypeBuilder.cs: removed extra method, fixes public API
276         compatibility with MS.NET
278 2004-05-28  Jackson Harper  <jackson@ximian.com>
280         * CustomAttributeBuilder.cs: GetBlob now takes a ref to the
281         assembly so it can encode type names properly.
282         
283 2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>
285         * MethodBuilder.cs: Now use FastNewGuidArray to create new random 
286         Guids without using CryptoConfig. Speed up for MCS.
288 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
290         * MethodBuilder.cs: Add Equals and GetHashCode.
292         * TypeBuilder.cs: Add IsSubclassOf.
294 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
296         * AssemblyBuilder.cs: Make extra methods internal. mcs was changed
297         to handle this a long time ago.
299         * TypeBuilder.cs: Add IsAssignableFrom and IsInstanceOfType.
300         
301         * TypeBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Implement
302         ToString ().
304         * TypeBuilder.cs (ToString): Make this consistent with MS.NET.
306 2004-05-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
308         * OpCodes.cs: Refactored to avoid the static constructor
310 2004-05-10  Gert Driesen (drieseng@users.sourceforge.net)
311         * AssemblyBuilder.cs: fixed warning
312         * MethodRental.cs: added private default ctror to match MS.NET
314 2004-05-03 Lluis Sanches Gual  <lluis@ximian.com>
316         * ModuleBuilder.cs: Use name const to load the debugger assembly.
318 2004-05-01  Todd Berman  <tberman@sevenl.net>
320         * ModuleBuilder.cs: Load the proper assembly for a gac-only install.
322 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
324         * ILGenerator.cs, ModuleBuilder.cs: readonlyificate.
326 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
328         * MethodRental.cs: New file.
330 2004-04-28  Raja R Harinath  <rharinath@novell.com>
332         * TypeBuilder.cs (SetCustomAttribute): Handle the presence of the
333         full type name in the data stream.  This is emitted for value
334         types by the Mono runtime.
336 2004-04-23  Atsushi Enomoto  <atsushi@ximian.com>
338         * ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
339           GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
340           OpCodes.cs, TypeBuilder.cs :
341           The fix should be easier ;)
343 2004-04-23  Atsushi Enomoto  <atsushi@ximian.com>
345         * ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
346           GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
347           OpCodes.cs, TypeBuilder.cs :
348           NET_2_0 related build fix.
350 2004-04-07  Martin Baulig  <martin@ximian.com>
352         * GenericTypeParameterBuilder.cs
353         (Mono_SetReferenceTypeConstraint): New public method.
354         (Mono_SetValueTypeConstraint): New public method.
356 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
358         * MethodBuilder.cs, TypeBuilder.cs: always have 
359         slot for generic_params for consistent offsets.
361 2004-04-07  Martin Baulig  <martin@ximian.com>
363         * GenericTypeParameterBuilder.cs
364         (Mono_SetConstructorConstraint): New public method.     
366 2004-04-07  Martin Baulig  <martin@ximian.com>
368         * GenericTypeParameterBuilder.cs: New file.
370         * TypeBuilder.cs (TypeBuilder.DefineGenericParameters): New public
371         method.  This is the new public API.
372         (TypeBuilder.DefineGenericParameter): Removed.
373         (TypeBuilder.SetGenericParameterConstraints): Removed.
375         * MethodBuilder.cs (MethodBuilder.DefineGenericParameters): New public
376         method.  This is the new public API.
377         (MethodBuilder.DefineGenericParameter): Removed.
378         (MethodBuilder.SetGenericParameterConstraints): Removed.
380 2004-04-01  Martin Baulig  <martin@ximian.com>
382         * OpCodes.cs (OpCodes.Constrained): New opcode.
384 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
386         * LocalBuilder.cs: Fix pinned support.
388 2004-03-30  Martin Baulig  <martin@ximian.com>
390         * TypeBuilder.cs (TypeBuilder.SetGenericParameterConstraints):
391         Added `bool has_ctor_constraint' argument.
393         * MethodBuilder.cs (MethodBuilder.SetGenericParameterConstraints):
394         Added `bool has_ctor_constraint' argument.
396 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
398         * LocalBuilder.cs: pinned support.
400 2004-03-29  Martin Baulig  <martin@ximian.com>
402         * TypeBuilder.cs (TypeBuilder.ContainsGenericParameters): Implemented.
404 2004-03-25  Sebastien Pouliot  <sebastien@ximian.com>
406         * AssemblyBuilder.cs: Changed strongname support to match MS 
407         implementation (i.e. attributes are used by the compiler - not by
408         AssemblyBuilder).
410 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
412         * TypeBuilder.cs (GetMethod): Implement.
414         * CustomAttributeBuilder.cs: Reenable argument checking with MS.NET
415         compatibility tweaks.
417 2004-03-23  Martin Baulig  <martin@ximian.com>
419         * TypeBuilder.cs (TypeBuilder.GetEvents_internal): New internal
420         method; this is basically GetEvents(), but see the FIXME in that method.
422 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
424         * CustomAttributeBuilder.cs: Disable argument checking since it causes
425         regressions.
427 2004-03-22  Zoltan Varga  <vargaz@freemail.hu>
429         * CustomAttributeBuilder.cs (Initialize): Add more argument checking. 
430         Fixes #55793.
432 2004-03-09  Jackson Harper  <jackson@ximian.com>
434         * CustomAttributeBuilder.cs: Add some argument checking. Handle
435         default arguments properly.
437 2004-03-09  Sebastien Pouliot  <spouliot@videotron.ca>
439         * AssemblyBuilder.cs: The strong name key file existance will now be
440         checked in the current compilation directory AND in the assembly
441         output directory. Fix bugzilla entry #55320.
443 2004-02-23  Martin Baulig  <martin@ximian.com>
445         * MethodBuilder.cs (MethodBuilder.SetGenericMethodSignature):
446         Added MethodAttributes and CallingConventions arguments.
448 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
450         * TypeBuilder.cs: Implement DefineUninitializedData and 
451         AddDeclarativeSecurity.
453 2004-01-27  Zoltan Varga  <vargaz@freemail.hu>
455         * AssemblyBuilder.cs (SetCustomAttribute): Move the reading of the
456         keyfile to the Save () method.
458 2004-01-26  Sebastien Pouliot  <spouliot@videotron.ca>
460         * AssemblyBuilder.cs: Save will now strongname the assembly is (a) a
461         StrongName is present and (b) the signature isn't delayed.
463 2004-01-24 David Sheldon <dave-mono@earth.li>
465         * AssemblyBuilder.cs: Added override for GetFiles() that throws
466           NotSupportedException. 
468 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
470         * AssemblyBuilder.cs (Save): Handle entry points with an int return
471         type as well.
472         
473         * AssemblyBuilder.cs (Save): If the entry point is in a module, create
474         a new entry point which calls the real one, since the entry point must
475         be in the module which contains the manifest.
477         * ModuleBuilder.cs (Save): Create the global type automatically if not
478         already done.
480 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
482         * AssemblyBuilder.cs (DefineVersionInfoResource): Set more 
483         version info properties.
485 2004-01-08  Zoltan Varga  <vargaz@freemail.hu>
487         * CustomAttributeBuilder.cs (string_arg): New helper method.
489         * AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
491         * AssemblyBuilder.cs (SetCustomAttribute): Use the new helper method.
493         * AssemblyBuilder.cs (DefineUnmanagedResource): Implement.
495         * AssemblyBuilder.cs (DefineIconResource): New internal method to
496         support mcs.
498         * TypeBuilder.cs (IsDefined): Implement this, since some corlib classes
499         make calls to IsDefined.
501 2004-01-06  Zoltan Varga  <vargaz@freemail.hu>
503         * AssemblyBuilder.cs: Fix warning.
505 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
507         * AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
509 2003-12-29 Ben Maurer  <bmaurer@users.sourceforge.net>
511         * MethodBuilder.cs, ConstructorBuilder.cs: Override GetParameterCount.
512         * ILGenerator.cs: Use GetParameterCount.
514 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
516         * AssemblyBuilder.cs (AddModule): New internal method to support 
517         /addmodule in mcs.
519 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
521         * AssemblyBuilder.cs: New internal property to support /target:module in
522         mcs.
524 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
526         * ILGenerator.cs: Applied patch from Ben Maurer 
527         (bmaurer@users.sourceforge.net). Allocate arrays holding label data
528         lazily and reduce their size.
530 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
532         * AssemblyBuilder.cs (MonoResource): New 'offset' field used by the
533         runtime.
535         * ModuleBuilder: Implement DefineResource.
537 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
539         * AssemblyBuilder.cs (RefEmitPermissionSet): New helper structure.
540         
541         * MethodBuilder.cs (AddDeclarativeSecurity): Implement.
543         * ConstructorBuilder.cs (AddDeclarativeSecurity): Ditto.
545 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
547         * MethodBuilder.cs: Add stubs for missing methods.
549         * TypeBuilder.cs (GetEvents): Add new override.
551         * ModuleBuilder.cs: Implement some missing methods, add stubs for others.
553         * AssemblyBuilder.cs (GetFiles): Get rid of unneccessary override.
555         * AssemblyBuilder.cs (ImageRuntimeVersion): Add override to keep
556         signature compatibility with MS.NET.
558         * TypeBuilder.cs (MemberType): Get rid of unneccessary override.
560 2003-12-08  Martin Baulig  <martin@ximian.com>
562         * TypeBuilder.cs (TypeBuilder.MonoGenericParam): Removed; use the
563         new `MonoGenericParam' class instead (in S.R/MonoGenericInst.cs).
565 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
567         * ModuleBuilder.cs: Double the size of the types array during insertion
568         do avoid excessive memory allocation and copying. Track the number of
569         types in a separate variable.
571         * TypeBuilder.cs: Same for the 'fields' and 'methods' arrays.
573 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
575         * ModuleBuilder.cs (DefinePInvokeMethod): Implement.
577         * ModuleBuilder.cs (DefineGlobalMethod): Implement the Net 1.2 variants.
579 2003-11-28  Dick Porter  <dick@ximian.com>
581         * ModuleBuilder.cs: Do string compares with the Invariant culture.
583 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
585         * AssemblyBuilder.cs (SetCustomAttribute): Implement automatic 
586         generation of build and revision numbers. Fixes #46492.
588 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
590         * TypeBuilder.cs: Implement GetField.
592 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
594         * DynamicMethod.cs: New class.
596         * ILGenerator.cs MethodBuilder.cs ConstructorBuilder.cs: Retrieve 
597         tokens from a token generator object instead of from the ModuleBuilder,
598         to support the implementation of DynamicMethod. Also get rid of the 
599         unused 'mbuilder' field.
601         * ModuleBuilder.cs: Create a token generator object which can be
602         passed to ILGenerator.
604         * LocalBuilder.cs ILGenerator.cs: Get rid of 'module' field, obtain 
605         needed objects from the ilgen object instead.
607 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
609         * TypeBuilder.cs FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs:  Add support for custom modifiers from NET 1.2.
611         * ILGenerator.cs: Remove unused abuilder member.
613 2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
615         * OpCodes.cs: Remove Boxval for v1.1+
617 2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
619         * OpCodes.cs: Small rearrange to fix csc compiler warning about obsolete member used
621 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
623         * AssemblyBuilderAccess.cs PackingSize: Add [Flags].
625         * AssemblyBuilder.cs (DefineDynamicModule): Make internal method
626         private.
628         * AssemblyBuilder.cs (Save): Write out the main module at the end.
629         
630 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
631         
632         * ConstructorBuilder.cs (.ctor): Automatically add RTSpecialName flag
633         as MS does.
635 2003-11-06  Martin Baulig  <martin@ximian.com>
637         * ModuleBuilder.cs (ModuleBuilder.Save): Call `build_metadata'
638         before writing the symbol file.
640 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
642         * AssemblyBuilder.cs (.ctor): Initialize the 'dir' field to something
643         sensible.
644         
645         * AssemblyBuilder.cs (Save): Set 'created' flag.
647         * AssemblyBuilder.cs (get_next_table_index): Moved to ModuleBuilder,
648         since table indexes are per-module.
650 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
652         * TypeBuilder.cs (DefineDefaultConstructor): Pass an array instead of 
653         null to DefineConstructor, to avoid NullReferenceExceptions in the 
654         binder code.
656         * AssemblyBuilder.cs ModuleBuilder.cs ILGenerator.cs: Move getUSIndex 
657         and getToken methods, and the associated icalls to ModuleBuilder, 
658         since tokens are per-module.
660         * AssemblyBuilder.cs ModuleBuilder.cs: Partially revert the previous
661         patch, since having the 'is_main' field is useful in the unmanaged 
662         code.
664         * AssemblyBuilder.cs ModuleBuilder.cs: Move the metadata creation and
665         file creation logic to ModuleBuilder:Save (), since this needs to be
666         done for every module. Also move the corresponding icalls to 
667         ModuleBuilder.
669 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
671         * AssemblyBuilder.cs ModuleBuilder.cs: First steps toward a fix for
672         #48700 (proper module support in Ref.Emit). Remove is_main field from
673         ModuleBuilder and add a mainModule field to AssemblyBuilder instead.
674         This is neccesary, since the main module is determined during the 
675         Save () call: the module with the same file name as the assembly is
676         the main module. Also create a default main module, if one is not
677         existing.
679 2003-11-03  Martin Baulig  <martin@ximian.com>
681         * OpCodes.cs: Added Ldelem_Any, Stelem_Any and Unbox_Any from .NET 1.2.
683 2003-10-18  Sebastien Pouliot  <spouliot@videotron.ca>
685         * AssemblyBuilder.cs (SetCustomAttribute): Changed PK extraction to
686         use Mono.Security.StrongName (#49785).
688 2003-10-18  Zoltan Varga  <vargaz@freemail.hu>
690         * AssemblyBuilder.cs (SetCustomAttribute): Extract the public key from
691         the keyfile.
693 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
695         * AssemblyBuilder.cs (SetCustomAttribute): Ignore empty keyfile name.
696         
697         * AssemblyBuilder.cs: Moved loading of the public key file into
698         managed code from reflection.c. 
700         * AssemblyBuilder.cs: Set cultureInfo and version from the AssemblyName
701         passed to the constructor.
703 2003-10-13  Martin Baulig  <martin@ximian.com>
705         * MethodBuilder.cs (MethodBuilder): Added
706         `TypeBuilder.MonoGenericParam[] generic_params' field.
707         (DefineGenericParameter, SetGenericMethodSignature): New public methods.
709         * TypeBuilder.cs (DefineGenericMethod): New public method.
711 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
713         * OpCode.cs: Fix Value property. Fixes #49328.
715 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
717         * TypeBuilder.cs (CreateType): Fire TypeResolve events for unfinished 
718         nested value types. Fixes #47022.
720 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
722         * TypeBuilder.cs: Really fix #48695.
724 Sat Sep 27 16:17:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
726         * ILGenerator.cs: instance fields are loaded from this.
728 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
730         * TypeBuilder.cs (DefineDefaultConstructor): Make this work on types
731         without a parent. Fixes #48695.
733 2003-09-17  Martin Baulig  <martin@ximian.com>
735         * TypeBuilder.cs (TypeBuilder.CreateType): Don't append the type
736         parameters to the type name; ie. use `Stack' instead of `Stack<T>'.
738 2003-09-06  Martin Baulig  <martin@ximian.com>
740         * TypeBuilder.cs (TypeBuilder.IsUnboundGenericParameter): Implemented.
742 2003-09-04  Martin Baulig  <martin@ximian.com>
744         * TypeBuilder.cs (TypeBuilder.MonoGenericParam): Make this nested
745         class internal, not protected.
747 2003-08-29  Martin Baulig  <martin@ximian.com>
749         * TypeBuilder.cs (TypeBuilder.DefineGenericParameter): New public
750         method.  We can now create generic types.
751         (TypeBuilder.GetGenericTypeDefinition): Override this; call the
752         `setup_internal_class' interncall before calling our base impl.
754 Sat Aug  2 13:04:55 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
756         * ILGenerator.cs: Emission of doubles now utilise the Double.AssertEndianity
757         icall to assert double word endianity on ARM.
759 2003-07-25  Duncan Mak  <duncan@ximian.com>
761         * OpCodes.cs (Boxval): Marked with ObsoleteAttribute.
763 2003-07-24  Miguel de Icaza  <miguel@ximian.com>
765         * TypeBuilder.cs: Added generics stubs.
767         * EnumBuilder.cs: Added generics  stubs, changed bracing style for
768         routines.
770 2003-07-23  Duncan Mak  <duncan@ximian.com>
772         * SignatureHelper.cs: This class does not have the
773         SerializableAttribute.
775 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
777         * AssemblyBuilder.cs: Added argument checking to all methods according
778         to the MSDN docs. Also marked DefineUnmanagedResource and its friends
779         as not implemented.
780         * ModuleBuilder.cs: Added new property FileName used by AssemblyBuilder.
781         * ModuleBuilder.cs AssemblyBuilder.cs: Implemented IsTransient ().
783 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
785         * EventBuilder.cs: Add argument checking to methods.
787 Thu Jun 5 20:18:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
789         * AssemblyBuilder.cs: implemented DefineResource ().
791 Thu Jun 5 12:36:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
793         * OpCode.cs: implemented Equals/GetHashCode.
795 Tue Jun 3 11:14:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
797         * ILGenerator.cs, OpCode.cs: optimize opcode space usage.
799 Tue Jun 3 11:13:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
801         * UnmanagedMarshal.cs: add ability to define custom attributes (the MS
802         runtime doesn't support this).
804 2003-05-30  Zoltan Varga  <vargaz@freemail.hu>
806         * TypeBuilder.cs: Implement DefineTypeInitializer.
808 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
810         * ModuleBuilder.cs: 
811         - Implement DefineInitializedData in terms of DefineUninitializedData
812         - Name the types of global fields $ArrayType$<len> to cut back on the
813         number of types created
814         - Add argument checking
816 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
818         * AssemblyBuilder.cs: Implement GetDynamicModule. "Implement" various
819         methods not supported under MS.NET.
821 2003-05-18  Martin Baulig  <martin@ximian.com>
823         * AssemblyBuilder.cs (corlib_void_type): New internal field.
824         (SetCorlibTypeBuilders): Added overloaded version which takes 4
825         arguments to set the `corlib_void_type'.
827         * TypeBuilder.cs: Use `pmodule.assemblyb.corlib_void_type' instead
828         of `typeof (void)' to make this work when compiling corlib.
830 Thu May 15 19:16:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
832         * MethodBuilder.cs: off by one in CreateMethodBody().
833         * TypeBuilder.cs: if the return type for a method is null, use void.
835 2003-04-28  Miguel de Icaza  <miguel@ximian.com>
837         * MethodBuilder.cs: Mono allows the parameter position to be zero
838         to indicate the "returns:" attribute.
840 2003-04-20  Miguel de Icaza  <miguel@ximian.com>
842         * ILGenerator.cs (EmitCall): Implement.
844         Flag a few unimplemented methods with MonoTODO, make coding style
845         for method definitions Mono consistent.
847 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
849         * ILGenerator.cs: Implement EmitWriteLine methods.
851         * TypeBuilder.cs (CreateType): Avoid creating a default constructor
852         for the global type.
854 2003-04-15  Miguel de Icaza  <miguel@ximian.com>
856         * TypeBuilder.cs (DefineDefaultConstructor): Make it generate code
857         by default for a default constructor.  This is what the MS runtime
858         does.  The PythonNet code expected this.
860         (TypeBuilder.GetConstructorImpl): Implement this.
862         (TypeBuilder.CreateType): If there are no constructors defined, we
863         create one.
865 Tue Apr 15 13:50:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
867         * ModuleBuilder.cs, TypeBuilder.cs: set nesting_type before
868         calling setup_internal_class ().
870 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
872         * AssemblyBuilder.cs: Added 'access' member, which is needed by the
873         runtime.
875 2003-03-26  Zoltan Varga  <vargaz@freemail.hu>
877         * ILGenerator.cs: Implemented ThrowException.
879 2003-03-10  Zoltan Varga  <vargaz@freemail.hu>
881         * ILGenerator.cs: Propagate maxstack info along branches.
883 2003-03-06  Zoltan Varga  <vargaz@freemail.hu>
885         * ILGenerator.cs (Emit): Do not pop the arguments off the stack for
886         ldftn etc. Fixes bug #39196.
888 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
890         * ILGenerator.cs (Emit): Add fixup for already created methods and
891         fields. Do not add fixup for types since their table index do not 
892         change any more.
894 2003-02-26  Zoltan Varga  <vargaz@freemail.hu>
896         * TypeBuilder.cs (DefineInitializedData): Removed unnecessary assignments.
898         * ModuleBuilder.cs (DefineInitializedData): Do not call 
899         TypeBuilder::DefineInitializedData since that would mean defining a
900         nested type of the global type, which is wrong. Instead define a
901         new public type as MS does.
903         * ModuleBuilder.cs (DefineUninitializedData): Ditto.
905 Thu Feb 13 18:40:52 CET 2003 Paolo Molaro <lupus@ximian.com>
907         * ModuleBuilder.cs: add the basic initialization call.
909 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
911         * AssemblyBuilder.cs: Added basic error checking to some methods
912         according to the MSDN docs.
914 2003-02-10  Zoltan Varga  <vargaz@freemail.hu>
916         * ConstructorBuilder.cs: 
917         - Added basic error checking to all methods according to the MSDN docs.
918         - modified a lot of methods to throw NotSupportedException, to comply
919           with MS.NET.
921 2003-02-09  Zoltan Varga  <vargaz@freemail.hu>
923         * TypeBuilder.cs:
924         - Added basic error checking to all methods according to the MSDN docs.
925         - fixed AssemblyQualifiedName.
926         - implemented 'Size'.
927         - modified a lot of methods to throw NotSupportedException, to comply
928           with MS.NET.
929         - changes tested by running a full bootstrap.
931 2003-02-09  Martin Baulig  <martin@ximian.com>
933         * AssemblyBuilder.cs (AssemblyBuilder.methods): Removed.  This was
934         a hack for the symbol writer which is no longer needed.
936 2003-02-09  Martin Baulig  <martin@ximian.com>
938         * IMonoSymbolWriter.cs (DefineNamespace, OpenMethod): New methods.
940 2003-02-09  Martin Baulig  <martin@ximian.com>
942         * IMonoSymbolWriter.cs (MarkSequencePoint): New method which takes
943         just the required arguments as scalars, not arrays.
945         * ILGenerator.cs (ILGenerator.MarkSequencePoint): Use that new
946         interface method; unnecessarily creating such a large number of
947         arrays is both slow and too memory consuming.   
949 2003-02-08  Zoltan Varga  <vargaz@freemail.hu>
951         * MethodBuilder.cs: Added error checking to methods so they conform to
952         MSDN docs. Implemented 'GetModule' and 'CallingConvention' members. 
953         Some other tweaks to improve compatibility with MS .NET.
955         * TypeBuilder.cs: Added 'is_created' property which will be used for
956         checking 'type is already created' errors.
958 2003-02-07  Martin Baulig  <martin@ximian.com>
960         * ModuleBuilder.cs (.ctor): Added `bool IsMainModule' argument.
961         (Save): New internal method; creates the module's symbol file if
962         we're compiling with debugging information.
964         * AssemblyBuilder.cs (EmbedResource): Added internal overloaded
965         version of this method which takes a `byte[] blob' instead of a file.
966         (DefineDynamicMethod): If this is the first module, tell the
967         ModuleBuilder that this is the main module.
968         (Save): Call a new interncall `build_metadata' to create the final
969         metadata and save all the symbol files before creating the actual
970         output.
972         * IMonoSymbolWriter.cs: New public class; it is in the namespace
973         Mono.CSharp.Debugger.  The Mono symbol writer implements this interface.
975 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
977         * AssemblyBuilder.cs: added GetToken (SignatureHelper).
979         * ILGenerator.cs: implemented EmitCalli() methods
981         * SignatureHelper.cs: implemented GetMethoSigHelper() methods.
983 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
985         * MethodBuilder.cs: GetBaseDefinition () returns this.
987 Mon Jan 27 17:07:38 CET 2003 Paolo Molaro <lupus@ximian.com>
989         * CustomAttributeBuilder.cs, FieldBuilder.cs: applied
990         (reformatted) patch from "Jerome Laban" <jlaban@wanadoo.fr>
991         to fix ByValStr and ByValArray encodings.
993 2003-01-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
995         * AssemblyBuilder.cs: fixed compilation with csc.
997 2003-01-26  Miguel de Icaza  <miguel@ximian.com>
999         * AssemblyBuilder.cs (Save): Set the executable bit at the end.
1000         This uses a non-official enumeration value to call SetFileAttributes.
1002 2003-01-17  Zoltan Varga  <vargaz@freemail.hu>
1004         * MethodBuilder.cs ConstructorBuilder.cs: modify GetParameters() so it
1005         returns information even when the app did not use DefineParameter() to
1006         define the parameters.
1008         * ConstructorBuilder.cs (ctor): allways define SpecialName attribute
1009         for constructors as done by MS.
1011 Mon Jan 13 11:37:14 CET 2003 Paolo Molaro <lupus@ximian.com>
1013         * TypeBuilder.cs, ModuleBuilder.cs: better type name cache.
1015 2003-01-10  Zoltan Varga  <vargaz@freemail.hu>
1017         * ILGenerator.cs: Implemented EmitWriteLine(string).
1019         * TypeBuilder.cs (DefineInitializedData): Call DefineNestedType() 
1020         instead of DefineType() so the auxiliary types do not pollute the 
1021         global namespace. This is consistent with the behaviour of MS .NET.
1023 Fri Jan 10 16:03:30 CET 2003 Paolo Molaro <lupus@ximian.com>
1025         * ILGenerator.cs, MethodBuilder.cs, TypeBuilder.cs,
1026         ConstructorBuilder.cs: some tweaks to reduce memory usage.
1028 Thu Jan 2 18:46:09 CET 2003 Paolo Molaro <lupus@ximian.com>
1030         * ModuleBuilder.cs, TypeBuilder.cs: support global fields and methods.
1032 Thu Dec 19 00:06:57 CET 2002 Paolo Molaro <lupus@ximian.com>
1034         * AssemblyBuilder.cs: remove duplicated user string entries.
1036 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
1038         * FieldBuilder.cs: added 'handle' field which is needed by some new
1039         code in reflection.c.
1041 2002-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1043         * TypeBuilder.cs: implemented GetInterfaceMap () when the Type has been
1044         created.
1046 Fri Nov 8 14:53:03 CET 2002 Paolo Molaro <lupus@ximian.com>
1048         * ILGenerator.cs: account for the exception object being passed to the
1049         catch handler to calc max_stack.
1051 2002-09-21  Martin Baulig  <martin@gnome.org>
1053         * ModuleBuilder.cs (ModuleBuilder.symbol_writer): Make this
1054         field internal, not private.
1055         (ModuleBuilder.SymWriter_DefineLocalVariable): Removed.
1057         * LocalBuilder.cs (LocalBuilder.SetLocalSymInfo): Use the
1058         ISymbolWriter's DefineLocalVariable() method instead of the
1059         IMonoSymbolWriter hack.
1061 Mon Sep 16 19:02:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
1063         * AssemblyBuilder.c: special case some custom attributes.
1065 2002-09-12  Dick Porter  <dick@ximian.com>
1067         * TypeBuilder.cs: Say _which_ Type has already been created
1069 2002-09-11  Miguel de Icaza  <miguel@ximian.com>
1071         * ModuleBuilder.cs (GetTypes): Implement.
1073 Tue Sep 10 12:12:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1075         * ConstructorBuilder.cs: added a field to hold the handle.
1077 Mon Sep 9 17:31:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
1079         * TypeBuilder.cs: prepare for the real CreateType implementation.
1081 Tue Aug 27 16:57:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
1083         * TypeBuilder.cs: remove duplicate code and fix
1084         named field reading in custom attr.
1086 2002-08-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1088         * TypeBuilder.cs: UnspecifiedTypeSize is 0.
1090 Wed Aug 14 17:38:41 CEST 2002 Paolo Molaro <lupus@ximian.com>
1092         * TypeBuilder.cs: ReflectedType and CreateType fixes.
1094 Thu Aug 8 10:25:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1096         * AssemblyBuilder.cs: added API to embed managed resources.
1098 2002-08-03  Martin Baulig  <martin@gnome.org>
1100         * TypeBuilder.cs (TypeBuilder.DeclaringType): Implemented.
1102 Thu Jul 25 13:57:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
1104         * AssemblyBuilder.cs: support linking external resources.
1106 2002-07-19  Martin Baulig  <martin@gnome.org>
1108         * ILGenerator.cs (Emit (OpCode, LocalBuilder)): Throw an exception
1109         when trying to emit a local that was defined in a different ILGenerator.
1111         * LocalBuilder.cs (LocalBuilder): Added `ILGenetator' argument to
1112         the constructor.
1114 Tue Jul 16 19:32:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
1116         * ILGenerator.cs: stack size check fix.
1118 Sat Jul 13 17:30:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1120         * AssemblyBuilder.cs: add also the enum_type for compiling corlib.
1121         * TypeBuilder.cs: complete IsValueType.
1123 Sat Jul 13 15:08:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
1125         * TypeBuilder.cs: better IsValueType.
1127 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1129         * CustomAttributeBuilder.cs: removed compile warning.
1131 Fri Jul 12 11:34:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
1133         * ILGenerator.cs: fixup typebuilder tokens as well.
1135 Tue Jul 9 19:03:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
1137         * TypeBuilder.cs: special case SerializarionAttribute.
1138         Tweaks to get correct code in corlib.
1140 2002-07-06  Miguel de Icaza  <miguel@ximian.com>
1142         * ILGenerator.cs (ILGenerator.Emit): For doubles and floats, swap
1143         the bytes on big endian systems. 
1145 2002-07-03  Martin Baulig  <martin@gnome.org>
1147         * AssemblyBuilder.cs (corlib_object_type, corlib_value_type): Moved
1148         these fields up after the last entry in MonoReflectionAssemblyBuilder
1149         in reflection.h.
1151         * TypeBuilder.cs (IsValueTypeImpl): Use the AssemblyBuilder's
1152         `corlib_value_type' instead of `typeof (System.ValueType)'.
1153         (DefineNestedType): Use the AssemblyBuilder's `corlib_object_type'
1154         instead of `typeof (object)'.
1156 2002-07-02  Martin Baulig  <martin@gnome.org>
1158         * AssemblyBuilder.cs (corlib_object_type, corlib_value_type): New
1159         internal fields.  When compiling corlib, they point to the newly
1160         created System.Object and System.ValueType types.
1161         (SetCorlibTypeBuilders): New public function.  This will be
1162         dynamically called from MCS when compiling corlib.
1164         * TypeBuilder.cs (DefineInitializedData): Use the AssemblyBuilder's
1165         `corlib_value_type' as parent type instead of `typeof (System.ValueType)'
1166         to make it work when compiling corlib.
1168         * ModuleBuilder.cs (assemblyb): Made this field internal, not private.
1170 Tue Jul 2 18:34:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
1172         * TypeBuilder.cs: implemented AssemblyQualifiedName.
1173         * MethodBuilder.cs, ConstructorBuilder.cs: special case custom attr.
1175 Mon Jul 1 16:17:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
1177         * TypeBuilder.cs: implemented AddInterfaceImplementation().
1179 2002-06-28  Martin Baulig  <martin@gnome.org>
1181         * MethodBuilder.cs (GetParameters): Return all parameters, not all
1182         but the last one.
1184 2002-06-27  Martin Baulig  <martin@gnome.org>
1186         * ConstructorBuilder.cs (GetParameters): Implemented.
1188 Mon Jun 17 14:55:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
1190         * ModuleBuilder.cs, TypeBuilder.cs: fixes for nested types handling.
1192 Fri Jun 14 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
1194         * CustomAttributeBuilder.cs: added custom attribute related internal
1195         helper methods.
1196         * FieldBuilder.cs, ParameterBuilder.cs: handle MarshalAs attribute.
1197         * UnmanagedMarshal.cs: implemented.
1199 Mon Jun 10 18:58:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
1201         * PropertyBuilder.cs: implemented ReflectedType and DeclaringType
1202         properties.
1204 2002-06-07  Martin Baulig  <martin@gnome.org>
1206         * TypeBuilder.cs (TypeBuilder): Added `PackingSize packing_size' and
1207         `int type_size' fields to the constructor.
1208         (DefineNestedType): Pass packing_size and type_size to the constructor.
1210         * ModuleBuilder.cs (DefineType): Pass the packing_size and type_size
1211         fields to the TypeBuilder's constructor.
1213 2002-06-07  Martin Baulig  <martin@gnome.org>
1215         * TypeBuilder.cs (DefineNestedType): There is no overload for this
1216         method which takes 5 args in the specs, removed it.
1218 Fri Jun 7 17:04:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
1220         * AssemblyBuilder.cs: updates for PE/COFF rewrite.
1222 2002-05-30  Martin Baulig  <martin@gnome.org>
1224         * AssemblyBuilder.cs (methods): Made this internal and don't
1225         initialize it.  It will be initialized by the ModuleBuilder's
1226         GetSymbolWriter() method.
1227         (get_next_table_index): Only store the method in the `methods'
1228         array if it's not null.
1230         * ModuleBuilder.cs (GetSymbolWriter): Initialize the AssemblyBuilder's
1231         `methods' field if necessary and pass it as third argument to the
1232         symbol writer's constructor.
1234 2002-05-25  Martin Baulig  <martin@gnome.org>
1236         * TypeBuilder.cs (TypeToken): Implemented.
1238 2002-05-24  Martin Baulig  <martin@gnome.org>
1240         * ModuleBuilder.cs (symwriter_define_local): New private variable.
1241         (GetSymbolWriter): Look for a custom version of "DefineLocalVariable"
1242         and store it in `symwriter_define_local'.
1243         (SymWriter_DefineLocalVariable): New internal method to call the
1244         symbol writer's custom DefineLocalVariable() method.  It is safe to
1245         call this method if there's no symbol writer.
1247         * LocalBuilder.cs (SetLocalSymInfo): Use the MethodBuilder'snew
1248         SymWriter_DefineLocalVariable().
1250         * MethodBuilder.cs (GetParameters): Implemented.
1252 2002-05-22  Martin Baulig  <martin@gnome.org>
1254         * ModuleBuilder.cs (GetSymbolWriter): Pass the this pointer to the
1255         symbol writer's constructor.
1257 2002-05-22  Martin Baulig  <martin@gnome.org>
1259         * AssemblyBuilder.cs (methods): New field.
1260         (get_next_table_index): Record all methods and constructors
1261         (table 0x06) in the `methods' array.  This is read by the
1262         Mono.CSharp.Debugger.MonoSymbolWriter::get_method interncall to
1263         get the MethodBuilder / ConstructorBuilder back from the token.
1265         * *Builder.cs (get_next_table_index): Added `object obj' argument.
1266         (<constructors>): pass the this pointer to get_next_table_index ().
1268 2002-05-20  Martin Baulig  <martin@gnome.org>
1270         * TypeBuilder.cs (DefineField): Call the new `create_internal_class'
1271         interncall after adding the first field.  This is used when creating
1272         enum types to set `klass->enum_basetype'.
1274 Thu May 16 16:09:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1276         * TypeBuilder.cs: complete special acse support for CharSet, Size and
1277         Pack named args in StructLayout attribute.
1279 Tue May 14 17:13:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
1281         * MethodBuilder.cs: revert change in accessibility of
1282         GetILGenerator(int).
1284 Tue May 14 13:31:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
1286         * FieldBuilder.cs, ParameterBuilder.cs: more special-casing of
1287         attributes.
1289 Fri May 10 20:57:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1291         * CustomAttributeBuilder.cs: expose internal data for use in
1292         reflection.
1293         * FieldBuilder.cs, TypeBuilder.cs: special case FieldOffset and
1294         StructLayout attributes.
1296 Fri May 10 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
1298         * MethodBuilder.cs, ConstructorBuilder.cs: implemented InitLocals
1299         property.
1301 2002-04-26  Martin Baulig  <martin@gnome.org>
1303         * ModuleBuilder.cs (DefineDocument): Implemented.
1305 Tue Apr 16 13:02:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
1307         * AssemblyBuilder.cs: pad output file to file alignment.
1308         * FieldBuilder.cs: ReflectedType.
1309         * ModuleBuilder.cs: added guid generation and array method creation.
1310         * MonoArrayMethod.cs: array method support code.
1311         
1312 Wed Apr 10 12:57:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
1314         * ILGenerator.cs: use a stack to keep track of exception blocks.
1316 Mon Apr  8 06:19:01  2002 Piers Haken <piersh@friskit.com>
1318         * ILGenerator.cs: added LabelField.label_base to allow for
1319         arbitrary offsets (for switch statement)
1321 Fri Apr 5 15:41:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1323         * AssemblyBuilder.cs: simpler protocol wih the runtime to
1324         get the assembly data.
1326 Tue Mar 26 20:10:24 CET 2002 Paolo Molaro <lupus@ximian.com>
1328         * AssemblyBuilder.cs: use FileMode.Create.
1329         * ILGenerator.cs: optimize localbuilder related opcodes.
1330         Track parameters to adjust maxstack.
1331         * LocalBuilder.cS: use unsigned for position.
1333 2002-03-23  Miguel de Icaza  <miguel@ximian.com>
1335         * LocalBuilder.cs: Drop the symbol_writer as LocalBuilder fields.
1336         Do this lazily in SetLocalSymInfo.
1337         
1338 2002-03-24  Martin Baulig  <martin@gnome.org>
1340         * ModuleBuilder.cs (GetSymbolWriter): The MonoSymbolWriter's constructor
1341         now takes a `string assembly_filename' argument, pass it our fully
1342         qualified assembly name.
1344 2002-03-24  Nick Drochak  <ndrochak@gol.com>
1346         * ILGenerator.cs: Use #if-#endif instead of if(false){} to disable
1347         code.  This way there is no compiler warning.
1349         * TypeBuilder.cs: Removed the returns that came after the throws.
1350         This removes a few more compiler warnings. Also marked with MonoTODO
1351         all places where we throw NotImplemented exceptions.
1353 2002-03-23  Martin Baulig  <martin@gnome.org>
1355         * SignatureHelper.cs (GetFieldSignatureHelper, GetLocalSignatureHelper):
1356         Implemented.
1358         * LocalBuilder.cs (LocalBuilder): This internal constructor now takes
1359         a ModuleBuilder argument instead of a ISymbolWriter one.
1360         (SetLocalSymInfo): Create and pass type signature to DefineLocalVariable.
1362 2002-03-23  Martin Baulig  <martin@gnome.org>
1364         * ILGenerator.cs (BeginScope, EndScope): Implemented.
1366 2002-03-20  Martin Baulig  <martin@gnome.org>
1368         * ModuleBuilder.cs (GetSymbolWriter): New internal function. Dynamically
1369         loads the default symbol writer, catch all possible exceptions and return
1370         null on failure.
1371         (ModuleBuilder): Added `bool emitSymbolInfo' argument to this internal
1372         constructor; if set, call GetSymbolWriter ().
1373         (GetSymWriter): Implemented.
1375         * LocalBuilder.cs (LocalBuilder): Added ISymbolWriter argument to this
1376         internal method.
1377         (SetLocalSymInfo): Implemented, call ISymbolWriter.DefineLocalVariable ()
1378         if the symbol writer is not null.
1380         * ILGenerator.cs (ILGenerator): Call ModuleBuilder.GetSymWriter () to get
1381         and store the symbol writer.
1382         (DeclareLocal): Pass the symbol writer to LocalBuilder's constructor.
1383         (MarkSequencePoint): Implemented, call ISymbolWriter.DefineSequencePoints ()
1384         if the symbol writer is not null.
1386         * AssemblyBuilder.cs (DefineDynamicModule): Pass the `bool emitSymbolInfo'
1387         to ModuleBuilder's constructor.
1389 Sat Mar 16 19:11:47 CET 2002 Paolo Molaro <lupus@ximian.com>
1391         * ModuleBuilder.cs: handle modified types correctly.
1393 Thu Mar 7 17:10:42 CET 2002 Paolo Molaro <lupus@ximian.com>
1395         * AssemblyBuilder.cs: allow saving bigger assemblies.
1396         * ILGenerator.cs: add fixup table for fields and methods, since
1397         at the end of the compile they may end up with a different table
1398         index.
1399         * ModuleBuilder.cs: add cache for type names to speed up the type
1400         lookups from the compiler.
1401         * TypeBuilder.cs: GetInterfaces () returns only interfaces in the
1402         current type, not in parents (the docs are wrong).
1404 Tue Mar 5 18:09:34 CET 2002 Paolo Molaro <lupus@ximian.com>
1406         * EventBuilder.cs: implemented.
1407         * TypeBuilder.cs: implemented DefineEvent() method and UnderlyingSystemType
1408         property.
1410 Mon Mar 4 20:34:52 CET 2002 Paolo Molaro <lupus@ximian.com>
1412         * ILGenerator.cs: make enough room in the byte array for string
1413         tokens.
1414         * TypeBuilder.cs: fixed GetInterfaces().
1416 Mon Mar 4 11:30:40 CET 2002 Paolo Molaro <lupus@ximian.com>
1418         * TypeBuilder.cs: implemented GetConstructors(), GetFields(),
1419         GetMethods(), GetProperties().
1421 Thu Feb 28 19:15:10 CET 2002 Paolo Molaro <lupus@ximian.com>
1423         * AssemblyBuilder.cs: call into the runtime to init some basic
1424         assembly stuff. Reserve slot 1 of typedef table for .<Module>.
1425         * ModuleBuilder.cs: call into the runtime if we need to create a
1426         modief type, such as arrays, byref etc.
1427         * TypeBuilder.cs: call into the runtime to create the MonoClass
1428         representation for the type. Throw exceptions with not implemented
1429         stuff.
1431 Wed Feb 27 18:48:47 CET 2002 Paolo Molaro <lupus@ximian.com>
1433         * ILGenerator.cs: fix nested exception blocks.
1435 Wed Feb 20 22:30:49 CET 2002 Paolo Molaro <lupus@ximian.com>
1437         * AssemblyBuilder.cs: upped compiled assembly size limit.
1438         Implemented SetCustomAttribute () methods.
1439         * CustomAttributeBuilder.cs: implemented the needed constructor
1440         stuff.
1441         * Cosntructorbuilder.cs, EnumBuilder.cs, FieldBuilder.cs,
1442         MethodBuilder.cs, ModuleBuilder.cs, ParameterBuilder.cs,
1443         PropertyBuilder.cs, TypeBuilder.cs: Implemented SetCustomAttribute () methods.
1445 Wed Feb 20 14:54:01 CET 2002 Paolo Molaro <lupus@ximian.com>
1447         * AssemblyBuilder.cs: add SetCustomAttribute () to keep the compiler
1448         going.
1450 Fri Feb 15 18:15:04 CET 2002 Paolo Molaro <lupus@ximian.com>
1452         * ILGenerator.cs: finally block support and fixes.
1454 Thu Feb 14 18:55:52 CET 2002 Paolo Molaro <lupus@ximian.com>
1456         * FieldBuilder.cs: Add SetRVAData().
1457         * ILGenerator.cs: speed up code array growth.
1458         * TypeBuilder.cs: fix IsValueTypeImpl(). Add class_size member.
1459         Implement DefineInitializedData().
1461 Tue Jan 22 23:01:11 CET 2002 Paolo Molaro <lupus@ximian.com>
1463         * EnumBuilder.cs, TypeBuilder.cs: updates for changes in Type.cs.
1464         * ModuleBuilder.cs: fix lookup of nested types.
1466 Tue Jan 15 22:46:21 CET 2002 Paolo Molaro <lupus@ximian.com>
1468         * ILGenerator.cs: implement some of the exception support methods.
1470 Mon Jan 14 17:07:32 CET 2002 Paolo Molaro <lupus@ximian.com>
1472         * ModulerBuilder.cs: search also for subtypes in GetTypes().
1473         * TypeBuilder.cs: bugfix in FullName. Implemented DefineNestedType().
1475 Fri Jan 11 19:00:29 CET 2002 Paolo Molaro <lupus@ximian.com>
1477         * MethodBuilder.cs, ConstructorBuilder.cs: save parameter info.
1479 Thu Jan 10 21:07:54 CET 2002 Paolo Molaro <lupus@ximian.com>
1481         * ILGenerator.cs: handle type tokens (used for box opcode).
1483 Wed Jan 9 19:37:55 CET 2002 Paolo Molaro <lupus@ximian.com>
1485         * ILGenerator.cs: emit float and doubles.
1486         * ModuleBuilder.cs: off-by-one error fix and GetType()
1487         implementations.
1488         * TypeBuilder.cs: AttributesImpl added.
1489         * UnmanagedMarshal.cs: stubbed out class.
1491 Sat Jan 5 15:59:05 CET 2002 Paolo Molaro <lupus@ximian.com>
1493         * ILGenerator.cs: fix emission of two-bytes opcodes.
1494         Missing slot for locals array. Throw exceptions on unimplemented
1495         methods.
1496         * OpCode.cs: add a comment: the Value property is useless.
1497         * OpCodes.cs: fix name of tail opcode (Tail -> Tailcall).
1499 2002-01-05  Ravi Pratap  <ravi@ximian.com>
1501         * ConstructorBuilder.cs : Use the MonoTODO attribute.
1503         * ILGenerator.cs, Label.cs, MethodBuilder.cs, ModuleBuilder.cs,
1504         ParameterBuilder.cs, TypeBuilder.cs : Ditto.
1505         
1506 Thu Jan 3 23:26:15 CET 2002 Paolo Molaro <lupus@ximian.com>
1508         * ILGenerator.cs: typo fix.
1510 Mon Dec 24 17:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
1512         * TypeBuilder.cs: added DefineMethodOverride().
1513         * MethodBuilder.cs: add override_method member and setter.
1515 Mon Nov 19 13:58:01 CET 2001 Paolo Molaro <lupus@ximian.com>
1517         * AssemblyBuilder.cs: add method to register a string in the "#US"
1518         stream.
1519         * EnumBuilder.cs, SignatureHelper.cs: added stubs.
1520         * ILGenerator.cs: more stuff implemented.
1521         * LocalBuilder.cs: keep track of local var index.
1523 Thu Nov 15 18:11:23 CET 2001 Paolo Molaro <lupus@ximian.com>
1525         * ConstructorBuilder.cs: implement the interesting methods.
1526         * ILGenerator.cs: adapt for use with both a MethodBuilder and a
1527         ConstructorBuilder.
1528         * MethodBuilder.cs: add ImplAttributes.
1529         * ParameterBuilder.cs: adapt for ConstructorBuilder.
1530         * TypeBuilder.cs: add constructors handling.
1532 Wed Nov 14 17:01:45 CET 2001 Paolo Molaro <lupus@ximian.com>
1534         * ConstructorBuilder.cs: added missing stubs and some implementation.
1535         * CustomAttributeBuilder.cs: added.
1536         * EventBuilder.cs: added.
1537         * FieldBuilder.cs: updates.
1538         * MethodBuilder.cs: stuff to implement P/Invoke methods.
1539         * ModuleBuilder.cs: added GetArrayMethod() stub.
1540         * ParameterBuilder.cs, PropertyBuilder.cs: updates.
1541         * TypeBuilder.cs: updates and stubs.
1543 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
1545         * TypeBuilder.cs: Added implementation for TypeHandle.
1547 Tue Nov 6 09:13:45 CET 2001 Paolo Molaro <lupus@ximian.com>
1549         * AssemblyBuilder.cs: define an internal constructor.
1551 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
1553         * AssemblyBuilder.cs: Reformatted.
1555         Added override keywords to those that needed them.
1557         Removed methods that we do not override, but just inherit
1559 Tue Sep 25 16:53:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
1561         * TypeBuilder.cs, ConstructorBuilder.cs, ModuleBuilder.cs: added.