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