2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / corlib / System.Reflection.Emit / ChangeLog
blob00ac6d6091e188a75656c56657c7f5d54d06151b
1 2010-04-06  Marek Safar  <marek.safar@gmail.com>
3         * ModuleBuilder.cs: Use Dictionary.
5 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
7         * ModuleBuilder.cs: Implement Resolve*.
9 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
11         * ModuleBuilder.cs: Implement ModuleVersionId.
13 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
15         * ModuleBuilder.cs: Implement ResolveType.
17 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
19         * ModuleBuilder.cs: Implement GetMethodImpl.
21 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
23         * ModuleBuilder.cs (DefineType): Raise the correct exception
24         when name is null.
26 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
28         * ModuleBuilder.cs: Implement IsResource.
30 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
32         * ModuleBuilder.cs: Implement ScopedName property.
34 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
36         * ModuleBuilder.cs: Implement Name property.
38 2010-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
40         * ModuleBuilder.cs: Implement Assembly property.
42 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
44         * TypeBuilder.cs (GetField): Avoid a crash if this is called on a
45         FieldOnTypeBuilderInst. Fixes #586944.
47 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
49         * ModuleBuilder.cs (DefinedType): Lookup inside the name_cache before creating
50         the TypeBuilder since the runtime code can't handle a duplicate type name.
52 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
54         * CustomAttributeType.cs (IsValidType): Implement proper checking for value types
55         as well.
57 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
59         * CustomAttributeBuilder.cs: Fix the calls to IsValidType, some were passing
60         in DeclaringType instead of PropertyType/FieldType.
62         * CustomAttributeType.cs (IsValidType): Implement proper checking for reference
63         types. Fixes #591788.
65 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
67         * CustomAttributeBuilder.cs (IsValidType): Call Enum.GetUnderlyingType () for
68         dynamic enums to avoid crashes in the unmanaged code. Fixes #591800.
70 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
72         * AssemblyBuilder.cs: Add IsDynamic.
74 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
76         * AssemblyBuilder.cs: Implement v4 GetSatelliteAssembly,
77         ManifestModule, GlobalAssemblyCache.
79 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
81         * AssemblyBuilder.cs: Implement v4 GetReferencedAssemblies
82         and GetLoadedModules.
84 2010-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
86         * AssemblyBuilder.cs: Implement v4 GetModules().
88 2010-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
90         * AssemblyBuilder.cs: Implement v4 GetType.
92 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
94         * MethodOnTypeBuilderInst.cs (ContainsGenericParameters): Check
95         the base_method first.
97 2010-03-16  Jb Evain  <jbevain@novell.com>
99         * AssemblyBuilder.cs, ModuleBuilder.cs: use MOONLIGHT symbol to
100         disambiguate MonoTouch and Moonlight code.
102 2010-03-12  Jb Evain  <jbevain@novell.com>
104         * AssemblyBuilder.cs (AddTypeForwarder): throw if the
105         type is a nested type.
107 2010-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
109         * TypeBuilder.cs (GetMethod): Allow type to be the typebuilder itself.
110         Add better error checking to GetConstructor and GetField.
112         Fixes #587106.
114 2010-02-09  Sebastien Pouliot  <sebastien@ximian.com>
116         * ModuleBuilder.cs: Do not use reflection to create SymbolWriterImpl
117         for Moonlight since the code is bundled inside mscorlib.dll to avoid
118         having a non-platform assembly poking the internals of mscorlib.dll
120 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
122         * CustomAttributeBuilder.cs (Initialize): Add more argument checking to avoid
123         assertions in the runtime. Fixes #574353.
125 2010-01-19 Rodrigo Kumpera  <rkumpera@novell.com>
127         * EventOnTypeBuilderInst.cs: Fix build.
129 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
131         * ILGenerator.cs (Emit): Disallow byref types. Fixes #564411.
133 2009-12-16 Rodrigo Kumpera  <rkumpera@novell.com>
135         * FieldOnTypeBuilderInst.cs: Add more CompilerContext hacks.
137 2009-12-14 Rodrigo Kumpera  <rkumpera@novell.com>
139         * TypeBuilder.cs (GetConstructor/GetMethod): Fail with a NRE if method/ctor
140         is null.
142 2009-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
144         * AssemblyBuilder.cs (MakeGenericType): Accept a Type as argument.
146         * ConstructorOnTypeBuilderInst.cs: Change it to support an underlying
147         non-sre constructor.
149         * MethodOnTypeBuilderInst.cs: Change it to support an underlying
150         non-sre method.
152         * FieldOnTypeBuilderInst.cs: Change it to support an underlying
153         non-sre field.
155         * EventOnTypeBuilderInst.cs: Change it to support an underlying
156         non-sre event.
158 2009-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
160         * AssemblyBuilder.cs: Add MakeGenericType method while takes care of doing
161         generic instance canonicalization under compiler context.
163         * DerivedTypes.cs: Add ArrayType::GetEffectiveRank to make it possible to
164         distinguish between [] and [*].
166         * TypeBuilder.cs: Implement MakeGenericType in managed code.
168 2009-12-09  Jb Evain  <jbevain@novell.com>
170         * ILGenerator.cs (Emit(OpCode,LocalBuilder)): deal with
171         opcodes not related to locals.
173 2009-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
175         * MethodOnTypeBuilderInst.cs: Add new constructor that takes a MethodInfo
176         as base method. Change how compiler context is calculated to take the
177         instantiation vector into account.
179 2009-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
181         * MethodOnTypeBuilderInst.cs: Change base_method type from MethodBuilder to
182         MethodInfo.
184 2009-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
186         * DerivedTypes.cs: Implement IsCompilerContext property and replace
187         all checks to use it.
189         * EnumBuilder.cs: Ditto.
191         * GenericTypeParameterBuilder.cs: Ditto.
193         * TypeBuilder.cs: Ditto.
195         * FieldOnTypeBuilderInst.cs: Replace ad-hoc check for compiler context
196         with proper call to generic instance type.
198         * MethodOnTypeBuilderInst.cs: Ditto.
200         * ConstructorOnTypeBuilderInst.cs: Ditto.
202 2009-12-04 Rodrigo Kumpera  <rkumpera@novell.com>
204         * MethodBuilder.cs (MakeGenericMethod): Don't rely on the runtime to
205         inflate a MethodBuilder. Create directly an instance of MethodOnTypeBuilderInst.
207         * MethodOnTypeBuilderInst.cs (MakeGenericMethod): Cleanup this method and support
208         inflating already inflated methods under compiler context.
210 2009-12-04 Rodrigo Kumpera  <rkumpera@novell.com>
212         * MethodOnTypeBuilderInst.cs: Change instantiation field type to System.Type.
214         * MethodOnTypeBuilderInst.cs (MetadataToken): Explicitly throw if not under
215         compiler context.
217 2009-12-04 Rodrigo Kumpera  <rkumpera@novell.com>
219         * MethodOnTypeBuilderInst.cs: Rename mb to base_method to better reflect
220         it's meaning. Introduce IsCompilerContext method and apply it's usage.
222 2009-11-16  Marek Safar  <marek.safar@gmail.com>
224         * ILGenerator.cs, DynamicMethod.cs, MethodBuilder.cs,
225         ConstructorBuilder.cs: Some 4.0 changes.
227 2009-10-30  Sebastien Pouliot  <sebastien@ximian.com>
229         * MethodBuilder.cs: Add missing 'names' validations in 
230         DefineGenericParameters
232 2009-10-29  Sebastien Pouliot  <sebastien@ximian.com>
234         * ModuleBuilder.cs: Add missing 'className' validations in GetType
235         * TypeBuilder.cs: Add missing 'names' validations in 
236         DefineGenericParameters
238 2009-10-27  Marek Safar  <marek.safar@gmail.com>
240         * GenericTypeParameterBuilder.cs: Attributes work under NET_4_0.
242 2009-10-24  Sebastien Pouliot  <sebastien@ximian.com>
244         * AssemblyBuilder.cs: For Silverlight only AssemblyBuilderAccess.Run
245         is supported (browser-side) but we still allow other values when
246         compiling (e.g. smcs) outside the browser (wo coreclr)
247         * TypeBuilder.cs (GetConstructor): Fix validations
249 2009-09-18  Sebastien Pouliot  <sebastien@ximian.com>
251         * AssemblyBuilder.cs, ConstructorBuilder.cs, MethodBuilder.cs, 
252         TypeBuilder.cs: Don't process PermissionSet under NET_2_1
254 2009-09-06 Rodrigo Kumpera  <rkumpera@novell.com>
256         * ConstructorOnTypeBuilderInst.cs (GetParameters): Make it work for
257         finished types.
259 2009-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
261         * ILGenerator.cs (label_fixup): Check for unmarked labels.
262         Fixes #536243.
264 2009-08-06 Rodrigo Kumpera  <rkumpera@novell.com>
266         * MethodBuilder.cs: Mark generic_params internal.
268         * MethodOnTypeBuilderInst.cs: Add fields to support
269         inflated generic methods. Implement generics related
270         methods.
272 2009-08-06  Marek Safar  <marek.safar@gmail.com>
274         * ILGenerator.cs: Add 4.0 ILOffset.
276 2009-08-04 Rodrigo Kumpera  <rkumpera@novell.com>
278         * DerivedTypes.cs (DerivedType): Implement ToString ().
280 2009-08-03 Rodrigo Kumpera  <rkumpera@novell.com>
282         * EventBuilder.cs: Make some fields internal.
284         * TypeBuilder.cs: Make events field internal.
285         Remove some MonoTODOs that are already done.
287         * EventOnTypeBuilderInst.cs: New file which implements
288         the required functionality by compiler context.
290 2009-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
292         * TypeBuilder.cs (IsDefined): Throw if not
293         created and not in compiler context.
295 2009-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
297         * TypeBuilder.cs (GetNestedTypes): Throw if not
298         created and not in compiler context.
300 2009-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
302         * TypeBuilder.cs (GetEvents): Throw if not created
303         and not in compiler context.
305         * TypeBuilder.cs (GetNestedType): Don't rely on
306         MonoType implementation as it doesn't work if the
307         nested type is defined after the TypeBuilder is
308         created.
310 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
312         * TypeBuilder.cs (GetConstructors): Throw if
313         TypeBuilder is incomplete.
315 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
317         * TypeBuilder.cs (DefineMethodOverride): Throw if
318         method body doesn't belong to the TypeBuilder.
320 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
322         * TypeBuilder.cs (GetInterfaces): Return the expanded
323         interface list if the type has been created.
325 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
327         * TypeBuilder.cs (GetGenericArguments): Returns null for
328          non generic TypeBuilders.
330 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
332         * TypeBuilder.cs (GenericParameterAttributes): Return none.
334 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
336         * TypeBuilder.cs (GetElementType): Throw always.
338 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
340         * TypeBuilder.cs (GetGenericTypeDefinition): Either
341         throw or return itself.
343 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
345         * TypeBuilder.cs (GenericParameterPosition): Return 0
346         instead of throwing.
348 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
350         * TypeBuilder.cs (DeclaringMethod): Return null
351         instead of throwing.
353 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
355         * TypeBuilder.cs (CreateType): Throw if concrete
356         type has abstract method.
358 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
360         * GenericTypeParameterBuilder.cs: SetBaseTypeConstraint with
361         null argument is the same as passing typeof (object).
363 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
365         * DerivedTypes.cs (ArrayType): Special case vector arrays using zero
366          as rank. This is required because we need to make the distinction
367         between a vector and a one dimension SZARRAY.
369         * EnumBuilder.cs: Create vectors as rank-zero ArrayType objects.
371         * TypeBuilder.cs: Same.
373         * GenericTypeParameterBuilder.cs: Same.
375 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
377         DerivedTypes.cs: ByRef and Pointer types return Array as base
378         type.
380 2009-07-28  Marek Safar  <marek.safar@gmail.com>
382         * DynamicMethod.cs: Pass skipVisibility.
384 2009-07-27 Rodrigo Kumpera  <rkumpera@novell.com>
386         OpCode.cs: HashCode is meant to be calculated based on Name. 
388         OpCodeNames.cs: Fix some names.
390         OpCodes.cs: Fix Stelem, Constrained and Readonly specs.
392 2009-07-26  Miguel de Icaza  <miguel@novell.com>
394         * ILGenerator.cs: Fix the exception thrown when LocalBuilders are
395         mixed between ILGenerators.
397 2009-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
399         * TypeBuilder.cs: Make the interfaces field internal.
401 2009-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
403         * FieldOnTypeBuilderInst.cs: Add a ToString() to help debugging.
404         Make fields internal.
406         * MethodOnTypeBuilderInst.cs: Build it under BOOTSTRAP_NET_2_0.
408 2009-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
410         * ConstructorBuilder.cs: Make parameters and pinfo fields internal.
412         * ConstructorOnTypeBuilderInst.cs: Build it under BOOTSTRAP_NET_2_0.
413         Properly implement GetParameters under compiler context.
415         * TypeBuilder.cs: Make ctors field internal.
417 2009-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
419         * FieldOnTypeBuilderInst.cs: Implement MetadataToken and FieldToken
420         for compiler context.
422         * TypeBuilder.cs: Make FieldBuilder related fields internal.
424 2009-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
426         * PropertyOnTypeBuilderInst.cs: Use TypeBuilder::GetMethod instead of
427         MonoGenericClass::GetCorrespondingInflatedMethod. This is possible
428         since the returned methods of MonoGenericClass::GetMethods have been
429         unified with TypeBuilder::GetMethod.
431         * TypeBuilder.cs: Make property related fields internal.
433 2009-07-22 Rodrigo Kumpera  <rkumpera@novell.com>
435         * MethodOnTypeBuilderInst.cs: Implement ToString to help debugging.
437         * TypeBuilder.cs: Make the properties field internal.
439         * PropertyOnTypeBuilderInst.cs: New type implementing a property of an
440         inflated TypeBuilder.
442 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
444         * EnumBuilder.cs: Use new derived types for array, pointer and byref.
446 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
448         * GenericTypeParameterBuilder.cs (MakeByRefType): Return an instance
449         of PointerType instead of relying on the runtime for it.
451 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
453         * GenericTypeParameterBuilder.cs (MakeByRefType): Return an instance
454         of ByRefType instead of relying on the runtime for it.
456 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
458         * DerivedTypes.cs (DerivedType): Implement IsAssignableFrom
459         and ContainsGenericParameters
461         * DerivedTypes.cs (DerivedType::UnderlyingSystemType): Create 
462         the unmanaged type before returning so the resulting object is
463         understood as a SystemType.
465         * DerivedTypes.cs (DerivedType::AssemblyQualifiedName): Return null
466         if element's FullName is null as well.
468         * DerivedTypes.cs (ArrayType::GetAttributeFlagsImpl): Return proper
469         array flags if under compiler context.
470         
471         * DerivedTypes.cs (*::FormatName): Return null if elementName is.
473         * GenericTypeParameterBuilder.cs: Improve compatibility when not
474         under compler context.
476         * GenericTypeParameterBuilder.cs (MakeArrayType): Return an instance
477         of ArrayType instead of relying on the runtime for it.
479         * TypeBuilder.cs: Add error checking to MakeArrayType and remove some
480         MonoTODO.
482 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
484         * AssemblyBuilder.cs: Applied patch from <Dax@daxxfiles.net>. Save
485         the public key token to a field where the runtime can access it.
487 2009-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
489         * DerivedTypes.cs: Implemented PointerType.
491         * TypeBuilder.cs (MakePointerType): Return an
492         instance of PointerType.
494 2009-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
496         * DerivedTypes.cs: Implemented ByRefType.
498         * TypeBuilder.cs (MakeByRefType): Return an
499         instance of ByRefType.
501 2009-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
503         * DerivedTypes.cs: Refactor the types here to move
504         a lot of code to the base DerivedType in preparation
505         for upcomming ByRefType and PointerType puppies.
507 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
509         * TypeBuilder.cs (IsArrayImpl): Return false always as a
510         typebuilder will never represent an array.
512         * TypeBuilder.cs (MakeArrayType): Return a new instance of
513         ArrayType instead of calling into MonoType machinery.
515         * DerivedTypes.cs: New file with all the internal types
516         used by SRE to represent derived types from TypeBuilder:
517         arrays, pointers and byrefs'.
519 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
521         * AssemblyBuilder.cs: Add IsRun property that returns true if
522         any execute mode is enabled.
524         * ModuleBuilder.cs: Add set_wrappers_type icall to define which type
525         is to be bound to wrappers. Create a new abstract type and call it
526         when the assembly is build this way.
528         Replace explicit checks for global_type with calls to CreateGlobalType.
530         * TypeBuilder.cs: Internal ctor now takes an extra table_idx argument.
532 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
534         * CustomAttributeBuilder.cs: Properly handle element type for safe 
535           arrays (SafeArraySubType marshal attribute option).
537         Code is contributed under MIT/X11 license.
539 2009-06-12  Jb Evain  <jbevain@novell.com>
541         * AssemblyBuilder.cs (Save): throw a NotImplementedException
542         when asked to emit a pe32+ binary for a AMD64 or IA64
543         specific assembly.
545 2009-06-05  Jb Evain  <jbevain@novell.com>
547         * ModuleBuilder.cs (DefineManifestResource): expose during
548         BOOTSTRAP_NET_2_0 as well.
550 2009-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
552         * ILGenerator.cs (EmitCall): Under 2.0 profile ignore optional
553         arguments if the method call conv is not vararg.
555 2009-05-22  Zoltan Varga  <vargaz@gmail.com>
557         * AssemblyBuilder.cs (.ctor): Error out if the not yet supported 
558         RunAndCollect flag was given.
560         * AssemblyBuilderAccess.cs: Add RunAndCollect flag for net 4.0.
562 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
564         * DynamicMethod.cs (Invoke): Wrap a MethodAccessException inside a
565         TargetInvocationException (required for Moonlight 2).
567 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
569         * TypeBuilder.cs (GetGenericTypeDefinition): Call the icall instead of
570         the base method which now throws an exception.
572 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
574         * ILGenerator.cs SignatureHelper.cs: Add checks for user types.
576 2008-02-21  Jb Evain  <jbevain@novell.com>
578         * ModuleBuilder.cs: override GetModuleVersionId
579         so that we can get the module guid from Module.ModuleVersionId.
580         Part of the fix for #471302.
582 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
584         * SignatureHelper.cs: Fix warnings.
586         * ILGenerator.cs: Fix warnings.
588 2008-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
590         * AssemblyBuilder.cs: When assembly is strongnamed, then explicitly
591         set PublicKey flag. Do not allow AssemblyFlagsAttribute to overwrite
592         flags value, and ignore PublicKey flag if assembly is not strongnamed.
593         Fixes bug #432423.
595 2008-11-11 Rodrigo Kumpera  <rkumpera@novell.com>
597         * ConstructorOnTypeBuilderInst.cs (MetadataToken): Make this property
598         work under compiler context. Same hack as the one applied to
599         MethodOnTypeBuilderInst.
601         Fixes #442610.
603 2008-09-23  Marek Safar  <marek.safar@gmail.com>
605         * ModuleBuilder.cs: Fixed NRE when default symbol writer cannot be
606         loaded. 
608 2008-09-16  Jb Evain  <jbevain@novell.com>
610         * AssemblyBuilder.cs (AddTypeForwarder): correctly grow the
611         type_forwarders array, to make that work for more than one
612         type forwarder. Managed part of the fix for #422929.
614 2008-09-04  Marek Safar  <marek.safar@gmail.com>
616         * TypeBuilder.cs: Add mcs specific SetCharSet method.
618 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
620         * TypeBuilder.cs (CreateType): Avoid creating a default ctor if the
621         type has a constructor defined using DefineMethod. Fixes #416632.
623 2008-07-25  Rodrigo Kumpera  <rkumpera@novell.com>
625         * TypeBuilder.cs (GetMethod): Allow created TypeBuilders
626         to be used.
628 2008-07-23  Marek Safar  <marek.safar@gmail.com>
629                         Rodrigo Kumpera  <rkumpera@novell.com>
631         * TypeBuilder.cs (GetMethod): A fix for #408933
633 2008-07-22  Rodrigo Kumpera  <rkumpera@novell.com>
635         * MethodOnTypeBuilderInst.cs: Change visibility of the parent
636         MethodBuilder to internal.
638 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
640         * CustomAttributeBuilder.cs (get_umarshal): Add support for all 
641         MarshalAsAttribute fields to fix the build.
642         
643         * CustomAttributeBuilder.cs (get_umarshal): Decode enums properly.
645 2008-07-21  Marek Safar  <marek.safar@gmail.com>
647         * ParameterBuilder.cs, CustomAttributeBuilder.cs: Check for
648         UnmanagedType.ByValArray to be used only on fields.
650 2008-07-16  Rodrigo Kumpera  <rkumpera@novell.com>
652         * MethodOnTypeBuilderInst.cs: Special case all methods
653         under compiler context as needed by mcs. 
655         * MethodBuilder.cs: Change the visibility of some fields
656         to internal so MethodOnTypeBuilderInst can use it.
658 2008-07-11  Marek Safar  <marek.safar@gmail.com>
660         * ModuleBuilder.cs: Couple of micro optimizations.
662 2008-07-03  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>
664         * SignatureHelper.cs: Fix parameter names
665         * ModuleBuilder.cs: Fix parameter names
667 2008-06-18 Rodrigo Kumpera <rkumpera@novell.com>
669         * TypeBuilder.cs (IsAssignableTo): Fixed check for interfaces
670         defined on parent. Based on Geoff's Norton patch.
671         Fixes #349194.
673 2008-06-12  Marek Safar  <marek.safar@gmail.com>
675         * MethodBuilder.cs: Removed SetGenericMethodSignature.
677 2008-06-06  Jb Evain  <jbevain@novell.com>
679         * OpCodes.cs: OpCode constrained. is of type InlineType.
681 2008-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
683         * TypeBuilder.cs (IsAssignableTo): When an interface is passed as
684         argument and the TypeBuilder has been created, also check if parent
685         can be assigned to type.
687 2008-05-15  Zoltan Varga  <vargaz@gmail.com>
689         * TypeBuilder.cs (.ctor): Convert a null parent to typeof (object) here, not just
690         in CreateType (). Fixes #389171.
692 2008-05-11  Gert Driesen  <drieseng@users.sourceforge.net>
694         * FieldBuilder.cs: Added null check for type.
695         * TypeBuilder.cs: For enums, construct UnderlyingSystemType when
696         first instance field is defined instead of having to lookup it up on
697         demand. Avoid cast in IsCompilerContext.
699 2008-05-11  Gert Driesen  <drieseng@users.sourceforge.net>
701         * TypeBuilder.cs: Use Assembly.FullName instead of AssemblyName.
702         In UnderlyingSystemType, return UnderlyingSystemType of created type
703         when available. For an enum, UnderlyingSystemType is the type of the
704         first instance field. If no instance field is available, throw an
705         InvalidOperationException. Retain original behavior when operating in
706         compiler context.
707         * ConstructorBuilder.cs: Moved implementation of GetParameters to
708         GetParametersInternal to allow it to be used internally when type is
709         not yet created.
710         * CustomAttributeBuilder.cs: Added GetParameters method that uses
711         GetParametersInternal on ConstructorBuilder, and use it where
712         necessary.      
714 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
716         * ConstructorBuilder.cs: Revert the throw not_created () change as it causes
717         vbnc bootstrap to fail. Fixes #386419.
719 2008-05-01  Gert Driesen  <drieseng@users.sourceforge.net>
721         * ConstructorBuilder.cs: Switch arguments for AORE.
723 2008-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
725         * ModuleBuilder.cs (DefineType): Do not perform lookup of in cache if
726         name is null to allow correct exception to be thrown (in TypeBuilder
727         ctor).
728         * TypeBuilder: Moved name argument check to TypeBuilder ctor. Modified
729         ArgumentException parameter names to match MS. Removed duplicate check
730         for data length from DefineInitializedData. Modified check_name to
731         only throw when first character is null char.
732         * ConstructorBuilder.cs (GetParameters): Throw NotSupportedException
733         (2.0) or InvalidOperationException (1.0) when type is not yet created
734         and we're not in compiler context. Return empty array when no
735         parameters are defined.
736         (MethodHandle): Always throw NotSupportedException.
737         (DefineParameter): Prevent NRE when parameters is null.
738         (GetCustomAttributes): When not in compiler context, always throw
739         NotSupportedException.
740         * ConstructorOnTypeBuilderInst.cs: Delegate to ConstructorBuilder
741         where possible. Fixed ContainsGenericParameters and IsGenericMethod
742         to always return false. In MethodBase.Invoke, throw an
743         InvalidOperationException instead of NIE.
745 2008-04-26  Gert Driesen  <drieseng@users.sourceforge.net>
747         * MethodOnTypeBuilderInst.cs: Added overrides for ReturnType and 
748         GetGenericMethodDefinition. Implement GetGenericArgument,
749         IsGenericMethod(Definition). Throw NotSupportedException instead of
750         NotImplementedException.
752 2008-04-26  Jb Evain  <jbevain@novell.com>
754         * ILGenerator.cs, AssemblyBuilder.cs, TypeBuilder.cs:
755         replace usages of new Type [0] by Type.EmptyTypes.
756         Found with Gendarme.
758 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
760         * MethodOnTypeBuilderInst.cs ConstructorOnTypeBuilderInst: New files.
762 2008-03-29  Gert Driesen  <drieseng@users.sourceforge.net>
764         * AssemblyBuilder.cs: Added enum that determines the type of the
765         native (version) resource. Added fields for holding the native
766         resource type and the version culture. The versioninfo_culture was
767         introduced to hold the original culture of the assembly, since
768         the AssemblyCultureAttribute should only affect the language of the
769         versioninfo block when not used in compiler context. Move constructin
770         of native version info to DefineVersionInfoResourceImpl to allow
771         attributes to affect the versioninfo after DefineVersionInfoResource
772         has been invoked. Allow ArgumentException for invalid culture string
773         to bubble up. In compiler context, use FileVersion as default value
774         for ProductionVersion.
776 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
778         * FieldOnTypeBuilderInst.cs: New file.
780 2008-03-11  Marek Safar  <marek.safar@gmail.com>
782         * MethodBuilder.cs (GetGenericArguments): Returns Type.EmptyType.
784 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
786         * AssemblyBuilder.cs: Define GetManifestModule () for net 2.0 bootstrap too.
788         * DynamicMethod.cs: Create a dynamic assembly to hold the anon hosted methods.
789         
790         * DynamicMethod.cs: Add net 3.5 ctor overloads.
792         * ModuleBuilder.cs (RegisterToken): New icall.
794         * MethodBuilder.cs (ctor): Call ModuleBuilder.RegisterToken (), so the token gets
795         added to the internal hash table. Fixes #367668.
797         * ConstructorBuilder.cs: Ditto.
798         
799 2008-03-06  Jb Evain  <jbevain@novell.com>
801         * SignatureHelper.cs (GetMethodSigHelper): if returnType
802         is null, use typeof (void) instead. Fixes #367663.
804 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
806         * MethodBuilder.cs (check_override): Added, verify if this method has explicit
807         override set and doesn't follow virtual settings of overriden method.
809         * TypeBuilder.cs (CreateType): Call MethodBuilder::check_override before
810         creating the type.
812         Fixes #361689.
814 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
816         * ModuleBuilder.cs: Fix build.
818         * AssemblyBuilder.cs (GetTypes): Implement this entirely in managed code.
820         * ModuleBuilder.cs (GetTypes): Replace TypeBuilders with their created types to
821         match MS.
823         * AssemblyBuilder.cs: Override GetModulesInternal () so we can return
824         ModuleBuilders.
826 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
828         * TypeBuilder.cs (GenerateDebugInfo): Emit debug info for nested types as well.
829         Fixes #356316.
831 2008-01-21  Gert Driesen  <drieseng@users.sourceforge.net>
833         * AssemblyBuilder.cs: Introduce magic value for AssemblyBuilderAccess
834         to signal usage from a compiler. On 2.0 profile, perform argument
835         check for access. Use AssemblyFlags passed in through AssemblyName
836         arguments. Modified SetCustomAttribute to only use the Assembly*
837         attribute for constructing the assembly name when used in compiler
838         context. Fixes corlib part of bug #354970.
840 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
842         * TypeBuilder.cs (GetConstructorImpl): Add back the code removed by the last
843         patch since it is needed when building mscorlib.
845 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
847         * TypeBuilder.cs (GetConstructorImpl): Use GetConstructor on created
848         type. Original implementation did not take into account the binding
849         flags and failed with a NotSupportedException if the default binder
850         checked if a ParamArrayAttribute was defined. It also does not make
851         sense to return a ConstructorBuilder once the type is emitted.
852         (GetConstructors): When the type is emitted, use GetConstructors
853         on the created type.
854         (GetFields): Removed duplicate code.
855         (GetMethodsByName): Fixed matching of methods in the parent class
856         depending on their accessibility:
857         - Private: never include private methods of parent
858         - Public: ignore if Public flag is not set
859         - Assembly: ignore if NonPublic is not set or when on the 1.0 profile
860         - Rest (Family, FamANDAssem, FamORAssem): ignore if NonPublic flag is
861           not set
862         Static methods of the parent are ignored unless the FlattenHierarchy
863         flag is set.
864         (GetProperties): When the type is emitted, use GetProperties on the
865         created type as the TypeBuilder implementation itself does not include
866         properties from the parent class.
868 2007-12-31  Gert Driesen  <drieseng@users.sourceforge.net>
870         * AssemblyBuilder.cs (UnprotectedGetName): Set the public key token
871         as well.
873 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
875         * FieldBuilder.cs (GetToken): Use the MetadataToken property.
877 2007-11-20  Atsushi Enomoto  <atsushi@ximian.com>
879         * GenericTypeParameterBuilder.cs : fixed regression.
880           GenericParameterAttributes also needs some special care.
882 2007-11-20  Atsushi Enomoto  <atsushi@ximian.com>
884         * MethodBuilder.cs : implemented ContainsGenericParameters().
885         * GenericTypeParameterBuilder.cs : removed most of extra members
886           and added missing members for 2.0 API.
888 2007-11-18  Miguel de Icaza  <miguel@novell.com>
890         * SignatureHelper.cs: Implement Equals and GetHashCode
892 2007-11-17  Miguel de Icaza  <miguel@novell.com>
894         * SignatureHelper.cs: Preparational tasks to support the
895         AddArgument overloads that allow the specification of modopts and
896         modreqs. 
898         Refactor code, add new parameters. 
900         * SignatureHelper.cs (AddArguments): Add new 2.0 API, used by
901         new versions of the DLR.   Currently does not have support for
902         modreq, modopts.   Just a simple wrapper as consumed by the DLR.
904 2007-11-16  Atsushi Enomoto  <atsushi@ximian.com>
906         * AssemblyBuilder.cs : added missing 2.0 member.
907         * DynamicMethod.cs : removed extra stuff.
908         * DynamicILInfo.cs : no public .ctor().
909         * ILGenerator.cs : fixed 2.0 member signatures.
911 2007-11-16  Atsushi Enomoto  <atsushi@ximian.com>
913         * EnumBuilder.cs, TypeBuilder.cs : implemented missing 2.0
914           stuff, in harmless manner.
916 2007-11-16  Atsushi Enomoto  <atsushi@ximian.com>
918         * ConstructorBuilder.cs : added CallingConvention.
920 2007-11-16  Atsushi Enomoto  <atsushi@ximian.com>
922         * SignatureHelper.cs : Module can be null, and for non-
923           ModuleBuilder argument, throw ArgumentException.
924           Added missing 2.0 stuff.
926 2007-11-08  Rodrigo Kumpera <rkumpera@novell.com>
928         * TypeBuilder.cs: Workaround for #82625 not needed anymore.
929         GetFields() returns the created type fields.
931 2007-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
933         * ILGenerator.cs: Added missing null checks. Removed extra tabs.
935 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
937         * AssemblyBuilder.cs: Added missing paramname to ArgumentExceptions.
938         Use String.Length to check for zero-length string.
940 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
942         * AssemblyBuilder.cs (GetManifestModule): Return a ModuleBuilder here to
943         match MS.NET.
945 2007-09-22  Gert Driesen  <drieseng@users.sourceforge.net>
947         * TypeBuilder.cs: Do not include static methods of base class in
948         GetMethod(s). Fixes bug #327482.
950 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
952         * AssemblyBuilder.cs (DefineVersionInfoResource): Allow the arguments to be
953         null. Fixes #82832.
955 2007-09-11  Jb Evain  <jbevain@novell.com>
957         * DynamicMethod.cs: store the owner of the DynamicMethod.
959 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
961         * AssemblyBuilder.cs (DefineUnmanagedResource): Open file read-only. Fixes
962         #72764.
964 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
966         * TypeBuilder.cs: Add a workaround for #82625 to make nemerle work again.
968 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
970         * AssemblyBuilder.cs: In DefineIconResource, open icon in read-only
971         mode. Fixes bug #82617.
973 2007-08-17  Rolf Bjarne Kvinge  <RKvinge@novell.com>
975         * ILGenerator.cs: Change BeginCatchBlock to end the current filter block if called with a null exceptionType. Added ILExceptionBlock.FILTER_START to be able to track if we're in a filter block or not. Renamed PatchLastClauseStart to PatchFilterClause to match better what it does, and make it update the handler's type to FILTER. Fixes #81431.
977 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
979         * DynamicILInfo.cs: New file.
981         * DynamicMethod.cs (GetDynamicILInfo): New 2.0 method.
983 2007-07-11  Rodrigo Kumpera <rkumpera@novell.com>
985         * TypeBuilder.cs (CreateType): method did not check for enum type with defined methods and fixed compatibility issue in case of calling CreateType again after the first one failed, it now returns null as well.
987 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
989         * OpCodeType.cs EventToken.cs FieldToken.cs SignatureToken.cs PackingSize.cs
990         StringToken.cs AssemblyBuilderAccess.cs FlowControl.cs MethodToken.cs
991         ParameterToken.cs TypeToken.cs PropertyToken.cs OperandType.cs PEFileKinds.cs
992         StackBehaviour.cs: 2.0 updates.
993         
994 2007-07-07  Gert Driesen  <drieseng@users.sourceforge.net>
996         * MethodBuilder.cs: Code formatting. Spaces to tabs.
997         * TypeBuilder.cs: Same.
999 2007-07-06  Gert Driesen  <drieseng@users.sourceforge.net>
1001         * TypeBuilder.cs: Throw InvalidOperationException when attempting to
1002         construct non-abstract interface without base type. Modified SetParent
1003         to match MS: in 2.0 profile, throw InvalidOperationException when 
1004         parent is null and TypeBuilder is non-abstract interface. When
1005         parent is null and TypeBuilder is not an interface, then set object
1006         as parent. In 1.0 profile, throw ArgumentNullException when parent is
1007         null.
1009 2007-07-06  Gert Driesen  <drieseng@users.sourceforge.net>
1011         * TypeBuilder.cs: Implemented IsCOMObjectImpl.
1013 2007-07-04  Atsushi Enomoto  <atsushi@ximian.com>
1015         * DynamicMethod.cs : 2.0 API fix.
1017 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
1019         * DynamicMethod.cs: Applied patch from Robert Jordan (robertj@gmx.net). Add
1020         a destructor which frees the runtime data for the method.
1022 2007-05-21  Gert Driesen  <drieseng@users.sourceforge.net>
1024         * TypeBuilder.cs: Changed HasElementTypeImpl to return false on 2.0
1025         profile when type is not baked.
1027 2007-05-21  Jb Evain  <jb@nurv.fr>
1029         * TypeBuilder.cs
1030           MethodBuilder.cs:
1031                 Tag methods and types as HasSecurity when adding a
1032                 SuppressUnmanagedCodeSecurityAttribute on them.
1033                 Makes peverify happy.
1035 2007-05-16  Gert Driesen  <drieseng@users.sourceforge.net>
1037         * TypeBuilder.cs (GetField): Return MonoField instance if the type is
1038         already created. Fixed other part of bug #81368.
1040 2007-05-16  Zoltan Varga  <vargaz@gmail.com>
1042         * TypeBuilder.cs (GetFields): Return MonoField objects if the type is already
1043         created.
1045         * FieldBuilder.cs (SetValue): Make this not supported again.
1046         
1047         * FieldBuilder.cs: Support calling SetValue (). Fixes #81638.
1049 2007-05-06  Zoltan Varga  <vargaz@gmail.com>
1051         * TypeBuilder.cs (CreateType): Fix build.
1052         
1053         * TypeBuilder.cs (.ctor): Convert null parent to typeof (object). Fixes #81530.
1055         * TypeBuilder.cs (UnderlyingSystemType): Remove commented out code.
1057 2007-04-15  Alp Toker  <alp@atoker.com>
1059         * ConstructorBuilder.cs: Make use of
1060         ConstructorInfo.TypeConstructorName/ConstructorName.
1062 2007-04-09  Alp Toker  <alp@atoker.com>
1064         * ConstructorBuilder.cs: Remove redundant overrides.
1066 2007-04-03  Marek Safar  <marek.safar@gmail.com>
1068         * OpCodes.cs: Removed obsolete opcodes.
1070 2007-04-03  Alp Toker  <alp@atoker.com>
1072         * GenericTypeParameterBuilder.cs: SetInterfaceConstraints(Type[]) is
1073         params.
1074         * MethodBuilder.cs: MakeGenericMethod(Type[]) is params.
1076 2007-03-19  Marek Safar  <marek.safar@gmail.com>
1078         * MethodBuilder.cs: MethodImplAttribute cannot be destructive and overwrite
1079         existing flags.
1081 2007-03-17  Marek Safar  <marek.safar@gmail.com>
1083         * MethodBuilder.cs: Implemented conversion of PreserveSigAttribute pseudo
1084         attribute.
1086 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
1088         * ILGenerator.cs (Emit): Disallow ldtoken on a DynamicMethod as well.
1089         
1090         * ILGenerator.cs (Emit): Do not allow ldftn on a DynamicMethod to be
1091         compatible with MS.NET. Fixes #81157.
1093 2007-03-13  Miguel de Icaza  <miguel@novell.com>
1095         * OpCode.cs: Add a couple of operators for jsc.sf.net
1097 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1099         * DynamicMethod.cs: Add a field used by unmanaged code.
1101 2007-03-06  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1103         * MonoArrayMethod.cs: Use 'void' as return type in ToString when 
1104         the return type is null. Fixes #80435.
1106 2007-03-06  Gert Driesen  <drieseng@users.sourceforge.net>
1108         * EnumBuilder.cs: On 2.0 profile, using current EnumBuilder as
1109         field type in DefinedLiteral. Fixes bug #81007.
1111 2007-02-25  Marek Safar  <marek.safar@gmail.com>
1113         * MethodBuilder.cs: Empty string is not allowed for DllImport name.
1115 2007-02-13  Marek Safar  <marek.safar@gmail.com>
1117         * ModuleBuilder.cs: Add GetRegisteredType to expose name_cache for internal
1118         usage.
1120         * TypeBuilder.cs: Optimized generation of unmanaged data helpers.
1121         An unmanaged data class helper can be re-used when its size matches to
1122         size of requested class.
1124 2007-01-25  Radek Doulik  <rodo@novell.com>
1126         * ModuleBuilder.cs: return created type from GetType in case the
1127         type builder type was already created. Added test-555.cs as
1128         regression test.
1130 Tue Jan 23 17:45:07 CET 2007 Paolo Molaro <lupus@ximian.com>
1132         * ModuleBuilder.cs, AssemblyBuilder.cs: mark the GC-tracked field
1133         with UIntPtr.
1135 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1137         * EnumBuilder.cs: value__ must have RTSpecialName flag set.
1138         Fixes #80396
1140 Fri Dec 22 19:42:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1142         * ModuleBuilder.cs: associate a resource writer with its
1143         actual resource (bug #80339).
1145 2006-10-06  Miguel de Icaza  <miguel@novell.com>
1147         * AssemblyBuilder.cs: Am doing a try/catch for pulling the LCID
1148         from the AssemblyCulture that is provided, as Microsoft allows
1149         arbitrary locales (even non-existing ones) to be specified.
1151         The .locale information is actually pulled from the AssemblyName,
1152         not from this lcid.  But this LCID is used to encode the
1153         resource.  In my exploration of this, we are setting this field,
1154         even if CSC never sets the field itself (its always zero).
1156         Maybe we should completely remove this.
1158 2006-09-12  Mart Roosma  <roosma@gmail.com>
1160         * DynamicMethod.cs: Allow empty name and null return type. 
1161         Fixes bug #79367.
1163 2006-09-05  Miguel de Icaza  <miguel@novell.com>
1165         * TypeBuilder.cs (SetParent): Null parent is allowed for
1166         interfaces. 
1168 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
1170         * DynamicMethod.cs: Fix a warning.
1172         * TypeBuilder.cs: Allow static methods on interfaces. Fixes #79249.
1174 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
1176         * *.cs: Use String.Empty instead of "" in a lot of places.
1178 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
1180         * ConstructorBuilder.cs (GetILGenerator): Avoid creating a new ILGenerator each time
1181         this is called. Fixes #78859.
1183 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
1185         * MethodBuilder.cs (SetCustomAttribute): Fix handling of SpecialNameAttribute.
1187 2006-07-09  Gert Driesen  <drieseng@users.sourceforge.net>
1189         * DynamicMethod.cs: Fix check for empty method body, avoids SIGSEV.
1191 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
1193         * DynamicMethod.cs: Create all other DynamicMethod's referenced by
1194         this method as well. Check for an empty method body.
1196         * ILGenerator.cs (Emit): Handle DynamicMethod's which might not have a
1197         declaring type.
1199 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
1201         * AssemblyBuilder.cs (MonoResource): Add a 'stream' field.
1203         * ModuleBuilder.cs (DefineManifestResource): Add new net 2.0 method.
1205 2006-04-26  Miguel de Icaza  <miguel@novell.com>
1207         * MethodBuilder.cs: better error messages when we close the
1208         method. 
1210 2006-03-28  Marek Safar  <marek.safar@seznam.cz>
1212         * ILGenerator.cs: Delayed the exception stack creation. It saves ~1.5 MB
1213         for corlib compilation.
1215 2006-03-27  Marek Safar  <marek.safar@seznam.cz>
1217         * ILGenerator.cs: Tune up label defaults, switched to double resizing.
1219 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
1221         * AssemblyBuilder.cs (AddTypeForwarder): New internal method for
1222         adding type forwarders to an assembly.
1224 2006-02-27  Gert Driesen  <drieseng@users.sourceforge.net>
1226         * ConstructorBuilder.cs: In AddDeclarativeSecurity, throw an
1227         ArgumentOutOfRangeException instead of an ArgumentException if action 
1228         is a Request* action. Fixes bug #77640.
1229         * MethodBuilder.cs: Same.
1230         * TypeBuilder.cs: Same.
1232 Mon Feb 27 17:12:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1234         * ModuleBuilder.cs: unlink the file before saving
1235         otherwise we might overwrite a file mmapped by the runtime.
1237 2006-02-17  Zoltan Varga  <vargaz@gmail.com>
1239         * DynamicMethod.cs: Implement DefineParameter ().
1241         * ParameterBuilder.cs: Add support for DynamicMethod parents.
1243 2006-02-15  Martin Baulig  <martin@ximian.com>
1245         * TypeBuilder.cs (TypeBuilder.DefineMethod): Also enable the
1246         2-argument version in the `BOOTSTRAP_NET_2_0' profile.
1247         (TypeBuilder.DefineGenericMethod): Removed.
1249 2006-02-14  Martin Baulig  <martin@ximian.com>
1251         * ConstructorBuilder.cs
1252         (ConstructorBuilder.IsGenericMethod): Override this and return
1253         false; the MS runtime doesn't throw an exception here.
1254         (ConstructorBuilder.IsGenericMethodDefinition): Likewise.
1256         * MethodBuilder.cs
1257         (MethodBuilder.IsGenericMethod): Implement this.
1258         (MethodBuilder.IsGenericMethodDefinition): Likewise.
1260 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
1262         * TypeBuilder.cs (CreateType): Add a check for Sealed parents.
1264 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
1266         * OpCodes.cs: Readonly is a net 2.0 only field.
1268 Tue Jan 31 13:37:02 CET 2006 Paolo Molaro <lupus@ximian.com>
1270         * OpCodes.cs: Added Readonly field.
1272 2006-01-29  Raja R Harinath  <harinath@gmail.com>
1274         * GenericTypeParameterBuilder.cs (DeclaringType): Return the
1275         declaring type of a generic method.
1277 2005-12-15  Raja R Harinath  <rharinath@novell.com>
1279         * TypeBuilder.cs (IsGenericType): Implement override.
1281 2005-12-07  Martin Baulig  <martin@ximian.com>
1283         * GenericTypeParameterBuilder.cs: Add support for custom attributes.
1284         (GenericTypeParameterBuilder.cattrs): New field.
1285         (GenericTypeParameterBuilder.SetCustomAttribute): Implement this.
1287 Mon Dec 5 15:13:26 CET 2005 Paolo Molaro <lupus@ximian.com>
1289         * ILGenerator.cs: fixed emitting doubles on ARM.
1291 2005-12-02  Alp Toker  <alp@atoker.com>
1293         * GenericTypeParameterBuilder.cs:
1294         * TypeBuilder.cs: DeclaringMethod should return MethodBase, not MethodInfo
1296 2005-11-19  Zoltan Varga  <vargaz@gmail.com>
1298         * AssemblyBuilder.cs: Add support for setting FileVersion unmanaged 
1299         resource. Fixes #64427.
1301 2005-11-18  Zoltan Varga  <vargaz@gmail.com>
1303         * ParameterBuilder.cs (SetCustomAttribute): Handle DefaultParameterValueAttribute as well.
1305         * CustomAttributeBuilder.cs: Add support for decoding more types of
1306         constructor parameters.
1308 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
1310         * TypeBuilder.cs (SetCustomAttribute): Handle ComImportAttribute as well.
1312 2005-11-11  Marek Safar  <marek.safar@seznam.cz>
1314         * EnumBuilder.cs, GenericTypeParameterBuilder.cs: Reflect Type changes.
1316 2005-11-06  Zoltan Varga  <vargaz@freemail.hu>
1318         * Label.cs: Add == and != operators.
1320 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
1322         * FieldBuilder.cs: Add implementation of new UMarshal property.
1324 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
1326         * FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Add support for
1327         returing custom attributes in created types. MS.NET supports this by
1328         returning non-builder objects from GetMethod/GetField etc., but we return
1329         builder objects in this case. Fixes #76521.
1331 2005-10-24  Martin Baulig  <martin@ximian.com>
1333         * TypeBuilder.cs (TypeBuilder.IsGenericTypeDefinition): Override this.
1335 2005-10-03  Atsushi Enomoto  <atsushi@ximian.com>
1337         * CustomAttributeBuilder.cs : internal attributes should be allowed.
1338           Fixed bug #75723.
1340 2005-09-26  Marek Safar  <marek.safar@seznam.cz>
1342         * PropertyBuilder.cs: Throw NotSupportedException for unsupported
1343         methods.
1345 2005-09-14  Martin Baulig  <martin@ximian.com>
1347         * LocalBuilder.cs
1348         (LocalBuilder.Mono_GetLocalIndex): New static internal method;
1349         same as the .NET 2.0 property `LocalIndex'.
1351 Mon Sep 5 18:08:09 CEST 2005 Paolo Molaro <lupus@ximian.com>
1353         * EventBuilder.cs, FieldBuilder.cs, MethodBuilder.cs, TypeBuilder.cs,
1354         PropertyBuilder.cs: take care of the SpecialName attribute (bug #75768).
1356 2005-09-01  Raja R Harinath  <rharinath@novell.com>
1358         * CustomAttributeBuilder.cs (get_umarshal): Don't cause a nullref
1359         exception when passed a custom marshaller type that belongs to the
1360         assembly being built.  When user specifies MarshalType rather than
1361         MarshalTypeRef, don't attempt to resolve the type.
1363 2005-08-31  Raja R Harinath  <rharinath@novell.com>
1365         * CustomAttributeBuilder.cs (get_umarshal): Fix typo.  The name of
1366         the field is "SizeParamIndex", not "SizeSizeParamIndex".
1368         * ParameterBuilder.cs (SetCustomAttribute) [MarshalAsAttribute]:
1369         Set ParameterAttributes.HasFieldMarshal flag.
1371 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
1373         * DynamicMethod.cs (CreateDelegate): Don't cache the delegate since it
1374         needs to be different for each target.
1375         
1376         * DynamicMethod.cs (CreateDynMethod): Call ilgen.label_fixup ().
1378         * DynamicMethod.cs (AddRef): Reserve every second ref slot for use by the
1379         runtime.
1381 2005-08-05  Gert Driesen  <drieseng@users.sourceforge.net>
1383         * AssemblyBuilder.cs: Implement _AssemblyBuilder, CA fixes to 
1384         correspond with MS.NET
1385         * ConstructorBuilder.cs: Implement _ConstructorBuilder, CA fixes to 
1386         correspond with MS.NET
1387         * CustomAttributeBuilder.cs: Implement _CustomAttributeBuilder, CA 
1388         fixes to correspond with MS.NET
1389         * EnumBuilder.cs: Implement _EnumBuilder, CA fixes to correspond with 
1390         MS.NET
1391         * EventBuilder.cs: Implement _EventBuilder, CA fixes to correspond 
1392         with MS.NET
1393         * FieldBuilder.cs: Implement _FieldBuilder, CA fixes to correspond 
1394         with MS.NET
1395         * LocalBuilder.cs: Implement _LocalBuilder, CA fixes to correspond 
1396         with MS.NET
1397         * MethodBuilder.cs: Implement _MethodBuilder, CA fixes to correspond 
1398         with MS.NET
1399         * MethodRental.cs: CA fixes to correspond with MS.NET, implemented
1400         _MethodRental.
1401         * ModuleBuilder.cs: Implement _ModuleBuilder, CA fixes to correspond 
1402         with MS.NET
1403         * ILGenerator.cs: Implement _ILGenerator, CA fixes to correspond 
1404         with MS.NET
1405         * ParameterBuilder.cs Implement _ParameterBuilder, CA fixes to 
1406         correspond with MS.NET
1407         * PropertyBuilder.cs: Implement _PropertyBuilder, CA fixes to 
1408         correspond with MS.NET
1409         * SignatureHelper.cs: Implement _SignatureHelper, CA fixes to 
1410         correspond with MS.NET
1411         * TypeBuilder.cs: Implement _TypeBuilder, CA fixes to correspond 
1412         with MS.NET
1414 2005-07-21  Jb Evain  <jbevain@gmail.com>
1416         * ILGenerator.cs: Implement filter blocks support.
1417         Fixes bug #75010.
1419 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
1421         * ILGenerator.cs (BeginFaultBlock): Call InternalEndClause () here
1422         too. Reported by Jeroen Frijters.
1424 2005-07-11  Martin Baulig  <martin@ximian.com>
1426         * TypeBuilder.cs (TypeBuilder.CreateType): Call
1427         create_generic_class() here as well; fixes #75454.
1429 2005-06-27  Marek Safar  <marek.safar@seznam.cz>
1431         * TypeBuilder.cs (check_name): Wrong exception argument order.
1433 2005-06-14  Sebastien Pouliot  <sebastien@ximian.com>
1435         * AssemblyBuilder.cs: Override UnprotectedGetName to set the public 
1436         key (if available).
1438 2005-06-12  Gert Driesen <drieseng@users.sourceforge.net>
1440         * MethodBuilder.cs: In CreateMethodBody, throw 
1441         ArgumentOutOfRangeException instead of ArgumentException when count 
1442         is not within range of array. Do not allow zero length method body 
1443         to be emitted when using 2.0 profile. Fixes bug #75236.
1445 2005-06-12  Gert Driesen <drieseng@users.sourceforge.net>
1447         * FieldBuilder.cs: FieldBuilder.FieldHandle should throw
1448         NotSupportedException to match MS.NET (both 1.x and 2.x). 
1449         Fixes regression introduced in r45750.
1450         * MethodBuilder.cs: MethodBuilder.MethodHandle should throw
1451         NotSupportedException to match MS.NET (both 1.x and 2.x).
1452         Fixes regression introduced in r45750.
1454 2005-06-09  Kamil Skalski <nazgul@nemerle.org>
1455         * ConstructorBuilder.cs FieldBuilders.cs MethodBuilder.cs: Return
1456         RuntimeHandles when requested
1457         
1458         * TypeBuilder.cs: Add static Get{Method,Constructor,Field} methods
1459         from .NET 2.0 beta 2 API for obtaining instanciated *Info objects
1460         from non-instanciated counterparts 
1462 2005-06-08  Zoltan Varga  <vargaz@freemail.hu>
1464         * ConstructorBuilder.cs FieldBuilder.cs MethodBuilder.cs PropertyBuilder.cs:
1465         Add 2.0 Module property.
1467         * *.cs: Updates for net 2.0 beta 2.
1469 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
1471         * *Token.cs: Add net 2.0 Equals methods.
1473         * *.cs: Updates for net 2.0 beta 2.
1475         * *.cs: Updates for net 2.0 beta 2.
1477 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
1479         * AssemblyBuilder.cs: Update after PortableExecutableKinds name change.
1481 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
1483         * MethodBuilder.cs CustomAttributeBuilder.cs: Rework DllImportAttribute
1484         decoding to improve compatibility with MS.NET.
1485         
1486         * MethodBuilder.cs (SetCustomAttribute): Set PinvokeImpl attribute if
1487         a DllImportAttribute is present.
1489 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
1491         * MethodBuilder.cs (SetCustomAttribute): Handle the case when the
1492         calling convention inside the DllImportAttribute is empty.
1494 2005-06-01  Zoltan Varga  <vargaz@freemail.hu>
1496         * MethodBuilder.cs (SetCustomAttribute): Handle DllImportAttribute
1497         as well.
1499         * CustomAttributeBuilder.cs: Add a decode_cattr helper method.
1501 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
1503         * MethodBuilder.cs: Add extra_flags field to encode P/Invoke
1504         bits that can't be specified via MethodBuilder directly; fixes
1505         #75060.
1507 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
1509         * GenericTypeParameterBuilder.cs: Return this in UnderlyingSystemType.
1511 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
1513         * ModuleBuilder.cs: Implemented DefineDocument(). Generate debug
1514         info when saving the module.
1515         * ILGenerator.cs: Keep marked sequence points in a list.
1516         Added a GenerateDebugInfo method, which dumps the info collected
1517         during code generation.
1518         * TypeBuilder.cs:
1519         * ConstructorBuilder.cs:
1520         * MethodBuilder.cs: Added method for generating debug info.
1521         * LocalBuilder.cs: Added StartOffset and EndOffset properties.
1522         * CustomAttributeBuilder.cs: Use IsInstanceOfType instead of
1523         IsAssignableFrom when possible.
1525 2005-05-20  Miguel de Icaza  <miguel@novell.com>
1527         * TypeBuilder.cs (UnderlyingSystemType): should always return this
1528         according to Zoltan.  Old code left there, but should probably be removed.
1530 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
1532         * MethodBuilder.cs (fixup): Take into account CreateMethodBody as
1533         well.
1535         * ConstructorBuilder.cs MethodBuilder.cs: Check that elements of
1536         parameterTypes are not null. Fixes #74928.
1538 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
1540         * ConstructorBuilder.cs MethodBuilder.cs (fixup): Fix this.
1541         
1542         * ConstructorBuilder.cs MethodBuilder.cs (fixup): Throw an exception if a
1543         method body is empty. Fixes #74906.
1545 2005-04-13  Marek Safar  <marek.safar@seznam.cz>
1547         * TypeBuilder.cs (SetCustomAttribute): StructLayoutAttribute.CharSet
1548         has to overwrite current settings.
1550 2005-04-05  Sebastien Pouliot  <sebastien@ximian.com>
1552         * AssemblyBuilder.cs: Don't call GetCurrentDirectory if building an 
1553         assembly that will never be serialized to disk (because CAS may not
1554         allow disk access but still allow generating a in-memory assembly).
1556 2005-03-24  Miguel de Icaza  <miguel@novell.com>
1558         * DynamicMethod.cs (CreateDelegate): Add second overload based on
1559         the first one that allows for a `target' argument.
1561 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
1563         * MethodRental.cs: Added Demand for UnmanagedCode on SwapMethodBody 
1564         method.
1566 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
1568         * MethodBuilder.cs: Add internal BestFitMapping and 
1569         ThrowOnUnmappableChar properties used by mcs.
1571 2005-03-09  Marek Safar  <marek.safar@seznam.cz>
1573         * ILGenerator.cs (DeclareLocal): Throw an exception for null argument.
1575 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
1577         * CustomAttributeBuilder.cs UnmanagedMarshal.cs: Allow sizeConst and
1578         sizeParamIndex to be -1, which means they are not given.
1579         
1580         * CustomAttributeBuilder.cs (get_umarshal): Only call the internal
1581         LPArray creation method if sizeConst of sizeParamIndex is given.
1583         * UnmanagedMarshal.cs: Add has_size field.
1585 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
1587         * CustomAttributeBuilder.cs (get_umarshal): Marshal sizeConst and
1588         sizeParamIndex fields as well.
1590         * UnmanagedMarshal.cs: Add param_num field and a new internal creation
1591         method which sets it.
1593 2005-02-11  Zoltan Varga  <vargaz@freemail.hu>
1595         * TypeBuilder.cs (IsAssignableTo): New helper method. Fixes #70838.
1596         
1597         * TypeBuilder.cs: Fix warning.
1599 2005-01-21 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1600         
1601         * MethodBuilder.cs, TypeBuilder: missing 'params' in some method signature
1602         patch by Kamil Skalski <nazgul@nemerle.org>
1604 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
1606         * ModuleBuilder.cs: Interfaces should have null BaseType.
1607         Fixes #71301.
1609 2005-01-18  Miguel de Icaza  <miguel@ximian.com>
1611         * TypeBuilder.cs: Add check for creation.  Fix from Geoff.
1613 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
1615         * CustomAttributeBuilder.cs: Fix a warning.
1617 Wed Dec 15 11:34:13 CET 2004 Paolo Molaro <lupus@ximian.com>
1619         * ModuleBuilder.cs, EnumBuilder.cs: actually add the enumbuilder
1620         to the type list of the module (bug#70488).
1622 2004-12-09  Martin Baulig  <martin@ximian.com>
1624         * GenericTypeParameterBuilder.cs
1625         (GenericTypeParameterBuilder.IsValueType): Fixed the FIXME.
1627 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
1629         * AssemblyBuilder.cs: Move corlib_internal field here from Assembly.
1630         
1631         * AssemblyBuilder.cs: Add corlib_internal to the ctor parameters.
1633 2004-12-06  Ben Maurer  <bmaurer@ximian.com>
1635         * TypeBuilder.cs (CreateType): Creating a type twice does not
1636         throw in msft.
1638 2004-11-22  Zoltan Varga  <vargaz@freemail.hu>
1640         * ModuleBuilder.cs: Check that all types inside the module are created.
1641         Fixes #69780.
1643 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
1645         * ModuleBuilder.cs (Save): Use new WriteToFile icall.
1647 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
1649         * TypeBuilder.cs: Make some members work if the type is created since
1650         MS does this.
1652 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
1654         * CustomAttributeBuilder.cs: Check that arguments are not 
1655         multi-dimensional arrays.
1657 2004-10-12  Martin Baulig  <martin@ximian.com>
1659         * TypeBuilder.cs (TypeBuilder.setup_generic_class): Renamed to
1660         create_generic_class() and added a new setup_generic_class().
1661         (TypeBuilder.DefineGenericParameters): Call setup_generic_class()
1662         before creating the type parameters.
1664 2004-10-11  Martin Baulig  <martin@ximian.com>
1666         * TypeBuilder.cs (TypeBuilder.generic_container): New private field.
1668         * MethodBuilder.cs (MethodBuilder.generic_container): New private field.
1670         * GenericTypeParameterBuilder.cs
1671         (GenericTypeParameterBuilder.GetGenericTypeParameterConstraints):
1672         Return `Type.EmptyTypes' instead of an array of `typeof (object)'.      
1674 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1676         * ModuleBuilder.cs: Create global type after creation.
1678 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1680         * ModuleBuilder.cs (GetTypes): Fix length of returned array. Fixes
1681         #65931.
1683 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1685         * ModuleBuilder.cs (DefineType): Check for duplicate type names. Fixes
1686         #65988.
1688 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1690         * AssemblyBuilderAccess.cs: Remove [Flags].
1692         * PackingSize.cs: Add new 2.0 members. Remove [Flags].
1694         * AssemblyBuilder.cs: Add net 2.0 Save method.
1696         * LocalBuilder.cs: Make this inherit from LocalVariableInfo under
1697         net 2.0. Reorganize fields so the layout visible to the runtime is the
1698         same under 1.0 and 2.0. Add 2.0 properties.
1700 2004-10-02  Gert Driesen  <drieseng@users.sourceforge.net>
1702         * TypeBuilder.cs: throw NotSupportedException when defining default
1703         ctor if parent type does not have default ctor
1705 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1707         * TypeBuilder.cs: Make 'created' field visible to the runtime.
1709 2004-09-28  Martin Baulig  <martin@ximian.com>
1711         * GenericTypeParameterBuilder.cs
1712         (GenericTypeParameterBuilder.ContainsGenericParameters): Return
1713         true here; System.Type.ContainsGenericParameters returns true when
1714         called on a type parameter, so let's do the same here.
1716 2004-09-27  Zoltan Varga  <vargaz@freemail.hu>
1718         * ConstructorBuilder.cs: Add 2.0 GetILGenerator(size) method.
1720 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
1722         * UnmanagedMarshal.cs: Add ToMarshalAsAttribute method.
1724 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
1726         * TypeBuilder.cs: Add IsCreated method.
1728 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1730         * FieldBuilder.cs: Add dummy GetFieldOffset method.
1732 2004-09-24  Martin Baulig  <martin@ximian.com>
1734         * GenericTypeParameterBuilder.cs
1735         (GenericTypeParameterBuilder.GetGenericParameterConstraints): Override.
1737 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1739         * DynamicMethod.cs: Add MetadataToken property and tweak Module property.
1741 2004-09-23  Martin Baulig  <martin@ximian.com>
1743         * GenericTypeParameterBuilder.cs
1744         (GenericTypeParameterBuilder.SetGenericParameterAttributes): New
1745         public method, replaces the old Mono_* hacks.
1747 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
1749         * AssemblyBuilder.cs: Fixed assembly-level permissions. I don't know 
1750         why I splitted them all into individual entries when only a single set
1751         is accepted for each security action :(.
1753 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
1755         * CustomAttributeBuilder.cs: Applied patch from Marcus Urban
1756         (mathpup@mylinuxisp.com). Add support for defining custom
1757         marshallers by calling SetCustomAttribute.      
1759 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
1761         * AssemblyBuilder.cs: Keep a copy of the 3 permission set as an array
1762         of RefEmitPermissionSet. This will allow to reuse existing 
1763         functionalities already present in the runtime.
1765 2004-09-12  Marek Safar  <marek.safar@seznam.cz>
1767         * TypeBuilder.cs: Do not create default constructor for
1768         static classes.
1770 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
1772         * TypeBuilder.cs: Set the table_idx of the global type to 1.
1774         * ModuleBuilder.cs: Save the main module of the assembly even if it is 
1775         transient.
1777 2004-09-02 Ben Maurer  <bmaurer@users.sourceforge.net>
1779         * LocalBuilder.cs: another s.ioe
1781 2004-09-02 Ben Maurer  <bmaurer@users.sourceforge.net>
1783         * ModuleBuilder.cs: dont throw an S.IOE for debugging stuff.
1784         makes sre apps work
1786 2004-09-02  Martin Baulig  <martin@ximian.com>
1788         * MethodBuilder.cs (MethodBuilder.GetParameters): Throw a
1789         NotSupportedException() until the type has been fully created.
1791 2004-09-01  Martin Baulig  <martin@ximian.com>
1793         * IMonoSymbolWriter.cs: Removed.
1795         * ModuleBuilder.cs, LocalBuilder.cs, ILGenerator.cs: Removed the
1796         old debugging code.
1798 2004-08-13  Sebastien Pouliot  <sebastien@ximian.com>
1800         * AssemblyBuilder.cs: (Partly) Fix delay-signing issue (#56621) when 
1801         MCS is used on the MS runtime (other part of the fix is for MCS).
1803 2004-08-11  Marek Safar  <marek.safar@seznam.cz>
1805         * AssemblyBuilder.cs: Added AddPermissionRequests method
1806         used be mcs for SecurityPermissionAttribute handling.
1808 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
1810         * EnumBuilder.cs: Call setup_enum_type () in the constructor. Fixes
1811         #62237.
1813 2004-08-07  Jackson Harper  <jackson@ximian.com>
1815         * AssemblyBuilder.cs: "neutral" culture is invariant culture
1816         (String.Empty).
1818 2004-08-07  Atsushi Enomoto  <atsushi@ximian.com>
1820         * OpCodes.cs : csc complains CS1034 Line cannot exceed 2046 characters.
1822 2004-08-05  Duncan Mak  <duncan@ximian.com>
1824         * OpCodes.cs (TakesSingleByteArgument): Add this back.
1826 2004-08-05  Duncan Mak  <duncan@ximian.com>     
1828         This patch is based on an idea of Ben's to reduce the code size
1829         in MCS. 
1831         * OpCodes.cs: Instead pushing the data onto the stack when each
1832         OpCode is initialized, pack the data into 2 ints and store only
1833         that.  Furthermore, the names of each OpCode are stored in a
1834         separate string array in the new OpCodeNames class.
1836         * OpCodeNames.cs: The names of each OpCode are moved here to delay
1837         the initialization of the strings, as they are not used frequently.
1839         * OpCode.cs: Rewrote this to take in everything as 2 ints.
1841 2004-07-29  Martin Baulig  <martin@ximian.com>
1843         * ILGenerator.cs (ILGenerator.Mono_GetCurrentOffset): New static
1844         internal method.
1846         * ModuleBuilder.cs (ModuleBuilder.Mono_GetGuid): New static
1847         internal method.
1849 2004-07-24  Martin Baulig  <martin@ximian.com>
1851         * TypeBuilder.cs (TypeBuilder.UnspecifiedTypeSize): Set this to 0
1852         and initialize it to 0 everywhere.
1854 2004-07-22  Martin Baulig  <martin@ximian.com>
1856         * ILGenerator.cs (ILGenerator.BeginFaultBlock): Implemented.
1858 2004-07-07  Miguel de Icaza  <miguel@ximian.com>
1860         * LocalBuilder.cs: Remove MakePinned, we are now going to use
1861         ILGenerator.DeclaraLocal that takes the `bool pinned' argument. 
1863         * ILGenerator.cs (DeclareLocal): Add `pinned' version of the
1864         method on the 2.0 profile.
1866 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
1868         * EnumBuilder.cs (CreateType): Call a new icall to set the internal
1869         type field. Fixes #59833.
1871 Thu Jun 24 15:33:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
1873         * ParameterBuilder.cs: implement SetConstant ().
1875 Wed Jun 23 15:40:48 CEST 2004 Paolo Molaro <lupus@ximian.com>
1877         * TypeBuilder.cs: handle properly the case when SetParent() 
1878         is called (requires an updated runtime, too bug#60474).
1880 Wed Jun 23 14:20:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
1882         * EnumBuilder.cs, TypeBuilder.cs: patch from Gert Driesen
1883         to implement EnumBuilder (slightly tweaked).
1885 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
1887         * MethodRental.cs: fixed value of JitOnDemand
1889 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
1891         * FieldBuilder.cs: fixed implementation to match MS.NET,
1892         meaning throw InvalidOperationException for methods that
1893         should not be allowed to execute when type has been
1894         created, and throw NotSupportedException for methods and
1895         properties that should not be called on FieldBuilder
1897 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
1899         * MethodBuilder.cs: move check to see if type has already 
1900         been created up, to match MS.NET behaviour. Fix GetHashCode 
1901         (removed TODO)
1903 2004-06-09  Gert Driesen <drieseng@users.sourceforge.net>
1905         * MethodRental.cs: Added check for method size
1907 2004-06-08  Martin Baulig  <martin@ximian.com>
1909         * ILGenerator.cs (TokenGenerator.GetToken): Added overloaded
1910         version which takes a MethodInfo and a Type[].
1911         (IlGenerator.EmitCall): When emitting a call to a varargs method,
1912         use the new GetToken() to pass the optional argument types to the
1913         runtime.
1915         * ModuleBuilder.cs (ModuleBuilder.getMethodToken): New interncall.
1917 2004-05-29  Gert Driesen (drieseng@users.sourceforge.net)
1919         * AssemblyBuilder.cs: removed extra method, fixes public API
1920         compatibility with MS.NET
1921         * TypeBuilder.cs: removed extra method, fixes public API
1922         compatibility with MS.NET
1924 2004-05-28  Jackson Harper  <jackson@ximian.com>
1926         * CustomAttributeBuilder.cs: GetBlob now takes a ref to the
1927         assembly so it can encode type names properly.
1928         
1929 2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>
1931         * MethodBuilder.cs: Now use FastNewGuidArray to create new random 
1932         Guids without using CryptoConfig. Speed up for MCS.
1934 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
1936         * MethodBuilder.cs: Add Equals and GetHashCode.
1938         * TypeBuilder.cs: Add IsSubclassOf.
1940 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
1942         * AssemblyBuilder.cs: Make extra methods internal. mcs was changed
1943         to handle this a long time ago.
1945         * TypeBuilder.cs: Add IsAssignableFrom and IsInstanceOfType.
1946         
1947         * TypeBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Implement
1948         ToString ().
1950         * TypeBuilder.cs (ToString): Make this consistent with MS.NET.
1952 2004-05-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1954         * OpCodes.cs: Refactored to avoid the static constructor
1956 2004-05-10  Gert Driesen (drieseng@users.sourceforge.net)
1957         * AssemblyBuilder.cs: fixed warning
1958         * MethodRental.cs: added private default ctror to match MS.NET
1960 2004-05-03 Lluis Sanches Gual  <lluis@ximian.com>
1962         * ModuleBuilder.cs: Use name const to load the debugger assembly.
1964 2004-05-01  Todd Berman  <tberman@sevenl.net>
1966         * ModuleBuilder.cs: Load the proper assembly for a gac-only install.
1968 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
1970         * ILGenerator.cs, ModuleBuilder.cs: readonlyificate.
1972 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
1974         * MethodRental.cs: New file.
1976 2004-04-28  Raja R Harinath  <rharinath@novell.com>
1978         * TypeBuilder.cs (SetCustomAttribute): Handle the presence of the
1979         full type name in the data stream.  This is emitted for value
1980         types by the Mono runtime.
1982 2004-04-23  Atsushi Enomoto  <atsushi@ximian.com>
1984         * ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
1985           GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
1986           OpCodes.cs, TypeBuilder.cs :
1987           The fix should be easier ;)
1989 2004-04-23  Atsushi Enomoto  <atsushi@ximian.com>
1991         * ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
1992           GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
1993           OpCodes.cs, TypeBuilder.cs :
1994           NET_2_0 related build fix.
1996 2004-04-07  Martin Baulig  <martin@ximian.com>
1998         * GenericTypeParameterBuilder.cs
1999         (Mono_SetReferenceTypeConstraint): New public method.
2000         (Mono_SetValueTypeConstraint): New public method.
2002 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
2004         * MethodBuilder.cs, TypeBuilder.cs: always have 
2005         slot for generic_params for consistent offsets.
2007 2004-04-07  Martin Baulig  <martin@ximian.com>
2009         * GenericTypeParameterBuilder.cs
2010         (Mono_SetConstructorConstraint): New public method.     
2012 2004-04-07  Martin Baulig  <martin@ximian.com>
2014         * GenericTypeParameterBuilder.cs: New file.
2016         * TypeBuilder.cs (TypeBuilder.DefineGenericParameters): New public
2017         method.  This is the new public API.
2018         (TypeBuilder.DefineGenericParameter): Removed.
2019         (TypeBuilder.SetGenericParameterConstraints): Removed.
2021         * MethodBuilder.cs (MethodBuilder.DefineGenericParameters): New public
2022         method.  This is the new public API.
2023         (MethodBuilder.DefineGenericParameter): Removed.
2024         (MethodBuilder.SetGenericParameterConstraints): Removed.
2026 2004-04-01  Martin Baulig  <martin@ximian.com>
2028         * OpCodes.cs (OpCodes.Constrained): New opcode.
2030 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
2032         * LocalBuilder.cs: Fix pinned support.
2034 2004-03-30  Martin Baulig  <martin@ximian.com>
2036         * TypeBuilder.cs (TypeBuilder.SetGenericParameterConstraints):
2037         Added `bool has_ctor_constraint' argument.
2039         * MethodBuilder.cs (MethodBuilder.SetGenericParameterConstraints):
2040         Added `bool has_ctor_constraint' argument.
2042 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
2044         * LocalBuilder.cs: pinned support.
2046 2004-03-29  Martin Baulig  <martin@ximian.com>
2048         * TypeBuilder.cs (TypeBuilder.ContainsGenericParameters): Implemented.
2050 2004-03-25  Sebastien Pouliot  <sebastien@ximian.com>
2052         * AssemblyBuilder.cs: Changed strongname support to match MS 
2053         implementation (i.e. attributes are used by the compiler - not by
2054         AssemblyBuilder).
2056 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
2058         * TypeBuilder.cs (GetMethod): Implement.
2060         * CustomAttributeBuilder.cs: Reenable argument checking with MS.NET
2061         compatibility tweaks.
2063 2004-03-23  Martin Baulig  <martin@ximian.com>
2065         * TypeBuilder.cs (TypeBuilder.GetEvents_internal): New internal
2066         method; this is basically GetEvents(), but see the FIXME in that method.
2068 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
2070         * CustomAttributeBuilder.cs: Disable argument checking since it causes
2071         regressions.
2073 2004-03-22  Zoltan Varga  <vargaz@freemail.hu>
2075         * CustomAttributeBuilder.cs (Initialize): Add more argument checking. 
2076         Fixes #55793.
2078 2004-03-09  Jackson Harper  <jackson@ximian.com>
2080         * CustomAttributeBuilder.cs: Add some argument checking. Handle
2081         default arguments properly.
2083 2004-03-09  Sebastien Pouliot  <spouliot@videotron.ca>
2085         * AssemblyBuilder.cs: The strong name key file existance will now be
2086         checked in the current compilation directory AND in the assembly
2087         output directory. Fix bugzilla entry #55320.
2089 2004-02-23  Martin Baulig  <martin@ximian.com>
2091         * MethodBuilder.cs (MethodBuilder.SetGenericMethodSignature):
2092         Added MethodAttributes and CallingConventions arguments.
2094 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
2096         * TypeBuilder.cs: Implement DefineUninitializedData and 
2097         AddDeclarativeSecurity.
2099 2004-01-27  Zoltan Varga  <vargaz@freemail.hu>
2101         * AssemblyBuilder.cs (SetCustomAttribute): Move the reading of the
2102         keyfile to the Save () method.
2104 2004-01-26  Sebastien Pouliot  <spouliot@videotron.ca>
2106         * AssemblyBuilder.cs: Save will now strongname the assembly is (a) a
2107         StrongName is present and (b) the signature isn't delayed.
2109 2004-01-24 David Sheldon <dave-mono@earth.li>
2111         * AssemblyBuilder.cs: Added override for GetFiles() that throws
2112           NotSupportedException. 
2114 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
2116         * AssemblyBuilder.cs (Save): Handle entry points with an int return
2117         type as well.
2118         
2119         * AssemblyBuilder.cs (Save): If the entry point is in a module, create
2120         a new entry point which calls the real one, since the entry point must
2121         be in the module which contains the manifest.
2123         * ModuleBuilder.cs (Save): Create the global type automatically if not
2124         already done.
2126 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
2128         * AssemblyBuilder.cs (DefineVersionInfoResource): Set more 
2129         version info properties.
2131 2004-01-08  Zoltan Varga  <vargaz@freemail.hu>
2133         * CustomAttributeBuilder.cs (string_arg): New helper method.
2135         * AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
2137         * AssemblyBuilder.cs (SetCustomAttribute): Use the new helper method.
2139         * AssemblyBuilder.cs (DefineUnmanagedResource): Implement.
2141         * AssemblyBuilder.cs (DefineIconResource): New internal method to
2142         support mcs.
2144         * TypeBuilder.cs (IsDefined): Implement this, since some corlib classes
2145         make calls to IsDefined.
2147 2004-01-06  Zoltan Varga  <vargaz@freemail.hu>
2149         * AssemblyBuilder.cs: Fix warning.
2151 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
2153         * AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
2155 2003-12-29 Ben Maurer  <bmaurer@users.sourceforge.net>
2157         * MethodBuilder.cs, ConstructorBuilder.cs: Override GetParameterCount.
2158         * ILGenerator.cs: Use GetParameterCount.
2160 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
2162         * AssemblyBuilder.cs (AddModule): New internal method to support 
2163         /addmodule in mcs.
2165 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
2167         * AssemblyBuilder.cs: New internal property to support /target:module in
2168         mcs.
2170 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
2172         * ILGenerator.cs: Applied patch from Ben Maurer 
2173         (bmaurer@users.sourceforge.net). Allocate arrays holding label data
2174         lazily and reduce their size.
2176 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
2178         * AssemblyBuilder.cs (MonoResource): New 'offset' field used by the
2179         runtime.
2181         * ModuleBuilder: Implement DefineResource.
2183 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
2185         * AssemblyBuilder.cs (RefEmitPermissionSet): New helper structure.
2186         
2187         * MethodBuilder.cs (AddDeclarativeSecurity): Implement.
2189         * ConstructorBuilder.cs (AddDeclarativeSecurity): Ditto.
2191 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
2193         * MethodBuilder.cs: Add stubs for missing methods.
2195         * TypeBuilder.cs (GetEvents): Add new override.
2197         * ModuleBuilder.cs: Implement some missing methods, add stubs for others.
2199         * AssemblyBuilder.cs (GetFiles): Get rid of unneccessary override.
2201         * AssemblyBuilder.cs (ImageRuntimeVersion): Add override to keep
2202         signature compatibility with MS.NET.
2204         * TypeBuilder.cs (MemberType): Get rid of unneccessary override.
2206 2003-12-08  Martin Baulig  <martin@ximian.com>
2208         * TypeBuilder.cs (TypeBuilder.MonoGenericParam): Removed; use the
2209         new `MonoGenericParam' class instead (in S.R/MonoGenericInst.cs).
2211 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
2213         * ModuleBuilder.cs: Double the size of the types array during insertion
2214         do avoid excessive memory allocation and copying. Track the number of
2215         types in a separate variable.
2217         * TypeBuilder.cs: Same for the 'fields' and 'methods' arrays.
2219 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
2221         * ModuleBuilder.cs (DefinePInvokeMethod): Implement.
2223         * ModuleBuilder.cs (DefineGlobalMethod): Implement the Net 1.2 variants.
2225 2003-11-28  Dick Porter  <dick@ximian.com>
2227         * ModuleBuilder.cs: Do string compares with the Invariant culture.
2229 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
2231         * AssemblyBuilder.cs (SetCustomAttribute): Implement automatic 
2232         generation of build and revision numbers. Fixes #46492.
2234 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
2236         * TypeBuilder.cs: Implement GetField.
2238 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
2240         * DynamicMethod.cs: New class.
2242         * ILGenerator.cs MethodBuilder.cs ConstructorBuilder.cs: Retrieve 
2243         tokens from a token generator object instead of from the ModuleBuilder,
2244         to support the implementation of DynamicMethod. Also get rid of the 
2245         unused 'mbuilder' field.
2247         * ModuleBuilder.cs: Create a token generator object which can be
2248         passed to ILGenerator.
2250         * LocalBuilder.cs ILGenerator.cs: Get rid of 'module' field, obtain 
2251         needed objects from the ilgen object instead.
2253 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
2255         * TypeBuilder.cs FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs:  Add support for custom modifiers from NET 1.2.
2257         * ILGenerator.cs: Remove unused abuilder member.
2259 2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2261         * OpCodes.cs: Remove Boxval for v1.1+
2263 2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2265         * OpCodes.cs: Small rearrange to fix csc compiler warning about obsolete member used
2267 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
2269         * AssemblyBuilderAccess.cs PackingSize: Add [Flags].
2271         * AssemblyBuilder.cs (DefineDynamicModule): Make internal method
2272         private.
2274         * AssemblyBuilder.cs (Save): Write out the main module at the end.
2275         
2276 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
2277         
2278         * ConstructorBuilder.cs (.ctor): Automatically add RTSpecialName flag
2279         as MS does.
2281 2003-11-06  Martin Baulig  <martin@ximian.com>
2283         * ModuleBuilder.cs (ModuleBuilder.Save): Call `build_metadata'
2284         before writing the symbol file.
2286 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
2288         * AssemblyBuilder.cs (.ctor): Initialize the 'dir' field to something
2289         sensible.
2290         
2291         * AssemblyBuilder.cs (Save): Set 'created' flag.
2293         * AssemblyBuilder.cs (get_next_table_index): Moved to ModuleBuilder,
2294         since table indexes are per-module.
2296 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
2298         * TypeBuilder.cs (DefineDefaultConstructor): Pass an array instead of 
2299         null to DefineConstructor, to avoid NullReferenceExceptions in the 
2300         binder code.
2302         * AssemblyBuilder.cs ModuleBuilder.cs ILGenerator.cs: Move getUSIndex 
2303         and getToken methods, and the associated icalls to ModuleBuilder, 
2304         since tokens are per-module.
2306         * AssemblyBuilder.cs ModuleBuilder.cs: Partially revert the previous
2307         patch, since having the 'is_main' field is useful in the unmanaged 
2308         code.
2310         * AssemblyBuilder.cs ModuleBuilder.cs: Move the metadata creation and
2311         file creation logic to ModuleBuilder:Save (), since this needs to be
2312         done for every module. Also move the corresponding icalls to 
2313         ModuleBuilder.
2315 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
2317         * AssemblyBuilder.cs ModuleBuilder.cs: First steps toward a fix for
2318         #48700 (proper module support in Ref.Emit). Remove is_main field from
2319         ModuleBuilder and add a mainModule field to AssemblyBuilder instead.
2320         This is neccesary, since the main module is determined during the 
2321         Save () call: the module with the same file name as the assembly is
2322         the main module. Also create a default main module, if one is not
2323         existing.
2325 2003-11-03  Martin Baulig  <martin@ximian.com>
2327         * OpCodes.cs: Added Ldelem_Any, Stelem_Any and Unbox_Any from .NET 1.2.
2329 2003-10-18  Sebastien Pouliot  <spouliot@videotron.ca>
2331         * AssemblyBuilder.cs (SetCustomAttribute): Changed PK extraction to
2332         use Mono.Security.StrongName (#49785).
2334 2003-10-18  Zoltan Varga  <vargaz@freemail.hu>
2336         * AssemblyBuilder.cs (SetCustomAttribute): Extract the public key from
2337         the keyfile.
2339 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
2341         * AssemblyBuilder.cs (SetCustomAttribute): Ignore empty keyfile name.
2342         
2343         * AssemblyBuilder.cs: Moved loading of the public key file into
2344         managed code from reflection.c. 
2346         * AssemblyBuilder.cs: Set cultureInfo and version from the AssemblyName
2347         passed to the constructor.
2349 2003-10-13  Martin Baulig  <martin@ximian.com>
2351         * MethodBuilder.cs (MethodBuilder): Added
2352         `TypeBuilder.MonoGenericParam[] generic_params' field.
2353         (DefineGenericParameter, SetGenericMethodSignature): New public methods.
2355         * TypeBuilder.cs (DefineGenericMethod): New public method.
2357 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
2359         * OpCode.cs: Fix Value property. Fixes #49328.
2361 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
2363         * TypeBuilder.cs (CreateType): Fire TypeResolve events for unfinished 
2364         nested value types. Fixes #47022.
2366 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
2368         * TypeBuilder.cs: Really fix #48695.
2370 Sat Sep 27 16:17:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
2372         * ILGenerator.cs: instance fields are loaded from this.
2374 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
2376         * TypeBuilder.cs (DefineDefaultConstructor): Make this work on types
2377         without a parent. Fixes #48695.
2379 2003-09-17  Martin Baulig  <martin@ximian.com>
2381         * TypeBuilder.cs (TypeBuilder.CreateType): Don't append the type
2382         parameters to the type name; ie. use `Stack' instead of `Stack<T>'.
2384 2003-09-06  Martin Baulig  <martin@ximian.com>
2386         * TypeBuilder.cs (TypeBuilder.IsUnboundGenericParameter): Implemented.
2388 2003-09-04  Martin Baulig  <martin@ximian.com>
2390         * TypeBuilder.cs (TypeBuilder.MonoGenericParam): Make this nested
2391         class internal, not protected.
2393 2003-08-29  Martin Baulig  <martin@ximian.com>
2395         * TypeBuilder.cs (TypeBuilder.DefineGenericParameter): New public
2396         method.  We can now create generic types.
2397         (TypeBuilder.GetGenericTypeDefinition): Override this; call the
2398         `setup_internal_class' interncall before calling our base impl.
2400 Sat Aug  2 13:04:55 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
2402         * ILGenerator.cs: Emission of doubles now utilise the Double.AssertEndianity
2403         icall to assert double word endianity on ARM.
2405 2003-07-25  Duncan Mak  <duncan@ximian.com>
2407         * OpCodes.cs (Boxval): Marked with ObsoleteAttribute.
2409 2003-07-24  Miguel de Icaza  <miguel@ximian.com>
2411         * TypeBuilder.cs: Added generics stubs.
2413         * EnumBuilder.cs: Added generics  stubs, changed bracing style for
2414         routines.
2416 2003-07-23  Duncan Mak  <duncan@ximian.com>
2418         * SignatureHelper.cs: This class does not have the
2419         SerializableAttribute.
2421 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
2423         * AssemblyBuilder.cs: Added argument checking to all methods according
2424         to the MSDN docs. Also marked DefineUnmanagedResource and its friends
2425         as not implemented.
2426         * ModuleBuilder.cs: Added new property FileName used by AssemblyBuilder.
2427         * ModuleBuilder.cs AssemblyBuilder.cs: Implemented IsTransient ().
2429 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
2431         * EventBuilder.cs: Add argument checking to methods.
2433 Thu Jun 5 20:18:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
2435         * AssemblyBuilder.cs: implemented DefineResource ().
2437 Thu Jun 5 12:36:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
2439         * OpCode.cs: implemented Equals/GetHashCode.
2441 Tue Jun 3 11:14:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
2443         * ILGenerator.cs, OpCode.cs: optimize opcode space usage.
2445 Tue Jun 3 11:13:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
2447         * UnmanagedMarshal.cs: add ability to define custom attributes (the MS
2448         runtime doesn't support this).
2450 2003-05-30  Zoltan Varga  <vargaz@freemail.hu>
2452         * TypeBuilder.cs: Implement DefineTypeInitializer.
2454 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
2456         * ModuleBuilder.cs: 
2457         - Implement DefineInitializedData in terms of DefineUninitializedData
2458         - Name the types of global fields $ArrayType$<len> to cut back on the
2459         number of types created
2460         - Add argument checking
2462 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
2464         * AssemblyBuilder.cs: Implement GetDynamicModule. "Implement" various
2465         methods not supported under MS.NET.
2467 2003-05-18  Martin Baulig  <martin@ximian.com>
2469         * AssemblyBuilder.cs (corlib_void_type): New internal field.
2470         (SetCorlibTypeBuilders): Added overloaded version which takes 4
2471         arguments to set the `corlib_void_type'.
2473         * TypeBuilder.cs: Use `pmodule.assemblyb.corlib_void_type' instead
2474         of `typeof (void)' to make this work when compiling corlib.
2476 Thu May 15 19:16:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
2478         * MethodBuilder.cs: off by one in CreateMethodBody().
2479         * TypeBuilder.cs: if the return type for a method is null, use void.
2481 2003-04-28  Miguel de Icaza  <miguel@ximian.com>
2483         * MethodBuilder.cs: Mono allows the parameter position to be zero
2484         to indicate the "returns:" attribute.
2486 2003-04-20  Miguel de Icaza  <miguel@ximian.com>
2488         * ILGenerator.cs (EmitCall): Implement.
2490         Flag a few unimplemented methods with MonoTODO, make coding style
2491         for method definitions Mono consistent.
2493 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
2495         * ILGenerator.cs: Implement EmitWriteLine methods.
2497         * TypeBuilder.cs (CreateType): Avoid creating a default constructor
2498         for the global type.
2500 2003-04-15  Miguel de Icaza  <miguel@ximian.com>
2502         * TypeBuilder.cs (DefineDefaultConstructor): Make it generate code
2503         by default for a default constructor.  This is what the MS runtime
2504         does.  The PythonNet code expected this.
2506         (TypeBuilder.GetConstructorImpl): Implement this.
2508         (TypeBuilder.CreateType): If there are no constructors defined, we
2509         create one.
2511 Tue Apr 15 13:50:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
2513         * ModuleBuilder.cs, TypeBuilder.cs: set nesting_type before
2514         calling setup_internal_class ().
2516 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
2518         * AssemblyBuilder.cs: Added 'access' member, which is needed by the
2519         runtime.
2521 2003-03-26  Zoltan Varga  <vargaz@freemail.hu>
2523         * ILGenerator.cs: Implemented ThrowException.
2525 2003-03-10  Zoltan Varga  <vargaz@freemail.hu>
2527         * ILGenerator.cs: Propagate maxstack info along branches.
2529 2003-03-06  Zoltan Varga  <vargaz@freemail.hu>
2531         * ILGenerator.cs (Emit): Do not pop the arguments off the stack for
2532         ldftn etc. Fixes bug #39196.
2534 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
2536         * ILGenerator.cs (Emit): Add fixup for already created methods and
2537         fields. Do not add fixup for types since their table index do not 
2538         change any more.
2540 2003-02-26  Zoltan Varga  <vargaz@freemail.hu>
2542         * TypeBuilder.cs (DefineInitializedData): Removed unnecessary assignments.
2544         * ModuleBuilder.cs (DefineInitializedData): Do not call 
2545         TypeBuilder::DefineInitializedData since that would mean defining a
2546         nested type of the global type, which is wrong. Instead define a
2547         new public type as MS does.
2549         * ModuleBuilder.cs (DefineUninitializedData): Ditto.
2551 Thu Feb 13 18:40:52 CET 2003 Paolo Molaro <lupus@ximian.com>
2553         * ModuleBuilder.cs: add the basic initialization call.
2555 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
2557         * AssemblyBuilder.cs: Added basic error checking to some methods
2558         according to the MSDN docs.
2560 2003-02-10  Zoltan Varga  <vargaz@freemail.hu>
2562         * ConstructorBuilder.cs: 
2563         - Added basic error checking to all methods according to the MSDN docs.
2564         - modified a lot of methods to throw NotSupportedException, to comply
2565           with MS.NET.
2567 2003-02-09  Zoltan Varga  <vargaz@freemail.hu>
2569         * TypeBuilder.cs:
2570         - Added basic error checking to all methods according to the MSDN docs.
2571         - fixed AssemblyQualifiedName.
2572         - implemented 'Size'.
2573         - modified a lot of methods to throw NotSupportedException, to comply
2574           with MS.NET.
2575         - changes tested by running a full bootstrap.
2577 2003-02-09  Martin Baulig  <martin@ximian.com>
2579         * AssemblyBuilder.cs (AssemblyBuilder.methods): Removed.  This was
2580         a hack for the symbol writer which is no longer needed.
2582 2003-02-09  Martin Baulig  <martin@ximian.com>
2584         * IMonoSymbolWriter.cs (DefineNamespace, OpenMethod): New methods.
2586 2003-02-09  Martin Baulig  <martin@ximian.com>
2588         * IMonoSymbolWriter.cs (MarkSequencePoint): New method which takes
2589         just the required arguments as scalars, not arrays.
2591         * ILGenerator.cs (ILGenerator.MarkSequencePoint): Use that new
2592         interface method; unnecessarily creating such a large number of
2593         arrays is both slow and too memory consuming.   
2595 2003-02-08  Zoltan Varga  <vargaz@freemail.hu>
2597         * MethodBuilder.cs: Added error checking to methods so they conform to
2598         MSDN docs. Implemented 'GetModule' and 'CallingConvention' members. 
2599         Some other tweaks to improve compatibility with MS .NET.
2601         * TypeBuilder.cs: Added 'is_created' property which will be used for
2602         checking 'type is already created' errors.
2604 2003-02-07  Martin Baulig  <martin@ximian.com>
2606         * ModuleBuilder.cs (.ctor): Added `bool IsMainModule' argument.
2607         (Save): New internal method; creates the module's symbol file if
2608         we're compiling with debugging information.
2610         * AssemblyBuilder.cs (EmbedResource): Added internal overloaded
2611         version of this method which takes a `byte[] blob' instead of a file.
2612         (DefineDynamicMethod): If this is the first module, tell the
2613         ModuleBuilder that this is the main module.
2614         (Save): Call a new interncall `build_metadata' to create the final
2615         metadata and save all the symbol files before creating the actual
2616         output.
2618         * IMonoSymbolWriter.cs: New public class; it is in the namespace
2619         Mono.CSharp.Debugger.  The Mono symbol writer implements this interface.
2621 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
2623         * AssemblyBuilder.cs: added GetToken (SignatureHelper).
2625         * ILGenerator.cs: implemented EmitCalli() methods
2627         * SignatureHelper.cs: implemented GetMethoSigHelper() methods.
2629 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2631         * MethodBuilder.cs: GetBaseDefinition () returns this.
2633 Mon Jan 27 17:07:38 CET 2003 Paolo Molaro <lupus@ximian.com>
2635         * CustomAttributeBuilder.cs, FieldBuilder.cs: applied
2636         (reformatted) patch from "Jerome Laban" <jlaban@wanadoo.fr>
2637         to fix ByValStr and ByValArray encodings.
2639 2003-01-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2641         * AssemblyBuilder.cs: fixed compilation with csc.
2643 2003-01-26  Miguel de Icaza  <miguel@ximian.com>
2645         * AssemblyBuilder.cs (Save): Set the executable bit at the end.
2646         This uses a non-official enumeration value to call SetFileAttributes.
2648 2003-01-17  Zoltan Varga  <vargaz@freemail.hu>
2650         * MethodBuilder.cs ConstructorBuilder.cs: modify GetParameters() so it
2651         returns information even when the app did not use DefineParameter() to
2652         define the parameters.
2654         * ConstructorBuilder.cs (ctor): allways define SpecialName attribute
2655         for constructors as done by MS.
2657 Mon Jan 13 11:37:14 CET 2003 Paolo Molaro <lupus@ximian.com>
2659         * TypeBuilder.cs, ModuleBuilder.cs: better type name cache.
2661 2003-01-10  Zoltan Varga  <vargaz@freemail.hu>
2663         * ILGenerator.cs: Implemented EmitWriteLine(string).
2665         * TypeBuilder.cs (DefineInitializedData): Call DefineNestedType() 
2666         instead of DefineType() so the auxiliary types do not pollute the 
2667         global namespace. This is consistent with the behaviour of MS .NET.
2669 Fri Jan 10 16:03:30 CET 2003 Paolo Molaro <lupus@ximian.com>
2671         * ILGenerator.cs, MethodBuilder.cs, TypeBuilder.cs,
2672         ConstructorBuilder.cs: some tweaks to reduce memory usage.
2674 Thu Jan 2 18:46:09 CET 2003 Paolo Molaro <lupus@ximian.com>
2676         * ModuleBuilder.cs, TypeBuilder.cs: support global fields and methods.
2678 Thu Dec 19 00:06:57 CET 2002 Paolo Molaro <lupus@ximian.com>
2680         * AssemblyBuilder.cs: remove duplicated user string entries.
2682 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
2684         * FieldBuilder.cs: added 'handle' field which is needed by some new
2685         code in reflection.c.
2687 2002-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2689         * TypeBuilder.cs: implemented GetInterfaceMap () when the Type has been
2690         created.
2692 Fri Nov 8 14:53:03 CET 2002 Paolo Molaro <lupus@ximian.com>
2694         * ILGenerator.cs: account for the exception object being passed to the
2695         catch handler to calc max_stack.
2697 2002-09-21  Martin Baulig  <martin@gnome.org>
2699         * ModuleBuilder.cs (ModuleBuilder.symbol_writer): Make this
2700         field internal, not private.
2701         (ModuleBuilder.SymWriter_DefineLocalVariable): Removed.
2703         * LocalBuilder.cs (LocalBuilder.SetLocalSymInfo): Use the
2704         ISymbolWriter's DefineLocalVariable() method instead of the
2705         IMonoSymbolWriter hack.
2707 Mon Sep 16 19:02:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
2709         * AssemblyBuilder.c: special case some custom attributes.
2711 2002-09-12  Dick Porter  <dick@ximian.com>
2713         * TypeBuilder.cs: Say _which_ Type has already been created
2715 2002-09-11  Miguel de Icaza  <miguel@ximian.com>
2717         * ModuleBuilder.cs (GetTypes): Implement.
2719 Tue Sep 10 12:12:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2721         * ConstructorBuilder.cs: added a field to hold the handle.
2723 Mon Sep 9 17:31:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
2725         * TypeBuilder.cs: prepare for the real CreateType implementation.
2727 Tue Aug 27 16:57:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
2729         * TypeBuilder.cs: remove duplicate code and fix
2730         named field reading in custom attr.
2732 2002-08-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2734         * TypeBuilder.cs: UnspecifiedTypeSize is 0.
2736 Wed Aug 14 17:38:41 CEST 2002 Paolo Molaro <lupus@ximian.com>
2738         * TypeBuilder.cs: ReflectedType and CreateType fixes.
2740 Thu Aug 8 10:25:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2742         * AssemblyBuilder.cs: added API to embed managed resources.
2744 2002-08-03  Martin Baulig  <martin@gnome.org>
2746         * TypeBuilder.cs (TypeBuilder.DeclaringType): Implemented.
2748 Thu Jul 25 13:57:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
2750         * AssemblyBuilder.cs: support linking external resources.
2752 2002-07-19  Martin Baulig  <martin@gnome.org>
2754         * ILGenerator.cs (Emit (OpCode, LocalBuilder)): Throw an exception
2755         when trying to emit a local that was defined in a different ILGenerator.
2757         * LocalBuilder.cs (LocalBuilder): Added `ILGenetator' argument to
2758         the constructor.
2760 Tue Jul 16 19:32:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
2762         * ILGenerator.cs: stack size check fix.
2764 Sat Jul 13 17:30:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2766         * AssemblyBuilder.cs: add also the enum_type for compiling corlib.
2767         * TypeBuilder.cs: complete IsValueType.
2769 Sat Jul 13 15:08:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
2771         * TypeBuilder.cs: better IsValueType.
2773 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2775         * CustomAttributeBuilder.cs: removed compile warning.
2777 Fri Jul 12 11:34:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
2779         * ILGenerator.cs: fixup typebuilder tokens as well.
2781 Tue Jul 9 19:03:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
2783         * TypeBuilder.cs: special case SerializarionAttribute.
2784         Tweaks to get correct code in corlib.
2786 2002-07-06  Miguel de Icaza  <miguel@ximian.com>
2788         * ILGenerator.cs (ILGenerator.Emit): For doubles and floats, swap
2789         the bytes on big endian systems. 
2791 2002-07-03  Martin Baulig  <martin@gnome.org>
2793         * AssemblyBuilder.cs (corlib_object_type, corlib_value_type): Moved
2794         these fields up after the last entry in MonoReflectionAssemblyBuilder
2795         in reflection.h.
2797         * TypeBuilder.cs (IsValueTypeImpl): Use the AssemblyBuilder's
2798         `corlib_value_type' instead of `typeof (System.ValueType)'.
2799         (DefineNestedType): Use the AssemblyBuilder's `corlib_object_type'
2800         instead of `typeof (object)'.
2802 2002-07-02  Martin Baulig  <martin@gnome.org>
2804         * AssemblyBuilder.cs (corlib_object_type, corlib_value_type): New
2805         internal fields.  When compiling corlib, they point to the newly
2806         created System.Object and System.ValueType types.
2807         (SetCorlibTypeBuilders): New public function.  This will be
2808         dynamically called from MCS when compiling corlib.
2810         * TypeBuilder.cs (DefineInitializedData): Use the AssemblyBuilder's
2811         `corlib_value_type' as parent type instead of `typeof (System.ValueType)'
2812         to make it work when compiling corlib.
2814         * ModuleBuilder.cs (assemblyb): Made this field internal, not private.
2816 Tue Jul 2 18:34:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
2818         * TypeBuilder.cs: implemented AssemblyQualifiedName.
2819         * MethodBuilder.cs, ConstructorBuilder.cs: special case custom attr.
2821 Mon Jul 1 16:17:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2823         * TypeBuilder.cs: implemented AddInterfaceImplementation().
2825 2002-06-28  Martin Baulig  <martin@gnome.org>
2827         * MethodBuilder.cs (GetParameters): Return all parameters, not all
2828         but the last one.
2830 2002-06-27  Martin Baulig  <martin@gnome.org>
2832         * ConstructorBuilder.cs (GetParameters): Implemented.
2834 Mon Jun 17 14:55:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
2836         * ModuleBuilder.cs, TypeBuilder.cs: fixes for nested types handling.
2838 Fri Jun 14 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
2840         * CustomAttributeBuilder.cs: added custom attribute related internal
2841         helper methods.
2842         * FieldBuilder.cs, ParameterBuilder.cs: handle MarshalAs attribute.
2843         * UnmanagedMarshal.cs: implemented.
2845 Mon Jun 10 18:58:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
2847         * PropertyBuilder.cs: implemented ReflectedType and DeclaringType
2848         properties.
2850 2002-06-07  Martin Baulig  <martin@gnome.org>
2852         * TypeBuilder.cs (TypeBuilder): Added `PackingSize packing_size' and
2853         `int type_size' fields to the constructor.
2854         (DefineNestedType): Pass packing_size and type_size to the constructor.
2856         * ModuleBuilder.cs (DefineType): Pass the packing_size and type_size
2857         fields to the TypeBuilder's constructor.
2859 2002-06-07  Martin Baulig  <martin@gnome.org>
2861         * TypeBuilder.cs (DefineNestedType): There is no overload for this
2862         method which takes 5 args in the specs, removed it.
2864 Fri Jun 7 17:04:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
2866         * AssemblyBuilder.cs: updates for PE/COFF rewrite.
2868 2002-05-30  Martin Baulig  <martin@gnome.org>
2870         * AssemblyBuilder.cs (methods): Made this internal and don't
2871         initialize it.  It will be initialized by the ModuleBuilder's
2872         GetSymbolWriter() method.
2873         (get_next_table_index): Only store the method in the `methods'
2874         array if it's not null.
2876         * ModuleBuilder.cs (GetSymbolWriter): Initialize the AssemblyBuilder's
2877         `methods' field if necessary and pass it as third argument to the
2878         symbol writer's constructor.
2880 2002-05-25  Martin Baulig  <martin@gnome.org>
2882         * TypeBuilder.cs (TypeToken): Implemented.
2884 2002-05-24  Martin Baulig  <martin@gnome.org>
2886         * ModuleBuilder.cs (symwriter_define_local): New private variable.
2887         (GetSymbolWriter): Look for a custom version of "DefineLocalVariable"
2888         and store it in `symwriter_define_local'.
2889         (SymWriter_DefineLocalVariable): New internal method to call the
2890         symbol writer's custom DefineLocalVariable() method.  It is safe to
2891         call this method if there's no symbol writer.
2893         * LocalBuilder.cs (SetLocalSymInfo): Use the MethodBuilder'snew
2894         SymWriter_DefineLocalVariable().
2896         * MethodBuilder.cs (GetParameters): Implemented.
2898 2002-05-22  Martin Baulig  <martin@gnome.org>
2900         * ModuleBuilder.cs (GetSymbolWriter): Pass the this pointer to the
2901         symbol writer's constructor.
2903 2002-05-22  Martin Baulig  <martin@gnome.org>
2905         * AssemblyBuilder.cs (methods): New field.
2906         (get_next_table_index): Record all methods and constructors
2907         (table 0x06) in the `methods' array.  This is read by the
2908         Mono.CSharp.Debugger.MonoSymbolWriter::get_method interncall to
2909         get the MethodBuilder / ConstructorBuilder back from the token.
2911         * *Builder.cs (get_next_table_index): Added `object obj' argument.
2912         (<constructors>): pass the this pointer to get_next_table_index ().
2914 2002-05-20  Martin Baulig  <martin@gnome.org>
2916         * TypeBuilder.cs (DefineField): Call the new `create_internal_class'
2917         interncall after adding the first field.  This is used when creating
2918         enum types to set `klass->enum_basetype'.
2920 Thu May 16 16:09:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2922         * TypeBuilder.cs: complete special acse support for CharSet, Size and
2923         Pack named args in StructLayout attribute.
2925 Tue May 14 17:13:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
2927         * MethodBuilder.cs: revert change in accessibility of
2928         GetILGenerator(int).
2930 Tue May 14 13:31:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
2932         * FieldBuilder.cs, ParameterBuilder.cs: more special-casing of
2933         attributes.
2935 Fri May 10 20:57:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
2937         * CustomAttributeBuilder.cs: expose internal data for use in
2938         reflection.
2939         * FieldBuilder.cs, TypeBuilder.cs: special case FieldOffset and
2940         StructLayout attributes.
2942 Fri May 10 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
2944         * MethodBuilder.cs, ConstructorBuilder.cs: implemented InitLocals
2945         property.
2947 2002-04-26  Martin Baulig  <martin@gnome.org>
2949         * ModuleBuilder.cs (DefineDocument): Implemented.
2951 Tue Apr 16 13:02:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
2953         * AssemblyBuilder.cs: pad output file to file alignment.
2954         * FieldBuilder.cs: ReflectedType.
2955         * ModuleBuilder.cs: added guid generation and array method creation.
2956         * MonoArrayMethod.cs: array method support code.
2957         
2958 Wed Apr 10 12:57:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
2960         * ILGenerator.cs: use a stack to keep track of exception blocks.
2962 Mon Apr  8 06:19:01  2002 Piers Haken <piersh@friskit.com>
2964         * ILGenerator.cs: added LabelField.label_base to allow for
2965         arbitrary offsets (for switch statement)
2967 Fri Apr 5 15:41:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
2969         * AssemblyBuilder.cs: simpler protocol wih the runtime to
2970         get the assembly data.
2972 Tue Mar 26 20:10:24 CET 2002 Paolo Molaro <lupus@ximian.com>
2974         * AssemblyBuilder.cs: use FileMode.Create.
2975         * ILGenerator.cs: optimize localbuilder related opcodes.
2976         Track parameters to adjust maxstack.
2977         * LocalBuilder.cS: use unsigned for position.
2979 2002-03-23  Miguel de Icaza  <miguel@ximian.com>
2981         * LocalBuilder.cs: Drop the symbol_writer as LocalBuilder fields.
2982         Do this lazily in SetLocalSymInfo.
2983         
2984 2002-03-24  Martin Baulig  <martin@gnome.org>
2986         * ModuleBuilder.cs (GetSymbolWriter): The MonoSymbolWriter's constructor
2987         now takes a `string assembly_filename' argument, pass it our fully
2988         qualified assembly name.
2990 2002-03-24  Nick Drochak  <ndrochak@gol.com>
2992         * ILGenerator.cs: Use #if-#endif instead of if(false){} to disable
2993         code.  This way there is no compiler warning.
2995         * TypeBuilder.cs: Removed the returns that came after the throws.
2996         This removes a few more compiler warnings. Also marked with MonoTODO
2997         all places where we throw NotImplemented exceptions.
2999 2002-03-23  Martin Baulig  <martin@gnome.org>
3001         * SignatureHelper.cs (GetFieldSignatureHelper, GetLocalSignatureHelper):
3002         Implemented.
3004         * LocalBuilder.cs (LocalBuilder): This internal constructor now takes
3005         a ModuleBuilder argument instead of a ISymbolWriter one.
3006         (SetLocalSymInfo): Create and pass type signature to DefineLocalVariable.
3008 2002-03-23  Martin Baulig  <martin@gnome.org>
3010         * ILGenerator.cs (BeginScope, EndScope): Implemented.
3012 2002-03-20  Martin Baulig  <martin@gnome.org>
3014         * ModuleBuilder.cs (GetSymbolWriter): New internal function. Dynamically
3015         loads the default symbol writer, catch all possible exceptions and return
3016         null on failure.
3017         (ModuleBuilder): Added `bool emitSymbolInfo' argument to this internal
3018         constructor; if set, call GetSymbolWriter ().
3019         (GetSymWriter): Implemented.
3021         * LocalBuilder.cs (LocalBuilder): Added ISymbolWriter argument to this
3022         internal method.
3023         (SetLocalSymInfo): Implemented, call ISymbolWriter.DefineLocalVariable ()
3024         if the symbol writer is not null.
3026         * ILGenerator.cs (ILGenerator): Call ModuleBuilder.GetSymWriter () to get
3027         and store the symbol writer.
3028         (DeclareLocal): Pass the symbol writer to LocalBuilder's constructor.
3029         (MarkSequencePoint): Implemented, call ISymbolWriter.DefineSequencePoints ()
3030         if the symbol writer is not null.
3032         * AssemblyBuilder.cs (DefineDynamicModule): Pass the `bool emitSymbolInfo'
3033         to ModuleBuilder's constructor.
3035 Sat Mar 16 19:11:47 CET 2002 Paolo Molaro <lupus@ximian.com>
3037         * ModuleBuilder.cs: handle modified types correctly.
3039 Thu Mar 7 17:10:42 CET 2002 Paolo Molaro <lupus@ximian.com>
3041         * AssemblyBuilder.cs: allow saving bigger assemblies.
3042         * ILGenerator.cs: add fixup table for fields and methods, since
3043         at the end of the compile they may end up with a different table
3044         index.
3045         * ModuleBuilder.cs: add cache for type names to speed up the type
3046         lookups from the compiler.
3047         * TypeBuilder.cs: GetInterfaces () returns only interfaces in the
3048         current type, not in parents (the docs are wrong).
3050 Tue Mar 5 18:09:34 CET 2002 Paolo Molaro <lupus@ximian.com>
3052         * EventBuilder.cs: implemented.
3053         * TypeBuilder.cs: implemented DefineEvent() method and UnderlyingSystemType
3054         property.
3056 Mon Mar 4 20:34:52 CET 2002 Paolo Molaro <lupus@ximian.com>
3058         * ILGenerator.cs: make enough room in the byte array for string
3059         tokens.
3060         * TypeBuilder.cs: fixed GetInterfaces().
3062 Mon Mar 4 11:30:40 CET 2002 Paolo Molaro <lupus@ximian.com>
3064         * TypeBuilder.cs: implemented GetConstructors(), GetFields(),
3065         GetMethods(), GetProperties().
3067 Thu Feb 28 19:15:10 CET 2002 Paolo Molaro <lupus@ximian.com>
3069         * AssemblyBuilder.cs: call into the runtime to init some basic
3070         assembly stuff. Reserve slot 1 of typedef table for .<Module>.
3071         * ModuleBuilder.cs: call into the runtime if we need to create a
3072         modief type, such as arrays, byref etc.
3073         * TypeBuilder.cs: call into the runtime to create the MonoClass
3074         representation for the type. Throw exceptions with not implemented
3075         stuff.
3077 Wed Feb 27 18:48:47 CET 2002 Paolo Molaro <lupus@ximian.com>
3079         * ILGenerator.cs: fix nested exception blocks.
3081 Wed Feb 20 22:30:49 CET 2002 Paolo Molaro <lupus@ximian.com>
3083         * AssemblyBuilder.cs: upped compiled assembly size limit.
3084         Implemented SetCustomAttribute () methods.
3085         * CustomAttributeBuilder.cs: implemented the needed constructor
3086         stuff.
3087         * Cosntructorbuilder.cs, EnumBuilder.cs, FieldBuilder.cs,
3088         MethodBuilder.cs, ModuleBuilder.cs, ParameterBuilder.cs,
3089         PropertyBuilder.cs, TypeBuilder.cs: Implemented SetCustomAttribute () methods.
3091 Wed Feb 20 14:54:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3093         * AssemblyBuilder.cs: add SetCustomAttribute () to keep the compiler
3094         going.
3096 Fri Feb 15 18:15:04 CET 2002 Paolo Molaro <lupus@ximian.com>
3098         * ILGenerator.cs: finally block support and fixes.
3100 Thu Feb 14 18:55:52 CET 2002 Paolo Molaro <lupus@ximian.com>
3102         * FieldBuilder.cs: Add SetRVAData().
3103         * ILGenerator.cs: speed up code array growth.
3104         * TypeBuilder.cs: fix IsValueTypeImpl(). Add class_size member.
3105         Implement DefineInitializedData().
3107 Tue Jan 22 23:01:11 CET 2002 Paolo Molaro <lupus@ximian.com>
3109         * EnumBuilder.cs, TypeBuilder.cs: updates for changes in Type.cs.
3110         * ModuleBuilder.cs: fix lookup of nested types.
3112 Tue Jan 15 22:46:21 CET 2002 Paolo Molaro <lupus@ximian.com>
3114         * ILGenerator.cs: implement some of the exception support methods.
3116 Mon Jan 14 17:07:32 CET 2002 Paolo Molaro <lupus@ximian.com>
3118         * ModulerBuilder.cs: search also for subtypes in GetTypes().
3119         * TypeBuilder.cs: bugfix in FullName. Implemented DefineNestedType().
3121 Fri Jan 11 19:00:29 CET 2002 Paolo Molaro <lupus@ximian.com>
3123         * MethodBuilder.cs, ConstructorBuilder.cs: save parameter info.
3125 Thu Jan 10 21:07:54 CET 2002 Paolo Molaro <lupus@ximian.com>
3127         * ILGenerator.cs: handle type tokens (used for box opcode).
3129 Wed Jan 9 19:37:55 CET 2002 Paolo Molaro <lupus@ximian.com>
3131         * ILGenerator.cs: emit float and doubles.
3132         * ModuleBuilder.cs: off-by-one error fix and GetType()
3133         implementations.
3134         * TypeBuilder.cs: AttributesImpl added.
3135         * UnmanagedMarshal.cs: stubbed out class.
3137 Sat Jan 5 15:59:05 CET 2002 Paolo Molaro <lupus@ximian.com>
3139         * ILGenerator.cs: fix emission of two-bytes opcodes.
3140         Missing slot for locals array. Throw exceptions on unimplemented
3141         methods.
3142         * OpCode.cs: add a comment: the Value property is useless.
3143         * OpCodes.cs: fix name of tail opcode (Tail -> Tailcall).
3145 2002-01-05  Ravi Pratap  <ravi@ximian.com>
3147         * ConstructorBuilder.cs : Use the MonoTODO attribute.
3149         * ILGenerator.cs, Label.cs, MethodBuilder.cs, ModuleBuilder.cs,
3150         ParameterBuilder.cs, TypeBuilder.cs : Ditto.
3151         
3152 Thu Jan 3 23:26:15 CET 2002 Paolo Molaro <lupus@ximian.com>
3154         * ILGenerator.cs: typo fix.
3156 Mon Dec 24 17:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
3158         * TypeBuilder.cs: added DefineMethodOverride().
3159         * MethodBuilder.cs: add override_method member and setter.
3161 Mon Nov 19 13:58:01 CET 2001 Paolo Molaro <lupus@ximian.com>
3163         * AssemblyBuilder.cs: add method to register a string in the "#US"
3164         stream.
3165         * EnumBuilder.cs, SignatureHelper.cs: added stubs.
3166         * ILGenerator.cs: more stuff implemented.
3167         * LocalBuilder.cs: keep track of local var index.
3169 Thu Nov 15 18:11:23 CET 2001 Paolo Molaro <lupus@ximian.com>
3171         * ConstructorBuilder.cs: implement the interesting methods.
3172         * ILGenerator.cs: adapt for use with both a MethodBuilder and a
3173         ConstructorBuilder.
3174         * MethodBuilder.cs: add ImplAttributes.
3175         * ParameterBuilder.cs: adapt for ConstructorBuilder.
3176         * TypeBuilder.cs: add constructors handling.
3178 Wed Nov 14 17:01:45 CET 2001 Paolo Molaro <lupus@ximian.com>
3180         * ConstructorBuilder.cs: added missing stubs and some implementation.
3181         * CustomAttributeBuilder.cs: added.
3182         * EventBuilder.cs: added.
3183         * FieldBuilder.cs: updates.
3184         * MethodBuilder.cs: stuff to implement P/Invoke methods.
3185         * ModuleBuilder.cs: added GetArrayMethod() stub.
3186         * ParameterBuilder.cs, PropertyBuilder.cs: updates.
3187         * TypeBuilder.cs: updates and stubs.
3189 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
3191         * TypeBuilder.cs: Added implementation for TypeHandle.
3193 Tue Nov 6 09:13:45 CET 2001 Paolo Molaro <lupus@ximian.com>
3195         * AssemblyBuilder.cs: define an internal constructor.
3197 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
3199         * AssemblyBuilder.cs: Reformatted.
3201         Added override keywords to those that needed them.
3203         Removed methods that we do not override, but just inherit
3205 Tue Sep 25 16:53:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
3207         * TypeBuilder.cs, ConstructorBuilder.cs, ModuleBuilder.cs: added.