1 2009-07-08 Rodrigo Kumpera <rkumpera@novell.com>
3 * DerivedTypes.cs: Implemented PointerType.
5 * TypeBuilder.cs (MakePointerType): Return an
6 instance of PointerType.
8 2009-07-08 Rodrigo Kumpera <rkumpera@novell.com>
10 * DerivedTypes.cs: Implemented ByRefType.
12 * TypeBuilder.cs (MakeByRefType): Return an
13 instance of ByRefType.
15 2009-07-08 Rodrigo Kumpera <rkumpera@novell.com>
17 * DerivedTypes.cs: Refactor the types here to move
18 a lot of code to the base DerivedType in preparation
19 for upcomming ByRefType and PointerType puppies.
21 2009-07-07 Rodrigo Kumpera <rkumpera@novell.com>
23 * TypeBuilder.cs (IsArrayImpl): Return false always as a
24 typebuilder will never represent an array.
26 * TypeBuilder.cs (MakeArrayType): Return a new instance of
27 ArrayType instead of calling into MonoType machinery.
29 * DerivedTypes.cs: New file with all the internal types
30 used by SRE to represent derived types from TypeBuilder:
31 arrays, pointers and byrefs'.
33 2009-07-02 Rodrigo Kumpera <rkumpera@novell.com>
35 * AssemblyBuilder.cs: Add IsRun property that returns true if
36 any execute mode is enabled.
38 * ModuleBuilder.cs: Add set_wrappers_type icall to define which type
39 is to be bound to wrappers. Create a new abstract type and call it
40 when the assembly is build this way.
42 Replace explicit checks for global_type with calls to CreateGlobalType.
44 * TypeBuilder.cs: Internal ctor now takes an extra table_idx argument.
46 2009-06-25 Sylvain Dupont <duposyl@gmail.com>
48 * CustomAttributeBuilder.cs: Properly handle element type for safe
49 arrays (SafeArraySubType marshal attribute option).
51 Code is contributed under MIT/X11 license.
53 2009-06-12 Jb Evain <jbevain@novell.com>
55 * AssemblyBuilder.cs (Save): throw a NotImplementedException
56 when asked to emit a pe32+ binary for a AMD64 or IA64
59 2009-06-05 Jb Evain <jbevain@novell.com>
61 * ModuleBuilder.cs (DefineManifestResource): expose during
62 BOOTSTRAP_NET_2_0 as well.
64 2009-06-02 Rodrigo Kumpera <rkumpera@novell.com>
66 * ILGenerator.cs (EmitCall): Under 2.0 profile ignore optional
67 arguments if the method call conv is not vararg.
69 2009-05-22 Zoltan Varga <vargaz@gmail.com>
71 * AssemblyBuilder.cs (.ctor): Error out if the not yet supported
72 RunAndCollect flag was given.
74 * AssemblyBuilderAccess.cs: Add RunAndCollect flag for net 4.0.
76 2009-03-20 Sebastien Pouliot <sebastien@ximian.com>
78 * DynamicMethod.cs (Invoke): Wrap a MethodAccessException inside a
79 TargetInvocationException (required for Moonlight 2).
81 2009-03-18 Zoltan Varga <vargaz@gmail.com>
83 * TypeBuilder.cs (GetGenericTypeDefinition): Call the icall instead of
84 the base method which now throws an exception.
86 2009-02-23 Zoltan Varga <vargaz@gmail.com>
88 * ILGenerator.cs SignatureHelper.cs: Add checks for user types.
90 2008-02-21 Jb Evain <jbevain@novell.com>
92 * ModuleBuilder.cs: override GetModuleVersionId
93 so that we can get the module guid from Module.ModuleVersionId.
94 Part of the fix for #471302.
96 2009-01-24 Zoltan Varga <vargaz@gmail.com>
98 * SignatureHelper.cs: Fix warnings.
100 * ILGenerator.cs: Fix warnings.
102 2008-11-23 Gert Driesen <drieseng@users.sourceforge.net>
104 * AssemblyBuilder.cs: When assembly is strongnamed, then explicitly
105 set PublicKey flag. Do not allow AssemblyFlagsAttribute to overwrite
106 flags value, and ignore PublicKey flag if assembly is not strongnamed.
109 2008-11-11 Rodrigo Kumpera <rkumpera@novell.com>
111 * ConstructorOnTypeBuilderInst.cs (MetadataToken): Make this property
112 work under compiler context. Same hack as the one applied to
113 MethodOnTypeBuilderInst.
117 2008-09-23 Marek Safar <marek.safar@gmail.com>
119 * ModuleBuilder.cs: Fixed NRE when default symbol writer cannot be
122 2008-09-16 Jb Evain <jbevain@novell.com>
124 * AssemblyBuilder.cs (AddTypeForwarder): correctly grow the
125 type_forwarders array, to make that work for more than one
126 type forwarder. Managed part of the fix for #422929.
128 2008-09-04 Marek Safar <marek.safar@gmail.com>
130 * TypeBuilder.cs: Add mcs specific SetCharSet method.
132 2008-08-12 Zoltan Varga <vargaz@gmail.com>
134 * TypeBuilder.cs (CreateType): Avoid creating a default ctor if the
135 type has a constructor defined using DefineMethod. Fixes #416632.
137 2008-07-25 Rodrigo Kumpera <rkumpera@novell.com>
139 * TypeBuilder.cs (GetMethod): Allow created TypeBuilders
142 2008-07-23 Marek Safar <marek.safar@gmail.com>
143 Rodrigo Kumpera <rkumpera@novell.com>
145 * TypeBuilder.cs (GetMethod): A fix for #408933
147 2008-07-22 Rodrigo Kumpera <rkumpera@novell.com>
149 * MethodOnTypeBuilderInst.cs: Change visibility of the parent
150 MethodBuilder to internal.
152 2008-07-22 Zoltan Varga <vargaz@gmail.com>
154 * CustomAttributeBuilder.cs (get_umarshal): Add support for all
155 MarshalAsAttribute fields to fix the build.
157 * CustomAttributeBuilder.cs (get_umarshal): Decode enums properly.
159 2008-07-21 Marek Safar <marek.safar@gmail.com>
161 * ParameterBuilder.cs, CustomAttributeBuilder.cs: Check for
162 UnmanagedType.ByValArray to be used only on fields.
164 2008-07-16 Rodrigo Kumpera <rkumpera@novell.com>
166 * MethodOnTypeBuilderInst.cs: Special case all methods
167 under compiler context as needed by mcs.
169 * MethodBuilder.cs: Change the visibility of some fields
170 to internal so MethodOnTypeBuilderInst can use it.
172 2008-07-11 Marek Safar <marek.safar@gmail.com>
174 * ModuleBuilder.cs: Couple of micro optimizations.
176 2008-07-03 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
178 * SignatureHelper.cs: Fix parameter names
179 * ModuleBuilder.cs: Fix parameter names
181 2008-06-18 Rodrigo Kumpera <rkumpera@novell.com>
183 * TypeBuilder.cs (IsAssignableTo): Fixed check for interfaces
184 defined on parent. Based on Geoff's Norton patch.
187 2008-06-12 Marek Safar <marek.safar@gmail.com>
189 * MethodBuilder.cs: Removed SetGenericMethodSignature.
191 2008-06-06 Jb Evain <jbevain@novell.com>
193 * OpCodes.cs: OpCode constrained. is of type InlineType.
195 2008-05-18 Gert Driesen <drieseng@users.sourceforge.net>
197 * TypeBuilder.cs (IsAssignableTo): When an interface is passed as
198 argument and the TypeBuilder has been created, also check if parent
199 can be assigned to type.
201 2008-05-15 Zoltan Varga <vargaz@gmail.com>
203 * TypeBuilder.cs (.ctor): Convert a null parent to typeof (object) here, not just
204 in CreateType (). Fixes #389171.
206 2008-05-11 Gert Driesen <drieseng@users.sourceforge.net>
208 * FieldBuilder.cs: Added null check for type.
209 * TypeBuilder.cs: For enums, construct UnderlyingSystemType when
210 first instance field is defined instead of having to lookup it up on
211 demand. Avoid cast in IsCompilerContext.
213 2008-05-11 Gert Driesen <drieseng@users.sourceforge.net>
215 * TypeBuilder.cs: Use Assembly.FullName instead of AssemblyName.
216 In UnderlyingSystemType, return UnderlyingSystemType of created type
217 when available. For an enum, UnderlyingSystemType is the type of the
218 first instance field. If no instance field is available, throw an
219 InvalidOperationException. Retain original behavior when operating in
221 * ConstructorBuilder.cs: Moved implementation of GetParameters to
222 GetParametersInternal to allow it to be used internally when type is
224 * CustomAttributeBuilder.cs: Added GetParameters method that uses
225 GetParametersInternal on ConstructorBuilder, and use it where
228 2008-05-03 Zoltan Varga <vargaz@gmail.com>
230 * ConstructorBuilder.cs: Revert the throw not_created () change as it causes
231 vbnc bootstrap to fail. Fixes #386419.
233 2008-05-01 Gert Driesen <drieseng@users.sourceforge.net>
235 * ConstructorBuilder.cs: Switch arguments for AORE.
237 2008-04-30 Gert Driesen <drieseng@users.sourceforge.net>
239 * ModuleBuilder.cs (DefineType): Do not perform lookup of in cache if
240 name is null to allow correct exception to be thrown (in TypeBuilder
242 * TypeBuilder: Moved name argument check to TypeBuilder ctor. Modified
243 ArgumentException parameter names to match MS. Removed duplicate check
244 for data length from DefineInitializedData. Modified check_name to
245 only throw when first character is null char.
246 * ConstructorBuilder.cs (GetParameters): Throw NotSupportedException
247 (2.0) or InvalidOperationException (1.0) when type is not yet created
248 and we're not in compiler context. Return empty array when no
249 parameters are defined.
250 (MethodHandle): Always throw NotSupportedException.
251 (DefineParameter): Prevent NRE when parameters is null.
252 (GetCustomAttributes): When not in compiler context, always throw
253 NotSupportedException.
254 * ConstructorOnTypeBuilderInst.cs: Delegate to ConstructorBuilder
255 where possible. Fixed ContainsGenericParameters and IsGenericMethod
256 to always return false. In MethodBase.Invoke, throw an
257 InvalidOperationException instead of NIE.
259 2008-04-26 Gert Driesen <drieseng@users.sourceforge.net>
261 * MethodOnTypeBuilderInst.cs: Added overrides for ReturnType and
262 GetGenericMethodDefinition. Implement GetGenericArgument,
263 IsGenericMethod(Definition). Throw NotSupportedException instead of
264 NotImplementedException.
266 2008-04-26 Jb Evain <jbevain@novell.com>
268 * ILGenerator.cs, AssemblyBuilder.cs, TypeBuilder.cs:
269 replace usages of new Type [0] by Type.EmptyTypes.
272 2008-04-22 Zoltan Varga <vargaz@gmail.com>
274 * MethodOnTypeBuilderInst.cs ConstructorOnTypeBuilderInst: New files.
276 2008-03-29 Gert Driesen <drieseng@users.sourceforge.net>
278 * AssemblyBuilder.cs: Added enum that determines the type of the
279 native (version) resource. Added fields for holding the native
280 resource type and the version culture. The versioninfo_culture was
281 introduced to hold the original culture of the assembly, since
282 the AssemblyCultureAttribute should only affect the language of the
283 versioninfo block when not used in compiler context. Move constructin
284 of native version info to DefineVersionInfoResourceImpl to allow
285 attributes to affect the versioninfo after DefineVersionInfoResource
286 has been invoked. Allow ArgumentException for invalid culture string
287 to bubble up. In compiler context, use FileVersion as default value
288 for ProductionVersion.
290 2008-03-14 Zoltan Varga <vargaz@gmail.com>
292 * FieldOnTypeBuilderInst.cs: New file.
294 2008-03-11 Marek Safar <marek.safar@gmail.com>
296 * MethodBuilder.cs (GetGenericArguments): Returns Type.EmptyType.
298 2008-03-06 Zoltan Varga <vargaz@gmail.com>
300 * AssemblyBuilder.cs: Define GetManifestModule () for net 2.0 bootstrap too.
302 * DynamicMethod.cs: Create a dynamic assembly to hold the anon hosted methods.
304 * DynamicMethod.cs: Add net 3.5 ctor overloads.
306 * ModuleBuilder.cs (RegisterToken): New icall.
308 * MethodBuilder.cs (ctor): Call ModuleBuilder.RegisterToken (), so the token gets
309 added to the internal hash table. Fixes #367668.
311 * ConstructorBuilder.cs: Ditto.
313 2008-03-06 Jb Evain <jbevain@novell.com>
315 * SignatureHelper.cs (GetMethodSigHelper): if returnType
316 is null, use typeof (void) instead. Fixes #367663.
318 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
320 * MethodBuilder.cs (check_override): Added, verify if this method has explicit
321 override set and doesn't follow virtual settings of overriden method.
323 * TypeBuilder.cs (CreateType): Call MethodBuilder::check_override before
328 2008-01-29 Zoltan Varga <vargaz@gmail.com>
330 * ModuleBuilder.cs: Fix build.
332 * AssemblyBuilder.cs (GetTypes): Implement this entirely in managed code.
334 * ModuleBuilder.cs (GetTypes): Replace TypeBuilders with their created types to
337 * AssemblyBuilder.cs: Override GetModulesInternal () so we can return
340 2008-01-25 Zoltan Varga <vargaz@gmail.com>
342 * TypeBuilder.cs (GenerateDebugInfo): Emit debug info for nested types as well.
345 2008-01-21 Gert Driesen <drieseng@users.sourceforge.net>
347 * AssemblyBuilder.cs: Introduce magic value for AssemblyBuilderAccess
348 to signal usage from a compiler. On 2.0 profile, perform argument
349 check for access. Use AssemblyFlags passed in through AssemblyName
350 arguments. Modified SetCustomAttribute to only use the Assembly*
351 attribute for constructing the assembly name when used in compiler
352 context. Fixes corlib part of bug #354970.
354 2008-01-17 Zoltan Varga <vargaz@gmail.com>
356 * TypeBuilder.cs (GetConstructorImpl): Add back the code removed by the last
357 patch since it is needed when building mscorlib.
359 2008-01-16 Gert Driesen <drieseng@users.sourceforge.net>
361 * TypeBuilder.cs (GetConstructorImpl): Use GetConstructor on created
362 type. Original implementation did not take into account the binding
363 flags and failed with a NotSupportedException if the default binder
364 checked if a ParamArrayAttribute was defined. It also does not make
365 sense to return a ConstructorBuilder once the type is emitted.
366 (GetConstructors): When the type is emitted, use GetConstructors
368 (GetFields): Removed duplicate code.
369 (GetMethodsByName): Fixed matching of methods in the parent class
370 depending on their accessibility:
371 - Private: never include private methods of parent
372 - Public: ignore if Public flag is not set
373 - Assembly: ignore if NonPublic is not set or when on the 1.0 profile
374 - Rest (Family, FamANDAssem, FamORAssem): ignore if NonPublic flag is
376 Static methods of the parent are ignored unless the FlattenHierarchy
378 (GetProperties): When the type is emitted, use GetProperties on the
379 created type as the TypeBuilder implementation itself does not include
380 properties from the parent class.
382 2007-12-31 Gert Driesen <drieseng@users.sourceforge.net>
384 * AssemblyBuilder.cs (UnprotectedGetName): Set the public key token
387 2007-12-10 Zoltan Varga <vargaz@gmail.com>
389 * FieldBuilder.cs (GetToken): Use the MetadataToken property.
391 2007-11-20 Atsushi Enomoto <atsushi@ximian.com>
393 * GenericTypeParameterBuilder.cs : fixed regression.
394 GenericParameterAttributes also needs some special care.
396 2007-11-20 Atsushi Enomoto <atsushi@ximian.com>
398 * MethodBuilder.cs : implemented ContainsGenericParameters().
399 * GenericTypeParameterBuilder.cs : removed most of extra members
400 and added missing members for 2.0 API.
402 2007-11-18 Miguel de Icaza <miguel@novell.com>
404 * SignatureHelper.cs: Implement Equals and GetHashCode
406 2007-11-17 Miguel de Icaza <miguel@novell.com>
408 * SignatureHelper.cs: Preparational tasks to support the
409 AddArgument overloads that allow the specification of modopts and
412 Refactor code, add new parameters.
414 * SignatureHelper.cs (AddArguments): Add new 2.0 API, used by
415 new versions of the DLR. Currently does not have support for
416 modreq, modopts. Just a simple wrapper as consumed by the DLR.
418 2007-11-16 Atsushi Enomoto <atsushi@ximian.com>
420 * AssemblyBuilder.cs : added missing 2.0 member.
421 * DynamicMethod.cs : removed extra stuff.
422 * DynamicILInfo.cs : no public .ctor().
423 * ILGenerator.cs : fixed 2.0 member signatures.
425 2007-11-16 Atsushi Enomoto <atsushi@ximian.com>
427 * EnumBuilder.cs, TypeBuilder.cs : implemented missing 2.0
428 stuff, in harmless manner.
430 2007-11-16 Atsushi Enomoto <atsushi@ximian.com>
432 * ConstructorBuilder.cs : added CallingConvention.
434 2007-11-16 Atsushi Enomoto <atsushi@ximian.com>
436 * SignatureHelper.cs : Module can be null, and for non-
437 ModuleBuilder argument, throw ArgumentException.
438 Added missing 2.0 stuff.
440 2007-11-08 Rodrigo Kumpera <rkumpera@novell.com>
442 * TypeBuilder.cs: Workaround for #82625 not needed anymore.
443 GetFields() returns the created type fields.
445 2007-10-15 Gert Driesen <drieseng@users.sourceforge.net>
447 * ILGenerator.cs: Added missing null checks. Removed extra tabs.
449 2007-09-23 Gert Driesen <drieseng@users.sourceforge.net>
451 * AssemblyBuilder.cs: Added missing paramname to ArgumentExceptions.
452 Use String.Length to check for zero-length string.
454 2007-09-23 Zoltan Varga <vargaz@gmail.com>
456 * AssemblyBuilder.cs (GetManifestModule): Return a ModuleBuilder here to
459 2007-09-22 Gert Driesen <drieseng@users.sourceforge.net>
461 * TypeBuilder.cs: Do not include static methods of base class in
462 GetMethod(s). Fixes bug #327482.
464 2007-09-14 Zoltan Varga <vargaz@gmail.com>
466 * AssemblyBuilder.cs (DefineVersionInfoResource): Allow the arguments to be
469 2007-09-11 Jb Evain <jbevain@novell.com>
471 * DynamicMethod.cs: store the owner of the DynamicMethod.
473 2007-09-09 Zoltan Varga <vargaz@gmail.com>
475 * AssemblyBuilder.cs (DefineUnmanagedResource): Open file read-only. Fixes
478 2007-09-02 Zoltan Varga <vargaz@gmail.com>
480 * TypeBuilder.cs: Add a workaround for #82625 to make nemerle work again.
482 2007-08-29 Gert Driesen <drieseng@users.sourceforge.net>
484 * AssemblyBuilder.cs: In DefineIconResource, open icon in read-only
485 mode. Fixes bug #82617.
487 2007-08-17 Rolf Bjarne Kvinge <RKvinge@novell.com>
489 * 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.
491 2007-08-10 Zoltan Varga <vargaz@gmail.com>
493 * DynamicILInfo.cs: New file.
495 * DynamicMethod.cs (GetDynamicILInfo): New 2.0 method.
497 2007-07-11 Rodrigo Kumpera <rkumpera@novell.com>
499 * 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.
501 2007-07-10 Zoltan Varga <vargaz@gmail.com>
503 * OpCodeType.cs EventToken.cs FieldToken.cs SignatureToken.cs PackingSize.cs
504 StringToken.cs AssemblyBuilderAccess.cs FlowControl.cs MethodToken.cs
505 ParameterToken.cs TypeToken.cs PropertyToken.cs OperandType.cs PEFileKinds.cs
506 StackBehaviour.cs: 2.0 updates.
508 2007-07-07 Gert Driesen <drieseng@users.sourceforge.net>
510 * MethodBuilder.cs: Code formatting. Spaces to tabs.
511 * TypeBuilder.cs: Same.
513 2007-07-06 Gert Driesen <drieseng@users.sourceforge.net>
515 * TypeBuilder.cs: Throw InvalidOperationException when attempting to
516 construct non-abstract interface without base type. Modified SetParent
517 to match MS: in 2.0 profile, throw InvalidOperationException when
518 parent is null and TypeBuilder is non-abstract interface. When
519 parent is null and TypeBuilder is not an interface, then set object
520 as parent. In 1.0 profile, throw ArgumentNullException when parent is
523 2007-07-06 Gert Driesen <drieseng@users.sourceforge.net>
525 * TypeBuilder.cs: Implemented IsCOMObjectImpl.
527 2007-07-04 Atsushi Enomoto <atsushi@ximian.com>
529 * DynamicMethod.cs : 2.0 API fix.
531 2007-06-21 Zoltan Varga <vargaz@gmail.com>
533 * DynamicMethod.cs: Applied patch from Robert Jordan (robertj@gmx.net). Add
534 a destructor which frees the runtime data for the method.
536 2007-05-21 Gert Driesen <drieseng@users.sourceforge.net>
538 * TypeBuilder.cs: Changed HasElementTypeImpl to return false on 2.0
539 profile when type is not baked.
541 2007-05-21 Jb Evain <jb@nurv.fr>
545 Tag methods and types as HasSecurity when adding a
546 SuppressUnmanagedCodeSecurityAttribute on them.
547 Makes peverify happy.
549 2007-05-16 Gert Driesen <drieseng@users.sourceforge.net>
551 * TypeBuilder.cs (GetField): Return MonoField instance if the type is
552 already created. Fixed other part of bug #81368.
554 2007-05-16 Zoltan Varga <vargaz@gmail.com>
556 * TypeBuilder.cs (GetFields): Return MonoField objects if the type is already
559 * FieldBuilder.cs (SetValue): Make this not supported again.
561 * FieldBuilder.cs: Support calling SetValue (). Fixes #81638.
563 2007-05-06 Zoltan Varga <vargaz@gmail.com>
565 * TypeBuilder.cs (CreateType): Fix build.
567 * TypeBuilder.cs (.ctor): Convert null parent to typeof (object). Fixes #81530.
569 * TypeBuilder.cs (UnderlyingSystemType): Remove commented out code.
571 2007-04-15 Alp Toker <alp@atoker.com>
573 * ConstructorBuilder.cs: Make use of
574 ConstructorInfo.TypeConstructorName/ConstructorName.
576 2007-04-09 Alp Toker <alp@atoker.com>
578 * ConstructorBuilder.cs: Remove redundant overrides.
580 2007-04-03 Marek Safar <marek.safar@gmail.com>
582 * OpCodes.cs: Removed obsolete opcodes.
584 2007-04-03 Alp Toker <alp@atoker.com>
586 * GenericTypeParameterBuilder.cs: SetInterfaceConstraints(Type[]) is
588 * MethodBuilder.cs: MakeGenericMethod(Type[]) is params.
590 2007-03-19 Marek Safar <marek.safar@gmail.com>
592 * MethodBuilder.cs: MethodImplAttribute cannot be destructive and overwrite
595 2007-03-17 Marek Safar <marek.safar@gmail.com>
597 * MethodBuilder.cs: Implemented conversion of PreserveSigAttribute pseudo
600 2007-03-17 Zoltan Varga <vargaz@gmail.com>
602 * ILGenerator.cs (Emit): Disallow ldtoken on a DynamicMethod as well.
604 * ILGenerator.cs (Emit): Do not allow ldftn on a DynamicMethod to be
605 compatible with MS.NET. Fixes #81157.
607 2007-03-13 Miguel de Icaza <miguel@novell.com>
609 * OpCode.cs: Add a couple of operators for jsc.sf.net
611 2007-03-12 Zoltan Varga <vargaz@gmail.com>
613 * DynamicMethod.cs: Add a field used by unmanaged code.
615 2007-03-06 Rolf Bjarne Kvinge <RKvinge@novell.com>
617 * MonoArrayMethod.cs: Use 'void' as return type in ToString when
618 the return type is null. Fixes #80435.
620 2007-03-06 Gert Driesen <drieseng@users.sourceforge.net>
622 * EnumBuilder.cs: On 2.0 profile, using current EnumBuilder as
623 field type in DefinedLiteral. Fixes bug #81007.
625 2007-02-25 Marek Safar <marek.safar@gmail.com>
627 * MethodBuilder.cs: Empty string is not allowed for DllImport name.
629 2007-02-13 Marek Safar <marek.safar@gmail.com>
631 * ModuleBuilder.cs: Add GetRegisteredType to expose name_cache for internal
634 * TypeBuilder.cs: Optimized generation of unmanaged data helpers.
635 An unmanaged data class helper can be re-used when its size matches to
636 size of requested class.
638 2007-01-25 Radek Doulik <rodo@novell.com>
640 * ModuleBuilder.cs: return created type from GetType in case the
641 type builder type was already created. Added test-555.cs as
644 Tue Jan 23 17:45:07 CET 2007 Paolo Molaro <lupus@ximian.com>
646 * ModuleBuilder.cs, AssemblyBuilder.cs: mark the GC-tracked field
649 2007-01-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
651 * EnumBuilder.cs: value__ must have RTSpecialName flag set.
654 Fri Dec 22 19:42:56 CET 2006 Paolo Molaro <lupus@ximian.com>
656 * ModuleBuilder.cs: associate a resource writer with its
657 actual resource (bug #80339).
659 2006-10-06 Miguel de Icaza <miguel@novell.com>
661 * AssemblyBuilder.cs: Am doing a try/catch for pulling the LCID
662 from the AssemblyCulture that is provided, as Microsoft allows
663 arbitrary locales (even non-existing ones) to be specified.
665 The .locale information is actually pulled from the AssemblyName,
666 not from this lcid. But this LCID is used to encode the
667 resource. In my exploration of this, we are setting this field,
668 even if CSC never sets the field itself (its always zero).
670 Maybe we should completely remove this.
672 2006-09-12 Mart Roosma <roosma@gmail.com>
674 * DynamicMethod.cs: Allow empty name and null return type.
677 2006-09-05 Miguel de Icaza <miguel@novell.com>
679 * TypeBuilder.cs (SetParent): Null parent is allowed for
682 2006-09-02 Zoltan Varga <vargaz@gmail.com>
684 * DynamicMethod.cs: Fix a warning.
686 * TypeBuilder.cs: Allow static methods on interfaces. Fixes #79249.
688 2006-08-18 Zoltan Varga <vargaz@gmail.com>
690 * *.cs: Use String.Empty instead of "" in a lot of places.
692 2006-07-14 Zoltan Varga <vargaz@gmail.com>
694 * ConstructorBuilder.cs (GetILGenerator): Avoid creating a new ILGenerator each time
695 this is called. Fixes #78859.
697 2006-07-11 Zoltan Varga <vargaz@gmail.com>
699 * MethodBuilder.cs (SetCustomAttribute): Fix handling of SpecialNameAttribute.
701 2006-07-09 Gert Driesen <drieseng@users.sourceforge.net>
703 * DynamicMethod.cs: Fix check for empty method body, avoids SIGSEV.
705 2006-07-08 Zoltan Varga <vargaz@gmail.com>
707 * DynamicMethod.cs: Create all other DynamicMethod's referenced by
708 this method as well. Check for an empty method body.
710 * ILGenerator.cs (Emit): Handle DynamicMethod's which might not have a
713 2006-05-15 Zoltan Varga <vargaz@gmail.com>
715 * AssemblyBuilder.cs (MonoResource): Add a 'stream' field.
717 * ModuleBuilder.cs (DefineManifestResource): Add new net 2.0 method.
719 2006-04-26 Miguel de Icaza <miguel@novell.com>
721 * MethodBuilder.cs: better error messages when we close the
724 2006-03-28 Marek Safar <marek.safar@seznam.cz>
726 * ILGenerator.cs: Delayed the exception stack creation. It saves ~1.5 MB
727 for corlib compilation.
729 2006-03-27 Marek Safar <marek.safar@seznam.cz>
731 * ILGenerator.cs: Tune up label defaults, switched to double resizing.
733 2006-03-15 Zoltan Varga <vargaz@gmail.com>
735 * AssemblyBuilder.cs (AddTypeForwarder): New internal method for
736 adding type forwarders to an assembly.
738 2006-02-27 Gert Driesen <drieseng@users.sourceforge.net>
740 * ConstructorBuilder.cs: In AddDeclarativeSecurity, throw an
741 ArgumentOutOfRangeException instead of an ArgumentException if action
742 is a Request* action. Fixes bug #77640.
743 * MethodBuilder.cs: Same.
744 * TypeBuilder.cs: Same.
746 Mon Feb 27 17:12:40 CET 2006 Paolo Molaro <lupus@ximian.com>
748 * ModuleBuilder.cs: unlink the file before saving
749 otherwise we might overwrite a file mmapped by the runtime.
751 2006-02-17 Zoltan Varga <vargaz@gmail.com>
753 * DynamicMethod.cs: Implement DefineParameter ().
755 * ParameterBuilder.cs: Add support for DynamicMethod parents.
757 2006-02-15 Martin Baulig <martin@ximian.com>
759 * TypeBuilder.cs (TypeBuilder.DefineMethod): Also enable the
760 2-argument version in the `BOOTSTRAP_NET_2_0' profile.
761 (TypeBuilder.DefineGenericMethod): Removed.
763 2006-02-14 Martin Baulig <martin@ximian.com>
765 * ConstructorBuilder.cs
766 (ConstructorBuilder.IsGenericMethod): Override this and return
767 false; the MS runtime doesn't throw an exception here.
768 (ConstructorBuilder.IsGenericMethodDefinition): Likewise.
771 (MethodBuilder.IsGenericMethod): Implement this.
772 (MethodBuilder.IsGenericMethodDefinition): Likewise.
774 2006-02-03 Zoltan Varga <vargaz@gmail.com>
776 * TypeBuilder.cs (CreateType): Add a check for Sealed parents.
778 2006-02-01 Zoltan Varga <vargaz@gmail.com>
780 * OpCodes.cs: Readonly is a net 2.0 only field.
782 Tue Jan 31 13:37:02 CET 2006 Paolo Molaro <lupus@ximian.com>
784 * OpCodes.cs: Added Readonly field.
786 2006-01-29 Raja R Harinath <harinath@gmail.com>
788 * GenericTypeParameterBuilder.cs (DeclaringType): Return the
789 declaring type of a generic method.
791 2005-12-15 Raja R Harinath <rharinath@novell.com>
793 * TypeBuilder.cs (IsGenericType): Implement override.
795 2005-12-07 Martin Baulig <martin@ximian.com>
797 * GenericTypeParameterBuilder.cs: Add support for custom attributes.
798 (GenericTypeParameterBuilder.cattrs): New field.
799 (GenericTypeParameterBuilder.SetCustomAttribute): Implement this.
801 Mon Dec 5 15:13:26 CET 2005 Paolo Molaro <lupus@ximian.com>
803 * ILGenerator.cs: fixed emitting doubles on ARM.
805 2005-12-02 Alp Toker <alp@atoker.com>
807 * GenericTypeParameterBuilder.cs:
808 * TypeBuilder.cs: DeclaringMethod should return MethodBase, not MethodInfo
810 2005-11-19 Zoltan Varga <vargaz@gmail.com>
812 * AssemblyBuilder.cs: Add support for setting FileVersion unmanaged
813 resource. Fixes #64427.
815 2005-11-18 Zoltan Varga <vargaz@gmail.com>
817 * ParameterBuilder.cs (SetCustomAttribute): Handle DefaultParameterValueAttribute as well.
819 * CustomAttributeBuilder.cs: Add support for decoding more types of
820 constructor parameters.
822 2005-11-11 Zoltan Varga <vargaz@gmail.com>
824 * TypeBuilder.cs (SetCustomAttribute): Handle ComImportAttribute as well.
826 2005-11-11 Marek Safar <marek.safar@seznam.cz>
828 * EnumBuilder.cs, GenericTypeParameterBuilder.cs: Reflect Type changes.
830 2005-11-06 Zoltan Varga <vargaz@freemail.hu>
832 * Label.cs: Add == and != operators.
834 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
836 * FieldBuilder.cs: Add implementation of new UMarshal property.
838 2005-10-27 Zoltan Varga <vargaz@gmail.com>
840 * FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Add support for
841 returing custom attributes in created types. MS.NET supports this by
842 returning non-builder objects from GetMethod/GetField etc., but we return
843 builder objects in this case. Fixes #76521.
845 2005-10-24 Martin Baulig <martin@ximian.com>
847 * TypeBuilder.cs (TypeBuilder.IsGenericTypeDefinition): Override this.
849 2005-10-03 Atsushi Enomoto <atsushi@ximian.com>
851 * CustomAttributeBuilder.cs : internal attributes should be allowed.
854 2005-09-26 Marek Safar <marek.safar@seznam.cz>
856 * PropertyBuilder.cs: Throw NotSupportedException for unsupported
859 2005-09-14 Martin Baulig <martin@ximian.com>
862 (LocalBuilder.Mono_GetLocalIndex): New static internal method;
863 same as the .NET 2.0 property `LocalIndex'.
865 Mon Sep 5 18:08:09 CEST 2005 Paolo Molaro <lupus@ximian.com>
867 * EventBuilder.cs, FieldBuilder.cs, MethodBuilder.cs, TypeBuilder.cs,
868 PropertyBuilder.cs: take care of the SpecialName attribute (bug #75768).
870 2005-09-01 Raja R Harinath <rharinath@novell.com>
872 * CustomAttributeBuilder.cs (get_umarshal): Don't cause a nullref
873 exception when passed a custom marshaller type that belongs to the
874 assembly being built. When user specifies MarshalType rather than
875 MarshalTypeRef, don't attempt to resolve the type.
877 2005-08-31 Raja R Harinath <rharinath@novell.com>
879 * CustomAttributeBuilder.cs (get_umarshal): Fix typo. The name of
880 the field is "SizeParamIndex", not "SizeSizeParamIndex".
882 * ParameterBuilder.cs (SetCustomAttribute) [MarshalAsAttribute]:
883 Set ParameterAttributes.HasFieldMarshal flag.
885 2005-08-19 Zoltan Varga <vargaz@freemail.hu>
887 * DynamicMethod.cs (CreateDelegate): Don't cache the delegate since it
888 needs to be different for each target.
890 * DynamicMethod.cs (CreateDynMethod): Call ilgen.label_fixup ().
892 * DynamicMethod.cs (AddRef): Reserve every second ref slot for use by the
895 2005-08-05 Gert Driesen <drieseng@users.sourceforge.net>
897 * AssemblyBuilder.cs: Implement _AssemblyBuilder, CA fixes to
898 correspond with MS.NET
899 * ConstructorBuilder.cs: Implement _ConstructorBuilder, CA fixes to
900 correspond with MS.NET
901 * CustomAttributeBuilder.cs: Implement _CustomAttributeBuilder, CA
902 fixes to correspond with MS.NET
903 * EnumBuilder.cs: Implement _EnumBuilder, CA fixes to correspond with
905 * EventBuilder.cs: Implement _EventBuilder, CA fixes to correspond
907 * FieldBuilder.cs: Implement _FieldBuilder, CA fixes to correspond
909 * LocalBuilder.cs: Implement _LocalBuilder, CA fixes to correspond
911 * MethodBuilder.cs: Implement _MethodBuilder, CA fixes to correspond
913 * MethodRental.cs: CA fixes to correspond with MS.NET, implemented
915 * ModuleBuilder.cs: Implement _ModuleBuilder, CA fixes to correspond
917 * ILGenerator.cs: Implement _ILGenerator, CA fixes to correspond
919 * ParameterBuilder.cs Implement _ParameterBuilder, CA fixes to
920 correspond with MS.NET
921 * PropertyBuilder.cs: Implement _PropertyBuilder, CA fixes to
922 correspond with MS.NET
923 * SignatureHelper.cs: Implement _SignatureHelper, CA fixes to
924 correspond with MS.NET
925 * TypeBuilder.cs: Implement _TypeBuilder, CA fixes to correspond
928 2005-07-21 Jb Evain <jbevain@gmail.com>
930 * ILGenerator.cs: Implement filter blocks support.
933 2005-07-21 Zoltan Varga <vargaz@freemail.hu>
935 * ILGenerator.cs (BeginFaultBlock): Call InternalEndClause () here
936 too. Reported by Jeroen Frijters.
938 2005-07-11 Martin Baulig <martin@ximian.com>
940 * TypeBuilder.cs (TypeBuilder.CreateType): Call
941 create_generic_class() here as well; fixes #75454.
943 2005-06-27 Marek Safar <marek.safar@seznam.cz>
945 * TypeBuilder.cs (check_name): Wrong exception argument order.
947 2005-06-14 Sebastien Pouliot <sebastien@ximian.com>
949 * AssemblyBuilder.cs: Override UnprotectedGetName to set the public
952 2005-06-12 Gert Driesen <drieseng@users.sourceforge.net>
954 * MethodBuilder.cs: In CreateMethodBody, throw
955 ArgumentOutOfRangeException instead of ArgumentException when count
956 is not within range of array. Do not allow zero length method body
957 to be emitted when using 2.0 profile. Fixes bug #75236.
959 2005-06-12 Gert Driesen <drieseng@users.sourceforge.net>
961 * FieldBuilder.cs: FieldBuilder.FieldHandle should throw
962 NotSupportedException to match MS.NET (both 1.x and 2.x).
963 Fixes regression introduced in r45750.
964 * MethodBuilder.cs: MethodBuilder.MethodHandle should throw
965 NotSupportedException to match MS.NET (both 1.x and 2.x).
966 Fixes regression introduced in r45750.
968 2005-06-09 Kamil Skalski <nazgul@nemerle.org>
969 * ConstructorBuilder.cs FieldBuilders.cs MethodBuilder.cs: Return
970 RuntimeHandles when requested
972 * TypeBuilder.cs: Add static Get{Method,Constructor,Field} methods
973 from .NET 2.0 beta 2 API for obtaining instanciated *Info objects
974 from non-instanciated counterparts
976 2005-06-08 Zoltan Varga <vargaz@freemail.hu>
978 * ConstructorBuilder.cs FieldBuilder.cs MethodBuilder.cs PropertyBuilder.cs:
979 Add 2.0 Module property.
981 * *.cs: Updates for net 2.0 beta 2.
983 2005-06-07 Zoltan Varga <vargaz@freemail.hu>
985 * *Token.cs: Add net 2.0 Equals methods.
987 * *.cs: Updates for net 2.0 beta 2.
989 * *.cs: Updates for net 2.0 beta 2.
991 2005-06-06 Zoltan Varga <vargaz@freemail.hu>
993 * AssemblyBuilder.cs: Update after PortableExecutableKinds name change.
995 2005-06-03 Zoltan Varga <vargaz@freemail.hu>
997 * MethodBuilder.cs CustomAttributeBuilder.cs: Rework DllImportAttribute
998 decoding to improve compatibility with MS.NET.
1000 * MethodBuilder.cs (SetCustomAttribute): Set PinvokeImpl attribute if
1001 a DllImportAttribute is present.
1003 2005-06-02 Zoltan Varga <vargaz@freemail.hu>
1005 * MethodBuilder.cs (SetCustomAttribute): Handle the case when the
1006 calling convention inside the DllImportAttribute is empty.
1008 2005-06-01 Zoltan Varga <vargaz@freemail.hu>
1010 * MethodBuilder.cs (SetCustomAttribute): Handle DllImportAttribute
1013 * CustomAttributeBuilder.cs: Add a decode_cattr helper method.
1015 2005-05-27 Vladimir Vukicevic <vladimir@pobox.com>
1017 * MethodBuilder.cs: Add extra_flags field to encode P/Invoke
1018 bits that can't be specified via MethodBuilder directly; fixes
1021 2005-05-25 Zoltan Varga <vargaz@freemail.hu>
1023 * GenericTypeParameterBuilder.cs: Return this in UnderlyingSystemType.
1025 2005-05-25 Lluis Sanchez Gual <lluis@novell.com>
1027 * ModuleBuilder.cs: Implemented DefineDocument(). Generate debug
1028 info when saving the module.
1029 * ILGenerator.cs: Keep marked sequence points in a list.
1030 Added a GenerateDebugInfo method, which dumps the info collected
1031 during code generation.
1033 * ConstructorBuilder.cs:
1034 * MethodBuilder.cs: Added method for generating debug info.
1035 * LocalBuilder.cs: Added StartOffset and EndOffset properties.
1036 * CustomAttributeBuilder.cs: Use IsInstanceOfType instead of
1037 IsAssignableFrom when possible.
1039 2005-05-20 Miguel de Icaza <miguel@novell.com>
1041 * TypeBuilder.cs (UnderlyingSystemType): should always return this
1042 according to Zoltan. Old code left there, but should probably be removed.
1044 2005-05-13 Zoltan Varga <vargaz@freemail.hu>
1046 * MethodBuilder.cs (fixup): Take into account CreateMethodBody as
1049 * ConstructorBuilder.cs MethodBuilder.cs: Check that elements of
1050 parameterTypes are not null. Fixes #74928.
1052 2005-05-12 Zoltan Varga <vargaz@freemail.hu>
1054 * ConstructorBuilder.cs MethodBuilder.cs (fixup): Fix this.
1056 * ConstructorBuilder.cs MethodBuilder.cs (fixup): Throw an exception if a
1057 method body is empty. Fixes #74906.
1059 2005-04-13 Marek Safar <marek.safar@seznam.cz>
1061 * TypeBuilder.cs (SetCustomAttribute): StructLayoutAttribute.CharSet
1062 has to overwrite current settings.
1064 2005-04-05 Sebastien Pouliot <sebastien@ximian.com>
1066 * AssemblyBuilder.cs: Don't call GetCurrentDirectory if building an
1067 assembly that will never be serialized to disk (because CAS may not
1068 allow disk access but still allow generating a in-memory assembly).
1070 2005-03-24 Miguel de Icaza <miguel@novell.com>
1072 * DynamicMethod.cs (CreateDelegate): Add second overload based on
1073 the first one that allows for a `target' argument.
1075 2005-03-24 Sebastien Pouliot <sebastien@ximian.com>
1077 * MethodRental.cs: Added Demand for UnmanagedCode on SwapMethodBody
1080 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
1082 * MethodBuilder.cs: Add internal BestFitMapping and
1083 ThrowOnUnmappableChar properties used by mcs.
1085 2005-03-09 Marek Safar <marek.safar@seznam.cz>
1087 * ILGenerator.cs (DeclareLocal): Throw an exception for null argument.
1089 2005-03-01 Zoltan Varga <vargaz@freemail.hu>
1091 * CustomAttributeBuilder.cs UnmanagedMarshal.cs: Allow sizeConst and
1092 sizeParamIndex to be -1, which means they are not given.
1094 * CustomAttributeBuilder.cs (get_umarshal): Only call the internal
1095 LPArray creation method if sizeConst of sizeParamIndex is given.
1097 * UnmanagedMarshal.cs: Add has_size field.
1099 2005-02-28 Zoltan Varga <vargaz@freemail.hu>
1101 * CustomAttributeBuilder.cs (get_umarshal): Marshal sizeConst and
1102 sizeParamIndex fields as well.
1104 * UnmanagedMarshal.cs: Add param_num field and a new internal creation
1105 method which sets it.
1107 2005-02-11 Zoltan Varga <vargaz@freemail.hu>
1109 * TypeBuilder.cs (IsAssignableTo): New helper method. Fixes #70838.
1111 * TypeBuilder.cs: Fix warning.
1113 2005-01-21 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
1115 * MethodBuilder.cs, TypeBuilder: missing 'params' in some method signature
1116 patch by Kamil Skalski <nazgul@nemerle.org>
1118 2005-01-18 Geoff Norton <gnorton@customerdna.com>
1120 * ModuleBuilder.cs: Interfaces should have null BaseType.
1123 2005-01-18 Miguel de Icaza <miguel@ximian.com>
1125 * TypeBuilder.cs: Add check for creation. Fix from Geoff.
1127 2004-12-16 Zoltan Varga <vargaz@freemail.hu>
1129 * CustomAttributeBuilder.cs: Fix a warning.
1131 Wed Dec 15 11:34:13 CET 2004 Paolo Molaro <lupus@ximian.com>
1133 * ModuleBuilder.cs, EnumBuilder.cs: actually add the enumbuilder
1134 to the type list of the module (bug#70488).
1136 2004-12-09 Martin Baulig <martin@ximian.com>
1138 * GenericTypeParameterBuilder.cs
1139 (GenericTypeParameterBuilder.IsValueType): Fixed the FIXME.
1141 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
1143 * AssemblyBuilder.cs: Move corlib_internal field here from Assembly.
1145 * AssemblyBuilder.cs: Add corlib_internal to the ctor parameters.
1147 2004-12-06 Ben Maurer <bmaurer@ximian.com>
1149 * TypeBuilder.cs (CreateType): Creating a type twice does not
1152 2004-11-22 Zoltan Varga <vargaz@freemail.hu>
1154 * ModuleBuilder.cs: Check that all types inside the module are created.
1157 2004-11-13 Ben Maurer <bmaurer@ximian.com>
1159 * ModuleBuilder.cs (Save): Use new WriteToFile icall.
1161 2004-11-04 Zoltan Varga <vargaz@freemail.hu>
1163 * TypeBuilder.cs: Make some members work if the type is created since
1166 2004-10-30 Zoltan Varga <vargaz@freemail.hu>
1168 * CustomAttributeBuilder.cs: Check that arguments are not
1169 multi-dimensional arrays.
1171 2004-10-12 Martin Baulig <martin@ximian.com>
1173 * TypeBuilder.cs (TypeBuilder.setup_generic_class): Renamed to
1174 create_generic_class() and added a new setup_generic_class().
1175 (TypeBuilder.DefineGenericParameters): Call setup_generic_class()
1176 before creating the type parameters.
1178 2004-10-11 Martin Baulig <martin@ximian.com>
1180 * TypeBuilder.cs (TypeBuilder.generic_container): New private field.
1182 * MethodBuilder.cs (MethodBuilder.generic_container): New private field.
1184 * GenericTypeParameterBuilder.cs
1185 (GenericTypeParameterBuilder.GetGenericTypeParameterConstraints):
1186 Return `Type.EmptyTypes' instead of an array of `typeof (object)'.
1188 2004-10-08 Zoltan Varga <vargaz@freemail.hu>
1190 * ModuleBuilder.cs: Create global type after creation.
1192 2004-10-06 Zoltan Varga <vargaz@freemail.hu>
1194 * ModuleBuilder.cs (GetTypes): Fix length of returned array. Fixes
1197 2004-10-04 Zoltan Varga <vargaz@freemail.hu>
1199 * ModuleBuilder.cs (DefineType): Check for duplicate type names. Fixes
1202 2004-10-03 Zoltan Varga <vargaz@freemail.hu>
1204 * AssemblyBuilderAccess.cs: Remove [Flags].
1206 * PackingSize.cs: Add new 2.0 members. Remove [Flags].
1208 * AssemblyBuilder.cs: Add net 2.0 Save method.
1210 * LocalBuilder.cs: Make this inherit from LocalVariableInfo under
1211 net 2.0. Reorganize fields so the layout visible to the runtime is the
1212 same under 1.0 and 2.0. Add 2.0 properties.
1214 2004-10-02 Gert Driesen <drieseng@users.sourceforge.net>
1216 * TypeBuilder.cs: throw NotSupportedException when defining default
1217 ctor if parent type does not have default ctor
1219 2004-09-30 Zoltan Varga <vargaz@freemail.hu>
1221 * TypeBuilder.cs: Make 'created' field visible to the runtime.
1223 2004-09-28 Martin Baulig <martin@ximian.com>
1225 * GenericTypeParameterBuilder.cs
1226 (GenericTypeParameterBuilder.ContainsGenericParameters): Return
1227 true here; System.Type.ContainsGenericParameters returns true when
1228 called on a type parameter, so let's do the same here.
1230 2004-09-27 Zoltan Varga <vargaz@freemail.hu>
1232 * ConstructorBuilder.cs: Add 2.0 GetILGenerator(size) method.
1234 2004-09-26 Zoltan Varga <vargaz@freemail.hu>
1236 * UnmanagedMarshal.cs: Add ToMarshalAsAttribute method.
1238 2004-09-25 Zoltan Varga <vargaz@freemail.hu>
1240 * TypeBuilder.cs: Add IsCreated method.
1242 2004-09-24 Zoltan Varga <vargaz@freemail.hu>
1244 * FieldBuilder.cs: Add dummy GetFieldOffset method.
1246 2004-09-24 Martin Baulig <martin@ximian.com>
1248 * GenericTypeParameterBuilder.cs
1249 (GenericTypeParameterBuilder.GetGenericParameterConstraints): Override.
1251 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
1253 * DynamicMethod.cs: Add MetadataToken property and tweak Module property.
1255 2004-09-23 Martin Baulig <martin@ximian.com>
1257 * GenericTypeParameterBuilder.cs
1258 (GenericTypeParameterBuilder.SetGenericParameterAttributes): New
1259 public method, replaces the old Mono_* hacks.
1261 2004-09-20 Sebastien Pouliot <sebastien@ximian.com>
1263 * AssemblyBuilder.cs: Fixed assembly-level permissions. I don't know
1264 why I splitted them all into individual entries when only a single set
1265 is accepted for each security action :(.
1267 2004-09-17 Zoltan Varga <vargaz@freemail.hu>
1269 * CustomAttributeBuilder.cs: Applied patch from Marcus Urban
1270 (mathpup@mylinuxisp.com). Add support for defining custom
1271 marshallers by calling SetCustomAttribute.
1273 2004-09-16 Sebastien Pouliot <sebastien@ximian.com>
1275 * AssemblyBuilder.cs: Keep a copy of the 3 permission set as an array
1276 of RefEmitPermissionSet. This will allow to reuse existing
1277 functionalities already present in the runtime.
1279 2004-09-12 Marek Safar <marek.safar@seznam.cz>
1281 * TypeBuilder.cs: Do not create default constructor for
1284 2004-09-09 Zoltan Varga <vargaz@freemail.hu>
1286 * TypeBuilder.cs: Set the table_idx of the global type to 1.
1288 * ModuleBuilder.cs: Save the main module of the assembly even if it is
1291 2004-09-02 Ben Maurer <bmaurer@users.sourceforge.net>
1293 * LocalBuilder.cs: another s.ioe
1295 2004-09-02 Ben Maurer <bmaurer@users.sourceforge.net>
1297 * ModuleBuilder.cs: dont throw an S.IOE for debugging stuff.
1300 2004-09-02 Martin Baulig <martin@ximian.com>
1302 * MethodBuilder.cs (MethodBuilder.GetParameters): Throw a
1303 NotSupportedException() until the type has been fully created.
1305 2004-09-01 Martin Baulig <martin@ximian.com>
1307 * IMonoSymbolWriter.cs: Removed.
1309 * ModuleBuilder.cs, LocalBuilder.cs, ILGenerator.cs: Removed the
1312 2004-08-13 Sebastien Pouliot <sebastien@ximian.com>
1314 * AssemblyBuilder.cs: (Partly) Fix delay-signing issue (#56621) when
1315 MCS is used on the MS runtime (other part of the fix is for MCS).
1317 2004-08-11 Marek Safar <marek.safar@seznam.cz>
1319 * AssemblyBuilder.cs: Added AddPermissionRequests method
1320 used be mcs for SecurityPermissionAttribute handling.
1322 2004-08-08 Zoltan Varga <vargaz@freemail.hu>
1324 * EnumBuilder.cs: Call setup_enum_type () in the constructor. Fixes
1327 2004-08-07 Jackson Harper <jackson@ximian.com>
1329 * AssemblyBuilder.cs: "neutral" culture is invariant culture
1332 2004-08-07 Atsushi Enomoto <atsushi@ximian.com>
1334 * OpCodes.cs : csc complains CS1034 Line cannot exceed 2046 characters.
1336 2004-08-05 Duncan Mak <duncan@ximian.com>
1338 * OpCodes.cs (TakesSingleByteArgument): Add this back.
1340 2004-08-05 Duncan Mak <duncan@ximian.com>
1342 This patch is based on an idea of Ben's to reduce the code size
1345 * OpCodes.cs: Instead pushing the data onto the stack when each
1346 OpCode is initialized, pack the data into 2 ints and store only
1347 that. Furthermore, the names of each OpCode are stored in a
1348 separate string array in the new OpCodeNames class.
1350 * OpCodeNames.cs: The names of each OpCode are moved here to delay
1351 the initialization of the strings, as they are not used frequently.
1353 * OpCode.cs: Rewrote this to take in everything as 2 ints.
1355 2004-07-29 Martin Baulig <martin@ximian.com>
1357 * ILGenerator.cs (ILGenerator.Mono_GetCurrentOffset): New static
1360 * ModuleBuilder.cs (ModuleBuilder.Mono_GetGuid): New static
1363 2004-07-24 Martin Baulig <martin@ximian.com>
1365 * TypeBuilder.cs (TypeBuilder.UnspecifiedTypeSize): Set this to 0
1366 and initialize it to 0 everywhere.
1368 2004-07-22 Martin Baulig <martin@ximian.com>
1370 * ILGenerator.cs (ILGenerator.BeginFaultBlock): Implemented.
1372 2004-07-07 Miguel de Icaza <miguel@ximian.com>
1374 * LocalBuilder.cs: Remove MakePinned, we are now going to use
1375 ILGenerator.DeclaraLocal that takes the `bool pinned' argument.
1377 * ILGenerator.cs (DeclareLocal): Add `pinned' version of the
1378 method on the 2.0 profile.
1380 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
1382 * EnumBuilder.cs (CreateType): Call a new icall to set the internal
1383 type field. Fixes #59833.
1385 Thu Jun 24 15:33:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
1387 * ParameterBuilder.cs: implement SetConstant ().
1389 Wed Jun 23 15:40:48 CEST 2004 Paolo Molaro <lupus@ximian.com>
1391 * TypeBuilder.cs: handle properly the case when SetParent()
1392 is called (requires an updated runtime, too bug#60474).
1394 Wed Jun 23 14:20:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
1396 * EnumBuilder.cs, TypeBuilder.cs: patch from Gert Driesen
1397 to implement EnumBuilder (slightly tweaked).
1399 2004-06-15 Gert Driesen <drieseng@users.sourceforge.net>
1401 * MethodRental.cs: fixed value of JitOnDemand
1403 2004-06-09 Gert Driesen <drieseng@users.sourceforge.net>
1405 * FieldBuilder.cs: fixed implementation to match MS.NET,
1406 meaning throw InvalidOperationException for methods that
1407 should not be allowed to execute when type has been
1408 created, and throw NotSupportedException for methods and
1409 properties that should not be called on FieldBuilder
1411 2004-06-09 Gert Driesen <drieseng@users.sourceforge.net>
1413 * MethodBuilder.cs: move check to see if type has already
1414 been created up, to match MS.NET behaviour. Fix GetHashCode
1417 2004-06-09 Gert Driesen <drieseng@users.sourceforge.net>
1419 * MethodRental.cs: Added check for method size
1421 2004-06-08 Martin Baulig <martin@ximian.com>
1423 * ILGenerator.cs (TokenGenerator.GetToken): Added overloaded
1424 version which takes a MethodInfo and a Type[].
1425 (IlGenerator.EmitCall): When emitting a call to a varargs method,
1426 use the new GetToken() to pass the optional argument types to the
1429 * ModuleBuilder.cs (ModuleBuilder.getMethodToken): New interncall.
1431 2004-05-29 Gert Driesen (drieseng@users.sourceforge.net)
1433 * AssemblyBuilder.cs: removed extra method, fixes public API
1434 compatibility with MS.NET
1435 * TypeBuilder.cs: removed extra method, fixes public API
1436 compatibility with MS.NET
1438 2004-05-28 Jackson Harper <jackson@ximian.com>
1440 * CustomAttributeBuilder.cs: GetBlob now takes a ref to the
1441 assembly so it can encode type names properly.
1443 2004-05-25 Sebastien Pouliot <sebastien@ximian.com>
1445 * MethodBuilder.cs: Now use FastNewGuidArray to create new random
1446 Guids without using CryptoConfig. Speed up for MCS.
1448 2004-05-14 Zoltan Varga <vargaz@freemail.hu>
1450 * MethodBuilder.cs: Add Equals and GetHashCode.
1452 * TypeBuilder.cs: Add IsSubclassOf.
1454 2004-05-13 Zoltan Varga <vargaz@freemail.hu>
1456 * AssemblyBuilder.cs: Make extra methods internal. mcs was changed
1457 to handle this a long time ago.
1459 * TypeBuilder.cs: Add IsAssignableFrom and IsInstanceOfType.
1461 * TypeBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Implement
1464 * TypeBuilder.cs (ToString): Make this consistent with MS.NET.
1466 2004-05-11 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1468 * OpCodes.cs: Refactored to avoid the static constructor
1470 2004-05-10 Gert Driesen (drieseng@users.sourceforge.net)
1471 * AssemblyBuilder.cs: fixed warning
1472 * MethodRental.cs: added private default ctror to match MS.NET
1474 2004-05-03 Lluis Sanches Gual <lluis@ximian.com>
1476 * ModuleBuilder.cs: Use name const to load the debugger assembly.
1478 2004-05-01 Todd Berman <tberman@sevenl.net>
1480 * ModuleBuilder.cs: Load the proper assembly for a gac-only install.
1482 2004-04-29 Ben Maurer <bmaurer@users.sourceforge.net>
1484 * ILGenerator.cs, ModuleBuilder.cs: readonlyificate.
1486 2004-04-28 Zoltan Varga <vargaz@freemail.hu>
1488 * MethodRental.cs: New file.
1490 2004-04-28 Raja R Harinath <rharinath@novell.com>
1492 * TypeBuilder.cs (SetCustomAttribute): Handle the presence of the
1493 full type name in the data stream. This is emitted for value
1494 types by the Mono runtime.
1496 2004-04-23 Atsushi Enomoto <atsushi@ximian.com>
1498 * ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
1499 GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
1500 OpCodes.cs, TypeBuilder.cs :
1501 The fix should be easier ;)
1503 2004-04-23 Atsushi Enomoto <atsushi@ximian.com>
1505 * ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
1506 GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
1507 OpCodes.cs, TypeBuilder.cs :
1508 NET_2_0 related build fix.
1510 2004-04-07 Martin Baulig <martin@ximian.com>
1512 * GenericTypeParameterBuilder.cs
1513 (Mono_SetReferenceTypeConstraint): New public method.
1514 (Mono_SetValueTypeConstraint): New public method.
1516 2004-04-07 Bernie Solomon <bernard@ugsolutions.com>
1518 * MethodBuilder.cs, TypeBuilder.cs: always have
1519 slot for generic_params for consistent offsets.
1521 2004-04-07 Martin Baulig <martin@ximian.com>
1523 * GenericTypeParameterBuilder.cs
1524 (Mono_SetConstructorConstraint): New public method.
1526 2004-04-07 Martin Baulig <martin@ximian.com>
1528 * GenericTypeParameterBuilder.cs: New file.
1530 * TypeBuilder.cs (TypeBuilder.DefineGenericParameters): New public
1531 method. This is the new public API.
1532 (TypeBuilder.DefineGenericParameter): Removed.
1533 (TypeBuilder.SetGenericParameterConstraints): Removed.
1535 * MethodBuilder.cs (MethodBuilder.DefineGenericParameters): New public
1536 method. This is the new public API.
1537 (MethodBuilder.DefineGenericParameter): Removed.
1538 (MethodBuilder.SetGenericParameterConstraints): Removed.
1540 2004-04-01 Martin Baulig <martin@ximian.com>
1542 * OpCodes.cs (OpCodes.Constrained): New opcode.
1544 2004-04-01 Ben Maurer <bmaurer@users.sourceforge.net>
1546 * LocalBuilder.cs: Fix pinned support.
1548 2004-03-30 Martin Baulig <martin@ximian.com>
1550 * TypeBuilder.cs (TypeBuilder.SetGenericParameterConstraints):
1551 Added `bool has_ctor_constraint' argument.
1553 * MethodBuilder.cs (MethodBuilder.SetGenericParameterConstraints):
1554 Added `bool has_ctor_constraint' argument.
1556 2004-03-29 Ben Maurer <bmaurer@users.sourceforge.net>
1558 * LocalBuilder.cs: pinned support.
1560 2004-03-29 Martin Baulig <martin@ximian.com>
1562 * TypeBuilder.cs (TypeBuilder.ContainsGenericParameters): Implemented.
1564 2004-03-25 Sebastien Pouliot <sebastien@ximian.com>
1566 * AssemblyBuilder.cs: Changed strongname support to match MS
1567 implementation (i.e. attributes are used by the compiler - not by
1570 2004-03-24 Zoltan Varga <vargaz@freemail.hu>
1572 * TypeBuilder.cs (GetMethod): Implement.
1574 * CustomAttributeBuilder.cs: Reenable argument checking with MS.NET
1575 compatibility tweaks.
1577 2004-03-23 Martin Baulig <martin@ximian.com>
1579 * TypeBuilder.cs (TypeBuilder.GetEvents_internal): New internal
1580 method; this is basically GetEvents(), but see the FIXME in that method.
1582 2004-03-23 Zoltan Varga <vargaz@freemail.hu>
1584 * CustomAttributeBuilder.cs: Disable argument checking since it causes
1587 2004-03-22 Zoltan Varga <vargaz@freemail.hu>
1589 * CustomAttributeBuilder.cs (Initialize): Add more argument checking.
1592 2004-03-09 Jackson Harper <jackson@ximian.com>
1594 * CustomAttributeBuilder.cs: Add some argument checking. Handle
1595 default arguments properly.
1597 2004-03-09 Sebastien Pouliot <spouliot@videotron.ca>
1599 * AssemblyBuilder.cs: The strong name key file existance will now be
1600 checked in the current compilation directory AND in the assembly
1601 output directory. Fix bugzilla entry #55320.
1603 2004-02-23 Martin Baulig <martin@ximian.com>
1605 * MethodBuilder.cs (MethodBuilder.SetGenericMethodSignature):
1606 Added MethodAttributes and CallingConventions arguments.
1608 2004-02-02 Zoltan Varga <vargaz@freemail.hu>
1610 * TypeBuilder.cs: Implement DefineUninitializedData and
1611 AddDeclarativeSecurity.
1613 2004-01-27 Zoltan Varga <vargaz@freemail.hu>
1615 * AssemblyBuilder.cs (SetCustomAttribute): Move the reading of the
1616 keyfile to the Save () method.
1618 2004-01-26 Sebastien Pouliot <spouliot@videotron.ca>
1620 * AssemblyBuilder.cs: Save will now strongname the assembly is (a) a
1621 StrongName is present and (b) the signature isn't delayed.
1623 2004-01-24 David Sheldon <dave-mono@earth.li>
1625 * AssemblyBuilder.cs: Added override for GetFiles() that throws
1626 NotSupportedException.
1628 2004-01-15 Zoltan Varga <vargaz@freemail.hu>
1630 * AssemblyBuilder.cs (Save): Handle entry points with an int return
1633 * AssemblyBuilder.cs (Save): If the entry point is in a module, create
1634 a new entry point which calls the real one, since the entry point must
1635 be in the module which contains the manifest.
1637 * ModuleBuilder.cs (Save): Create the global type automatically if not
1640 2004-01-13 Zoltan Varga <vargaz@freemail.hu>
1642 * AssemblyBuilder.cs (DefineVersionInfoResource): Set more
1643 version info properties.
1645 2004-01-08 Zoltan Varga <vargaz@freemail.hu>
1647 * CustomAttributeBuilder.cs (string_arg): New helper method.
1649 * AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
1651 * AssemblyBuilder.cs (SetCustomAttribute): Use the new helper method.
1653 * AssemblyBuilder.cs (DefineUnmanagedResource): Implement.
1655 * AssemblyBuilder.cs (DefineIconResource): New internal method to
1658 * TypeBuilder.cs (IsDefined): Implement this, since some corlib classes
1659 make calls to IsDefined.
1661 2004-01-06 Zoltan Varga <vargaz@freemail.hu>
1663 * AssemblyBuilder.cs: Fix warning.
1665 2004-01-05 Zoltan Varga <vargaz@freemail.hu>
1667 * AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
1669 2003-12-29 Ben Maurer <bmaurer@users.sourceforge.net>
1671 * MethodBuilder.cs, ConstructorBuilder.cs: Override GetParameterCount.
1672 * ILGenerator.cs: Use GetParameterCount.
1674 2003-12-20 Zoltan Varga <vargaz@freemail.hu>
1676 * AssemblyBuilder.cs (AddModule): New internal method to support
1679 2003-12-19 Zoltan Varga <vargaz@freemail.hu>
1681 * AssemblyBuilder.cs: New internal property to support /target:module in
1684 2003-12-18 Zoltan Varga <vargaz@freemail.hu>
1686 * ILGenerator.cs: Applied patch from Ben Maurer
1687 (bmaurer@users.sourceforge.net). Allocate arrays holding label data
1688 lazily and reduce their size.
1690 2003-12-17 Zoltan Varga <vargaz@freemail.hu>
1692 * AssemblyBuilder.cs (MonoResource): New 'offset' field used by the
1695 * ModuleBuilder: Implement DefineResource.
1697 2003-12-15 Zoltan Varga <vargaz@freemail.hu>
1699 * AssemblyBuilder.cs (RefEmitPermissionSet): New helper structure.
1701 * MethodBuilder.cs (AddDeclarativeSecurity): Implement.
1703 * ConstructorBuilder.cs (AddDeclarativeSecurity): Ditto.
1705 2003-12-10 Zoltan Varga <vargaz@freemail.hu>
1707 * MethodBuilder.cs: Add stubs for missing methods.
1709 * TypeBuilder.cs (GetEvents): Add new override.
1711 * ModuleBuilder.cs: Implement some missing methods, add stubs for others.
1713 * AssemblyBuilder.cs (GetFiles): Get rid of unneccessary override.
1715 * AssemblyBuilder.cs (ImageRuntimeVersion): Add override to keep
1716 signature compatibility with MS.NET.
1718 * TypeBuilder.cs (MemberType): Get rid of unneccessary override.
1720 2003-12-08 Martin Baulig <martin@ximian.com>
1722 * TypeBuilder.cs (TypeBuilder.MonoGenericParam): Removed; use the
1723 new `MonoGenericParam' class instead (in S.R/MonoGenericInst.cs).
1725 2003-12-08 Zoltan Varga <vargaz@freemail.hu>
1727 * ModuleBuilder.cs: Double the size of the types array during insertion
1728 do avoid excessive memory allocation and copying. Track the number of
1729 types in a separate variable.
1731 * TypeBuilder.cs: Same for the 'fields' and 'methods' arrays.
1733 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
1735 * ModuleBuilder.cs (DefinePInvokeMethod): Implement.
1737 * ModuleBuilder.cs (DefineGlobalMethod): Implement the Net 1.2 variants.
1739 2003-11-28 Dick Porter <dick@ximian.com>
1741 * ModuleBuilder.cs: Do string compares with the Invariant culture.
1743 2003-11-28 Zoltan Varga <vargaz@freemail.hu>
1745 * AssemblyBuilder.cs (SetCustomAttribute): Implement automatic
1746 generation of build and revision numbers. Fixes #46492.
1748 2003-11-25 Zoltan Varga <vargaz@freemail.hu>
1750 * TypeBuilder.cs: Implement GetField.
1752 2003-11-24 Zoltan Varga <vargaz@freemail.hu>
1754 * DynamicMethod.cs: New class.
1756 * ILGenerator.cs MethodBuilder.cs ConstructorBuilder.cs: Retrieve
1757 tokens from a token generator object instead of from the ModuleBuilder,
1758 to support the implementation of DynamicMethod. Also get rid of the
1759 unused 'mbuilder' field.
1761 * ModuleBuilder.cs: Create a token generator object which can be
1762 passed to ILGenerator.
1764 * LocalBuilder.cs ILGenerator.cs: Get rid of 'module' field, obtain
1765 needed objects from the ilgen object instead.
1767 2003-11-21 Zoltan Varga <vargaz@freemail.hu>
1769 * TypeBuilder.cs FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Add support for custom modifiers from NET 1.2.
1771 * ILGenerator.cs: Remove unused abuilder member.
1773 2003-11-19 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1775 * OpCodes.cs: Remove Boxval for v1.1+
1777 2003-11-19 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1779 * OpCodes.cs: Small rearrange to fix csc compiler warning about obsolete member used
1781 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
1783 * AssemblyBuilderAccess.cs PackingSize: Add [Flags].
1785 * AssemblyBuilder.cs (DefineDynamicModule): Make internal method
1788 * AssemblyBuilder.cs (Save): Write out the main module at the end.
1790 2003-11-06 Zoltan Varga <vargaz@freemail.hu>
1792 * ConstructorBuilder.cs (.ctor): Automatically add RTSpecialName flag
1795 2003-11-06 Martin Baulig <martin@ximian.com>
1797 * ModuleBuilder.cs (ModuleBuilder.Save): Call `build_metadata'
1798 before writing the symbol file.
1800 2003-11-06 Zoltan Varga <vargaz@freemail.hu>
1802 * AssemblyBuilder.cs (.ctor): Initialize the 'dir' field to something
1805 * AssemblyBuilder.cs (Save): Set 'created' flag.
1807 * AssemblyBuilder.cs (get_next_table_index): Moved to ModuleBuilder,
1808 since table indexes are per-module.
1810 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
1812 * TypeBuilder.cs (DefineDefaultConstructor): Pass an array instead of
1813 null to DefineConstructor, to avoid NullReferenceExceptions in the
1816 * AssemblyBuilder.cs ModuleBuilder.cs ILGenerator.cs: Move getUSIndex
1817 and getToken methods, and the associated icalls to ModuleBuilder,
1818 since tokens are per-module.
1820 * AssemblyBuilder.cs ModuleBuilder.cs: Partially revert the previous
1821 patch, since having the 'is_main' field is useful in the unmanaged
1824 * AssemblyBuilder.cs ModuleBuilder.cs: Move the metadata creation and
1825 file creation logic to ModuleBuilder:Save (), since this needs to be
1826 done for every module. Also move the corresponding icalls to
1829 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
1831 * AssemblyBuilder.cs ModuleBuilder.cs: First steps toward a fix for
1832 #48700 (proper module support in Ref.Emit). Remove is_main field from
1833 ModuleBuilder and add a mainModule field to AssemblyBuilder instead.
1834 This is neccesary, since the main module is determined during the
1835 Save () call: the module with the same file name as the assembly is
1836 the main module. Also create a default main module, if one is not
1839 2003-11-03 Martin Baulig <martin@ximian.com>
1841 * OpCodes.cs: Added Ldelem_Any, Stelem_Any and Unbox_Any from .NET 1.2.
1843 2003-10-18 Sebastien Pouliot <spouliot@videotron.ca>
1845 * AssemblyBuilder.cs (SetCustomAttribute): Changed PK extraction to
1846 use Mono.Security.StrongName (#49785).
1848 2003-10-18 Zoltan Varga <vargaz@freemail.hu>
1850 * AssemblyBuilder.cs (SetCustomAttribute): Extract the public key from
1853 2003-10-17 Zoltan Varga <vargaz@freemail.hu>
1855 * AssemblyBuilder.cs (SetCustomAttribute): Ignore empty keyfile name.
1857 * AssemblyBuilder.cs: Moved loading of the public key file into
1858 managed code from reflection.c.
1860 * AssemblyBuilder.cs: Set cultureInfo and version from the AssemblyName
1861 passed to the constructor.
1863 2003-10-13 Martin Baulig <martin@ximian.com>
1865 * MethodBuilder.cs (MethodBuilder): Added
1866 `TypeBuilder.MonoGenericParam[] generic_params' field.
1867 (DefineGenericParameter, SetGenericMethodSignature): New public methods.
1869 * TypeBuilder.cs (DefineGenericMethod): New public method.
1871 2003-10-13 Zoltan Varga <vargaz@freemail.hu>
1873 * OpCode.cs: Fix Value property. Fixes #49328.
1875 2003-10-03 Zoltan Varga <vargaz@freemail.hu>
1877 * TypeBuilder.cs (CreateType): Fire TypeResolve events for unfinished
1878 nested value types. Fixes #47022.
1880 2003-09-29 Zoltan Varga <vargaz@freemail.hu>
1882 * TypeBuilder.cs: Really fix #48695.
1884 Sat Sep 27 16:17:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
1886 * ILGenerator.cs: instance fields are loaded from this.
1888 2003-09-26 Zoltan Varga <vargaz@freemail.hu>
1890 * TypeBuilder.cs (DefineDefaultConstructor): Make this work on types
1891 without a parent. Fixes #48695.
1893 2003-09-17 Martin Baulig <martin@ximian.com>
1895 * TypeBuilder.cs (TypeBuilder.CreateType): Don't append the type
1896 parameters to the type name; ie. use `Stack' instead of `Stack<T>'.
1898 2003-09-06 Martin Baulig <martin@ximian.com>
1900 * TypeBuilder.cs (TypeBuilder.IsUnboundGenericParameter): Implemented.
1902 2003-09-04 Martin Baulig <martin@ximian.com>
1904 * TypeBuilder.cs (TypeBuilder.MonoGenericParam): Make this nested
1905 class internal, not protected.
1907 2003-08-29 Martin Baulig <martin@ximian.com>
1909 * TypeBuilder.cs (TypeBuilder.DefineGenericParameter): New public
1910 method. We can now create generic types.
1911 (TypeBuilder.GetGenericTypeDefinition): Override this; call the
1912 `setup_internal_class' interncall before calling our base impl.
1914 Sat Aug 2 13:04:55 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
1916 * ILGenerator.cs: Emission of doubles now utilise the Double.AssertEndianity
1917 icall to assert double word endianity on ARM.
1919 2003-07-25 Duncan Mak <duncan@ximian.com>
1921 * OpCodes.cs (Boxval): Marked with ObsoleteAttribute.
1923 2003-07-24 Miguel de Icaza <miguel@ximian.com>
1925 * TypeBuilder.cs: Added generics stubs.
1927 * EnumBuilder.cs: Added generics stubs, changed bracing style for
1930 2003-07-23 Duncan Mak <duncan@ximian.com>
1932 * SignatureHelper.cs: This class does not have the
1933 SerializableAttribute.
1935 2003-07-11 Zoltan Varga <vargaz@freemail.hu>
1937 * AssemblyBuilder.cs: Added argument checking to all methods according
1938 to the MSDN docs. Also marked DefineUnmanagedResource and its friends
1940 * ModuleBuilder.cs: Added new property FileName used by AssemblyBuilder.
1941 * ModuleBuilder.cs AssemblyBuilder.cs: Implemented IsTransient ().
1943 2003-06-15 Zoltan Varga <vargaz@freemail.hu>
1945 * EventBuilder.cs: Add argument checking to methods.
1947 Thu Jun 5 20:18:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
1949 * AssemblyBuilder.cs: implemented DefineResource ().
1951 Thu Jun 5 12:36:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
1953 * OpCode.cs: implemented Equals/GetHashCode.
1955 Tue Jun 3 11:14:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
1957 * ILGenerator.cs, OpCode.cs: optimize opcode space usage.
1959 Tue Jun 3 11:13:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
1961 * UnmanagedMarshal.cs: add ability to define custom attributes (the MS
1962 runtime doesn't support this).
1964 2003-05-30 Zoltan Varga <vargaz@freemail.hu>
1966 * TypeBuilder.cs: Implement DefineTypeInitializer.
1968 2003-05-21 Zoltan Varga <vargaz@freemail.hu>
1971 - Implement DefineInitializedData in terms of DefineUninitializedData
1972 - Name the types of global fields $ArrayType$<len> to cut back on the
1973 number of types created
1974 - Add argument checking
1976 2003-05-19 Zoltan Varga <vargaz@freemail.hu>
1978 * AssemblyBuilder.cs: Implement GetDynamicModule. "Implement" various
1979 methods not supported under MS.NET.
1981 2003-05-18 Martin Baulig <martin@ximian.com>
1983 * AssemblyBuilder.cs (corlib_void_type): New internal field.
1984 (SetCorlibTypeBuilders): Added overloaded version which takes 4
1985 arguments to set the `corlib_void_type'.
1987 * TypeBuilder.cs: Use `pmodule.assemblyb.corlib_void_type' instead
1988 of `typeof (void)' to make this work when compiling corlib.
1990 Thu May 15 19:16:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
1992 * MethodBuilder.cs: off by one in CreateMethodBody().
1993 * TypeBuilder.cs: if the return type for a method is null, use void.
1995 2003-04-28 Miguel de Icaza <miguel@ximian.com>
1997 * MethodBuilder.cs: Mono allows the parameter position to be zero
1998 to indicate the "returns:" attribute.
2000 2003-04-20 Miguel de Icaza <miguel@ximian.com>
2002 * ILGenerator.cs (EmitCall): Implement.
2004 Flag a few unimplemented methods with MonoTODO, make coding style
2005 for method definitions Mono consistent.
2007 2003-04-17 Zoltan Varga <vargaz@freemail.hu>
2009 * ILGenerator.cs: Implement EmitWriteLine methods.
2011 * TypeBuilder.cs (CreateType): Avoid creating a default constructor
2012 for the global type.
2014 2003-04-15 Miguel de Icaza <miguel@ximian.com>
2016 * TypeBuilder.cs (DefineDefaultConstructor): Make it generate code
2017 by default for a default constructor. This is what the MS runtime
2018 does. The PythonNet code expected this.
2020 (TypeBuilder.GetConstructorImpl): Implement this.
2022 (TypeBuilder.CreateType): If there are no constructors defined, we
2025 Tue Apr 15 13:50:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
2027 * ModuleBuilder.cs, TypeBuilder.cs: set nesting_type before
2028 calling setup_internal_class ().
2030 2003-03-27 Zoltan Varga <vargaz@freemail.hu>
2032 * AssemblyBuilder.cs: Added 'access' member, which is needed by the
2035 2003-03-26 Zoltan Varga <vargaz@freemail.hu>
2037 * ILGenerator.cs: Implemented ThrowException.
2039 2003-03-10 Zoltan Varga <vargaz@freemail.hu>
2041 * ILGenerator.cs: Propagate maxstack info along branches.
2043 2003-03-06 Zoltan Varga <vargaz@freemail.hu>
2045 * ILGenerator.cs (Emit): Do not pop the arguments off the stack for
2046 ldftn etc. Fixes bug #39196.
2048 2003-02-28 Zoltan Varga <vargaz@freemail.hu>
2050 * ILGenerator.cs (Emit): Add fixup for already created methods and
2051 fields. Do not add fixup for types since their table index do not
2054 2003-02-26 Zoltan Varga <vargaz@freemail.hu>
2056 * TypeBuilder.cs (DefineInitializedData): Removed unnecessary assignments.
2058 * ModuleBuilder.cs (DefineInitializedData): Do not call
2059 TypeBuilder::DefineInitializedData since that would mean defining a
2060 nested type of the global type, which is wrong. Instead define a
2061 new public type as MS does.
2063 * ModuleBuilder.cs (DefineUninitializedData): Ditto.
2065 Thu Feb 13 18:40:52 CET 2003 Paolo Molaro <lupus@ximian.com>
2067 * ModuleBuilder.cs: add the basic initialization call.
2069 2003-02-13 Zoltan Varga <vargaz@freemail.hu>
2071 * AssemblyBuilder.cs: Added basic error checking to some methods
2072 according to the MSDN docs.
2074 2003-02-10 Zoltan Varga <vargaz@freemail.hu>
2076 * ConstructorBuilder.cs:
2077 - Added basic error checking to all methods according to the MSDN docs.
2078 - modified a lot of methods to throw NotSupportedException, to comply
2081 2003-02-09 Zoltan Varga <vargaz@freemail.hu>
2084 - Added basic error checking to all methods according to the MSDN docs.
2085 - fixed AssemblyQualifiedName.
2086 - implemented 'Size'.
2087 - modified a lot of methods to throw NotSupportedException, to comply
2089 - changes tested by running a full bootstrap.
2091 2003-02-09 Martin Baulig <martin@ximian.com>
2093 * AssemblyBuilder.cs (AssemblyBuilder.methods): Removed. This was
2094 a hack for the symbol writer which is no longer needed.
2096 2003-02-09 Martin Baulig <martin@ximian.com>
2098 * IMonoSymbolWriter.cs (DefineNamespace, OpenMethod): New methods.
2100 2003-02-09 Martin Baulig <martin@ximian.com>
2102 * IMonoSymbolWriter.cs (MarkSequencePoint): New method which takes
2103 just the required arguments as scalars, not arrays.
2105 * ILGenerator.cs (ILGenerator.MarkSequencePoint): Use that new
2106 interface method; unnecessarily creating such a large number of
2107 arrays is both slow and too memory consuming.
2109 2003-02-08 Zoltan Varga <vargaz@freemail.hu>
2111 * MethodBuilder.cs: Added error checking to methods so they conform to
2112 MSDN docs. Implemented 'GetModule' and 'CallingConvention' members.
2113 Some other tweaks to improve compatibility with MS .NET.
2115 * TypeBuilder.cs: Added 'is_created' property which will be used for
2116 checking 'type is already created' errors.
2118 2003-02-07 Martin Baulig <martin@ximian.com>
2120 * ModuleBuilder.cs (.ctor): Added `bool IsMainModule' argument.
2121 (Save): New internal method; creates the module's symbol file if
2122 we're compiling with debugging information.
2124 * AssemblyBuilder.cs (EmbedResource): Added internal overloaded
2125 version of this method which takes a `byte[] blob' instead of a file.
2126 (DefineDynamicMethod): If this is the first module, tell the
2127 ModuleBuilder that this is the main module.
2128 (Save): Call a new interncall `build_metadata' to create the final
2129 metadata and save all the symbol files before creating the actual
2132 * IMonoSymbolWriter.cs: New public class; it is in the namespace
2133 Mono.CSharp.Debugger. The Mono symbol writer implements this interface.
2135 2003-02-04 Zoltan Varga <vargaz@freemail.hu>
2137 * AssemblyBuilder.cs: added GetToken (SignatureHelper).
2139 * ILGenerator.cs: implemented EmitCalli() methods
2141 * SignatureHelper.cs: implemented GetMethoSigHelper() methods.
2143 2003-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2145 * MethodBuilder.cs: GetBaseDefinition () returns this.
2147 Mon Jan 27 17:07:38 CET 2003 Paolo Molaro <lupus@ximian.com>
2149 * CustomAttributeBuilder.cs, FieldBuilder.cs: applied
2150 (reformatted) patch from "Jerome Laban" <jlaban@wanadoo.fr>
2151 to fix ByValStr and ByValArray encodings.
2153 2003-01-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2155 * AssemblyBuilder.cs: fixed compilation with csc.
2157 2003-01-26 Miguel de Icaza <miguel@ximian.com>
2159 * AssemblyBuilder.cs (Save): Set the executable bit at the end.
2160 This uses a non-official enumeration value to call SetFileAttributes.
2162 2003-01-17 Zoltan Varga <vargaz@freemail.hu>
2164 * MethodBuilder.cs ConstructorBuilder.cs: modify GetParameters() so it
2165 returns information even when the app did not use DefineParameter() to
2166 define the parameters.
2168 * ConstructorBuilder.cs (ctor): allways define SpecialName attribute
2169 for constructors as done by MS.
2171 Mon Jan 13 11:37:14 CET 2003 Paolo Molaro <lupus@ximian.com>
2173 * TypeBuilder.cs, ModuleBuilder.cs: better type name cache.
2175 2003-01-10 Zoltan Varga <vargaz@freemail.hu>
2177 * ILGenerator.cs: Implemented EmitWriteLine(string).
2179 * TypeBuilder.cs (DefineInitializedData): Call DefineNestedType()
2180 instead of DefineType() so the auxiliary types do not pollute the
2181 global namespace. This is consistent with the behaviour of MS .NET.
2183 Fri Jan 10 16:03:30 CET 2003 Paolo Molaro <lupus@ximian.com>
2185 * ILGenerator.cs, MethodBuilder.cs, TypeBuilder.cs,
2186 ConstructorBuilder.cs: some tweaks to reduce memory usage.
2188 Thu Jan 2 18:46:09 CET 2003 Paolo Molaro <lupus@ximian.com>
2190 * ModuleBuilder.cs, TypeBuilder.cs: support global fields and methods.
2192 Thu Dec 19 00:06:57 CET 2002 Paolo Molaro <lupus@ximian.com>
2194 * AssemblyBuilder.cs: remove duplicated user string entries.
2196 2002-12-11 Zoltan Varga <vargaz@freemail.hu>
2198 * FieldBuilder.cs: added 'handle' field which is needed by some new
2199 code in reflection.c.
2201 2002-12-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2203 * TypeBuilder.cs: implemented GetInterfaceMap () when the Type has been
2206 Fri Nov 8 14:53:03 CET 2002 Paolo Molaro <lupus@ximian.com>
2208 * ILGenerator.cs: account for the exception object being passed to the
2209 catch handler to calc max_stack.
2211 2002-09-21 Martin Baulig <martin@gnome.org>
2213 * ModuleBuilder.cs (ModuleBuilder.symbol_writer): Make this
2214 field internal, not private.
2215 (ModuleBuilder.SymWriter_DefineLocalVariable): Removed.
2217 * LocalBuilder.cs (LocalBuilder.SetLocalSymInfo): Use the
2218 ISymbolWriter's DefineLocalVariable() method instead of the
2219 IMonoSymbolWriter hack.
2221 Mon Sep 16 19:02:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
2223 * AssemblyBuilder.c: special case some custom attributes.
2225 2002-09-12 Dick Porter <dick@ximian.com>
2227 * TypeBuilder.cs: Say _which_ Type has already been created
2229 2002-09-11 Miguel de Icaza <miguel@ximian.com>
2231 * ModuleBuilder.cs (GetTypes): Implement.
2233 Tue Sep 10 12:12:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2235 * ConstructorBuilder.cs: added a field to hold the handle.
2237 Mon Sep 9 17:31:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
2239 * TypeBuilder.cs: prepare for the real CreateType implementation.
2241 Tue Aug 27 16:57:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
2243 * TypeBuilder.cs: remove duplicate code and fix
2244 named field reading in custom attr.
2246 2002-08-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2248 * TypeBuilder.cs: UnspecifiedTypeSize is 0.
2250 Wed Aug 14 17:38:41 CEST 2002 Paolo Molaro <lupus@ximian.com>
2252 * TypeBuilder.cs: ReflectedType and CreateType fixes.
2254 Thu Aug 8 10:25:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2256 * AssemblyBuilder.cs: added API to embed managed resources.
2258 2002-08-03 Martin Baulig <martin@gnome.org>
2260 * TypeBuilder.cs (TypeBuilder.DeclaringType): Implemented.
2262 Thu Jul 25 13:57:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
2264 * AssemblyBuilder.cs: support linking external resources.
2266 2002-07-19 Martin Baulig <martin@gnome.org>
2268 * ILGenerator.cs (Emit (OpCode, LocalBuilder)): Throw an exception
2269 when trying to emit a local that was defined in a different ILGenerator.
2271 * LocalBuilder.cs (LocalBuilder): Added `ILGenetator' argument to
2274 Tue Jul 16 19:32:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
2276 * ILGenerator.cs: stack size check fix.
2278 Sat Jul 13 17:30:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2280 * AssemblyBuilder.cs: add also the enum_type for compiling corlib.
2281 * TypeBuilder.cs: complete IsValueType.
2283 Sat Jul 13 15:08:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
2285 * TypeBuilder.cs: better IsValueType.
2287 2002-07-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2289 * CustomAttributeBuilder.cs: removed compile warning.
2291 Fri Jul 12 11:34:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
2293 * ILGenerator.cs: fixup typebuilder tokens as well.
2295 Tue Jul 9 19:03:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
2297 * TypeBuilder.cs: special case SerializarionAttribute.
2298 Tweaks to get correct code in corlib.
2300 2002-07-06 Miguel de Icaza <miguel@ximian.com>
2302 * ILGenerator.cs (ILGenerator.Emit): For doubles and floats, swap
2303 the bytes on big endian systems.
2305 2002-07-03 Martin Baulig <martin@gnome.org>
2307 * AssemblyBuilder.cs (corlib_object_type, corlib_value_type): Moved
2308 these fields up after the last entry in MonoReflectionAssemblyBuilder
2311 * TypeBuilder.cs (IsValueTypeImpl): Use the AssemblyBuilder's
2312 `corlib_value_type' instead of `typeof (System.ValueType)'.
2313 (DefineNestedType): Use the AssemblyBuilder's `corlib_object_type'
2314 instead of `typeof (object)'.
2316 2002-07-02 Martin Baulig <martin@gnome.org>
2318 * AssemblyBuilder.cs (corlib_object_type, corlib_value_type): New
2319 internal fields. When compiling corlib, they point to the newly
2320 created System.Object and System.ValueType types.
2321 (SetCorlibTypeBuilders): New public function. This will be
2322 dynamically called from MCS when compiling corlib.
2324 * TypeBuilder.cs (DefineInitializedData): Use the AssemblyBuilder's
2325 `corlib_value_type' as parent type instead of `typeof (System.ValueType)'
2326 to make it work when compiling corlib.
2328 * ModuleBuilder.cs (assemblyb): Made this field internal, not private.
2330 Tue Jul 2 18:34:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
2332 * TypeBuilder.cs: implemented AssemblyQualifiedName.
2333 * MethodBuilder.cs, ConstructorBuilder.cs: special case custom attr.
2335 Mon Jul 1 16:17:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2337 * TypeBuilder.cs: implemented AddInterfaceImplementation().
2339 2002-06-28 Martin Baulig <martin@gnome.org>
2341 * MethodBuilder.cs (GetParameters): Return all parameters, not all
2344 2002-06-27 Martin Baulig <martin@gnome.org>
2346 * ConstructorBuilder.cs (GetParameters): Implemented.
2348 Mon Jun 17 14:55:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
2350 * ModuleBuilder.cs, TypeBuilder.cs: fixes for nested types handling.
2352 Fri Jun 14 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
2354 * CustomAttributeBuilder.cs: added custom attribute related internal
2356 * FieldBuilder.cs, ParameterBuilder.cs: handle MarshalAs attribute.
2357 * UnmanagedMarshal.cs: implemented.
2359 Mon Jun 10 18:58:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
2361 * PropertyBuilder.cs: implemented ReflectedType and DeclaringType
2364 2002-06-07 Martin Baulig <martin@gnome.org>
2366 * TypeBuilder.cs (TypeBuilder): Added `PackingSize packing_size' and
2367 `int type_size' fields to the constructor.
2368 (DefineNestedType): Pass packing_size and type_size to the constructor.
2370 * ModuleBuilder.cs (DefineType): Pass the packing_size and type_size
2371 fields to the TypeBuilder's constructor.
2373 2002-06-07 Martin Baulig <martin@gnome.org>
2375 * TypeBuilder.cs (DefineNestedType): There is no overload for this
2376 method which takes 5 args in the specs, removed it.
2378 Fri Jun 7 17:04:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
2380 * AssemblyBuilder.cs: updates for PE/COFF rewrite.
2382 2002-05-30 Martin Baulig <martin@gnome.org>
2384 * AssemblyBuilder.cs (methods): Made this internal and don't
2385 initialize it. It will be initialized by the ModuleBuilder's
2386 GetSymbolWriter() method.
2387 (get_next_table_index): Only store the method in the `methods'
2388 array if it's not null.
2390 * ModuleBuilder.cs (GetSymbolWriter): Initialize the AssemblyBuilder's
2391 `methods' field if necessary and pass it as third argument to the
2392 symbol writer's constructor.
2394 2002-05-25 Martin Baulig <martin@gnome.org>
2396 * TypeBuilder.cs (TypeToken): Implemented.
2398 2002-05-24 Martin Baulig <martin@gnome.org>
2400 * ModuleBuilder.cs (symwriter_define_local): New private variable.
2401 (GetSymbolWriter): Look for a custom version of "DefineLocalVariable"
2402 and store it in `symwriter_define_local'.
2403 (SymWriter_DefineLocalVariable): New internal method to call the
2404 symbol writer's custom DefineLocalVariable() method. It is safe to
2405 call this method if there's no symbol writer.
2407 * LocalBuilder.cs (SetLocalSymInfo): Use the MethodBuilder'snew
2408 SymWriter_DefineLocalVariable().
2410 * MethodBuilder.cs (GetParameters): Implemented.
2412 2002-05-22 Martin Baulig <martin@gnome.org>
2414 * ModuleBuilder.cs (GetSymbolWriter): Pass the this pointer to the
2415 symbol writer's constructor.
2417 2002-05-22 Martin Baulig <martin@gnome.org>
2419 * AssemblyBuilder.cs (methods): New field.
2420 (get_next_table_index): Record all methods and constructors
2421 (table 0x06) in the `methods' array. This is read by the
2422 Mono.CSharp.Debugger.MonoSymbolWriter::get_method interncall to
2423 get the MethodBuilder / ConstructorBuilder back from the token.
2425 * *Builder.cs (get_next_table_index): Added `object obj' argument.
2426 (<constructors>): pass the this pointer to get_next_table_index ().
2428 2002-05-20 Martin Baulig <martin@gnome.org>
2430 * TypeBuilder.cs (DefineField): Call the new `create_internal_class'
2431 interncall after adding the first field. This is used when creating
2432 enum types to set `klass->enum_basetype'.
2434 Thu May 16 16:09:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2436 * TypeBuilder.cs: complete special acse support for CharSet, Size and
2437 Pack named args in StructLayout attribute.
2439 Tue May 14 17:13:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
2441 * MethodBuilder.cs: revert change in accessibility of
2442 GetILGenerator(int).
2444 Tue May 14 13:31:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
2446 * FieldBuilder.cs, ParameterBuilder.cs: more special-casing of
2449 Fri May 10 20:57:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
2451 * CustomAttributeBuilder.cs: expose internal data for use in
2453 * FieldBuilder.cs, TypeBuilder.cs: special case FieldOffset and
2454 StructLayout attributes.
2456 Fri May 10 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
2458 * MethodBuilder.cs, ConstructorBuilder.cs: implemented InitLocals
2461 2002-04-26 Martin Baulig <martin@gnome.org>
2463 * ModuleBuilder.cs (DefineDocument): Implemented.
2465 Tue Apr 16 13:02:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
2467 * AssemblyBuilder.cs: pad output file to file alignment.
2468 * FieldBuilder.cs: ReflectedType.
2469 * ModuleBuilder.cs: added guid generation and array method creation.
2470 * MonoArrayMethod.cs: array method support code.
2472 Wed Apr 10 12:57:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
2474 * ILGenerator.cs: use a stack to keep track of exception blocks.
2476 Mon Apr 8 06:19:01 2002 Piers Haken <piersh@friskit.com>
2478 * ILGenerator.cs: added LabelField.label_base to allow for
2479 arbitrary offsets (for switch statement)
2481 Fri Apr 5 15:41:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
2483 * AssemblyBuilder.cs: simpler protocol wih the runtime to
2484 get the assembly data.
2486 Tue Mar 26 20:10:24 CET 2002 Paolo Molaro <lupus@ximian.com>
2488 * AssemblyBuilder.cs: use FileMode.Create.
2489 * ILGenerator.cs: optimize localbuilder related opcodes.
2490 Track parameters to adjust maxstack.
2491 * LocalBuilder.cS: use unsigned for position.
2493 2002-03-23 Miguel de Icaza <miguel@ximian.com>
2495 * LocalBuilder.cs: Drop the symbol_writer as LocalBuilder fields.
2496 Do this lazily in SetLocalSymInfo.
2498 2002-03-24 Martin Baulig <martin@gnome.org>
2500 * ModuleBuilder.cs (GetSymbolWriter): The MonoSymbolWriter's constructor
2501 now takes a `string assembly_filename' argument, pass it our fully
2502 qualified assembly name.
2504 2002-03-24 Nick Drochak <ndrochak@gol.com>
2506 * ILGenerator.cs: Use #if-#endif instead of if(false){} to disable
2507 code. This way there is no compiler warning.
2509 * TypeBuilder.cs: Removed the returns that came after the throws.
2510 This removes a few more compiler warnings. Also marked with MonoTODO
2511 all places where we throw NotImplemented exceptions.
2513 2002-03-23 Martin Baulig <martin@gnome.org>
2515 * SignatureHelper.cs (GetFieldSignatureHelper, GetLocalSignatureHelper):
2518 * LocalBuilder.cs (LocalBuilder): This internal constructor now takes
2519 a ModuleBuilder argument instead of a ISymbolWriter one.
2520 (SetLocalSymInfo): Create and pass type signature to DefineLocalVariable.
2522 2002-03-23 Martin Baulig <martin@gnome.org>
2524 * ILGenerator.cs (BeginScope, EndScope): Implemented.
2526 2002-03-20 Martin Baulig <martin@gnome.org>
2528 * ModuleBuilder.cs (GetSymbolWriter): New internal function. Dynamically
2529 loads the default symbol writer, catch all possible exceptions and return
2531 (ModuleBuilder): Added `bool emitSymbolInfo' argument to this internal
2532 constructor; if set, call GetSymbolWriter ().
2533 (GetSymWriter): Implemented.
2535 * LocalBuilder.cs (LocalBuilder): Added ISymbolWriter argument to this
2537 (SetLocalSymInfo): Implemented, call ISymbolWriter.DefineLocalVariable ()
2538 if the symbol writer is not null.
2540 * ILGenerator.cs (ILGenerator): Call ModuleBuilder.GetSymWriter () to get
2541 and store the symbol writer.
2542 (DeclareLocal): Pass the symbol writer to LocalBuilder's constructor.
2543 (MarkSequencePoint): Implemented, call ISymbolWriter.DefineSequencePoints ()
2544 if the symbol writer is not null.
2546 * AssemblyBuilder.cs (DefineDynamicModule): Pass the `bool emitSymbolInfo'
2547 to ModuleBuilder's constructor.
2549 Sat Mar 16 19:11:47 CET 2002 Paolo Molaro <lupus@ximian.com>
2551 * ModuleBuilder.cs: handle modified types correctly.
2553 Thu Mar 7 17:10:42 CET 2002 Paolo Molaro <lupus@ximian.com>
2555 * AssemblyBuilder.cs: allow saving bigger assemblies.
2556 * ILGenerator.cs: add fixup table for fields and methods, since
2557 at the end of the compile they may end up with a different table
2559 * ModuleBuilder.cs: add cache for type names to speed up the type
2560 lookups from the compiler.
2561 * TypeBuilder.cs: GetInterfaces () returns only interfaces in the
2562 current type, not in parents (the docs are wrong).
2564 Tue Mar 5 18:09:34 CET 2002 Paolo Molaro <lupus@ximian.com>
2566 * EventBuilder.cs: implemented.
2567 * TypeBuilder.cs: implemented DefineEvent() method and UnderlyingSystemType
2570 Mon Mar 4 20:34:52 CET 2002 Paolo Molaro <lupus@ximian.com>
2572 * ILGenerator.cs: make enough room in the byte array for string
2574 * TypeBuilder.cs: fixed GetInterfaces().
2576 Mon Mar 4 11:30:40 CET 2002 Paolo Molaro <lupus@ximian.com>
2578 * TypeBuilder.cs: implemented GetConstructors(), GetFields(),
2579 GetMethods(), GetProperties().
2581 Thu Feb 28 19:15:10 CET 2002 Paolo Molaro <lupus@ximian.com>
2583 * AssemblyBuilder.cs: call into the runtime to init some basic
2584 assembly stuff. Reserve slot 1 of typedef table for .<Module>.
2585 * ModuleBuilder.cs: call into the runtime if we need to create a
2586 modief type, such as arrays, byref etc.
2587 * TypeBuilder.cs: call into the runtime to create the MonoClass
2588 representation for the type. Throw exceptions with not implemented
2591 Wed Feb 27 18:48:47 CET 2002 Paolo Molaro <lupus@ximian.com>
2593 * ILGenerator.cs: fix nested exception blocks.
2595 Wed Feb 20 22:30:49 CET 2002 Paolo Molaro <lupus@ximian.com>
2597 * AssemblyBuilder.cs: upped compiled assembly size limit.
2598 Implemented SetCustomAttribute () methods.
2599 * CustomAttributeBuilder.cs: implemented the needed constructor
2601 * Cosntructorbuilder.cs, EnumBuilder.cs, FieldBuilder.cs,
2602 MethodBuilder.cs, ModuleBuilder.cs, ParameterBuilder.cs,
2603 PropertyBuilder.cs, TypeBuilder.cs: Implemented SetCustomAttribute () methods.
2605 Wed Feb 20 14:54:01 CET 2002 Paolo Molaro <lupus@ximian.com>
2607 * AssemblyBuilder.cs: add SetCustomAttribute () to keep the compiler
2610 Fri Feb 15 18:15:04 CET 2002 Paolo Molaro <lupus@ximian.com>
2612 * ILGenerator.cs: finally block support and fixes.
2614 Thu Feb 14 18:55:52 CET 2002 Paolo Molaro <lupus@ximian.com>
2616 * FieldBuilder.cs: Add SetRVAData().
2617 * ILGenerator.cs: speed up code array growth.
2618 * TypeBuilder.cs: fix IsValueTypeImpl(). Add class_size member.
2619 Implement DefineInitializedData().
2621 Tue Jan 22 23:01:11 CET 2002 Paolo Molaro <lupus@ximian.com>
2623 * EnumBuilder.cs, TypeBuilder.cs: updates for changes in Type.cs.
2624 * ModuleBuilder.cs: fix lookup of nested types.
2626 Tue Jan 15 22:46:21 CET 2002 Paolo Molaro <lupus@ximian.com>
2628 * ILGenerator.cs: implement some of the exception support methods.
2630 Mon Jan 14 17:07:32 CET 2002 Paolo Molaro <lupus@ximian.com>
2632 * ModulerBuilder.cs: search also for subtypes in GetTypes().
2633 * TypeBuilder.cs: bugfix in FullName. Implemented DefineNestedType().
2635 Fri Jan 11 19:00:29 CET 2002 Paolo Molaro <lupus@ximian.com>
2637 * MethodBuilder.cs, ConstructorBuilder.cs: save parameter info.
2639 Thu Jan 10 21:07:54 CET 2002 Paolo Molaro <lupus@ximian.com>
2641 * ILGenerator.cs: handle type tokens (used for box opcode).
2643 Wed Jan 9 19:37:55 CET 2002 Paolo Molaro <lupus@ximian.com>
2645 * ILGenerator.cs: emit float and doubles.
2646 * ModuleBuilder.cs: off-by-one error fix and GetType()
2648 * TypeBuilder.cs: AttributesImpl added.
2649 * UnmanagedMarshal.cs: stubbed out class.
2651 Sat Jan 5 15:59:05 CET 2002 Paolo Molaro <lupus@ximian.com>
2653 * ILGenerator.cs: fix emission of two-bytes opcodes.
2654 Missing slot for locals array. Throw exceptions on unimplemented
2656 * OpCode.cs: add a comment: the Value property is useless.
2657 * OpCodes.cs: fix name of tail opcode (Tail -> Tailcall).
2659 2002-01-05 Ravi Pratap <ravi@ximian.com>
2661 * ConstructorBuilder.cs : Use the MonoTODO attribute.
2663 * ILGenerator.cs, Label.cs, MethodBuilder.cs, ModuleBuilder.cs,
2664 ParameterBuilder.cs, TypeBuilder.cs : Ditto.
2666 Thu Jan 3 23:26:15 CET 2002 Paolo Molaro <lupus@ximian.com>
2668 * ILGenerator.cs: typo fix.
2670 Mon Dec 24 17:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
2672 * TypeBuilder.cs: added DefineMethodOverride().
2673 * MethodBuilder.cs: add override_method member and setter.
2675 Mon Nov 19 13:58:01 CET 2001 Paolo Molaro <lupus@ximian.com>
2677 * AssemblyBuilder.cs: add method to register a string in the "#US"
2679 * EnumBuilder.cs, SignatureHelper.cs: added stubs.
2680 * ILGenerator.cs: more stuff implemented.
2681 * LocalBuilder.cs: keep track of local var index.
2683 Thu Nov 15 18:11:23 CET 2001 Paolo Molaro <lupus@ximian.com>
2685 * ConstructorBuilder.cs: implement the interesting methods.
2686 * ILGenerator.cs: adapt for use with both a MethodBuilder and a
2688 * MethodBuilder.cs: add ImplAttributes.
2689 * ParameterBuilder.cs: adapt for ConstructorBuilder.
2690 * TypeBuilder.cs: add constructors handling.
2692 Wed Nov 14 17:01:45 CET 2001 Paolo Molaro <lupus@ximian.com>
2694 * ConstructorBuilder.cs: added missing stubs and some implementation.
2695 * CustomAttributeBuilder.cs: added.
2696 * EventBuilder.cs: added.
2697 * FieldBuilder.cs: updates.
2698 * MethodBuilder.cs: stuff to implement P/Invoke methods.
2699 * ModuleBuilder.cs: added GetArrayMethod() stub.
2700 * ParameterBuilder.cs, PropertyBuilder.cs: updates.
2701 * TypeBuilder.cs: updates and stubs.
2703 2001-11-10 Sean MacIsaac <macisaac@ximian.com>
2705 * TypeBuilder.cs: Added implementation for TypeHandle.
2707 Tue Nov 6 09:13:45 CET 2001 Paolo Molaro <lupus@ximian.com>
2709 * AssemblyBuilder.cs: define an internal constructor.
2711 2001-10-07 Miguel de Icaza <miguel@ximian.com>
2713 * AssemblyBuilder.cs: Reformatted.
2715 Added override keywords to those that needed them.
2717 Removed methods that we do not override, but just inherit
2719 Tue Sep 25 16:53:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
2721 * TypeBuilder.cs, ConstructorBuilder.cs, ModuleBuilder.cs: added.