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