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