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