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