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