2004-11-24 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / gmcs / ChangeLog
1 2004-11-24  Martin Baulig  <martin@ximian.com>
2
3         * ecore.cs (Expression.LoadFromPtr): Use `ldobj' for generic parameters.
4
5 2004-11-20  Martin Baulig  <martin@ximian.com>
6
7         * expression.cs (Invocation.InferType): Correctly infer generic
8         instances; see gen-103.cs.
9         (Invocation.InferTypeArguments): If a generic method doesn't have
10         any unbound type parameters, we don't need to infer anything.
11
12 2004-11-19  Raja R Harinath  <rharinath@novell.com>
13
14         * Makefile (gmcs.exe): Update to new location of bootstrap mcs.exe.
15
16 2004-11-17  Raja R Harinath  <rharinath@novell.com>
17
18         * typemanager.cs (TypeHandle.GetTypeHandle): Make private.
19         (TypeHandle.GetMemberCache): New.
20         (TypeHandle.TypeHandle): Update.
21         (TypeManager.LookupMemberCache): Rewritten from LookupMemberContainer.
22         (TypeManager.LookupParentInterfacesCache):
23         Rename from LookupInterfaceCache.  Optimize slightly.
24         (TypeManager.MemberLookup_FindMembers): Update.
25         * decl.cs (MemberCache.MemberCache): Set Container to null in the
26         multi-type variant.
27         (AddCacheContents): Rename from AddHashtable.
28         * class.cs (TypeContainer.parent_container): Remove.
29         (TypeContainer.VerifyClsCompliance): Don't use parent_container.
30         (TypeContainer.DoDefineMembers): Don't initialize it.
31         Update to name changes.
32         
33 2004-11-17  Miguel de Icaza  <miguel@ximian.com>
34
35         * class.cs (MethodCore.CheckAccessModifiers): New helper routine
36         that factors the code to check access modifiers on override.  
37
38         (PropertyBase): Use the code here.
39
40         Patch from Lluis S'anchez, fixes bug #69361.
41
42 2004-11-15  Miguel de Icaza  <miguel@ximian.com>
43
44         * anonymous.cs (AnonymousMethod.Error_AddressOfCapturedVar): New
45         routine that is used to report the use of a captured variable
46         whose address has been taken.
47
48         There are two checks: one when variables are being captured and
49         the other check is when the address of a variable is taken. 
50         
51         (because an anonymous methods might be resolved before *or* after
52         the address has been taken) and 
53
54         * expression.cs (Conditional.DoResolve): Remove the special
55         casing that Martin added to trueExpr and falseExpr being both
56         NullLiteral.  We get the right behavior now just by introducing
57         the null_type into the compiler. 
58
59         * convert.cs (ExplicitConversion): Change the code to use
60         null_type instead of testing `expr is NullLiteral'.
61         (ImplicitConversionStandard): use null_type too.
62         (ImplicitReferenceConversionExists): use null_type too.
63         (ImplicitReferenceConversion): use null_type too.
64
65         * literal.cs: The type of `NullLiteral' is now null_type instead
66         of object_type. 
67         (Resolve): Set the type here.
68
69         * typemanager.cs: Introduce null_type.
70
71 2004-11-18  Martin Baulig  <martin@ximian.com>
72
73         * rootcontext.cs
74         (RootContext.LookupType): Return a `Type', not a `TypeExpr'.
75
76 2004-11-18  Martin Baulig  <martin@ximian.com>
77
78         * ecore.cs (TypeExpr.DoResolveAsTypeStep): Make this protected.
79
80 2004-11-18  Martin Baulig  <martin@ximian.com>
81
82         * generic.cs (Constraints.Resolve): Take an `EmitContext' instead
83         of a `DeclSpace'.  If one of our constraints is a `ConstructedType',
84         call ResolveConstructedType() on it to resolve it without checking
85         constraints.
86         (Constraints.ResolveTypes): Check them here.
87         (ConstructedType.DoResolveAsTypeStep): Fully resolve ourselves,
88         but don't check constraints.
89         (ConstructedType.ResolveAsTypeTerminal): Override this and also
90         check constraints here.
91         (ConstructedType.ResolveConstructedType): New public method.  This
92         is called from DoResolveAsTypeStep() and Constraints.Resolve() to
93         resolve ourselves without checking constraints.
94
95         * ecore.cs (Expression.ResolveAsTypeTerminal): Make this virtual.
96
97 2004-11-18  Martin Baulig  <martin@ximian.com>
98
99         * decl.cs
100         (DeclSpace.CurrentType): Changed type from `TypeExpr' to `Type'.
101
102         * delegate.cs (Delegate.DefineType): Always create the EmitContext.
103
104 2004-11-18  Martin Baulig  <martin@ximian.com>
105
106         * ecore.cs (TypeExpr.ResolveType): Removed.
107         (Expression.ResolveAsTypeTerminal): We always return a fully
108         resolved `TypeExpr', so we can just access its `Type'.
109
110         * class.cs (TypeContainer.DefineType): Resolve `CurrentType' here.
111
112 2004-11-17  Martin Baulig  <martin@ximian.com>
113
114         * ecore.cs (IAlias.Type): Replaced with ResolveAsType() to make
115         sure we don't return any unresolved TypeExpr's.
116         (TypeAliasExpression): The .ctor now takes an `IAlias' instead of
117         a `TypeExpr'.
118         (Expression.ResolveAsTypeTerminal): Make sure `te.Type != null'.
119
120         * expression.cs (MemberAccess.ResolveAsTypeStep): Don't return any
121         unresolved `ConstructedType's.
122
123 2004-11-17  Martin Baulig  <martin@ximian.com>
124
125         * ecore.cs (TypeExpr.ResolveType): Don't make this virtual.
126
127 2004-11-17  Martin Baulig  <martin@ximian.com>
128
129         * ecore.cs
130         (Expression.ResolveAsTypeTerminal): Removed the `bool silent' argument.
131
132         * decl.cs (DeclSpace.ResolveType): Removed.
133         (DeclSpace.ResolveTypeExpr): Removed the `bool silent' argument.
134
135 2004-11-17  Martin Baulig  <martin@ximian.com>
136
137         * decl.cs (MemberCache.AddHashtable): Add entries in the opposite
138         direction, like FindMembers() does.  Fixes #69546, testcase is in
139         test-315.cs.    
140
141 2004-11-16  Martin Baulig  <martin@ximian.com>
142
143         This is based on a patch from Marek Safar, see bug #69082.
144         Fixes bugs #63705 and #67130.
145
146         * typemanager.cs (TypeManager.LookupInterfaceCache): New public
147         method; create a MemberCache for an interface type and cache the
148         result.
149
150         * decl.cs (IMemberContainer.ParentContainer): Removed.
151         (IMemberContainer.ParentCache): New property.
152         (MemberCache.SetupCacheForInterface): Removed.
153         (MemberCache..ctor): Added .ctor which takes a `Type[]'; use this
154         to create a cache for an interface's "parent".
155
156         * class.cs (TypeContainer.DoDefineMembers): Setup cache for
157         interfaces too.
158
159 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
160
161         * statement.cs: Avoid adding bools to a hashtable.
162
163 2004-11-15  Martin Baulig  <martin@ximian.com>
164
165         * decl.cs (MemberName.GetPartialName): Removed, use GetTypeName() instead.
166
167 2004-11-11  Martin Baulig  <martin@ximian.com>
168
169         * typemanager.cs (TypeManager.GetMethodName): New method.
170
171         * class.cs (MethodData.Define): Include the generic arity in the
172         name of an explicit interface; also add it to the method name.
173
174         * pending.cs (PendingImplementation.InterfaceMethod): The method
175         name now includes the generic arity.
176
177 2004-11-07  Miguel de Icaza  <miguel@ximian.com>
178
179         * expression.cs (Invocation.OverloadResolve): Flag error if we are
180         calling an unsafe method from a safe location.
181
182 2004-11-06  Marek Safar  <marek.safar@seznam.cz>
183
184         Fix #69167
185         * codegen.cs (ApplyAttributeBuilder): Do not return; it is only warning.
186
187 2004-11-06  Miguel de Icaza  <miguel@ximian.com>
188
189         * namespace.cs (VerifyUsing): use GetPartialName instead of
190         ToString. 
191
192 2004-11-05  Miguel de Icaza  <miguel@ximian.com>
193
194         * statement.cs (Return.Resolve): Fix regression in typo: if
195         `in_exc', we have to request a NeedReturnLabel, this was a typo
196         introduced in the anonymous method check-in.  Fixes #69131.
197
198         * Indexers were using the ShortName when defining themselves,
199         causing a regression in the compiler bootstrap when applying the
200         patch from 2004-11-02 (first part), now they use their full name
201         and the bug is gone.
202
203 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
204
205         * driver.cs: Strip the path from the names of embedded resources. Fixes
206         #68519.
207
208 2004-11-04  Raja R Harinath  <rharinath@novell.com>
209
210         Fix error message regression: cs0104-2.cs.
211         * namespace.cs (NamespaceEntry.Lookup): Remove 'silent' flag.
212         (AliasEntry.Resolve): Update.
213         * rootcontext.cs (RootContext.NamespaceLookup): Update.  Remove
214         'silent' flag.
215         (RootContext.LookupType): Update.
216
217 2004-11-03  Carlos Alberto Cortez <carlos@unixmexico.org>
218
219         * cs-parser.jay: Add support for handling accessor modifiers
220         * class: Add support port accessor modifiers and error checking,
221         define PropertyMethod.Define as virtual (not abstract anymore)
222         * ecore.cs: Add checking for proeprties access with access modifiers
223         * iterators.cs: Modify Accessor constructor call based in the modified
224         constructor
225 2004-11-02  Ben Maurer  <bmaurer@ximian.com>
226
227         * expression.cs (StringConcat): Handle being called twice,
228         as when we have a concat in a field init with more than two
229         ctors in the class
230
231 2004-11-02  Miguel de Icaza  <miguel@ximian.com>
232
233         * class.cs (Event.Define, Indexer.Define, Property.Define): Do not
234         special case explicit implementations, we should always produce
235         the .property or .event declaration.
236         
237         * decl.cs (MemberName): Renamed GetFullName to GetPartialName
238         since it will not return correct data if people use this
239         unresolved in the presence of using statements (see test-313).
240
241         * class.cs (MethodData.Define): If we are an explicit interface
242         implementation, set the method name to the full name of the
243         interface plus the name of the method.  
244
245         Notice that using the method.MethodName.GetFullName() does not
246         work, as it will only contain the name as declared on the source
247         file (it can be a shorthand in the presence of using statements)
248         and not the fully qualifed type name, for example:
249
250         using System;
251
252         class D : ICloneable {
253                 object ICloneable.Clone ()  {
254                 }
255         }
256
257         Would produce a method called `ICloneable.Clone' instead of
258         `System.ICloneable.Clone'.
259
260         * namespace.cs (Alias.Resolve): Use GetPartialName.
261         
262 2004-11-01  Marek Safar  <marek.safar@seznam.cz>
263
264         * cs-parser.jay: Add error 1055 report.
265
266 2004-11-01  Miguel de Icaza  <miguel@ximian.com>
267
268         * assign.cs (Assign.DoResolve): Only do the transform of
269         assignment into a New if the types are compatible, if not, fall
270         through and let the implicit code deal with the errors and with
271         the necessary conversions. 
272
273 2004-11-01  Marek Safar  <marek.safar@seznam.cz>
274
275         * cs-parser.jay: Add error 1031 report.
276
277         * cs-tokenizer.cs: Add location for error 1038.
278
279 2004-10-31  Marek Safar  <marek.safar@seznam.cz>
280
281         * cs-parser.jay: Add error 1016 report.
282
283 2004-10-31  Marek Safar  <marek.safar@seznam.cz>
284
285         * cs-parser.jay: Add errors 1575,1611 report.
286
287 2004-10-31  Marek Safar  <marek.safar@seznam.cz>
288
289         * cs-parser.jay: Add error 1001 report.
290
291 2004-10-31  Marek Safar  <marek.safar@seznam.cz>
292
293         Fix #68850
294         * attribute.cs (GetMarshal): Add method argument for
295         caller identification.
296
297         * class.cs, codegen.cs, enum.cs, parameter.cs: Added
298         agument for GetMarshal and RuntimeMissingSupport.
299
300 2004-10-31  Marek Safar  <marek.safar@seznam.cz>
301
302         * attribute.cs (ExtractSecurityPermissionSet): Removed
303         TypeManager.code_access_permission_type.
304
305         * typemanager.cs: Removed TypeManager.code_access_permission_type.
306
307 2004-10-27  Miguel de Icaza  <miguel@ximian.com>
308
309         * expression.cs (LocalVariableReference.DoResolveLValue): Check
310         for obsolete use of a variable here.   Fixes regression on errors
311         cs0619-25 and cs0619-26.
312
313 2004-10-27  Marek Safar  <marek.safar@seznam.cz>
314
315         Fix #62358, implemented security attribute encoding.
316
317         * attribute.cs (Attribute.CheckSecurityActionValididy): New method.
318         Tests permitted SecurityAction for assembly or other types.
319         (Assembly.ExtractSecurityPermissionSet): New method. Transforms
320         data from SecurityPermissionAttribute to PermisionSet class.
321
322         * class.cs (ApplyAttributeBuilder): Added special handling
323         for System.Security.Permissions.SecurityAttribute based types.
324
325         * codegen.cs (AssemblyClass.ApplyAttributeBuilder): Added
326         special handling for System.Security.Permissions.SecurityAttribute
327         based types.
328
329         * enum.cs (ApplyAttributeBuilder): Added special handling
330         for System.Security.Permissions.SecurityAttribute based types.
331
332         * parameter.cs (ApplyAttributeBuilder): Added special handling
333         for System.Security.Permissions.SecurityAttribute based types.
334
335         * rootcontext.cs: Next 2 core types.
336
337         * typemanager.cs (TypeManager.security_permission_attr_type):
338         Built in type for the SecurityPermission Attribute.
339         (code_access_permission_type): Build in type.
340
341 2004-10-17  Miguel de Icaza  <miguel@ximian.com>
342
343         * expression.cs (LocalVariableReference.DoResolveBase, Emit):
344         Remove the tests for `ec.RemapToProxy' from here, and encapsulate
345         all of this information into
346         EmitContext.EmitCapturedVariableInstance.
347         
348         * codegen.cs (EmitCapturedVariableInstance): move here the
349         funcionality of emitting an ldarg.0 in the presence of a
350         remapping.   This centralizes the instance emit code.
351
352         (EmitContext.EmitThis): If the ScopeInfo contains a THIS field,
353         then emit a load of this: it means that we have reached the
354         topmost ScopeInfo: the one that contains the pointer to the
355         instance of the class hosting the anonymous method.
356
357         * anonymous.cs (AddField, HaveCapturedFields): Propagate field
358         captures to the topmost CaptureContext.
359
360 2004-10-12  Miguel de Icaza  <miguel@ximian.com>
361
362         * expression.cs (LocalVariableReference): Move the knowledge about
363         the iterators into codegen's EmitCapturedVariableInstance.
364
365 2004-10-11  Miguel de Icaza  <miguel@ximian.com>
366
367         * codegen.cs (EmitContext.ResolveTopBlock): Emit a 1643 when not
368         all code paths return a value from an anonymous method (it is the
369         same as the 161 error, but for anonymous methods).
370
371 2004-10-08  Miguel de Icaza  <miguel@ximian.com>
372
373         The introduction of anonymous methods in the compiler changed
374         various ways of doing things in the compiler.  The most
375         significant one is the hard split between the resolution phase
376         and the emission phases of the compiler.
377
378         For instance, routines that referenced local variables no
379         longer can safely create temporary variables during the
380         resolution phase: they must do so from the emission phase,
381         since the variable might have been "captured", hence access to
382         it can not be done with the local-variable operations from the runtime.
383         
384         * statement.cs 
385
386         (Block.Flags): New flag `IsTopLevel' to indicate that this block
387         is a toplevel block.
388
389         (ToplevelBlock): A new kind of Block, these are the blocks that
390         are created by the parser for all toplevel method bodies.  These
391         include methods, accessors and anonymous methods.
392
393         These contain some extra information not found in regular blocks:
394         A pointer to an optional CaptureContext (for tracking captured
395         local variables and parameters).  A pointer to the parent
396         ToplevelBlock.
397         
398         (Return.Resolve): Catch missmatches when returning a value from an
399         anonymous method (error 1662).
400         Invoke NeedReturnLabel from the Resolve phase instead of the emit
401         phase.
402
403         (Break.Resolve): ditto.
404
405         (SwitchLabel): instead of defining the labels during the
406         resolution phase, we now turned the public ILLabel and ILLabelCode
407         labels into methods called GetILLabelCode() and GetILLabel() that
408         only define the label during the Emit phase.
409
410         (GotoCase): Track the SwitchLabel instead of the computed label
411         (its contained therein).  Emit the code by using
412         SwitchLabel.GetILLabelCode ().
413
414         (LocalInfo.Flags.Captured): A new flag has been introduce to track
415         whether the Local has been captured or not.
416
417         (LocalInfo.IsCaptured): New property, used to tell whether the
418         local has been captured.
419         
420         * anonymous.cs: Vastly updated to contain the anonymous method
421         support.
422
423         The main classes here are: CaptureContext which tracks any
424         captured information for a toplevel block and ScopeInfo used to
425         track the activation frames for various local variables.   
426
427         Each toplevel block has an optional capture context associated
428         with it.  When a method contains an anonymous method both the
429         toplevel method and the anonymous method will create a capture
430         context.   When variables or parameters are captured, they are
431         recorded on the CaptureContext that owns them, for example:
432
433         void Demo () {
434              int a;
435              MyDelegate d = delegate {
436                  a = 1;
437              }
438         }
439
440         Here `a' will be recorded as captured on the toplevel
441         CapturedContext, the inner captured context will not have anything
442         (it will only have data if local variables or parameters from it
443         are captured in a nested anonymous method.
444
445         The ScopeInfo is used to track the activation frames for local
446         variables, for example:
447
448         for (int i = 0; i < 10; i++)
449                 for (int j = 0; j < 10; j++){
450                    MyDelegate d = delegate {
451                         call (i, j);
452                    }
453                 }
454
455         At runtime this captures a single captured variable `i', but it
456         captures 10 different versions of the variable `j'.  The variable
457         `i' will be recorded on the toplevel ScopeInfo, while `j' will be
458         recorded on a child.  
459
460         The toplevel ScopeInfo will also track information like the `this'
461         pointer if instance variables were referenced (this is necessary
462         as the anonymous method lives inside a nested class in the host
463         type of the method). 
464
465         (AnonymousMethod): Expanded to track the Toplevel, implement
466         `AnonymousMethod.Compatible' to tell whether an anonymous method
467         can be converted to a target delegate type. 
468
469         The routine now also produces the anonymous method content
470
471         (AnonymousDelegate): A helper class that derives from
472         DelegateCreation, this is used to generate the code necessary to
473         produce the delegate for the anonymous method that was created. 
474
475         * assign.cs: API adjustments for new changes in
476         Convert.ImplicitStandardConversionExists.
477
478         * class.cs: Adjustments to cope with the fact that now toplevel
479         blocks are of type `ToplevelBlock'. 
480
481         * cs-parser.jay: Now we produce ToplevelBlocks for toplevel blocks
482         insteda of standard blocks.
483
484         Flag errors if params arguments are passed to anonymous methods.
485
486         * codegen.cs (EmitContext): Replace `InAnonymousMethod' with
487         `CurrentAnonymousMethod' which points to the current Anonymous
488         Method.  The variable points to the AnonymousMethod class that
489         holds the code being compiled.  It is set in the new EmitContext
490         created for the anonymous method.
491
492         (EmitContext.Phase): Introduce a variable and an enumeration to
493         assist in enforcing some rules about when and where we are allowed
494         to invoke certain methods (EmitContext.NeedsReturnLabel is the
495         only one that enfonces this right now).
496
497         (EmitContext.HaveCaptureInfo): new helper method that returns
498         whether we have a CapturedContext initialized.
499
500         (EmitContext.CaptureVariable): New method used to register that a
501         LocalInfo must be flagged for capturing. 
502
503         (EmitContext.CapturedParameter): New method used to register that a
504         parameters must be flagged for capturing. 
505         
506         (EmitContext.CapturedField): New method used to register that a
507         field must be flagged for capturing. 
508
509         (EmitContext.HaveCapturedVariables,
510         EmitContext.HaveCapturedFields): Return whether there are captured
511         variables or fields. 
512
513         (EmitContext.EmitMethodHostInstance): This is used to emit the
514         instance for the anonymous method.  The instance might be null
515         (static methods), this (for anonymous methods that capture nothing
516         and happen to live side-by-side with the current method body) or a
517         more complicated expression if the method has a CaptureContext.
518
519         (EmitContext.EmitTopBlock): Routine that drives the emission of
520         code: it will first resolve the top block, then emit any metadata
521         and then emit the code.  The split is done so that we can extract
522         any anonymous methods and flag any captured variables/parameters.
523         
524         (EmitContext.ResolveTopBlock): Triggers the resolution phase,
525         during this phase, the ILGenerator should not be used as labels
526         and local variables declared here might not be accessible to any
527         code that is part of an anonymous method.  
528
529         Exceptions to this include the temporary variables that are
530         created by some statements internally for holding temporary
531         variables. 
532         
533         (EmitContext.EmitMeta): New routine, in charge of emitting all the
534         metadata for a cb
535
536         (EmitContext.TemporaryReturn): This method is typically called
537         from the Emit phase, and its the only place where we allow the
538         ReturnLabel to be defined other than the EmitMeta.  The reason is
539         that otherwise we would have to duplicate a lot of logic in the
540         Resolve phases of various methods that today is on the Emit
541         phase. 
542
543         (EmitContext.NeedReturnLabel): This no longer creates the label,
544         as the ILGenerator is not valid during the resolve phase.
545
546         (EmitContext.EmitThis): Extended the knowledge in this class to
547         work in anonymous methods in addition to iterators. 
548
549         (EmitContext.EmitCapturedVariableInstance): This emits whatever
550         code is necessary on the stack to access the instance to a local
551         variable (the variable will be accessed as a field).
552
553         (EmitContext.EmitParameter, EmitContext.EmitAssignParameter,
554         EmitContext.EmitAddressOfParameter): Routines to support
555         parameters (not completed at this point). 
556         
557         Removals: Removed RemapLocal and RemapLocalLValue.  We probably
558         will also remove the parameters.
559
560         * convert.cs (Convert): Define a `ConstantEC' which points to a
561         null.  This is just to prefity some code that uses
562         ImplicitStandardConversion code and do not have an EmitContext
563         handy.
564
565         The idea is to flag explicitly that at that point in time, it is
566         known that the conversion will not trigger the delegate checking
567         code in implicit conversions (which requires a valid
568         EmitContext). 
569
570         Everywhere: pass new EmitContext parameter since
571         ImplicitStandardConversionExists now requires it to check for
572         anonymous method conversions. 
573
574         (Convert.ImplicitStandardConversionExists): If the type of an
575         expression is the anonymous_method_type, and the type is a
576         delegate, we invoke the AnonymousMethod.Compatible method to check
577         whether an implicit conversion is possible. 
578
579         (Convert.ImplicitConversionStandard): Only do implicit method
580         group conversions if the language level is not ISO_1.
581
582         * delegate.cs (Delegate.GetInvokeMethod): Common method to get the
583         MethodInfo for the Invoke method.  used by Delegate and
584         AnonymousDelegate.
585
586         * expression.cs (Binary.DoNumericPromotions): only allow anonymous
587         method conversions if the target type is a delegate.
588
589         Removed extra debugging nops.
590
591         (LocalVariableReference): Turn the `local_info' into a public
592         field. 
593
594         Add `prepared' field, the same hack used for FieldExprs to cope
595         with composed assignments, as Local variables do not necessarily
596         operate purely on the stack as they used to: they can be captured
597         fields. 
598
599         Add `temp' for a temporary result, like fields.
600
601         Refactor DoResolve and DoResolveLValue into DoResolveBase.
602
603         It now copes with Local variables that are captured and emits the
604         proper instance variable to load it from a field in the captured
605         case. 
606
607         (ParameterReference.DoResolveBase): During the resolve phase,
608         capture parameters if we are in an anonymous method.
609
610         (ParameterReference.Emit, ParameterReference.AddressOf): If in an
611         anonymous method, use the EmitContext helper routines to emit the
612         parameter reference.
613
614         * iterators.cs: Set RemapToProxy to true/false during the
615         EmitDispose class.
616
617         * parameters.cs (GetParameterByName): New helper method. 
618
619         * typemanager.cs (anonymous_method_type) a new type that
620         represents an anonyous method.  This is always an internal type,
621         used as a fencepost to test against the anonymous-methodness of an
622         expression. 
623         
624 2004-10-20  Marek Safar  <marek.safar@seznam.cz>
625
626         * class.cs (MethodCore.CheckBase): Add errors 505, 533, 544,
627         561 report.
628         (PropertyBase.FindOutParentMethod): Add errors 545, 546 report.
629
630 2004-11-10  Martin Baulig  <martin@ximian.com>
631
632         * expression.cs (Invocation.BetterFunction): If two methods have
633         equal parameter types, but only one of them is generic, the
634         non-generic one wins.
635         (New.DoResolve): Don't set `is_struct' to false if we're a generic
636         instance; just use `Type.IsValueType' to determine whether
637         something is a struct or not.
638         (MemberAccess.DoResolveAsTypeStep): Don't modify the `args' field,
639         so we can be called multiple times.
640
641 2004-11-10  Martin Baulig  <martin@ximian.com>
642
643         * generic.cs (TypeParameter.DefineConstraints): New public method.
644         (TypeParameter.CheckAccessLevel): Override this and return true.
645         (ConstructedType.ResolveType): Renamed to DoResolveType(), don't
646         override ResolveType() anymore.
647         (ConstructedType.DoResolveAsTypeStep): Call DoResolveType() here.
648
649 2004-11-10  Martin Baulig  <martin@ximian.com>
650
651         * rootcontext.cs (RootContext.LookupType): If we're a nested type,
652         call DeclSpace.ResolveNestedType() on it.
653
654 2004-11-10  Martin Baulig  <martin@ximian.com>
655
656         * support.cs (ReflectionParameters.ParameterModifier): If `gpd' is
657         non-null, call ParameterModifier() on it.
658
659 2004-11-10  Martin Baulig  <martin@ximian.com>
660
661         * iterators.cs
662         (Iterators): Added `current_type' and `this_type' fields.
663         (Iterators.DefineIterator): Create a new EmitContext and store it
664         in `ec'; compute `this_type'.
665
666 2004-11-10  Martin Baulig  <martin@ximian.com>
667
668         * typemanager.cs
669         (TypeManager.IsPrivateAccessible): New public method.
670         (Closure.Filter): Use IsPrivateAccessible() instead of IsEqual().
671
672 2004-11-10  Martin Baulig  <martin@ximian.com>
673
674         * class.cs (TypeContainer.DefineType): Call
675         TypeBuilder.DefineGenericParameters() before resolving the type
676         parameters.
677         (MethodData.parent_method): New protected field.
678         (MethodData..ctor): Added `MethodInfo parent_method' argument.
679         (MethodData.Define): Compute `parent_method'.
680
681         * decl.cs
682         (MemberCore.GetObsoleteAttribute): Don't create a new EmitContext.
683         (MemberCore.GetClsCompliantAttributeValue): Likewise.
684         (DeclSpace.ec): New protected field; store the EmitContext here.
685         (DeclSpace.EmitContext): New public property.
686         (DeclSpace.ResolveType): Un-comment from the [Obsolte] attribute.
687         (DeclSpace.ResolveNestedType): New public method.
688         (DeclSpace.ResolveTypeExpr): Just call ResolveAsTypeTerminal() here.
689         (DeclSpace.NestedAccessible): Added `Type tb' argument.
690         (DeclSpace.FamilyAccessible): Likewise.
691         (DeclSpace.FindType): Call ResolveNestedType() for nested types.
692         (DeclSpace.GetClsCompliantAttributeValue): Don't create a new
693         EmitContext.
694
695         * delegate.cs (Delegate.Define): Store the EmitContext in the `ec'
696         field.
697
698         * enum.cs (Enum.Define): Store the EmitContext in the `ec' field.
699         (Enum.Emit): Don't create a new EmitContext.
700
701 2004-10-18  Martin Baulig  <martin@ximian.com>
702
703         * statement.cs (Fixed.Resolve): Don't access the TypeExpr's
704         `Type' directly, but call ResolveType() on it.
705         (Catch.Resolve): Likewise.
706         (Foreach.Resolve): Likewise.
707
708 2004-10-18  Martin Baulig  <martin@ximian.com>
709
710         * expression.cs (Cast.DoResolve): Don't access the TypeExpr's
711         `Type' directly, but call ResolveType() on it.
712         (Probe.DoResolve): Likewise.
713         (ArrayCreation.LookupType): Likewise.
714         (TypeOf.DoResolve): Likewise.
715         (SizeOf.DoResolve): Likewise.
716
717 2004-10-18  Raja R Harinath  <rharinath@novell.com>
718
719         * class.cs (FieldMember.DoDefine): Reset ec.InUnsafe after doing
720         the ResolveType.
721
722 2004-10-17  John Luke  <john.luke@gmail.com>
723
724         * class.cs (Operator.GetSignatureForError): use CSharpName
725
726         * parameter.cs (Parameter.GetSignatureForError): Returns
727         correct name even if was not defined.
728
729 2004-10-13  Raja R Harinath  <rharinath@novell.com>
730
731         Fix #65816.
732         * class.cs (TypeContainer.EmitContext): New property.
733         (DefineNestedTypes): Create an emitcontext for each part.
734         (MethodCore.DoDefineParameters): Use container's emitcontext.
735         Pass type array to InternalParameters.
736         (MemberBase.DoDefine): Use container's emitcontext.
737         (FieldMember.Define): Likewise.
738         (Event.Define): Likewise.
739         (SetMethod.GetParameterInfo): Change argument to EmitContext.
740         Pass type array to InternalParameters.
741         (SetIndexerMethod.GetParameterInfo): Likewise.
742         (SetMethod.Define): Pass emitcontext to GetParameterInfo.
743         * delegate.cs (Define): Pass emitcontext to
744         ComputeAndDefineParameterTypes and GetParameterInfo.  Pass type
745         array to InternalParameters.
746         * expression.cs (ParameterReference.DoResolveBase): Pass
747         emitcontext to GetParameterInfo.
748         (ComposedCast.DoResolveAsTypeStep): Remove check on
749         ec.ResolvingTypeTree.
750         * parameter.cs (Parameter.Resolve): Change argument to
751         EmitContext.  Use ResolveAsTypeTerminal.
752         (Parameter.GetSignature): Change argument to EmitContext.
753         (Parameters.ComputeSignature): Likewise.
754         (Parameters.ComputeParameterTypes): Likewise.
755         (Parameters.GetParameterInfo): Likewise.
756         (Parameters.ComputeAndDefineParameterTypes): Likewise.
757         Re-use ComputeParameterTypes.  Set ec.ResolvingTypeTree.
758         * support.cs (InternalParameters..ctor): Remove variant that takes
759         a DeclSpace.
760         * typemanager.cs (system_intptr_expr): New.
761         (InitExpressionTypes): Initialize it.
762
763 2004-10-12  Chris Toshok  <toshok@ximian.com>
764
765         * cs-parser.jay: fix location for try_statement and catch_clause.
766
767 2004-10-18  Martin Baulig  <martin@ximian.com>
768
769         * class.cs (FieldMember.Define): Don't access the TypeExpr's
770         `Type' directly, but call ResolveType() on it.
771         (MemberBase.DoDefine): Likewise.
772
773         * expression.cs (New.DoResolve): Don't access the TypeExpr's
774         `Type' directly, but call ResolveType() on it.
775         (ComposedCast.DoResolveAsTypeStep): Likewise.
776
777         * statement.cs (LocalInfo.Resolve): Don't access the TypeExpr's
778         `Type' directly, but call ResolveType() on it.
779
780 2004-10-17  John Luke  <john.luke@gmail.com>
781
782         * class.cs (Operator.GetSignatureForError): use CSharpName
783
784         * parameter.cs (Parameter.GetSignatureForError): Returns
785         correct name even if was not defined.
786
787 2004-10-13  Raja R Harinath  <rharinath@novell.com>
788
789         Fix #65816.
790         * class.cs (TypeContainer.EmitContext): New property.
791         (DefineNestedTypes): Create an emitcontext for each part.
792         (MethodCore.DoDefineParameters): Use container's emitcontext.
793         Pass type array to InternalParameters.
794         (MemberBase.DoDefine): Use container's emitcontext.
795         (FieldMember.Define): Likewise.
796         (Event.Define): Likewise.
797         (SetMethod.GetParameterInfo): Change argument to EmitContext.
798         Pass type array to InternalParameters.
799         (SetIndexerMethod.GetParameterInfo): Likewise.
800         (SetMethod.Define): Pass emitcontext to GetParameterInfo.
801         * delegate.cs (Define): Pass emitcontext to
802         ComputeAndDefineParameterTypes and GetParameterInfo.  Pass type
803         array to InternalParameters.
804         * expression.cs (ParameterReference.DoResolveBase): Pass
805         emitcontext to GetParameterInfo.
806         (ComposedCast.DoResolveAsTypeStep): Remove check on
807         ec.ResolvingTypeTree.
808         * parameter.cs (Parameter.Resolve): Change argument to
809         EmitContext.  Use ResolveAsTypeTerminal.
810         (Parameter.GetSignature): Change argument to EmitContext.
811         (Parameters.ComputeSignature): Likewise.
812         (Parameters.ComputeParameterTypes): Likewise.
813         (Parameters.GetParameterInfo): Likewise.
814         (Parameters.ComputeAndDefineParameterTypes): Likewise.
815         Re-use ComputeParameterTypes.  Set ec.ResolvingTypeTree.
816         * support.cs (InternalParameters..ctor): Remove variant that takes
817         a DeclSpace.
818         * typemanager.cs (system_intptr_expr): New.
819         (InitExpressionTypes): Initialize it.
820
821 2004-10-12  Chris Toshok  <toshok@ximian.com>
822
823         * cs-parser.jay: fix location for try_statement and catch_clause.
824
825 2004-10-07  Raja R Harinath  <rharinath@novell.com>
826
827         More DeclSpace.ResolveType avoidance.
828         * decl.cs (MemberCore.InUnsafe): New property.
829         * class.cs (MemberBase.DoDefine): Use ResolveAsTypeTerminal 
830         with newly created EmitContext.
831         (FieldMember.Define): Likewise.
832         * delegate.cs (Delegate.Define): Likewise.
833         * ecore.cs (SimpleName.ResolveAsTypeStep): Lookup with alias
834         only if normal name-lookup fails.
835         (TypeExpr.DoResolve): Enable error-checking.
836         * expression.cs (ArrayCreation.DoResolve): Use ResolveAsTypeTerminal.
837         (SizeOf.DoResolve): Likewise.
838         (ComposedCast.DoResolveAsTypeStep): Likewise.
839         (StackAlloc.DoResolve): Likewise.
840         * statement.cs (Block.Flags): Add new flag 'Unsafe'.
841         (Block.Unsafe): New property.
842         (Block.EmitMeta): Set ec.InUnsafe as appropriate.
843         (Unsafe): Set 'unsafe' flag of contained block.
844         (LocalInfo.Resolve): Use ResolveAsTypeTerminal.
845         (Fixed.Resolve): Likewise.
846         (Catch.Resolve): Likewise.
847         (Using.ResolveLocalVariableDecls): Likewise.
848         (Foreach.Resolve): Likewise.
849
850 2004-10-05  John Luke <john.luke@gmail.com>
851
852         * cs-parser.jay: add location to error CS0175
853
854 2004-10-04  Miguel de Icaza  <miguel@ximian.com>
855
856         * ecore.cs (Expression.Constantity): Add support for turning null
857         into a constant.
858
859         * const.cs (Const.Define): Allow constants to be reference types
860         as long as the value is Null.
861
862 2004-10-04  Juraj Skripsky  <js@hotfeet.ch>
863
864         * namespace.cs (NamespaceEntry.Using): No matter which warning
865         level is set, check if this namespace name has already been added.
866
867 2004-10-03 Ben Maurer  <bmaurer@ximian.com>
868
869         * expression.cs: reftype [!=]= null should always use br[true,false].
870         # 67410
871
872 2004-10-03  Marek Safar  <marek.safar@seznam.cz>
873
874         Fix #67108
875         * attribute.cs: Enum conversion moved to 
876         GetAttributeArgumentExpression to be applied to the all
877         expressions.
878
879 2004-10-01  Raja R Harinath  <rharinath@novell.com>
880
881         Fix #65833, test-300.cs, cs0122-5.cs, cs0122-6.cs.
882         * class.c (TypeContainer.DefineType): Flag error if
883         base types aren't accessible due to access permissions.
884         * decl.cs (DeclSpace.ResolveType): Move logic to
885         Expression.ResolveAsTypeTerminal.
886         (DeclSpace.ResolveTypeExpr): Thin layer over
887         Expression.ResolveAsTypeTerminal.
888         (DeclSpace.CheckAccessLevel, DeclSpace.FamilyAccess):
889         Refactor code into NestedAccess.  Use it.
890         (DeclSpace.NestedAccess): New.
891         * ecore.cs (Expression.ResolveAsTypeTerminal): Add new
892         argument to silence errors.  Check access permissions.
893         (TypeExpr.DoResolve, TypeExpr.ResolveType): Update.
894         * expression.cs (ProbeExpr.DoResolve): Use ResolveAsTypeTerminal.
895         (Cast.DoResolve): Likewise.
896         (New.DoResolve): Likewise.
897         (InvocationOrCast.DoResolve,ResolveStatement): Likewise.
898         (TypeOf.DoResolve): Likewise.
899
900         * expression.cs (Invocation.BetterConversion): Return the Type of
901         the better conversion.  Implement section 14.4.2.3 more faithfully.
902         (Invocation.BetterFunction): Make boolean.  Make correspondence to
903         section 14.4.2.2 explicit.
904         (Invocation.OverloadResolve): Update.
905         (Invocation): Remove is_base field.
906         (Invocation.DoResolve): Don't use is_base.  Use mg.IsBase.
907         (Invocation.Emit): Likewise.
908
909 2004-09-24  Marek Safar  <marek.safar@seznam.cz>
910
911         * cs-parser.jay: Reverted 642 warning fix.
912
913 2004-09-23  Marek Safar  <marek.safar@seznam.cz>
914
915         Fix bug #66615
916         * decl.cs (FindMemberWithSameName): Indexer can have more than
917         1 argument.
918
919 2004-09-23  Marek Safar  <marek.safar@seznam.cz>
920
921         * expression.cs (LocalVariableReference.DoResolveLValue):
922         Do not report warning 219 for out values.
923         (EmptyExpression.Null): New member to avoid extra allocations.
924
925 2004-09-23  Marek Safar  <marek.safar@seznam.cz>
926
927         * cs-parser.jay: Fix wrong warning 642 report.
928
929         * cs-tokenizer.cs (CheckNextToken): New helper;
930         Inspect next character if is same as expected.
931
932 2004-09-23  Martin Baulig  <martin@ximian.com>
933
934         * convert.cs (Convert.ImplicitReferenceConversion): Some code cleanup.
935         (Convert.ImplicitReferenceConversionExists): Likewise.
936
937 2004-11-09  Raja R Harinath  <rharinath@novell.com>
938
939         * Makefile (DISTFILES): Comment out a few missing files.
940
941 2004-10-29  Raja R Harinath  <rharinath@novell.com>
942
943         * Makefile (bootstrap_libs,bootstrap_libfiles): New.
944         (bootstrap-libs): New target.  Invokes the net_2_0_bootstrap profile.
945         (gmcs.exe): Invoke bootstrap-libs.
946         (clean-local): Clean the net_2_0_bootstrap profile too.
947         (PROGRAM_INSTALL_DIR): New.
948         (install-local): Use it.
949
950 2004-10-13  Martin Baulig  <martin@ximian.com>
951
952         * generic.cs (TypeManager.InflatedConstraints): New nested class.
953         (TypeParameter.DefineType): If we're a method type parameter and
954         that method is overriding something, "inflate" its constraints.
955
956 2004-10-12  Martin Baulig  <martin@ximian.com>
957
958         * expression.cs (MemberAccess.DoResolve): If we're a SimpleName
959         and have type arguments, create and resolve a ConstructedType.
960
961 2004-10-12  Martin Baulig  <martin@ximian.com>
962
963         * decl.cs (MemberCache.FindMemberToOverride): Use
964         TypeManager.IsEqual() to compare the parameters and Type.Equals()
965         to compare the invocationType.
966
967         * typemanager.cs (TypeManager.IsEqual): Added support for arrays.
968         When comparing two type parameters, only do the signature-only
969         comparision for method type parameters.
970
971 2004-10-11  Martin Baulig  <martin@ximian.com>
972
973         * report.cs: Don't make --fatal abort on warnings, we have
974         -warnaserror for that.
975
976 2004-10-11  Martin Baulig  <martin@ximian.com>
977
978         * typemanager.cs
979         (TypeManager.IsEqualGenericType): Removed, use IsEqual() instead.
980         (TypeManager.IsEqual): Call ourself recursively instead of using
981         Type.IsEqual(). 
982
983 2004-10-11  Martin Baulig  <martin@ximian.com>
984
985         * class.cs (TypeContainer.DefineType): Only call TypeParameter.Define()
986         on our own type parameters, not on the ones we inherit from a containing
987         class.
988
989         * expression.cs (Invocation.InferType): Use `==', not `Equals()' for
990         the comparision.
991
992         * generic.cs (TypeParameter.Define): We may only be called once.
993
994         * pending.cs (Pending.InterfaceMethod): Call TypeManager.Real_IsEqual()
995         instead of TypeManager.IsEqual().
996
997 2004-09-28  Martin Baulig  <martin@ximian.com>
998
999         * generic.cs
1000         (GenericConstraints.EffectiveBaseClass): New public property.
1001         (TypeParameter.GenericConstraints): New public property.
1002         (ConstructedType.CheckConstraints): Improved.
1003
1004         * convert.cs (Convert.TypeParam_EffectiveBaseType): New private method.
1005         (Convert.TypeParameterConversion): New private method; use this in
1006         ImplicitReferenceConversion() and ImplicitReferenceConversionExists()
1007         for all conversions related to type parameters.
1008
1009 2004-09-24  Martin Baulig  <martin@ximian.com>
1010
1011         * convert.cs (Convert.ImplicitReferenceConversion): Added implicit
1012         type parameter conversions for type parameters which are known to
1013         be reference types.
1014
1015 2004-09-24  Martin Baulig  <martin@ximian.com>
1016
1017         * generic.cs (GenericConstraints): Added `IsReferenceType' and
1018         `IsValueType' properties.
1019
1020         * support.cs (ReflectionConstraints): Use
1021         Type.GetGenericParameterConstraints() instead of the old hack.
1022
1023 2004-09-24  Martin Baulig  <martin@ximian.com>
1024
1025         * generic.cs (GenericConstraints): Moved here and made it an
1026         abstract class.
1027
1028         * support.cs (GenericConstraints): Moved to generic.cs.
1029
1030 2004-09-24  Martin Baulig  <martin@ximian.com>
1031
1032         * support.cs
1033         (ReflectionConstraints): Un-nested this class and made it public.
1034
1035         * typemanager.cs
1036         (TypeManager.GetTypeParameterConstraints): New public method.
1037         (TypeManager.HasConstructorConstraint): Use the attributes.
1038
1039 2004-09-24  Martin Baulig  <martin@ximian.com>
1040
1041         * support.cs (GenericConstraints): Replaced `HasConstructor',
1042         `IsReferenceType' and `IsValueType' with `Attributes'.
1043         (ReflectionParameters.ReflectionConstraints): Removed the Create()
1044         method and made the .ctor public.
1045
1046         * generic.cs (Constraints.Attributes): New public property.
1047         (Constraints): Renamed `HasConstructor' -> `HasConstructorConstraint',
1048         `IsReferenceType' -> `HasReferenceTypeConstraint' and
1049         `IsValueType' -> `HasValueTypeConstraint'.
1050
1051 2004-09-23  Martin Baulig  <martin@ximian.com>
1052
1053         * generic.cs (Constraints): Reflect latest runtime changes.
1054
1055 2004-09-23  Martin Baulig  <martin@ximian.com>
1056
1057         * convert.cs (Convert.ImplicitReferenceConversion): Some code cleanup.
1058         (Convert.ImplicitReferenceConversionExists): Likewise.
1059
1060 2004-09-23  Marek Safar  <marek.safar@seznam.cz>
1061
1062         * class.cs (Operator.Define): Add error 448 and 559 report.
1063         
1064 2004-09-22  Marek Safar  <marek.safar@seznam.cz>
1065
1066         * class.cs (MemberBase.IsTypePermitted): New protected
1067         method for checking error CS0610.
1068
1069 2004-09-22  Marek Safar  <marek.safar@seznam.cz>
1070
1071         * class.cs (TypeContainer.HasExplicitLayout): New property
1072         Returns whether container has StructLayout attribute set Explicit.
1073         (FieldMember): New abstract class for consts and fields.
1074         (FieldMember.ApplyAttributeBuilder): Add error 636 and 637 report.
1075         (Field): Reuse FieldMember.
1076
1077         * const.cs (Const): Reuse FieldMember.
1078
1079         * rootcontext.cs: EmitConstants call moved to class.
1080
1081 2004-09-22  Martin Baulig  <martin@ximian.com>
1082
1083         Marek and me just fixed one of our oldest bugs: #28562 :-)
1084
1085         * ecore.cs (EnumConstant.GetValueAsEnumType): New public method.
1086
1087         * attribute.cs (Attribute.GetAttributeArgumentExpression): If
1088         we're an EnumConstant, just return that.
1089         (Attribute.Resolve): GetAttributeArgumentExpression() may give us
1090         an EnumConstant.  In this case, we need to use GetValueAsEnumType()
1091         to get the value which'll actually be written into the attribute.
1092         However, we have to use GetValue() to access the attribute's value
1093         in the compiler.        
1094
1095 2004-09-22  Marek Safar  <marek.safar@seznam.cz>
1096
1097         * constant.cs (Constant.IsNegative): New abstract property
1098         IsNegative.
1099
1100         * expression.cs (ArrayAccess.DoResolve): Add warning 251.
1101         (StackAlloc.DoResolve): Reused IsNegative.
1102
1103 2004-09-22  Martin Baulig  <martin@ximian.com>
1104
1105         * typemanager.cs (TypeManager.LookupGenericTypeContainer): New
1106         public method; like LookupTypeContainer, but also works for
1107         generic instances.
1108
1109         * report.cs (Report.SymbolRelatedToPreviousError): Use
1110         TypeManager.LookupGenericTypeContainer().       
1111
1112 2004-09-22  Martin Baulig  <martin@ximian.com>
1113
1114         Thanks to Peter Sestoft for this bug report.
1115
1116         * expression.cs (Conditional): If both the `trueExpr' and the
1117         `falseExpr' is a NullLiteral, return a NullLiteral.
1118
1119 2004-09-22  Martin Baulig  <martin@ximian.com>
1120
1121         * statement.cs (Foreach.EmitCollectionForeach): If we're in an
1122         iterator, use `enumerator.EmitThis()' instead of `ec.EmitThis()'
1123         for the "get_Current" call.
1124
1125 2004-09-21  Martin Baulig  <martin@ximian.com>
1126
1127         * convert.cs (Convert.ImplicitReferenceConversion): When
1128         converting to an interface type, first check whether we're
1129         converting from a reference type.
1130
1131 2004-09-14  Martin Baulig  <martin@ximian.com>
1132
1133         * decl.cs (MemberCore.Emit): Always call VerifyObsoleteAttribute().
1134
1135 2004-09-14  Marek Safar  <marek.safar@seznam.cz>
1136
1137         Fixed bug #61902
1138         * codegen.cs (TestObsoleteMethodUsage): Trace when method is
1139         called and is obsolete then this member suppress message
1140         when call is inside next [Obsolete] method or type.
1141
1142         * expression.cs: Use TestObsoleteMethodUsage member.
1143
1144 2004-09-14  Martin Baulig  <martin@ximian.com>
1145
1146         * genericparser.cs: Removed.
1147
1148 2004-09-13  Marek Safar  <marek.safar@seznam.cz>
1149
1150         * class.cs (MethodCore.CheckBase): Fix bug #65757.
1151
1152 2004-09-12  Marek Safar  <marek.safar@seznam.cz>
1153
1154         * attribute.cs (Attribute.Resolve): Add error 653 report.
1155
1156         * class.cs (Class.ApplyAttributeBuilder): Add error 641
1157         report.
1158         (Method.ApplyAttributeBuilder): Add error 685 report.
1159         (Operator.Define): Add error 564 report.
1160
1161         * cs-tokenizer.cs (handle_hex): Add error 1013 report.
1162
1163         * expression.cs (Invocation.DoResolve): Add error
1164         245 and 250 report.
1165
1166         * parameter.cs (Parameter.ApplyAttributeBuilder): Add
1167         error 674 report.
1168
1169 2004-09-11  Marek Safar  <marek.safar@seznam.cz>
1170
1171         * class.cs (ConstructorInitializer.Resolve):
1172         Wrong error number (515->516).
1173
1174 2004-09-11  Marek Safar  <marek.safar@seznam.cz>
1175
1176         * class.cs (Indexer.Define): Add error 631 report.
1177
1178 2004-09-11  Marek Safar  <marek.safar@seznam.cz>
1179
1180         * ecore.cs (Error_NegativeArrayIndex): Fix 248 error.
1181
1182 2004-09-11  Marek Safar  <marek.safar@seznam.cz>
1183
1184         * expression.cs (Probe.DoResolve): Add error CS0241 report.
1185
1186 2004-09-10  Marek Safar  <marek.safar@seznam.cz>
1187
1188         * cs-parser.jay: Added error CS0241 report.
1189
1190 2004-09-10  Raja R Harinath  <rharinath@novell.com>
1191
1192         * cs-parser.jay (fixed_statement): Introduce a scope for the
1193         declaration in the 'fixed' statement.
1194
1195 2004-09-09  Marek Safar  <marek.safar@seznam.cz>
1196
1197         * cs-parser.jay: Added CS0230 error report.
1198
1199 2004-09-09  Marek Safar  <marek.safar@seznam.cz>
1200
1201         * cs-parser.jay: Added errors CS0231 and CS0257 report.
1202
1203 2004-09-09  Marek Safar  <marek.safar@seznam.cz>
1204
1205         * expression.cs (Argument.Resolve): Added error CS0192 and
1206         CS0199 report.
1207
1208 2004-09-09  Marek Safar  <marek.safar@seznam.cz>
1209
1210         C# 2.0 #pragma warning feature
1211
1212         * cs-tokenizer.cs (PreProcessPragma): New method; 
1213         Handles #pragma directive.
1214
1215         * report.cs (WarningRegions): New class; Support
1216         class for #pragma warning directive. It tests whether
1217         warning is enabled for a given line.
1218
1219 2004-09-08  Miguel de Icaza  <miguel@ximian.com>
1220
1221         * const.cs: Add more descriptive error report, tahnks to
1222         Sebastien. 
1223
1224 2004-09-08  Marek Safar  <marek.safar@seznam.cz>
1225
1226         * ecore.cs (FieldExpr.DoResolveLValue): Fixed CS0198 report.
1227
1228 2004-09-07  Miguel de Icaza  <miguel@ximian.com>
1229
1230         * expression.cs: Apply patch from Ben: Remove dead code from
1231         ArrayCreation, and remove the TurnintoConstant call in const.cs,
1232         as that code just threw an exception anwyays.
1233
1234         * const.cs: Remove the call to the turnintoconstant, for details
1235         see bug: #63144
1236         
1237         * literal.cs: The type of the null-literal is the null type;  So
1238         we use a placeholder type (literal.cs:System.Null, defined here)
1239         for it.
1240
1241         * expression.cs (Conditional.DoResolve): Remove some old code that
1242         is no longer needed, conversions have been fixed.
1243
1244         (ArrayCreationExpression.DoResolve): Return false if we fail to
1245         resolve the inner expression.
1246
1247 2004-09-07  Raja R Harinath  <rharinath@novell.com>
1248
1249         Fix test-290.cs.
1250         * cs-parser.jay (delegate_declaration): Record a delegate
1251         declaration as a type declaration.
1252         Reported by Jo Vermeulen <jo@lumumba.luc.ac.be>.
1253
1254 2004-09-06  Miguel de Icaza  <miguel@ximian.com>
1255
1256         * parameter.cs: Do not crash if the type can not be resolved. 
1257
1258         * expression.cs: Report errors with unsafe pointers, fixes #64896
1259
1260 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
1261
1262         * expression.cs: Pointer arith always needs to do a conv.i
1263         if the operand is a long. fix 65320
1264
1265 2004-09-04  Marek Safar  <marek.safar@seznam.cz>
1266
1267         Fixed cs0619-37.cs, cs0619-38.cs
1268
1269         * enum.cs (GetObsoleteAttribute): Removed.
1270
1271         * expression.cs (MemberAccess.DoResolve): Test for [Obsolete]
1272         on Enum member is double staged. The first is tested member
1273         and then enum.
1274
1275 2004-09-04  Marek Safar  <marek.safar@seznam.cz>
1276
1277         Fixed #56986, #63631, #65231
1278
1279         * class.cs: (TypeContainer.AddToMemberContainer): New method,
1280         adds member to name container.
1281         (TypeContainer.AddToTypeContainer): New method, adds type to
1282         name container.
1283         (AddConstant, AddEnum, AddClassOrStruct, AddDelegate, AddMethod,
1284         AddConstructor, AddInterface, AddField, AddProperty, AddEvent,
1285         AddOperator): Simplified by reusing AddToMemberContainer.
1286         (TypeContainer.UserDefinedStaticConstructor): Changed to property
1287         instead of field.
1288         (Method.CheckForDuplications): Fixed implementation to test all
1289         possibilities.
1290         (MemberBase): Detection whether member is explicit interface
1291         implementation is now in constructor.
1292         (MemberBase.UpdateMemberName): Handles IndexerName.
1293         (Accessor): Changed to keep also location information.
1294         (AbstractPropertyEventMethod): Is derived from MemberCore.
1295         (AbstractPropertyEventMethod.IsDummy): Says whether accessor
1296         will be emited or not.
1297         (PropertyBase.AreAccessorsDuplicateImplementation):
1298         Tests whether accessors are not in collision with some method.
1299         (Operator): Is derived from MethodCore to simplify common
1300         operations.
1301
1302         * decl.cs (Flags.TestMethodDuplication): Test for duplication
1303         must be performed.
1304         (DeclSpace.AddToContainer): Adds the member to defined_names
1305         table. It tests for duplications and enclosing name conflicts.
1306
1307         * enum.cs (EnumMember): Clean up to reuse the base structures
1308
1309 2004-09-03  Martin Baulig  <martin@ximian.com>
1310
1311         Merged latest changes into gmcs.  Please keep this comment in
1312         here, it makes it easier for me to see what changed in MCS since
1313         the last time I merged.
1314
1315 2004-09-03  Martin Baulig  <martin@ximian.com>
1316
1317         * class.cs (TypeContainer.DefineDefaultConstructor): Put this back
1318         into TypeContainer, to make partial classes work again.
1319
1320 2004-09-03  Martin Baulig  <martin@ximian.com>
1321
1322         * rootcontext.cs (RootContext.V2): Removed.
1323
1324 2004-03-23  Martin Baulig  <martin@ximian.com>
1325
1326         * expression.cs (Invocation.OverloadResolve): Added `bool
1327         may_fail' argument and use it instead of the Location.IsNull() hack.
1328
1329 2004-09-09  Martin Baulig  <martin@ximian.com>
1330
1331         * cs-parser.jay (namespace_declaration): Fixed CS0134 reporting.
1332
1333 2004-09-09  Martin Baulig  <martin@ximian.com>
1334
1335         * generic.cs (TypeParameter.DefineType): Added support for
1336         explicit interface methods.
1337
1338 2004-09-09  Martin Baulig  <martin@ximian.com>
1339
1340         * README.Changes: New document.  Started to list important changes
1341         between MCS and GMCS here.
1342
1343 2004-09-08  Martin Baulig  <martin@ximian.com>
1344
1345         * class.cs
1346         (TypeContainer.CheckRecursiveDefinition): New protected method.
1347         (TypeContainer.DefineType): Move the CS0146 check into
1348         CheckRecursiveDefinition().     
1349
1350 2004-09-06  Martin Baulig  <martin@ximian.com>
1351
1352         * generic.cs (ConstructedType.CheckConstraints): Allow builtin
1353         types for the constructor constraint.
1354
1355 2004-09-03  Martin Baulig  <martin@ximian.com>
1356
1357         * class.cs (TypeContainer.DefineDefaultConstructor): Put this back
1358         into TypeContainer, to make partial classes work again.
1359
1360 2004-09-03  Martin Baulig  <martin@ximian.com>
1361
1362         * rootcontext.cs (RootContext.V2): Removed.
1363
1364 2004-03-23  Martin Baulig  <martin@ximian.com>
1365
1366         * expression.cs (Invocation.OverloadResolve): Added `bool
1367         may_fail' argument and use it instead of the Location.IsNull() hack.
1368
1369 2004-09-03  Martin Baulig  <martin@ximian.com>
1370
1371         Merged latest changes into gmcs.  Please keep this comment in
1372         here, it makes it easier for me to see what changed in MCS since
1373         the last time I merged.
1374
1375 2004-09-03  Raja R Harinath  <rharinath@novell.com>
1376
1377         Fix #61128.
1378         * expression.cs (BetterConversion): Don't allow either conversion 
1379         to be null.  Remove redundant implicit conversion test when 'q ==
1380         null' -- when this function is invoked, we already know that the
1381         implicit conversion exists.
1382         (BetterFunction): Assume that 'best' is non-null.  Remove
1383         redundant reimplementation of IsApplicable when 'best' is null.
1384         (IsParamsMethodApplicable, IsApplicable): Add new parameter for
1385         number of arguments.
1386         (IsAncestralType): Extract from OverloadResolve.
1387         (OverloadResolve): Make robust to the MethodGroupExpr being
1388         unsorted.  Implement all the logic of Section 14.5.5.1, and
1389         support overloading of methods from multiple applicable types.
1390         Clean up logic somewhat.  Don't pass null methods to BetterFunction.
1391
1392         * report.cs (SymbolRelatedToPreviousError): Cleanup output.
1393         (RealError, Warning): Append type of report to related symbol.
1394
1395 2004-09-03  Marek Safar  <marek.safar@seznam.cz>
1396
1397         * enum.cs: Fixed CLS-Compliance checks for enum members.
1398         Error tests cs3008-8.cs, cs3014-8.cs
1399
1400 2004-09-02  Marek Safar  <marek.safar@seznam.cz>
1401
1402         Fixed bug #62342, #63102
1403         * class.cs: ImplementIndexer uses member.IsExplicitImpl
1404         like ImplementMethod.
1405
1406 2004-09-02  Marek Safar  <marek.safar@seznam.cz>
1407
1408         * attribute.cs (Attribute.GetAttributeArgumentExpression):
1409         Fixed bug #65170.
1410
1411 2004-09-02  Martin Baulig  <martin@ximian.com>
1412
1413         * statement.cs (Using.EmitLocalVariableDeclFinally): Use
1414         TypeManager.GetArgumentTypes() rather than calling GetParameters()
1415         on the MethodBase.
1416
1417 2004-09-01  Marek Safar  <marek.safar@seznam.cz>
1418
1419         C# 2.0 Static classes implemented
1420
1421         * class.cs (TypeContainer): instance_constructors,
1422         initialized_fields, initialized_static_fields,
1423         default_constructor, base_inteface_types are protected to be
1424         accessible from StaticClass.
1425         (TypeContainer.DefineDefaultConstructor): New virtual method
1426         for custom default constructor generating
1427         (StaticClass): New class to handle "Static classes" feature.
1428
1429         * cs-parser.jay: Handle static keyword on class like instance
1430         of StaticClass.
1431
1432         * driver.cs: Added "/langversion" command line switch with two
1433         options (iso-1, default).
1434
1435 2004-08-31  Marek Safar  <marek.safar@seznam.cz>
1436
1437         * ecore.cs (FieldExpr.Resolve): Fixed bug #64689.
1438
1439 2004-08-31  Miguel de Icaza  <miguel@ximian.com>
1440
1441         * delegate.cs: Style.
1442
1443 2004-08-31 Ben Maurer  <bmaurer@users.sourceforge.net>
1444
1445         * delegate.cs: Add seperate instance expr field for miguel.
1446
1447 2004-08-29 Ben Maurer  <bmaurer@users.sourceforge.net>
1448
1449         * PointerArithmetic (Resolve): make sure we are not doing
1450         pointer arith on void*. Also, make sure we are resolved
1451         by not setting eclass until resolve.
1452
1453         All callers: Make sure that PointerArithmetic gets resolved.
1454
1455 2004-08-29 Ben Maurer  <bmaurer@users.sourceforge.net>
1456
1457         * ArrayCreation (LookupType): If the type does not resolve 
1458         to an array, give an error.
1459
1460 2004-08-27  Marek Safar  <marek.safar@seznam.cz>
1461
1462         * statement.cs (Try.Resolve): Fixed bug #64222
1463
1464 2004-08-27  Martin Baulig  <martin@ximian.com>
1465
1466         * class.cs
1467         (TC.OperatorArrayList.OperatorEntry.CheckPairedOperators): Don't
1468         crash here.     
1469
1470 2004-08-26  Marek Safar  <marek.safar@seznam.cz>
1471
1472         * ecore.cs (Constantify): Get underlying type via
1473         System.Enum.GetUnderlyingType to avoid StackOverflow on the
1474         Windows in special cases.
1475
1476 2004-08-26  Marek Safar  <marek.safar@seznam.cz>
1477
1478         * typemanager.cs (GetAddMethod): Used GetAddMethod (true)
1479         for obtaining also private methods.
1480         (GetRemoveMethod): Used GetRemoveMethod (true)
1481         for obtaining also private methods.
1482
1483 2004-09-02  Martin Baulig  <martin@ximian.com>
1484
1485         * statement.cs (Using.EmitLocalVariableDeclFinally): Use
1486         TypeManager.GetArgumentTypes() rather than calling GetParameters()
1487         on the MethodBase.
1488
1489 2004-08-27  Martin Baulig  <martin@ximian.com>
1490
1491         * class.cs
1492         (TC.OperatorArrayList.OperatorEntry.CheckPairedOperators): Don't
1493         crash here.     
1494
1495 2004-08-25  Martin Baulig  <martin@ximian.com>
1496
1497         * support.cs (ReflectionParameters..ctor): If this is a generic
1498         method, retrieve and store its type parameters.
1499         (InternalParameters..ctor): Added `TypeParameter[]' argument.
1500         (ReflectionParameters.GenericConstraints): The argument specifies
1501         the type parameter, not the method parameter.
1502         (InternalParameters.GenericConstraints): Likewise.
1503
1504         * generic.cs (TypeParameter.DefineType): Correctly handle
1505         constraints wrt. generic methods in interfaces and their
1506         implementations.        
1507
1508 2004-08-24  Martin Baulig  <martin@ximian.com>
1509
1510         * generic.cs (TypeParameter.IsSubclassOf): New public method.
1511         (Constraints.IsSubclassOf): New internal method.
1512
1513         * typemanager.cs (TypeManager.FindMembers): Added special support
1514         for GenericTypeParameterBuilder's.      
1515         (TypeManager.IsSubclassOf, IsFamilyAccessible): Added support for
1516         type parameters.
1517
1518 2004-08-24  Martin Baulig  <martin@ximian.com>
1519
1520         * typemanager.cs
1521         (TypeManager.IsSubclassOf): Renamed to IsFamilyAccessible; use
1522         this for accessibility checks.
1523         (TypeManager.IsSubclassOrNestedChildOf): Renamed to
1524         IsNestedFamilyAccessible.
1525         (TypeManager.IsSubclassOf): New method, do what the name actually
1526         says.   
1527
1528 2004-08-24  Martin Baulig  <martin@ximian.com>
1529
1530         * expression.cs (MemberAccess.DoResolve): When resolving ourselves
1531         as a SimpleName, include the generic arity.
1532
1533 2004-08-24  Martin Baulig  <martin@ximian.com>
1534
1535         * class.cs (Method.Define): Set MethodAttributes.SpecialName and
1536         MethodAttributes.HideBySig for operators.
1537
1538 2004-08-23  Martin Baulig  <martin@ximian.com>
1539
1540         Back to the old error reporting system :-)
1541
1542         * report.cs (Message): Removed.
1543         (Report.MessageData, ErrorData, WarningData): Removed.
1544         (Report.Error, Warning): Back to the old system.
1545
1546 2004-08-23  Martin Baulig  <martin@ximian.com>
1547
1548         * decl.cs (IMemberContainer.Parent): Renamed to ParentContainer.
1549
1550         * class.cs (TypeContainer.ParentContainer): New public virtual
1551         method; replaces the explicit interface implementation.
1552         (ClassPart.ParentContainer): Override.
1553
1554 2004-08-23  Martin Baulig  <martin@ximian.com>
1555
1556         * statement.cs (Switch): Added support for constant switches; see
1557         #59428 or test-285.cs.
1558
1559 2004-08-22  Marek Safar  <marek.safar@seznam.cz>
1560
1561         Fixed bug #62740.
1562         * statement.cs (GetEnumeratorFilter): Removed useless
1563         logic because C# specs is strict. GetEnumerator must be
1564         public.
1565
1566 2004-08-22  Martin Baulig  <martin@ximian.com>
1567
1568         * flowanalysis.cs (FlowBranching.UsageVector.MergeChild): If we're
1569         a switch and may break, reset the barrier.  Fixes #59867.
1570
1571 2004-08-22  Marek Safar  <marek.safar@seznam.cz>
1572
1573         CLS-Compliance speed up (~5% for corlib)
1574
1575         * attribute.cs (AttributeTester.VerifyTopLevelNameClsCompliance):
1576         New method. Tests container for CLS-Compliant names
1577
1578         * class.cs (TypeContainer.VerifyClsName): New method.
1579         Checks whether container name is CLS Compliant.
1580         (Constructor): Implements IMethodData.
1581
1582         * decl.cs (MemberCache.GetPublicMembers ): New method. Builds
1583         low-case table for CLS Compliance test.
1584         (MemberCache.VerifyClsParameterConflict): New method.
1585         Checks method parameters for CS3006 error.
1586
1587         * enum.cs (EnumMember): Is derived from MemberCore.
1588         (Enum.VerifyClsName): Optimized for better performance.
1589
1590 2004-08-06  Marek Safar  <marek.safar@seznam.cz>
1591
1592         * report.cs: Renamed Error_T to Error and changed all
1593         references.
1594
1595 2004-08-06  Marek Safar  <marek.safar@seznam.cz>
1596
1597         * class.cs (TypeContainer.IndexerArrayList): New inner class
1598         container for indexers.
1599         (TypeContainer.DefaultIndexerName): New constant for default
1600         indexer name. Replaced all "Item" with this constant.
1601         (TypeContainer.DefineIndexers): Moved to IndexerArrayList class.
1602
1603         * typemanager.cs (TypeManager.default_member_ctor): Cache here
1604         DefaultMemberAttribute constructor.
1605
1606 2004-08-05  Martin Baulig  <martin@ximian.com>
1607
1608         * flowanalysis.cs (FlowBranching.UsageVector.MergeJumpOrigins):
1609         Fix bug #59429.
1610
1611 2004-08-05  Marek Safar  <marek.safar@seznam.cz>
1612
1613         * mcs.exe.sources: $(EXTRA_SOURCES) are now here to avoid
1614         multi platforms problem.
1615
1616         * compiler.csproj: Included shared files.
1617
1618 2004-08-04  Marek Safar  <marek.safar@seznam.cz>
1619
1620         Fix bug 60333, 55971 in the more general way
1621         * attribute.cs (Attribute.GetAttributeArgumentExpression):
1622         Added arg_type argument for constant conversion.
1623         (Attribute.Resolve): Reuse GetAttributeArgumentExpression.
1624
1625 2004-08-04  Marek Safar  <marek.safar@seznam.cz>
1626
1627         Fix bug #59760
1628         * class.cs (TypeContainer ): New inner classes MethodArrayList, 
1629         OperatorArrayList, MethodCoreArrayList for typecontainer
1630         containers. Changed class member types to these new types.
1631         (MethodArrayList.DefineMembers): Added test for CS0659.
1632
1633 2004-08-04  Miguel de Icaza  <miguel@ximian.com>
1634
1635         * cfold.cs: Synchronize the folding with the code in expression.cs
1636         Binary.DoNumericPromotions for uint operands.
1637
1638         * attribute.cs: Revert patch from Raja, it introduced a regression
1639         while building Blam-1.2.1 (hard to isolate a test case).
1640
1641 2004-08-04  Marek Safar  <marek.safar@seznam.cz>
1642
1643         Fix for #55382
1644         * class.cs:
1645         (TypeContainer.Define): Renamed to DefineContainerMembers because of
1646         name collision.
1647         (MethodCore.parent_method): New member. The method we're overriding
1648         if this is an override method.
1649         (MethodCore.CheckBase): Moved from Method class and made common.
1650         (MethodCore.CheckMethodAgainstBase): Moved from MemberBase and made
1651         private.
1652         (MethodCore.CheckForDuplications): New abstract method. For custom
1653         member duplication search in a container
1654         (MethodCore.FindOutParentMethod): New abstract method. Gets parent
1655         method and its return type.
1656         (Event.conflict_symbol): New member. Symbol with same name in the
1657         parent class.
1658
1659         * decl.cs:
1660         (MemberCache.FindMemberWithSameName): New method. The method
1661         is looking for conflict with inherited symbols.
1662
1663 2004-08-04  Martin Baulig  <martin@ximian.com>
1664
1665         * codegen.cs (VariableStorage.EmitLoadAddress): New public method.
1666
1667         * statement.cs (Foreach.EmitFinally): Make this work for valuetypes.
1668
1669 2004-08-03  Marek Safar  <marek.safar@seznam.cz>
1670
1671         * report.cs (Message): New enum for better error, warning reference in
1672         the code.
1673         (MessageData): New inner abstract class. It generally handles printing of
1674         error and warning messages.
1675         Removed unused Error, Warning, Message methods.
1676
1677 2004-08-03  Marek Safar  <marek.safar@seznam.cz>
1678
1679         Fix for cs0592-8.cs test
1680         * attribute.cs
1681         (Attributable.ValidAttributeTargets): Made public.
1682         (Attribute.ExplicitTarget): New member for explicit target value.
1683         (Attribute.CheckTargets): Now we translate explicit attribute
1684         target to Target here.
1685
1686 2004-08-03  Ben Maurer  <bmaurer@ximian.com>
1687
1688         * ecore.cs (MethodGroupExpr): new IsBase property.
1689
1690         * expression.cs (BaseAccess): Set IsBase on MethodGroupExpr.
1691
1692         * delegate.cs (DelegateCreation): store a MethodGroupExpr
1693         rather than an instance expr.
1694
1695         (DelegateCreation.Emit): Use the method group rather than
1696         the instance expression. Also, if you have base.Foo as the
1697         method for a delegate, make sure to emit ldftn, not ldftnvirt.
1698
1699         (ResolveMethodGroupExpr): Use the MethodGroupExpr. 
1700
1701         (NewDelegate.DoResolve): Only check for the existance of Invoke
1702         if the method is going to be needed. Use MethodGroupExpr.
1703
1704         (NewDelegate.Emit): Remove, DelegateCreation implements this.   
1705
1706         * expression.cs: For pointer arith., make sure to use
1707         the size of the type, not the size of the pointer to
1708         the type.
1709
1710 2004-08-03  Marek Safar  <marek.safar@seznam.cz>
1711
1712         Fix for #60722
1713         * class.cs (Class): Added error CS0502 test.
1714
1715 2004-08-03  John Luke  <jluke@cfl.rr.com>
1716             Raja R Harinath  <rharinath@novell.com>
1717
1718         Fix for #60997.
1719         * attribute.cs (Attribute.complained_before): New flag.
1720         (Attribute.ResolveType, Attribute.Resolve),
1721         (Attribute.DefinePInvokeMethod): Set it.
1722         (Attributes.Search): Pass 'complain' to Attribute.ResolveType.
1723         
1724 2004-08-03  Martin Baulig  <martin@ximian.com>
1725
1726         * expression.cs (Binary.ResolveOperator): Don't abort if we can't
1727         use a user-defined operator; we still need to do numeric
1728         promotions in case one argument is a builtin type and the other
1729         one has an implicit conversion to that type.  Fixes #62322.
1730
1731 2004-08-18  Martin Baulig  <martin@ximian.com>
1732
1733         * class.cs (Method.Define): Use the correct method name when
1734         creating the MethodBuilder for a generic method.
1735
1736 2004-08-17  Martin Baulig  <martin@ximian.com>
1737
1738         * generic.cs (Constraints): Support type parameter constraints.
1739
1740 2004-08-16  Martin Baulig  <martin@ximian.com>
1741
1742         * cs-tokenizer.cs (Tokenizer.TypeOfParsing): New public property.
1743         (Token.GENERIC_DIMENSION): New token; this is returned if we
1744         encounter an unbound generic type in a typeof() expression.
1745
1746         * cs-parser.jay (opt_type_argument_list): Added GENERIC_DIMENSION;
1747         this token is only generated while parsing a typeof() expression.
1748         (typeof_expression): Removed the old unbound_type hack.
1749
1750         * generic.cs (TypeArguments.IsUnbound): New public property.
1751
1752         * decl.cs (MemberName): Added support for unbound types.
1753
1754 2004-08-14  Martin Baulig  <martin@ximian.com>
1755
1756         * typemanager.cs
1757         (TypeManager.IsEqualGenericInstance): New static method.
1758         (TypeManager.IsSubclassOrNestedChildOf, IsSubclassOf): This is
1759         just used to check accessibility, so follow the rules of 26.1.6.        
1760
1761         * expression.cs (MemberAccess.ResolveAsTypeStep): Return a
1762         ConstructedType instead of a TypeExpression if we have type arguments.
1763
1764         * cs-parser.jay (typeof_expression): Support unbound generic types.
1765
1766         * ecore.cs (UnboundTypeExpression): New public class.
1767
1768 2004-08-12  Martin Baulig  <martin@ximian.com>
1769
1770         * typemanager.cs (TypeManager.IsNestedChildOf): Use
1771         TypeManager.IsEqual() rather than `=='.
1772
1773         * decl.cs (DeclSpace.CheckAccessLevel): Use `tb.FullName' for
1774         generic instances as well.
1775
1776 2004-08-12  Martin Baulig  <martin@ximian.com>
1777
1778         * expression.cs (Invocation.InferType): We can only infer method
1779         type parameters.  Fixes #62647.
1780
1781 2004-08-11  Martin Baulig  <martin@ximian.com>
1782
1783         * class.cs (TypeContainer.DefineType): Create the TypeBuilder
1784         before resolving the base classes.
1785
1786 2004-08-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1787
1788         * Makefile: install .mdb file too.
1789
1790 2004-08-05  Martin Baulig  <martin@ximian.com>
1791
1792         * ecore.cs (FieldExpr.DoResolveLValue): If we're resolving a field
1793         initializer, the current type is just the TypeBuilder, not the
1794         instantiated generic type.
1795         (FieldExpr.IsFieldInitializer): New public property.
1796
1797 2004-08-04  Martin Baulig  <martin@ximian.com>
1798
1799         * codegen.cs (VariableStorage.EmitLoadAddress): New public method.
1800
1801         * statement.cs (Foreach.EmitFinally): Make this work for valuetypes.
1802
1803 2004-08-03  Martin Baulig  <martin@ximian.com>
1804
1805         * class.cs (MethodData.Define): If we're an explicit
1806         implementation, remove the generic arity from the type name.
1807
1808 2004-08-03  Martin Baulig  <martin@ximian.com>
1809
1810         * expression.cs (Binary.ResolveOperator): Don't abort if we can't
1811         use a user-defined operator; we still need to do numeric
1812         promotions in case one argument is a builtin type and the other
1813         one has an implicit conversion to that type.  Fixes #62322.
1814
1815 2004-08-02  Martin Baulig  <martin@ximian.com>
1816
1817         * class.cs (TypeContainer.ifaces): Make this a `Type[]', not a
1818         `TypeExpr[]' array.
1819         (TypeContainer.GetClassBases): Return the unexpanded list of
1820         interfaces; we expand them later.
1821         (TypeContainer.DefineType): After creating the TypeBuilder, call
1822         TypeManager.ExpandInterfaces() to get an expanded and resolved
1823         list of interfaces.
1824
1825         * ecore.cs (TypeExpr.GetInterfaces): Removed
1826
1827         * generics.cs (Constraints.InterfaceConstraints): Remove.
1828         (TypeParameter.DefineType): Call TypeManager.RegisterBuilder() to
1829         register the interface constraints.
1830
1831         * typemanager.cs
1832         (TypeManager.AddUserType): Removed the `ifaces' argument.
1833         (TypeManager.AddTypeParameter): Likewise.
1834         (TypeManager.AddUserInterface): Removed, was unused.
1835         (TypeManager.RegisterBuilder): Take a `Type[]' instead of a
1836         `TypeExpr[]' array for the interfaces.
1837         (TypeManager.ExpandInterfaces): Call this after the TypeBuilder
1838         has been defined, returns a list of the resolved interfaces types.
1839         (TypeManager.GetInterfaces): Return a `Type[]', not a `TypeExpr[]'.
1840         (TypeManager.GetExplicitInterfaces): Likewise.  
1841
1842 2004-08-02  Martin Baulig  <martin@ximian.com>
1843
1844         * expression.cs (Invocation.EmitCall): If we're invoking a method
1845         on a type parameter, use the new `Constrained' prefix opcode.
1846
1847 2004-08-02  Martin Baulig  <martin@ximian.com>
1848
1849         * statement.cs (LocalInfo.Flags): Added `IsThis'.
1850         (LocalInfo.IsThis): New public property.
1851         (Block.EmitMeta): Don't create a LocalBuilder for `this'.
1852
1853 2004-08-01  Martin Baulig  <martin@ximian.com>
1854
1855         * class.cs (TypeContainer.GetClassBases): Don't set the default
1856         here since we may get called from GetPartialBases().
1857         (TypeContainer.DefineType): If GetClassBases() didn't return a
1858         parent, use the default one.
1859
1860 2004-07-30  Martin Baulig  <martin@ximian.com>
1861
1862         * Makefile (EXTRA_SOURCES): List the symbol writer's sources here.
1863
1864         * class.cs (SourceMethod): New public class, derive from the
1865         symbol writer's ISourceMethod.
1866         (Method): Use the new symbol writer API.
1867
1868         * codegen.cs (CodeGen.InitializeSymbolWriter): Take the filename
1869         as argument and use the new symbol writer.
1870
1871         * location.cs
1872         (SourceFile): Implement the symbol writer's ISourceFile.
1873         (Location.SymbolDocument): Removed.
1874         (Location.SourceFile): New public property.
1875
1876         * symbolwriter.cs: Use the new symbol writer API.
1877
1878 2004-07-30  Raja R Harinath  <rharinath@novell.com>
1879
1880         * Makefile (install-local): Remove.  Functionality moved to
1881         executable.make.
1882
1883 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
1884
1885         * Makefile: Install mcs.exe.config file together with mcs.exe.
1886         * mcs.exe.config: Added supportedRuntime entry to make sure it runs in the
1887         correct runtime version.
1888         
1889 2004-07-25  Martin Baulig  <martin@ximian.com>
1890
1891         * class.cs
1892         (TypeContainer.RegisterOrder): Removed, this was unused.
1893         (TypeContainer, interface_order): Removed.
1894         (TypeContainer.AddClass, AddStruct, AddInterface): Take a
1895         TypeContainer as argument since we can also be called with a
1896         `PartialContainer' for a partial class/struct/interface.
1897         (TypeContainer.IsInterface): Use `Kind == Kind.Interface' instead
1898         of checking whether we're an `Interface' - we could be a
1899         `PartialContainer'.
1900         (PartialContainer.Register): Override; call
1901         AddClass()/AddStruct()/AddInterface() on our parent.
1902
1903         * cs-parser.jay (interface_member_declaration): Add things to the
1904         `current_container', not the `current_class'.
1905
1906         * rootcontext.cs (RegisterOrder): The overloaded version which
1907         takes an `Interface' was unused, removed.
1908
1909         * typemanager.cs (TypeManager.LookupInterface): Return a
1910         `TypeContainer', not an `Interface'.
1911         (TypeManager.IsInterfaceType): The `builder_to_declspace' may
1912         contain a `PartialContainer' for an interface, so check it's
1913         `Kind' to figure out what it is.
1914
1915 2004-07-25  Martin Baulig  <martin@ximian.com>
1916
1917         * class.cs (Class.DefaultTypeAttributes): New public constant.
1918         (Struct.DefaultTypeAttributes): Likewise.
1919         (Interface.DefaultTypeAttributes): Likewise.
1920         (PartialContainer.TypeAttr): Override this and add the
1921         DefaultTypeAttributes.
1922
1923 2004-07-25  Martin Baulig  <martin@ximian.com>
1924
1925         * decl.cs (DeclSpace.Emit): Removed the `TypeContainer' argument,
1926         we can just use the `Parent' field instead.
1927
1928 2004-07-25  Martin Baulig  <martin@ximian.com>
1929
1930         * class.cs (TypeContainer.Emit): Renamed to EmitType().
1931
1932 2004-07-25  Martin Baulig  <martin@ximian.com>
1933
1934         * class.cs (TypeContainer.DefineMembers): Call DefineMembers() on
1935         our parts before defining any methods.
1936         (TypeContainer.VerifyImplements): Make this virtual.
1937         (ClassPart.VerifyImplements): Override and call VerifyImplements()
1938         on our PartialContainer.
1939
1940 2004-07-25  Martin Baulig  <martin@ximian.com>
1941
1942         * iterators.cs (Iterator.Define): Renamed to DefineIterator().
1943
1944         * decl.cs (DeclSpace.Define): Removed the `TypeContainer'
1945         argument, we can just use the `Parent' field instead.
1946
1947         * class.cs
1948         (MemberBase.CheckBase): Removed the `TypeContainer' argument.   
1949         (MemberBase.DoDefine): Likewise.
1950
1951 2004-07-24  Martin Baulig  <martin@ximian.com>
1952
1953         * decl.cs (MemberCore.Parent): New public field.
1954         (DeclSpace.Parent): Moved to MemberCore.
1955
1956         * class.cs (MethodCore.ds): Removed; use `Parent' instead.
1957         (MemberBase.ctor): Added TypeContainer argument, pass it to our
1958         parent's .ctor.
1959         (FieldBase, Field, Operator): Likewise.
1960         (EventProperty.ctor): Take a TypeContainer instead of a DeclSpace.
1961         (EventField, Event): Likewise.
1962
1963 2004-07-23  Martin Baulig  <martin@ximian.com>
1964
1965         * class.cs (PartialContainer): New public class.
1966         (ClassPart): New public class.
1967         (TypeContainer): Added support for partial classes.
1968         (TypeContainer.GetClassBases): Splitted some of the functionality
1969         out into GetNormalBases() and GetPartialBases().
1970
1971         * cs-tokenizer.cs (Token.PARTIAL): New token.
1972         (Tokenizer.consume_identifier): Added some hacks to recognize
1973         `partial', but only if it's immediately followed by `class',
1974         `struct' or `interface'.
1975
1976         * cs-parser.jay: Added support for partial clases.
1977
1978 2004-07-23  Martin Baulig  <martin@ximian.com>
1979
1980         * class.cs (MethodCore.ds): Made this a `TypeContainer' instead of
1981         a `DeclSpace' and also made it readonly.
1982         (MethodCore.ctor): Take a TypeContainer instead of a DeclSpace.
1983         (Method.ctor, Constructor.ctor, Destruktor.ctor): Likewise.
1984         (PropertyBase.ctor, Property.ctor, Indexer.ctor): Likewise.
1985
1986         * cs-parser.jay: Pass the `current_class', not the
1987         `current_container' (at the moment, this is still the same thing)
1988         to a new Method, Property, Event, Indexer or Constructor.
1989
1990 2004-07-23  Martin Baulig  <martin@ximian.com>
1991
1992         * cs-parser.jay (CSharpParser): Added a new `current_class' field
1993         and removed the `current_interface' one.
1994         (struct_declaration, class_declaration, interface_declaration):
1995         Set `current_class' to the newly created class/struct/interface;
1996         set their `Bases' and call Register() before parsing their body.
1997
1998 2004-07-23  Martin Baulig  <martin@ximian.com>
1999
2000         * class.cs (Kind): New public enum.
2001         (TypeContainer): Made this class abstract.
2002         (TypeContainer.Kind): New public readonly field.
2003         (TypeContainer.CheckDef): New public method; moved here from
2004         cs-parser.jay.
2005         (TypeContainer.Register): New public abstract method.
2006         (TypeContainer.GetPendingImplementations): New public abstract
2007         method.
2008         (TypeContainer.GetClassBases): Removed the `is_class' and
2009         `is_iface' parameters.
2010         (TypeContainer.DefineNestedTypes): Formerly known as
2011         DoDefineType().
2012         (ClassOrStruct): Made this class abstract.
2013
2014         * tree.cs (RootTypes): New public type. 
2015
2016 2004-07-20  Martin Baulig  <martin@ximian.com>
2017
2018         * tree.cs (Tree.RecordNamespace): Removed.
2019         (Tree.Namespaces): Removed.
2020
2021         * rootcontext.cs (RootContext.IsNamespace): Removed.
2022
2023         * cs-parser.jay (namespace_declaration): Just create a new
2024         NamespaceEntry here.
2025
2026 2004-07-21  Lluis Sanchez Gual  <lluis@novell.com>
2027
2028         * Makefile: Install gmcs.exe.config file together with gmcs.exe.
2029         * gmcs.exe.config: Renamed from mcs.exe.config. Added supportedRuntime
2030         entry to make sure it runs in the correct runtime version.
2031         
2032 2004-07-18  Martin Baulig  <martin@ximian.com>
2033
2034         * generic.cs (ConstructedType.CheckConstraints): Improved
2035         constraints checking.
2036
2037 2004-07-18  Martin Baulig  <martin@ximian.com>
2038
2039         * expression.cs (Invocation.BetterMethod): Call
2040         TypeManager.TypeToCoreType() on all types and removed my previous
2041         hack; we're already doig the right thing here.
2042
2043 2004-07-17  Martin Baulig  <martin@ximian.com>
2044
2045         * decl.cs (MemberName.MakeName): Create the "class`1" names here.
2046
2047 2004-07-16  Martin Baulig  <martin@ximian.com>
2048
2049         * iterators.cs: Added generics support.
2050
2051 2004-07-16  Martin Baulig  <martin@ximian.com>
2052
2053         * iterators.cs: Rewrote this.  We're now using one single Proxy
2054         class for both the IEnumerable and the IEnumerator interface and
2055         `Iterator' derives from Class so we can use the high-level API.
2056
2057         * class.cs (TypeContainer.AddIterator): New method.
2058         (TypeContainer.DoDefineType): New protected virtual method, which
2059         is called from DefineType().
2060         (TypeContainer.DoDefineMembers): Call DefineType() and
2061         DefineMembers() on all our iterators.
2062         (TypeContainer.Emit): Call Emit() on all our iterators.
2063         (TypeContainer.CloseType): Call CloseType() on all our iterators.
2064
2065         * codegen.cs (EmitContext.CurrentIterator): New public field.
2066
2067 2004-07-15  Martin Baulig  <martin@ximian.com>
2068
2069         * typemanager.cs
2070         (TypeManager.not_supported_exception_type): New type.   
2071
2072 2004-07-14  Martin Baulig  <martin@ximian.com>
2073
2074         * typemanager.cs
2075         (TypeManager.generic_ienumerable_type): New type.
2076         (TypeManager.generic_ienumerator_type): New type.
2077
2078         * rootcontext.cs
2079         (RootContext.interfaces_first_stage): Added
2080         "System.Collections.Generic.IEnumerator`1" and
2081         "System.Collections.Generic.IEnumerable`1".     
2082
2083 2004-07-14  Martin Baulig  <martin@ximian.com>
2084
2085         * iterators.cs: Use real error numbers.
2086
2087 2004-07-14  Martin Baulig  <martin@ximian.com>
2088
2089         * iterator.cs (IteratorHandle.IsIEnumerable): The spec explicitly
2090         requires this to be a System.Collection.IEnumerable and not a
2091         class implementing that interface.
2092         (IteratorHandle.IsIEnumerator): Likewise, for IEnumerator.      
2093
2094 2004-07-13  Marek Safar  <marek.safar@seznam.cz>
2095
2096         * class.cs: Fixed previous fix, it broke some error tests.
2097
2098 2004-07-12  Martin Baulig  <martin@ximian.com>
2099
2100         * enum.cs (Enum.Define): Call Emit() to emit the attributes.
2101         Fixes #61293.
2102
2103 2004-07-14  Martin Baulig  <martin@ximian.com>
2104
2105         * decl.cs, expression.cs, generic.cs: Use a backqoute (`) and not
2106         an exclamation mark (!) for the generic arity to reflect the
2107         latest spec changes; ie. use "System.Collections.Generic.IList`1".
2108
2109 2004-07-13  Martin Baulig  <martin@ximian.com>
2110
2111         * cs-tokenizer.cs (Tokenizer.parse_less_than): Allow array rank
2112         specifiers being part of a type argument.
2113
2114 2004-07-13  Martin Baulig  <martin@ximian.com>
2115
2116         * expression.cs (MemberAccess.ResolveAsTypeStep): Use the full `!'
2117         name for generic types.
2118
2119 2004-07-13  Martin Baulig  <martin@ximian.com>
2120
2121         * assign.cs (Assign.DoResolve): Moved the CS0131 check up a little
2122         bit to fix #60119.
2123
2124 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
2125
2126         * assign.cs (LocalTemporary): Add new argument: is_address,If
2127         `is_address' is true, then the value that we store is the address
2128         to the real value, and not the value itself.
2129         
2130         * ecore.cs (PropertyExpr): use the new local temporary
2131         stuff to allow us to handle X.Y += z (where X is a struct)
2132
2133 2004-07-08  Martin Baulig  <martin@ximian.com>
2134
2135         * statement.cs (Lock.Resolve): Set ec.NeedReturnLabel() if we do
2136         not always return, just like we're doing in Using.Resolve().
2137
2138 2004-07-07  Miguel de Icaza  <miguel@ximian.com>
2139
2140         * cs-parser.jay (fixed_statement): flag this as Pinned.
2141
2142 2004-07-06  Miguel de Icaza  <miguel@ximian.com>
2143
2144         * typemanager.cs (TypeManager): Removed MakePinned method, this
2145         mechanism is replaced with the .NET 2.x compatible mechanism of
2146         calling `ILGenerator.DeclareLocal (Type t, bool pinned)'.
2147
2148         * statement.cs (LocalInfo): Remove MakePinned, add Pinned property 
2149         Rename `Fixed' to `Pinned' as a flag, to distinguish from the
2150         `IsFixed' property which has a different meaning.
2151
2152 2004-07-02  Raja R Harinath  <rharinath@novell.com>
2153
2154         * ecore.cs (DoSimpleNameResolve): Expand CS0038 check to all names
2155         visible from inside a nested class, not just the names of the
2156         immediately enclosing class.
2157         Fix for bug #60730.
2158
2159 2004-06-24  Raja R Harinath  <rharinath@novell.com>
2160
2161         * expression.cs (BetterConversion): Remove buggy special-case
2162         handling of "implicit constant expression conversions".  At this
2163         point, we already know that the conversion is possible -- we're
2164         only checking to see which is better.
2165
2166 2004-06-24  Marek Safar  <marek.safar@seznam.cz>
2167
2168         * cs-parser.jay: Added error CS0210 test.
2169
2170 2004-06-24  Marek Safar  <marek.safar@seznam.cz>
2171
2172         * cs-parser.jay: Added error CS0134 test.
2173
2174 2004-06-24  Marek Safar  <marek.safar@seznam.cz>
2175
2176         Fix bug #52507
2177         * cs-parser.jay: Added error CS0145 test.
2178
2179 2004-06-24  Marek Safar  <marek.safar@seznam.cz>
2180
2181         * class.cs (Operator.Define): Added test for errors CS0553, CS0554.
2182
2183 2004-06-23  Ben Maurer  <bmaurer@ximian.com>
2184         
2185         * expression.cs (StackAlloc.Resolve): The argument may not
2186         be a constant; deal with this case.
2187         
2188 2004-06-23  Marek Safar  <marek.safar@seznam.cz>
2189
2190         * attribute.cs (IndexerName_GetIndexerName): Renamed to
2191         GetIndexerAttributeValue.
2192         (ScanForIndexerName): Renamed to GetIndexerNameAttribute.
2193
2194         * class.cs (Indexer.Define): Added error tests for CS0415,
2195         CS0609.
2196
2197 2004-06-23  Miguel de Icaza  <miguel@ximian.com>
2198
2199         * attribute.cs (Attribute.Resolve): Keep field code in sync with
2200         property code.
2201
2202 2004-06-23  Martin Baulig  <martin@ximian.com>
2203
2204         * flowanalysis.cs (UsageVector.MergeChild): If we're a loop and we
2205         neither return nor throw, reset the barrier as well.  Fixes #60457.
2206
2207 2004-06-22  Atsushi Enomoto  <atsushi@ximian.com>
2208
2209         * class.cs : EventAttributes is now set to None by default.
2210           This fixes bug #60459.
2211
2212 2004-06-18  Marek Safar  <marek.safar@seznam.cz>
2213
2214         Fix bug #60219
2215         * class.cs (ConstructorInitializer.GetOverloadedConstructor):
2216         Don't throw exception but return null (it's sufficient now).
2217
2218 2004-06-18  Marek Safar  <marek.safar@seznam.cz>
2219
2220         * typemanager.cs (GetArgumentTypes): Faster implementation.
2221
2222 2004-06-18  Martin Baulig  <martin@ximian.com>
2223
2224         * attribute.cs (Attribute.Resolve): Check whether we're an
2225         EmptyCast which a Constant child.  Fixes #60333.
2226
2227 2004-06-17  Ben Maurer  <bmaurer@ximian.com>
2228
2229         * statement.cs (EmitCollectionForeach): Account for the fact that
2230         not all valuetypes are in areas which we can take the address of.
2231         For these variables, we store to a temporary variable. Also, make
2232         sure that we dont emit a `callvirt' on a valuetype method.
2233
2234 2004-06-15  Marek Safar  <marek.safar@seznam.cz>
2235
2236         * expression.cs (StackAlloc.DoReSolve): Added test for
2237         negative parameter (CS0247).
2238
2239 2004-06-15  Marek Safar  <marek.safar@seznam.cz>
2240
2241         Fix bug #59792
2242         * class.cs: (Event.DelegateMethod.Emit): Added synchronization flag.
2243
2244 2004-06-15  Marek Safar  <marek.safar@seznam.cz>
2245
2246         Fix bug #59781
2247         * expression.cs: (Binary.DoNumericPromotions): Added conversion for
2248         ulong.
2249
2250 2004-06-14  Marek Safar  <marek.safar@seznam.cz>
2251
2252         Fix bug #58254 & cs1555.cs, cs1556.cs
2253         * driver.cs (MainDriver): Added tests for errors CS1555, CS1556.
2254
2255 2004-06-14  Marek Safar  <marek.safar@seznam.cz>
2256
2257         * cs-parser.jay: Added error CS1669 test for indexers.
2258
2259 2004-06-18  Martin Baulig  <martin@ximian.com>
2260
2261         * generics.cs (GenericMethod.ctor): Don't take an Attributes
2262         argument.  Fixes #60441.
2263
2264 2004-06-16  Ben Maurer  <bmaurer@ximian.com>
2265         * ecore.cs (MethodGroupExpr.Name): Revert Martin's patch.
2266         The name needs to have the actual name of the method in order
2267         for other tests (such as the one in OverloadResolve for Invoke
2268         on a delegate) to work. As well, it does not really help
2269         error reporting because the method group had multiple methods.
2270         * Makefile: Remove MCS_DEBUG, you can enable with the DEBUG_FLAGS.
2271         Make profiling work.
2272         
2273 2004-06-13  Martin Baulig  <martin@ximian.com>
2274
2275         * cs-parser.jay: Don't allow generic attributes.
2276
2277 2004-06-13  Martin Baulig  <martin@ximian.com>
2278
2279         * class.cs (MemberBase.DoDefineBase): New protected method.
2280         (MemberBase.DoDefine): Compute the `flags' in the new
2281         DoDefineBase() which must be called first.
2282         (Method.Define): Call DoDefineBase() first so we have the flags
2283         when defining the generic method.
2284
2285         * cs-parser.jay (interface_method_declaration): Support generic methods.
2286
2287 2004-06-13  Martin Baulig  <martin@ximian.com>
2288
2289         * decl.cs (TypeName): Removed.
2290         (MemberName): Removed TypeName and MemberNow; now we just have
2291         MemberName.
2292
2293         * cs-parser.jay: Don't distinguish between type arguments and type
2294         parameters in the grammar and simplified the rules a bit.  The
2295         reduce/reduce conflicts are now gone (except the one we inherited
2296         from mcs).
2297
2298 2004-06-11  Martin Baulig  <martin@ximian.com>
2299
2300         * expression.cs (Invocation.IsParamsMethodApplicable): We need to
2301         call this twice: for params and varargs methods.
2302
2303 2004-06-11  Marek Safar  <marek.safar@seznam.cz>
2304
2305         * class.cs:
2306         (FieldBase.DoDefine, PropertyBase.DoDefine): Added error test CS0610.
2307
2308 2004-06-11  Marek Safar  <marek.safar@seznam.cz>
2309
2310         * attribute.cs (Attribute.GetValidTargets): Made public.
2311
2312         * class.cs: 
2313         (AbstractPropertyEventMethod): New class for better code sharing.
2314         (AbstractPropertyEventMethod.ApplyAttributeBuilder): Add error
2315         CS1667 report.
2316         (PropertyMethod, DelegateMethod): Derived from AbstractPropertyEventMethod
2317
2318 2004-06-09  Martin Baulig  <martin@ximian.com>
2319
2320         * cs-parser.jay: Removed a reduce/reduce conflict.
2321
2322 2004-06-03  Martin Baulig  <martin@ximian.com>
2323
2324         * generic.cs (ConstructedType.GetMemberAccess): Renamed to
2325         GetSimpleName() and return a SimpleName.
2326
2327         * ecore.cs (SimpleName.Arguments): New public field.
2328         (SimpleName): Added overloaded ctor which takes an additional
2329         TypeArguments argument.
2330         (SimpleName.SimpleNameResolve): Added support for generic methods.
2331         (MethodGroupExpr.ResolveGeneric): New public method.  The code was
2332         formerly in MemberAccess.DoResolve(), but we also need it in
2333         SimpleNameResolve().
2334
2335         * expression.cs (MemberAccess.DoResolve): Use the new
2336         MethodGroupExpr.ResolveGeneric().       
2337
2338 2004-05-30 Ben Maurer  <bmaurer@users.sourceforge.net>
2339
2340         * decl.cs: If possible, use lookuptypedirect here. We can only do
2341         this if there is no `.' after the namespace. Avoids using
2342         LookupType, which does lots of slow processing.
2343         (FindNestedType) New method, does what it says :-).
2344         * namespace.cs: use LookupTypeDirect.
2345         * rootcontext.cs: use membercache, if possible.
2346         * typemanager.cs (LookupTypeDirect): Cache negative hits too.
2347
2348 2004-05-30 Ben Maurer  <bmaurer@users.sourceforge.net>
2349
2350         * expression.cs:
2351         According to the spec, 
2352
2353         In a member access of the form E.I, if E is a single identifier,
2354         and if the meaning of E as a simple-name (§7.5.2) is a constant,
2355         field, property, localvariable, or parameter with the same type as
2356         the meaning of E as a type-name (§3.8), then both possible
2357         meanings of E are permitted.
2358
2359         We did not check that E as a simple-name had the same type as E as
2360         a type name.
2361
2362         This trivial check gives us 5-7% on bootstrap time.
2363
2364 2004-05-30 Ben Maurer  <bmaurer@users.sourceforge.net>
2365
2366         * expression.cs (Invocation.OverloadResolve): Avoid the
2367         use of hashtables and boxing here by allocating on demand.
2368
2369 2004-05-30  Martin Baulig  <martin@ximian.com>
2370
2371         * rootcontext.cs (RootContext.LookupType): Don't cache things if
2372         we're doing a silent lookup.  Don't try to lookup nested types in
2373         TypeManager.object_type (thanks to Ben Maurer).
2374
2375 2004-05-30  Martin Baulig  <martin@ximian.com>
2376
2377         Committing a patch from Ben Maurer.
2378
2379         * rootcontext.cs (RootContext.LookupType): Cache negative results.
2380
2381 2004-05-30 Ben Maurer  <bmaurer@users.sourceforge.net>
2382
2383         * convert.cs: add a trivial cache for overload operator resolution.
2384
2385 2004-05-31  Marek Safar  <marek.safar@seznam.cz>
2386
2387         * attribute.cs
2388         (AttributeTester.GetObsoleteAttribute): Returns instance of
2389         ObsoleteAttribute when type is obsolete.
2390
2391         * class.cs
2392         (TypeContainer.VerifyObsoleteAttribute): Override.
2393         (Method.GetSignatureForError): New method for usage when MethodBuilder is null.
2394         (MethodCode.VerifyObsoleteAttribute): Override.
2395         (MemberBase.VerifyObsoleteAttribute): Override.
2396
2397         * decl.cs
2398         (MemberCore.CheckUsageOfObsoleteAttribute): Tests presence of ObsoleteAttribute
2399         and report proper error.
2400
2401         *delegate.cs
2402         (Delegate.VerifyObsoleteAttribute): Override.
2403
2404         * ecore.cs
2405         (Expression.CheckObsoleteAttribute): Tests presence of ObsoleteAttribute
2406         and report proper error.
2407         (FieldExpr.DoResolve): Added tests for ObsoleteAttribute.
2408
2409         * enum.cs
2410         (Enum.GetObsoleteAttribute): Returns ObsoleteAttribute for both enum type
2411         and enum member.
2412
2413         * expression.cs
2414         (Probe.DoResolve, Cast.DoResolve, LocalVariableReference.DoResolve,
2415         New.DoResolve, SizeOf.DoResolve, TypeOf.DoResolce, MemberAccess.DoResolve):
2416         Added test for ObsoleteAttribute.
2417
2418         * statement.cs
2419         (Catch): Derived from Statement.
2420
2421 2004-05-30 Ben Maurer  <bmaurer@users.sourceforge.net>
2422
2423         * decl.cs: If possible, use lookuptypedirect here. We can only do
2424         this if there is no `.' after the namespace. Avoids using
2425         LookupType, which does lots of slow processing.
2426         (FindNestedType) New method, does what it says :-).
2427         * namespace.cs: use LookupTypeDirect.
2428         * rootcontext.cs: use membercache, if possible.
2429         * typemanager.cs (LookupTypeDirect): Cache negative hits too.
2430
2431 2004-05-30 Ben Maurer  <bmaurer@users.sourceforge.net>
2432
2433         * expression.cs:
2434         According to the spec, 
2435
2436         In a member access of the form E.I, if E is a single identifier,
2437         and if the meaning of E as a simple-name (§7.5.2) is a constant,
2438         field, property, localvariable, or parameter with the same type as
2439         the meaning of E as a type-name (§3.8), then both possible
2440         meanings of E are permitted.
2441
2442         We did not check that E as a simple-name had the same type as E as
2443         a type name.
2444
2445         This trivial check gives us 5-7% on bootstrap time.
2446
2447 2004-05-30  Marek Safar  <marek.safar@seznam.cz>
2448
2449         Fixed bug #59071 & cs0160.cs
2450         * statement.cs (Try.Resolve): Check here whether order of catch
2451         clauses matches their dependencies.
2452
2453 2004-05-30  Marek Safar  <marek.safar@seznam.cz>
2454
2455         Fixed bug #58624
2456         * ecore.cs (SimpleName.SimpleNameResolve): Added test for
2457         unsafe type.
2458
2459 2004-05-30 Ben Maurer  <bmaurer@users.sourceforge.net>
2460
2461         * expression.cs (Invocation.OverloadResolve): Avoid the
2462         use of hashtables and boxing here by allocating on demand.
2463
2464 2004-05-30  Martin Baulig  <martin@ximian.com>
2465
2466         * rootcontext.cs (RootContext.LookupType): Don't cache things if
2467         we're doing a silent lookup.  Don't try to lookup nested types in
2468         TypeManager.object_type (thanks to Ben Maurer).
2469
2470 2004-05-30  Martin Baulig  <martin@ximian.com>
2471
2472         Committing a patch from Ben Maurer.
2473
2474         * rootcontext.cs (RootContext.LookupType): Cache negative results.      
2475
2476 2004-05-29  Martin Baulig  <martin@ximian.com>
2477
2478         * class.cs (IMethodData.ShouldIgnore): New method.
2479
2480         * typemanager.cs (TypeManager.MethodFlags): Don't take a
2481         `Location' argument, we don't need it anywhere.  Use
2482         `IMethodData.ShouldIgnore ()' instead of
2483         `MethodData.GetMethodFlags ()'.
2484         (TypeManager.AddMethod): Removed.
2485         (TypeManager.AddMethod2): Renamed to AddMethod.
2486
2487 2004-05-29  Martin Baulig  <martin@ximian.com>
2488
2489         Committing a patch from Benjamin Jemlich <pcgod@gmx.net>.
2490
2491         * convert.cs (Convert.ImplicitReferenceConversion): If we're
2492         converting from a class type S to an interface type and we already
2493         have an object on the stack, don't box it again.  Fixes #52578.
2494
2495 2004-05-29  Martin Baulig  <martin@ximian.com>
2496
2497         * class.cs (ConstructorInitializer.GetOverloadedConstructor):
2498         Added support for `params' parameters.  Fixes #59267.
2499
2500 2004-05-29  Martin Baulig  <martin@ximian.com>
2501
2502         * literal.cs (NullPointer): Provide a private .ctor which sets
2503         `type' to TypeManager.object_type.  Fixes #59048.
2504
2505 2004-05-29  Martin Baulig  <martin@ximian.com>
2506
2507         * expression.cs (MemberAccess.ResolveMemberAccess): If we're an
2508         EventExpr, set `ee.InstanceExpression = left'.  Fixes #59188.
2509
2510         * ecore.cs (EventExpr.instance_expr): Make the field private.
2511
2512 2004-05-26  Marek Safar  <marek.safar@seznam.cz>
2513
2514         Fixed bug #50080 & cs0214-2.cs
2515         * expression.cs (Cast.DoResolve): Check unsafe context here.
2516         
2517         * statement.cs (Resolve.DoResolve): Likewise.
2518
2519 2004-05-26  Martin Baulig  <martin@ximian.com>
2520
2521         * namespace.cs (NamespaceEntry.Lookup): Added `bool silent'.
2522
2523         * rootcontext.cs (RootContext.NamespaceLookup): Added `bool silent'.
2524         (RootContext.LookupType): Pass down the `silent' flag.
2525
2526 2004-05-25  Martin Baulig  <martin@ximian.com>
2527
2528         * expression.cs
2529         (MethodGroupExpr.IdenticalTypeName): New public property.
2530         (Invocation.DoResolve): Don't report a CS0176 if the "instance"
2531         expression actually refers to a type.
2532
2533 2004-05-25  Martin Baulig  <martin@ximian.com>
2534
2535         * expression.cs (Invocation.DoResolve): Applied Ben Maurer's patch
2536         for #56176 and made it actually work.
2537
2538 2004-05-25  Martin Baulig  <martin@ximian.com>
2539
2540         * ecore.cs (Expression.CacheTemporaries): Make this virtual.
2541         (FieldExpr, PropertyExpr): Override and implement
2542         CacheTemporaries.  Fixes #52279.
2543
2544 2004-05-25  Miguel de Icaza  <miguel@ximian.com>
2545
2546         * location.cs: In the new compiler listing a file twice is a
2547         warning, not an error.
2548
2549 2004-05-24  Martin Baulig  <martin@ximian.com>
2550
2551         * enum.cs (Enum.DefineType): For the `BaseType' to be a
2552         TypeLookupExpression; otherwise, report a CS1008.  Fixes #58571.
2553
2554 2004-05-24  Martin Baulig  <martin@ximian.com>
2555
2556         * decl.cs (DeclSpace.FindType): Try doing an alias lookup before
2557         walking the `using' list.  Fixes #53921.
2558
2559 2004-05-24  Martin Baulig  <martin@ximian.com>
2560
2561         * const.cs (Const.LookupConstantValue): Added support for
2562         EmptyCast's; fixes #55251.
2563
2564 2004-05-24  Martin Baulig  <martin@ximian.com>
2565
2566         * ecore.cs (SimpleName.SimpleNameResolve): Renamed to
2567         DoSimpleNameResolve() and provide a SimpleNameResolve() wrapper
2568         which does the CS0135 check.  The reason is that we first need to
2569         check whether the variable actually exists.
2570
2571 2004-05-24  Martin Baulig  <martin@ximian.com>
2572
2573         * class.cs (MemberBase.DoDefine): Use DeclSpace.FindType() rather
2574         than RootContext.LookupType() to find the explicit interface
2575         type.  Fixes #58584.
2576
2577 2004-05-24  Raja R Harinath  <rharinath@novell.com>
2578
2579         * Makefile: Simplify.  Use executable.make.
2580         * mcs.exe.sources: New file.  List of sources of mcs.exe.
2581
2582 2004-05-24  Anders Carlsson  <andersca@gnome.org>
2583
2584         * decl.cs:
2585         * enum.cs:
2586         Use the invariant culture when doing String.Compare for CLS case
2587         sensitivity.
2588         
2589 2004-05-23  Martin Baulig  <martin@ximian.com>
2590
2591         * decl.cs (DeclSpace.FindType): Only check the `using' list if we
2592         don't have any dots.  Fixes #52622, added cs0246-8.cs.
2593
2594         * namespace.cs (NamespaceEntry.Lookup): Likewise.
2595
2596 2004-05-23  Marek Safar  <marek.safar@seznam.cz>
2597
2598         * class.cs (MemberBase.Define): Reuse MemberType member for 
2599         resolved type. Other methods can use it too.
2600
2601 2004-05-23  Martin Baulig  <martin@ximian.com>
2602
2603         * ecore.cs (SimpleName.SimpleNameResolve): Only report a CS0135 if
2604         the variable also exists in the current block (otherwise, we need
2605         to report a CS0103).  Fixes #58670.
2606
2607 2004-05-23  Martin Baulig  <martin@ximian.com>
2608
2609         * flowanalysis.cs (Reachability.Reachable): Compute this
2610         on-the-fly rather than storing it as a field.
2611
2612 2004-05-23  Martin Baulig  <martin@ximian.com>
2613
2614         * flowanalysis.cs (Reachability.And): Manually compute the
2615         resulting `barrier' from the reachability.      
2616        
2617 2004-05-23  Marek Safar  <marek.safar@seznam.cz>
2618
2619         Fix bug #57835
2620         * attribute.cs (AttributeTester.GetMethodObsoleteAttribute): Returns
2621         instance of ObsoleteAttribute when symbol is obsolete.
2622
2623         * class.cs
2624         (IMethodData): Extended interface for ObsoleteAttribute support.
2625
2626 2004-05-22  Marek Safar  <marek.safar@seznam.cz>
2627
2628         * attribute.cs: Fix bug #55970
2629
2630 2004-05-22  Marek Safar  <marek.safar@seznam.cz>
2631
2632         Fix bug #52705
2633         * attribute.cs
2634         (GetObsoleteAttribute): New method. Creates the instance of
2635         ObsoleteAttribute.
2636         (AttributeTester.GetMemberObsoleteAttribute): Returns instance of
2637         ObsoleteAttribute when member is obsolete.
2638         (AttributeTester.Report_ObsoleteMessage): Common method for
2639         Obsolete error/warning reporting.
2640
2641         * class.cs
2642         (TypeContainer.base_classs_type): New member for storing parent type.
2643
2644         * decl.cs
2645         (MemberCore.GetObsoleteAttribute): Returns instance of ObsoleteAttribute
2646         for this MemberCore.
2647
2648 2004-05-21  Marek Safar  <marek.safar@seznam.cz>
2649
2650         * attribute.cs, const.cs: Fix bug #58590
2651
2652 2004-05-21  Martin Baulig  <martin@ximian.com>
2653
2654         * flowanalysis.cs (FlowBranching.MergeTopBlock): Don't check for
2655         out parameters if the end of the method is unreachable.  Fixes
2656         #58098. 
2657
2658 2004-05-21  Marek Safar  <marek.safar@seznam.cz>
2659
2660         * codegen.cs, cs-parser.jay: Removed SetAttributes method.
2661         Hari was right, why extra method.
2662
2663 2004-05-21  Marek Safar  <marek.safar@seznam.cz>
2664
2665         * attribute.cs, cs-parser.jay: Fix errors/cs0579-7.cs.
2666
2667 2004-05-20  Martin Baulig  <martin@ximian.com>
2668
2669         * delegate.cs: Convert this file to Unix mode - like the original
2670         version in mcs is.
2671
2672 2004-05-20  Martin Baulig  <martin@ximian.com>
2673
2674         * attribute.cs: Convert this file to Unix mode - like the original
2675         version in mcs is.
2676
2677 2004-05-19  Marek Safar  <marek.safar@seznam.cz>
2678
2679        Fix bug #58688 (MCS does not report error when the same attribute
2680        is assigned twice)
2681
2682        * attribute.cs (Attribute.Emit): Distinction between null and default.
2683
2684 2004-05-19  Raja R Harinath  <rharinath@novell.com>
2685
2686        * cs-parser.jay (attribute): Create a GlobalAttribute for the case
2687        of a top-level attribute without an attribute target.
2688        * attribute.cs (Attribute.Error_AttributeConstructorMismatch): 
2689        Make non-static.
2690        (Attribute.Conditional_GetConditionName), 
2691        (Attribute.Obsolete_GetObsoleteMessage): Update.
2692        (Attribute.IndexerName_GetIndexerName): New.  Attribute-specific
2693        part of ScanForIndexerName.
2694        (Attribute.CanIgnoreInvalidAttribute): New function.
2695        (Attribute.ScanForIndexerName): Move to ...
2696        (Attributes.ScanForIndexerName): ... here.
2697        (Attributes.Attrs): Rename from now-misnamed AttributeSections.
2698        (Attributes.Search): New internal variant that can choose not to
2699        complain if types aren't resolved.  The original signature now
2700        complains.
2701        (Attributes.GetClsCompliantAttribute): Use internal variant, with
2702        complaints suppressed.
2703        (GlobalAttribute.CheckAttributeType): Overwrite ds.NamespaceEntry
2704        only if it not useful.
2705        (CanIgnoreInvalidAttribute): Ignore assembly attribute errors at
2706        top-level for attributes that are shared between the assembly
2707        and a top-level class.
2708        * parameter.cs (ImplicitParameter): Rename from ParameterAtribute.
2709        * class.cs: Update to reflect changes.
2710        (DefineIndexers): Fuse loops.
2711        * codegen.cs (GetAssemblyName): Update to reflect changes.  Accept
2712        a couple more variants of attribute names.
2713
2714 2004-05-18  Marek Safar  <marek.safar@seznam.cz>
2715
2716         Fix bug #52585 (Implemented explicit attribute declaration)
2717
2718         * attribute.cs:
2719         (Attributable.ValidAttributeTargets): New abstract method. It gets
2720         list of valid attribute targets for explicit target declaration.
2721         (Attribute.Target): It holds target itself.
2722         (AttributeSection): Removed.
2723         (Attribute.CheckTargets): New method. It checks whether attribute
2724         target is valid for the current element.
2725
2726         * class.cs:
2727         (EventProperty): New class. For events that are declared like
2728         property (with add and remove accessors).
2729         (EventField): New class. For events that are declared like field.
2730         class.cs
2731
2732         * cs-parser.jay: Implemented explicit attribute target declaration.
2733
2734         * class.cs, decl.cs, delegate.cs, enum.cs, parameter.cs:        
2735         Override ValidAttributeTargets.
2736
2737         * parameter.cs:
2738         (ReturnParameter): Class for applying custom attributes on 
2739         the return type.
2740         (ParameterAtribute): New class. Class for applying custom
2741         attributes on the parameter type.
2742
2743 2004-05-17  Miguel de Icaza  <miguel@ximian.com>
2744
2745         * class.cs (MemberBase.DoDefine): Pass UNSAFE on interface
2746         definitions. 
2747
2748         (Method): Allow UNSAFE here.
2749
2750         * modifiers.cs: Support unsafe reporting.
2751
2752 2004-05-17  Marek Safar  <marek.safar@seznam.cz>
2753
2754         * decl.cs: Fix bug #58478.
2755
2756 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2757
2758         * statement.cs: When checking for unreachable code on an EmptyStatement,
2759         set the location. Fixes bug #58488.
2760
2761 2004-05-13  Miguel de Icaza  <miguel@ximian.com>
2762
2763         * driver.cs: Add -pkg handling.
2764
2765         From Gonzalo: UseShelLExecute=false
2766
2767 2004-05-12  Marek Safar  <marek.safar@seznam.cz>
2768
2769         * attribute.cs:
2770         (Attribute.GetAttributeTargets): New method. Gets AttributeTargets
2771         for attribute.
2772         (Attribute.IsClsCompliaceRequired): Moved to base for better
2773         accesibility.
2774         (Attribute.UsageAttribute): New property for AttributeUsageAttribute
2775         when attribute is AttributeUsageAttribute.
2776         (Attribute.GetValidTargets): Simplified.
2777         (Attribute.GetAttributeUsage): New method returns AttributeUsage
2778         attribute for this type.
2779         (Attribute.ApplyAttributes): Method renamed to Emit and make
2780         non-static.
2781         (GlobalAttributeSection): New class for special handling of global
2782         attributes (assembly, module).
2783         (AttributeSection.Emit): New method.
2784
2785         * class.cs: Implemented Attributable abstract methods.
2786         (MethodCore.LabelParameters): Moved to Parameter class.
2787         (Accessor): Is back simple class.
2788         (PropertyMethod): Implemented Attributable abstract class.
2789         (DelegateMethod): Implemented Attributable abstract class.
2790         (Event): New constructor for disctintion between normal Event
2791         and Event with accessors.
2792
2793         * cs-parser.jay: Used new Event ctor and GlobalAttributeSection.
2794
2795         * codegen.cs, const.cs, decl.cs, delegate.cs:
2796         (CommonAssemblyModulClass): Implemented Attributable abstract class
2797         and simplified.
2798
2799         * enum.cs: Implement IAttributeSupport interface.
2800         (EnumMember): New class for emum members. Implemented Attributable
2801         abstract class
2802
2803         * parameter.cs:
2804         (ParameterBase): Is abstract.
2805         (ReturnParameter): New class for easier [return:] attribute handling.
2806
2807         * typemanager.cs: Removed builder_to_attr.
2808
2809 2004-05-11  Raja R Harinath  <rharinath@novell.com>
2810
2811         Fix bug #57151.
2812         * attribute.cs (Attribute.GetPositionalValue): New function.
2813         * class.cs (TypeContainer.VerifyMembers): New function.
2814         (TypeContainer.Emit): Use it.
2815         (ClassOrStruct): New base class for Class and Struct.
2816         (ClassOrStruct.ApplyAttributeBuilder): New function.  Note if 
2817         StructLayout(LayoutKind.Explicit) was ascribed to the struct or
2818         class.
2819         (ClassOrStruct.VerifyMembers): If the struct is explicitly laid out,
2820         then each non-static field should have a FieldOffset attribute.
2821         Otherwise, none of the fields should have a FieldOffset attribute.
2822         * rootcontext.cs (RootContext.ResolveCore): Resolve StructLayout 
2823         and FieldOffset attributes.
2824         * typemanager.cs (TypeManager.struct_layout_attribute_type)
2825         (TypeManager.field_offset_attribute_type): New core types.
2826         (TypeManager.InitCoreTypes): Initialize them.
2827
2828 2004-05-11  Michal Moskal  <malekith@pld-linux.org>
2829
2830         * class.cs (Event.RemoveDelegateMethod.DelegateMethodInfo):
2831         Return correct type.
2832         From bug #58270.
2833
2834 2004-05-09  Miguel de Icaza  <miguel@ximian.com>
2835
2836         * expression.cs (Binary.DoNumericPromotions): 0 long constant can
2837         be implicitly converted to ulong.
2838         
2839         * expression.cs: The logic for allowing operator &, | and ^ worked
2840         was wrong, it worked before because we did not report an error in
2841         an else branch.  Fixes 57895.
2842
2843         * class.cs: Applied patch from iain@mccoy.id.au Iain McCoy to
2844         allow volatile fields to be reference types.
2845
2846 2004-05-07  Miguel de Icaza  <miguel@ximian.com>
2847
2848         * driver.cs: Add support for /debug-
2849
2850 2004-05-07  Raja R Harinath  <rharinath@novell.com>
2851
2852         * attribute.cs (Attribute.CheckAttributeType, Attribute.ResolveType): 
2853         Add a 'complain' parameter to silence errors.
2854         (Attribute.Resolve): Update to changes.  Put in sanity check to catch
2855         silently overlooked type-resolutions.
2856         (Attribute.ScanForIndexerName, Attribute.DefinePInvokeMethod): Update
2857         to reflect changes.
2858         (Attributes.Search): New function.
2859         (Attributes.Contains, Attributes.GetClsCompliantAttribute): Use Search.
2860         (Attributes.GetAttributeFullName): Remove hack.
2861         * class.cs (MethodCore.LabelParameters, MethodData.ApplyAttributes): 
2862         Update to reflect changes.
2863         * codegen.cs (CommonAssemblyModulClass.GetClsCompliantAttribute):
2864         Use Attributes.Search instead of nested loops.
2865
2866 2004-05-07  Marek Safar  <marek.safar@seznam.cz>
2867
2868         * decl.cs:
2869         (MemberCore.Flags): Extended for caching presence of CLSCompliantAttribute.
2870         (MemberCore.VerifyClsCompliance): Implemented CS3019 error report.
2871         (DeclSpace.GetClsCompliantAttributeValue): Returns simple bool.
2872
2873         * report.cs: (Report.Warning): Renamed to Warning_T because of
2874         parameter collision.
2875
2876 2004-05-05  Raja R Harinath  <rharinath@novell.com>
2877
2878         * expression.cs (MemberAccess.ResolveMemberAccess):
2879         Exit with non-zero status after Report.Error.
2880         * rootcontext.cs (RootContext.BootstrapCorlib_ResolveDelegate):
2881         Likewise.
2882         * typemanager.cs (TypeManager.CoreLookupType): Likewise.
2883
2884 2004-05-04  Lluis Sanchez Gual  <lluis@ximian.com>
2885
2886         * support.cs: Don't hang when the file is empty.
2887
2888 2004-05-04  Lluis Sanchez Gual  <lluis@ximian.com>
2889
2890         * support.cs: In SeekableStreamReader, compute the preamble size of the
2891           underlying stream. Position changes should take into account that initial
2892           count of bytes.
2893
2894 2004-05-03  Todd Berman  <tberman@sevenl.net>
2895
2896         * driver.cs: remove unused GetSysVersion function.
2897
2898 2004-05-03  Todd Berman  <tberman@sevenl.net>
2899
2900         * driver.cs: Remove the hack from saturday, as well as the hack
2901         from jackson (LoadAssemblyFromGac), also adds the CWD to the
2902         link_paths to get that bit proper.
2903
2904 2004-05-01  Todd Berman  <tberman@sevenl.net>
2905
2906         * driver.cs: Try a LoadFrom before a Load, this checks the current
2907         path. This is currently a bug in mono that is be fixed, however, this
2908         provides a workaround for now. This will be removed when the bug
2909         is fixed.
2910
2911 2004-05-01  Sebastien Pouliot  <sebastien@ximian.com>
2912
2913         * CryptoConvert.cs: Updated to latest version. Fix issue with 
2914         incomplete key pairs (#57941).
2915
2916 2004-05-01  Todd Berman  <tberman@sevenl.net>
2917
2918         * driver.cs: Remove '.' from path_chars, now System.* loads properly
2919         from the GAC
2920
2921 2004-04-30  Jackson Harper  <jackson@ximian.com>
2922
2923         * codegen.cs: Open keys readonly.
2924         
2925 2004-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2926
2927         * typemanager.cs: don't report cyclic struct layout when a struct
2928         contains 2 or more fields of the same type. Failed for Pango.AttrShape
2929         which has 2 Pango.Rectangle fields.
2930
2931 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
2932
2933         * expression.cs: Handle IntPtr comparisons with IL code
2934         rather than a method call.
2935
2936 2004-04-29  Martin Baulig  <martin@ximian.com>
2937
2938         * ecore.cs (PropertyExpr.FindAccessor): New private method.  Walk
2939         the list of PropertyInfo's in class hierarchy and find the
2940         accessor.  Fixes #56013.
2941
2942 2004-04-29  Martin Baulig  <martin@ximian.com>
2943
2944         * typemanager.cs (TypeManager.CheckStructCycles): Fixed.
2945
2946 2004-04-29  Martin Baulig  <martin@ximian.com>
2947
2948         Applying a patch from Benjamin Jemlich <pcgod@gmx.net>.
2949
2950         * ecore.cs (FieldExpr.AddressOf): Make this work for valuetypes.
2951
2952 2004-04-29  Martin Baulig  <martin@ximian.com>
2953
2954         * class.cs (ConstructorInitializer.Resolve): Check whether the
2955         parent .ctor is accessible.  Fixes #52146.
2956
2957 2004-04-29  Martin Baulig  <martin@ximian.com>
2958
2959         Applying a patch from Benjamin Jemlich <pcgod@gmx.net>.
2960
2961         * statement.cs (Using.EmitLocalVariableDecls): Use
2962         TypeManager.idisposable_type, not typeof (IDisposable).
2963         (Foreach.EmitCollectionForeach): Added support for valuetypes.
2964
2965 2004-04-29  Martin Baulig  <martin@ximian.com>
2966
2967         * class.cs (Event.Define): Don't emit the field and don't set
2968         RTSpecialName and SpecialName for events on interfaces.  Fixes
2969         #57703. 
2970
2971 2004-04-29  Raja R Harinath  <rharinath@novell.com>
2972
2973         Refactor Attribute.ApplyAttributes.
2974         * attribute.cs (Attributable): New base class for objects that can
2975         have Attributes applied on them.
2976         (Attribute): Make AttributeUsage fields public.
2977         (Attribute.GetFieldValue, Attribute.GetMarshal): Make non-static.
2978         (Attribute.IsInternalCall): New property.
2979         (Attribute.UsageAttr): Convert to a public read-only property.
2980         (Attribute.CheckAttributeType): Use a DeclSpace, not an EmitContext.
2981         (Attribute.ResolveType, Attribute.Resolve)
2982         (Attribute.ScanForIndexerName): Update to reflect changes.
2983         (Attribute.CheckAttributeTarget): Re-format.
2984         (Attribute.ApplyAttributes): Refactor, to various
2985         Attributable.ApplyAttributeBuilder methods.
2986         * decl.cs (MemberCore): Make Attributable.
2987         * class.cs (Accessor): Make Attributable.
2988         (MethodData.ApplyAttributes): Use proper attribute types, not
2989         attribute names.
2990         (TypeContainer.LabelParameters): Pass Parameter to ApplyAttributes.
2991         (TypeContainer.ApplyAttributeBuilder)
2992         (Method.ApplyAttributeBuilder, Constructor.ApplyAttributeBuilder)
2993         (Field.ApplyAttributeBuilder, Accessor.ApplyAttributeBuilder)   
2994         (PropertyBase.ApplyAttributeBuilder, Event.ApplyAttributeBuilder)
2995         (Operator.ApplyAttributeBuilder): New factored-out methods.
2996         * const.cs (Const.ApplyAttributeBuilder): Likewise.
2997         * delegate.cs (Delegate.ApplyAttributeBuilder): Likewise.
2998         * enum.cs (Enum.ApplyAttributeBuilder): Likewise.
2999         * parameter.cs (ParameterBase): New Attributable base class
3000         that can also represent Return types.
3001         (Parameter): Update to the changes.
3002
3003 2004-04-29  Jackson Harper  <jackson@ximian.com>
3004
3005         * driver.cs: Prefer the corlib system version when looking for
3006         assemblies in the GAC. This is still a hack, but its a better hack
3007         now.
3008         
3009 2004-04-29  Marek Safar  <marek.safar@seznam.cz>
3010
3011         * decl.cs, enum.cs: Improved error 3005 reporting.
3012   
3013         * report.cs (SymbolRelatedToPreviousError): New method for error reporting.
3014         (related_symbols): New private member for list of symbols
3015         related to reported error/warning.
3016         
3017         * tree.cs: Do not use now obsolete Report.LocationOfPreviousError.
3018
3019 2004-04-29  Martin Baulig  <martin@ximian.com>
3020
3021         * ecore.cs (Expression.Constantify): If we're an enum and
3022         TypeManager.TypeToCoreType() doesn't give us another type, use
3023         t.UnderlyingSystemType.  Fixes #56178.  
3024
3025 2004-04-29  Martin Baulig  <martin@ximian.com>
3026
3027         * decl.cs (MemberCache.SetupCacheForInterface): Look over all our
3028         interfaces and for each interface, only add members directly
3029         declared in that interface.  Fixes #53255.
3030
3031 2004-04-28  Martin Baulig  <martin@ximian.com>
3032
3033         * expression.cs (ConditionalLogicalOperator): Use a temporary
3034         variable for `left' to avoid that we evaluate it more than once;
3035         bug #52588.
3036
3037 2004-04-28  Martin Baulig  <martin@ximian.com>
3038
3039         * expression.cs (ComposedCast.DoResolveAsTypeStep): Don't allow
3040         `void[]' (CS1547).
3041
3042 2004-04-28  Martin Baulig  <martin@ximian.com>
3043
3044         * statement.cs (LocalInfo.Resolve): Check whether the type is not
3045         void (CS1547).
3046
3047         * class.cs (MemberBase.CheckParameters, FieldBase.DoDefine): Check
3048         whether the type is not void (CS1547).
3049
3050 2004-04-28  Martin Baulig  <martin@ximian.com>
3051
3052         * expression.cs (Unary.DoResolveLValue): Override this and report
3053         CS0131 for anything but Operator.Indirection.
3054
3055 2004-04-28  Martin Baulig  <martin@ximian.com>
3056
3057         Committing a patch from Ben Maurer; see bug #50820.
3058
3059         * typemanager.cs (TypeManager.FilterWithClosure): Added CS1540
3060         check for classes.
3061
3062         * ecore.cs (Expression.MemberLookupFailed): Added CS1540 check for
3063         classes.        
3064
3065 2004-04-28  Martin Baulig  <martin@ximian.com>
3066
3067         Committing a patch from Ben Maurer; see bug #50820.
3068
3069         * typemanager.cs (TypeManager.FilterWithClosure): Added CS1540
3070         check for classes.
3071
3072         * ecore.cs (Expression.MemberLookupFailed): Added CS1540 check for
3073         classes.        
3074
3075 2004-04-28  Martin Baulig  <martin@ximian.com>
3076
3077         * statement.cs (Block.LookupLabel): Also lookup in implicit child blocks.
3078         (Block.AddLabel): Call DoLookupLabel() to only search in the
3079         current block.
3080
3081 2004-04-28  Martin Baulig  <martin@ximian.com>
3082
3083         * cfold.cs (ConstantFold.BinaryFold): Added special support for
3084         comparing StringConstants and NullLiterals in Equality and Inequality.
3085
3086 2004-04-28  Jackson Harper  <jackson@ximian.com>
3087
3088         * driver.cs: Attempt to load referenced assemblies from the
3089         GAC. This is the quick and dirty version of this method that
3090         doesnt take into account versions and just takes the first
3091         canidate found. Will be good enough for now as we will not have more
3092         then one version installed into the GAC until I update this method.
3093
3094 2004-04-28  Martin Baulig  <martin@ximian.com>
3095
3096         * typemanager.cs (TypeManager.CheckStructCycles): New public
3097         static method to check for cycles in the struct layout.
3098
3099         * rootcontext.cs (RootContext.PopulateTypes): Call
3100         TypeManager.CheckStructCycles() for each TypeContainer.
3101         [Note: We only need to visit each type once.]
3102
3103 2004-04-28  Martin Baulig  <martin@ximian.com>
3104
3105         * constant.cs (StringConstant.Emit): Emit Ldnull if we're null.
3106
3107         * const.cs (Const.LookupConstantValue): Return a `bool' signalling
3108         success and added `out object value'.  Use a `bool resolved' field
3109         to check whether we've already been called rather than
3110         `ConstantValue != null' since this breaks for NullLiterals.
3111
3112 2004-04-28  Raja R Harinath  <rharinath@novell.com>
3113
3114         * driver.cs (Driver.MainDriver) [IsModuleOnly]: Open code the
3115         setting of this flag, since the 'set' method may be non-public.
3116
3117 2004-04-28  Raja R Harinath  <rharinath@novell.com>
3118
3119         * flowanalysis.cs (FlowBranchingException.LookupLabel): Add a null
3120         check on current_vector.Block.
3121
3122 2004-04-27  Martin Baulig  <martin@ximian.com>
3123
3124         * expression.cs (BaseAccess.CommonResolve): Don't allow `base' in
3125         a field initializer.  Fixes #56459.
3126
3127 2004-04-27  Martin Baulig  <martin@ximian.com>
3128
3129         * ecore.cs (PropertyExpr.DoResolve/DoResolveLValue): Check whether
3130         we're not attempting to use an indexer.  Fixes #52154.
3131
3132 2004-04-27  Martin Baulig  <martin@ximian.com>
3133
3134         * statement.cs (Return): Don't create a return label if we don't
3135         need it; reverts my change from January 20th.  Thanks to Ben
3136         Maurer for this.
3137
3138 2004-04-27  Martin Baulig  <martin@ximian.com>
3139
3140         According to the spec, `goto' can only leave a nested scope, but
3141         never enter it.
3142
3143         * statement.cs (Block.LookupLabel): Only lookup in the current
3144         block, don't recurse into parent or child blocks.
3145         (Block.AddLabel): Check in parent and child blocks, report
3146         CS0140/CS0158 if we find a duplicate.
3147         (Block): Removed this indexer for label lookups.
3148         (Goto.Resolve): Call LookupLabel() on our current FlowBranching;
3149         this already does the error reporting for us.
3150
3151         * flowanalysis.cs
3152         (FlowBranching.UsageVector.Block): New public variable; may be null.
3153         (FlowBranching.CreateSibling): Added `Block' argument.
3154         (FlowBranching.LookupLabel): New public virtual method.  Lookup a
3155         label for the target of a `goto' and check whether we're not
3156         leaving a `finally'.
3157
3158 2004-04-27  Martin Baulig  <martin@ximian.com>
3159
3160         * flowanalysis.cs (FlowBranching.UsageVector.MergeChild): If we're
3161         a finite loop block, also do the ALWAYS->SOMETIMES for throws (not
3162         just for returns).
3163
3164 2004-04-27  Martin Baulig  <martin@ximian.com>
3165
3166         * statement.cs (Block.AddLabel): Also check for implicit blocks
3167         and added a CS0158 check.
3168
3169 2004-04-27  Martin Baulig  <martin@ximian.com>
3170
3171         * flowanalysis.cs (FlowBranchingLoop): New class.
3172         (FlowBranching.UsageVector.MergeJumpOrigins): Take a list of
3173         UsageVector's instead of an ArrayList.
3174         (FlowBranching.Label): Likewise.
3175         (FlowBranching.UsageVector.MergeBreakOrigins): New method.
3176         (FlowBranching.AddBreakVector): New method.
3177
3178 2004-04-27  Miguel de Icaza  <miguel@ximian.com>
3179
3180         * attribute.cs: Small regression fix: only convert the type if we
3181         the type is different, fixes System.Drawing build.
3182
3183 2004-04-27  Martin Baulig  <martin@ximian.com>
3184
3185         * attribute.cs (Attribute.Resolve): If we have a constant value
3186         for a named field or property, implicity convert it to the correct
3187         type.
3188
3189 2004-04-27  Raja R Harinath  <rharinath@novell.com>
3190
3191         * statement.cs (Block.Block): Implicit blocks share
3192         'child_variable_names' fields with parent blocks.
3193         (Block.AddChildVariableNames): Remove.
3194         (Block.AddVariable): Mark variable as "used by a child block" in
3195         every surrounding block.
3196         * ecore.cs (SimpleName.SimpleNameResolve): If the name has already
3197         been used in a child block, complain about violation of "Invariant
3198         meaning in blocks" rule.
3199         * cs-parser.jay (declare_local_variables): Don't use
3200         AddChildVariableNames.
3201         (foreach_statement): Don't create an implicit block: 'foreach'
3202         introduces a scope.
3203
3204 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
3205
3206         * convert.cs (ImplicitNumericConversion): 0 is also positive when
3207         converting from 0L to ulong.  Fixes 57522.
3208
3209 2004-04-22  Marek Safar  <marek.safar@seznam.cz>
3210
3211         * decl.cs (FindMemberToOverride): Fix wrong warning for case when
3212         derived class hides via 'new' keyword field from base class (test-242.cs).
3213         TODO: Handle this in the more general way.
3214         
3215         * class.cs (CheckBase): Ditto.
3216
3217 2004-04-22  Marek Safar  <marek.safar@seznam.cz>
3218
3219         * decl.cs (caching_flags): New member for storing cached values
3220         as bit flags.
3221         (MemberCore.Flags): New enum where bit flags for caching_flags
3222         are defined.
3223         (MemberCore.cls_compliance): Moved to caching_flags.
3224         (DeclSpace.Created): Moved to caching_flags.
3225
3226         * class.cs: Use caching_flags instead of DeclSpace.Created
3227         
3228 2004-04-21  Miguel de Icaza  <miguel@ximian.com>
3229
3230         * ecore.cs (PropertyExpr.GetAccesor): Only perform the 1540 check
3231         if we are only a derived class, not a nested class.
3232
3233         * typemanager.cs: Same as above, but do this at the MemberLookup
3234         level (used by field and methods, properties are handled in
3235         PropertyExpr).   Allow for the qualified access if we are a nested
3236         method. 
3237
3238 2004-04-21  Marek Safar  <marek.safar@seznam.cz>
3239
3240         * class.cs: Refactoring.
3241         (IMethodData): New inteface; Holds links to parent members
3242         to avoid member duplication (reduced memory allocation).
3243         (Method): Implemented IMethodData interface.
3244         (PropertyBase): New inner classes for get/set methods.
3245         (PropertyBase.PropertyMethod): Implemented IMethodData interface
3246         (Event): New inner classes for add/remove methods.
3247         (Event.DelegateMethod): Implemented IMethodData interface.
3248
3249         * cs-parser.jay: Pass DeclSpace to Event class for creation of valid
3250         EmitContext (related to class.cs refactoring).
3251
3252 2004-04-21  Raja R Harinath  <rharinath@novell.com>
3253
3254         * delegate.cs (Delegate.VerifyApplicability): If the number of
3255         arguments are the same as the number of parameters, first try to
3256         verify applicability ignoring  any 'params' modifier on the last
3257         parameter.
3258         Fixes #56442.
3259
3260 2004-04-08  Martin Baulig  <martin@ximian.com>
3261
3262         Merged latest changes into gmcs.  Please keep this comment in
3263         here, it makes it easier for me to see what changed in MCS since
3264         the last time I merged.
3265
3266 2004-04-16  Raja R Harinath  <rharinath@novell.com>
3267
3268         * class.cs (TypeContainer.AddIndexer): Use
3269         'ExplicitInterfaceName' to determine if interface name was
3270         explicitly specified.  'InterfaceType' is not initialized at this time.
3271         (TypeContainer.DefineIndexers): Remove use of temporary list.  The
3272         Indexers array is already in the required order.  Initialize
3273         'IndexerName' only if there are normal indexers.
3274         (TypeContainer.DoDefineMembers): Don't initialize IndexerName.
3275         (TypeContainer.Emit): Emit DefaultMember attribute only if
3276         IndexerName is initialized.
3277         Fixes #56300.
3278
3279 2004-04-15  Benjamin Jemlich  <pcgod@gmx.net>
3280
3281         * enum.cs (Enum.DefineType): Don't allow char as type for enum.
3282         Fixes #57007
3283
3284 2004-04-15  Raja R Harinath  <rharinath@novell.com>
3285
3286         * attribute.cs (Attribute.CheckAttributeType): Check for ambiguous
3287         attributes.
3288         Fix for #56456.
3289
3290         * attribute.cs (Attribute.Resolve): Check for duplicate named
3291         attributes.
3292         Fix for #56463.
3293
3294 2004-04-15  Miguel de Icaza  <miguel@ximian.com>
3295
3296         * iterators.cs (MarkYield): track whether we are in an exception,
3297         and generate code accordingly.  Use a temporary value to store the
3298         result for our state.
3299
3300         I had ignored a bit the interaction of try/catch with iterators
3301         since their behavior was not entirely obvious, but now it is
3302         possible to verify that our behavior is the same as MS .NET 2.0
3303
3304         Fixes 54814
3305
3306 2004-04-14  Miguel de Icaza  <miguel@ximian.com>
3307
3308         * iterators.cs: Avoid creating temporaries if there is no work to
3309         do. 
3310
3311         * expression.cs (ArrayAccess.EmitLoadOpcode): If dealing with
3312         Enumerations, use TypeManager.EnumToUnderlying and call
3313         recursively. 
3314
3315         Based on the patch from Benjamin Jemlich (pcgod@gmx.net), fixes
3316         bug #57013
3317
3318         (This.Emit): Use EmitContext.EmitThis to emit our
3319         instance variable.
3320
3321         (This.EmitAssign): Ditto.
3322
3323         * ecore.cs (FieldExpr.Emit): Remove RemapToProxy special
3324         codepaths, we will move all the functionality into
3325         Mono.CSharp.This 
3326
3327         (FieldExpr.EmitAssign): Ditto.
3328
3329         This fixes several hidden bugs that I uncovered while doing a code
3330         review of this today.
3331
3332         * codegen.cs (EmitThis): reworked so the semantics are more clear
3333         and also support value types "this" instances.
3334
3335         * iterators.cs: Changed so that for iterators in value types, we
3336         do not pass the value type as a parameter.  
3337
3338         Initialization of the enumerator helpers is now done in the caller
3339         instead of passing the parameters to the constructors and having
3340         the constructor set the fields.
3341
3342         The fields have now `assembly' visibility instead of private.
3343
3344 2004-04-11  Miguel de Icaza  <miguel@ximian.com>
3345
3346         * expression.cs (Argument.Resolve): Check if fields passed as ref
3347         or out are contained in a MarshalByRefObject.
3348
3349         * typemanager.cs, rootcontext.cs: Add System.Marshalbyrefobject as
3350         another compiler type.
3351
3352 2004-04-06 Ben Maurer  <bmaurer@users.sourceforge.net>
3353
3354         * class.cs (Indexer.Define): use the new name checking method.
3355         Also, return false on an error.
3356         * cs-tokenizer.cs (IsValidIdentifier): Checks for a valid identifier.
3357         (is_identifier_[start/part]_character): make static.
3358
3359 2004-04-10  Miguel de Icaza  <miguel@ximian.com>
3360
3361         * expression.cs (Binary.ResolveOperator): Do no append strings
3362         twice: since we can be invoked more than once (array evaluation)
3363         on the same concatenation, take care of this here.  Based on a fix
3364         from Ben (bug #56454)
3365
3366 2004-04-08  Sebastien Pouliot  <sebastien@ximian.com>
3367
3368         * codegen.cs: Fix another case where CS1548 must be reported (when 
3369         delay-sign isn't specified and no private is available #56564). Fix
3370         loading the ECMA "key" to delay-sign an assembly. Report a CS1548 
3371         error when MCS is used on the MS runtime and we need to delay-sign 
3372         (which seems unsupported by AssemblyBuilder - see #56621).
3373
3374 2004-04-08  Marek Safar  <marek.safar@seznam.cz>
3375
3376         * typemanager.cs (TypeManager.TypeToCoreType): Handle IntPtr too.
3377         (TypeManager.ComputeNamespaces): Faster implementation for
3378         Microsoft runtime.
3379
3380         * compiler.csproj: Updated AssemblyName to mcs.
3381
3382 2004-05-11  Jackson Harper  <jackson@ximian.com>
3383
3384         * Makefile: Preserve MONO_PATH
3385         
3386 2004-05-11  Jackson Harper  <jackson@ximian.com>
3387
3388         * Makefile: Use mono and mcs to build gmcs
3389         
3390 2004-05-03  Miguel de Icaza  <miguel@ximian.com>
3391
3392         * codegen.cs: Add patch from Robert Shade
3393         <rshade@dvsconsulting.com>, use FileAccess.Read on the keyfile, to
3394         sync with mcs.
3395
3396 2004-05-02  Sebastien Pouliot  <sebastien@ximian.com>
3397
3398         * CryptoConvert.cs: Updated to latest version. Fix issue with 
3399         incomplete key pairs (#57941).
3400
3401 2004-04-08  Sebastien Pouliot  <sebastien@ximian.com>
3402
3403         * codegen.cs: Fix another case where CS1548 must be reported (when 
3404         delay-sign isn't specified and no private is available #56564). Fix
3405         loading the ECMA "key" to delay-sign an assembly. Report a CS1548 
3406         error when MCS is used on the MS runtime and we need to delay-sign 
3407         (which seems unsupported by AssemblyBuilder - see #56621).
3408
3409 2004-04-29  Jackson Harper  <jackson@ximian.com>
3410
3411         * Makefile: Set MONO_PATH to use the bootstrap corlib
3412         * driver.cs: Check the GAC for referenced assemblies.
3413                 
3414 2004-04-29  Martin Baulig  <martin@ximian.com>
3415
3416         * Makefile (gmcs.exe): Set MONO_PATH to use `../class/lib/net_2_0'.
3417
3418 2004-04-07  Martin Baulig  <martin@ximian.com>
3419
3420         * expression.cs (Binary.ResolveOperator): Added special case for
3421         Equality/Inequality between a type parameter and a null literal.
3422
3423 2004-04-07  Martin Baulig  <martin@ximian.com>
3424
3425         * convert.cs: Check null literal -> type parameter conversions.
3426
3427 2004-04-07  Martin Baulig  <martin@ximian.com>
3428
3429         * generic.cs (ConstructedType.CheckConstraints): Enforce the
3430         `class' and `struct' constraints.
3431
3432 2004-04-07  Martin Baulig  <martin@ximian.com>
3433
3434         * generic.cs (SpecialConstraint): New public enum.
3435         (Constraints.Resolve): Added support for the `class' and `struct'
3436         constraints.
3437
3438         * cs-parser.jay (type_parameter_constraint): Added support for the
3439         `class' and `struct' constraints.
3440
3441 2004-04-07  Martin Baulig  <martin@ximian.com>
3442
3443         * support.cs (GenericConstraints): Replaced `Types' by
3444         `ClassConstraint' and `InterfaceConstraints'; added
3445         `HasClassConstraint'.   
3446
3447 2004-04-07  Martin Baulig  <martin@ximian.com>
3448
3449         * generic.cs
3450         (Constraints.InterfaceConstraints): New public property.
3451         (Constraints.Types): Make this property public
3452         (TypeParameter): Implement IMemberContainer.
3453         (TypeParameter.Define): Take a `GenericTypeParameterBuilder'
3454         instead of a TypeBuilder/MethodBuilder; pass the interface
3455         constraints to TypeManager.AddTypeParameter().
3456         (TypeParameter.DefineType): Just take an EmitContext and no
3457         TypeBuilder/MethodBuilder.  Use the new public API.
3458
3459         * typemanager.cs (TypeManager.AddTypeParameter): Added
3460         `TypeExpr[]' argument; add the interfaces to the
3461         `builder_to_ifaces' hash.
3462         (TypeManager.LookupMemberContainer): For
3463         GenericTypeParameterBuilders, get the TypeParameter from the
3464         `builder_to_type_param'.
3465         (TypeManager.FindMembers): For GenericTypeParameterBuilders, get
3466         the TypeParameter and call FindMembers on it.
3467
3468 2004-04-07  Martin Baulig  <martin@ximian.com>
3469
3470         * class.cs
3471         (MethodCore.GenericMethod): Moved this field here from Method.
3472         (MethodCore.IsDuplicateImplementation): Take the number of type
3473         parameters into account if we're a generic method.
3474
3475         * expression.cs (Invocation.InferTypeArguments): Don't return true
3476         if `arguments' is null; we still need to check whether we actually
3477         don't need to infer anything in this case.
3478         (MemberAccess): Merged the functionality from GenericMemberAccess
3479         into this class.
3480
3481         * generic.cs (GenericMemberAccess): Removed.
3482
3483 2004-04-05  Martin Baulig  <martin@ximian.com>
3484
3485         * decl.cs (MemberCore): For generic classes, interfaces and
3486         structs, `Name' now includes the number of type parameters
3487         ("Stack!1.Node!1").
3488         (DeclSpace.FindType): Removed the `num_type_args' argument; we now
3489         encode the number of type arguments in the type name.
3490
3491         * expression.cs (Expression.MemberLookup): Removed the
3492         `num_type_args' argument; we now encode the number of type
3493         arguments in the type name.
3494
3495         * ecore.cs (SimpleName): Encode the number of type arguments in
3496         the type name itself.
3497
3498         * generic.cs (ConstructedType): Likewise.
3499
3500         * tree.cs (Tree.RecordDecl): Take a `string' instead of a
3501         `MemberName'; we now include the number of type parameters in the
3502         type name.
3503
3504         * typemanager.cs (TypeManager.CheckGeneric): Removed.
3505         (TypeManager.MemberLookup): Removed the
3506         `num_type_args' argument; we now encode the number of type
3507         arguments in the type name.     
3508
3509 2004-04-03  Martin Baulig  <martin@ximian.com>
3510
3511         * decl.cs (MemberCore.ctor): Take a MemberName instead of a sting.
3512         (MemberCore.MemberName): Moved here from MemberBase.
3513         (DeclSpace.SetParameterInfo): Just take the constraints as an
3514         ArrayList; we already have the type parameters in our
3515         `MemberName'; also do the CS0080 reporting here.
3516
3517         * cs-parser.jay (struct_declaration): Use `member_name' instead of
3518         `IDENTIFIER opt_type_parameter_list'; when constructing our
3519         `MemberName', it'll already include our type parameters.
3520         (class_declaration, interface_declaration): Likewise.
3521         (delegate_declaration): Likewise.
3522         (MakeName): Take a MemberName and return a MemberName.
3523         The following two changes are required to avoid shift/reduce conflicts:
3524         (member_name): Don't include a TypeName anymore; ie. this is now
3525         just 'IDENTIFIER opt_type_parameter_list'.
3526         (property_declaration, event_declaration): Use a
3527         `namespace_or_type_name' instead of a `member_name'.            
3528
3529 2004-04-03  Martin Baulig  <martin@ximian.com>
3530
3531         * decl.cs (MemberName): Renamed to `TypeName' and created a new
3532         `MemberName' class.
3533         (TypeName): Formerly known as MemberName.
3534
3535         * namespace.cs (NamespaceEntry.UsingAlias): Take a `TypeName'
3536         instead of a `MemberName'.
3537
3538         * cs-parser.jay (namespace_or_type_name): Create a TypeName.
3539         (member_name): New rule; create a MemberName.
3540
3541 2004-04-02  Martin Baulig  <martin@ximian.com>
3542
3543         * namespace.cs (NamespaceEntry.VerifyUsing): Added error checking
3544         (CS0305 and CS0308).
3545
3546 2004-04-02  Martin Baulig  <martin@ximian.com>
3547
3548         * generic.cs (GenericMemberAccess.ResolveAsTypeStep): Added
3549         support for nested types.
3550
3551 2004-04-02  Martin Baulig  <martin@ximian.com>
3552
3553         * ecore.cs (IAlias): New public interface.
3554         (TypeExpr, TypeExpression): Implement IAlias.
3555         (TypeAliasExpression): New public class.
3556
3557         * namespace.cs (Namespace): Implement IAlias.
3558         (Namespace.Lookup): Return an IAlias instead on an object.
3559         (Namespace.DefineName): Take an IAlias instead of an object.
3560         (NamespaceEntry.AliasEntry.Resolve): Return an IAlias instead of
3561         an object.
3562         (NamespaceEntry.UsingAlias): Take a Membername instead of an
3563         Expression.
3564         (NamespaceEntry.LookupAlias): Return an IAlias instead on an
3565         object.
3566         (NamespaceEntry.Lookup): Likewise.
3567
3568         * rootcontext.cs (RootContext.LookupType): Return a TypeExpr
3569         instead of a Type.      
3570
3571         * decl.cs (DeclSpace): Implement IAlias.
3572         (DeclSpace.LookupAlias): Return an IAlias instead of a string.
3573
3574         * generic.cs (ConstructedType): Improved error checking.
3575
3576 2004-04-02  Martin Baulig  <martin@ximian.com>
3577
3578         * convert.cs: Added type parameter conversions.
3579
3580         * ecore.cs
3581         (UnboxCast.Emit): Emit an `unbox.any' for type params.
3582         (ClassCast.Emit): If the source type is a type parameter, box it.
3583         If the target type is a type parameter, emit an `unbox.any'
3584         instead of a `classcast'.1      
3585
3586 2004-04-01  Martin Baulig  <martin@ximian.com>
3587
3588         * cs-tokenizer.cs (parse_less_than): Allow Token.DOT.
3589
3590 2004-04-01  Martin Baulig  <martin@ximian.com>
3591
3592         * generic.cs (ConstructedType.CheckConstraints): Use
3593         Convert.ImplicitStandardConversionExists(); user-defined implicit
3594         conversions are not allowed according to the spec.
3595
3596 2004-03-30  Martin Baulig  <martin@ximian.com>
3597
3598         * expression.cs (New): Added support for type parameters.
3599
3600         * typemanager.cs
3601         (TypeManager.activator_type): New public static field.
3602         (TypeManager.activator_create_instance): Likewise.
3603
3604 2004-03-30  Martin Baulig  <martin@ximian.com>
3605
3606         * typemanager.cs (TypeManager.HasConstructorConstraint): New
3607         public method.
3608
3609 2004-03-30  Martin Baulig  <martin@ximian.com>
3610
3611         * generic.cs (ConstructedType.CheckConstraints): Actually follow
3612         the spec here: the argument type must be convertible to the
3613         constraints.
3614
3615 2004-03-30  Martin Baulig  <martin@ximian.com>
3616
3617         * generic.cs
3618         (TypeParameter.Define, TypeParameter.DefineMethod): Call
3619         TypeManager.AddTypeParameter().
3620         (ConstructedType.CheckConstraints): Re-enable this and actually
3621         check whether we have a constructor constraint.
3622
3623         * typemanager.cs
3624         (TypeManager.builder_to_type_param): New static field.
3625         (TypeManager.AddTypeParameter): New static method.
3626         (TypeManager.LookupTypeParameter): New public method.
3627
3628 2004-03-30  Martin Baulig  <martin@ximian.com>
3629
3630         * generic.cs (TypeParameter.DefineType): Return a boolean and use
3631         the new API to actually define the constructor constraint.
3632
3633         * typemanager.cs
3634         (TypeManager.new_constraint_attr_type): New static field.
3635         (TypeManager.InitCoreTypes): Initialize it.
3636
3637 2004-03-30  Martin Baulig  <martin@ximian.com>
3638
3639         * generic.cs (Constraints): Completed error checking, use correct
3640         error numbers.
3641
3642 2004-03-29  Martin Baulig  <martin@ximian.com>
3643
3644         * delegate.cs (Delegate.VerifyMethod): Infer type arguments.
3645
3646         * expression.cs (Invocation.InferTypeArguments): Added overloaded
3647         public version which takes a `ParameterData pd' instead of an
3648         `ArrayList args'.
3649
3650 2004-03-29  Martin Baulig  <martin@ximian.com>
3651
3652         * typemanager.cs (TypeManager.IsGenericMethod): Take a MethodBase,
3653         not a MethodInfo.       
3654
3655 2004-03-29  Martin Baulig  <martin@ximian.com>
3656
3657         * expression.cs (Argument.ResolveMethodGroup): If we're a
3658         ConstructedType, call GetMemberAccess() on it.  
3659
3660 2004-03-29  Martin Baulig  <martin@ximian.com>
3661
3662         * class.cs (MethodBase.CheckGenericOverride): New abstract method.
3663         (MethodCore.CheckGenericOverride): When overriding a generic
3664         method, check whether the constraints match.
3665
3666         * support.cs (GenericConstraints): New public interface.
3667         (ParameterData.GenericConstraints): New public method.
3668
3669         * parameter.cs (Parameter.Resolve): Check whether we're a generic
3670         method parameter and compute our constraints if appropriate.
3671         (Parameter.GenericConstraints): New public property.
3672
3673         * generic.cs (Constraints): Implement GenericConstraints.
3674
3675 2004-03-29  Martin Baulig  <martin@ximian.com>
3676
3677         * decl.cs (MemberCache.FindMemberToOverride): Use
3678         `paramTypes [j].Equals (cmpAttrs [j])' instead of `=='.
3679
3680 2004-03-29  Martin Baulig  <martin@ximian.com>
3681
3682         * generic.cs (GenericMethod.Define): Resolve our type parameters.
3683
3684 2004-03-29  Martin Baulig  <martin@ximian.com>
3685
3686         * cs-parser.jay: Report CS0080 instead of -200 ("Constraints are
3687         not allowed on non-generic declarations").
3688
3689 2004-03-29  Martin Baulig  <martin@ximian.com>
3690
3691         * expression.cs (Invocation.InferTypeArguments): Added overloaded
3692         public version of this method.
3693
3694         * class.cs (MethodCore.IsDuplicateImplementation): Use
3695         Invocation.InferTypeArguments() to check this.
3696
3697 2004-03-29  Martin Baulig  <martin@ximian.com>
3698
3699         * convert.cs: Use TypeManager.IsDelegateType() instead of
3700         comparing types correctly.
3701
3702 2004-03-29  Martin Baulig  <martin@ximian.com>
3703
3704         * convert.cs: Use TypeManager.IsSubclassOf() instead of comparing
3705         types directly to make it work for generic instances.
3706
3707         * typemanager.cs (TypeManager.IsSubclassOf): New static method.
3708
3709 2004-03-29  Martin Baulig  <martin@ximian.com>
3710
3711         * typemanager.cs (TypeManager.MayBecomeEqualGenericTypes): Added
3712         support for arrays.     
3713
3714 2004-03-24  Martin Baulig  <martin@ximian.com>
3715
3716         * decl.cs (DeclSpace.FindType): Also use
3717         TypeManager.CheckGeneric() for types from the using clauses.
3718
3719 2004-03-23  Martin Baulig  <martin@ximian.com>
3720
3721         * expression.cs (Invocation.OverloadResolve): Added `bool
3722         may_fail' argument and use it instead of the Location.IsNull() hack.
3723
3724 2004-03-23  Martin Baulig  <martin@ximian.com>
3725
3726         * expression.cs (Invocation.InferType): Use correct type inference
3727         rules here.     
3728
3729 2004-03-23  Martin Baulig  <martin@ximian.com>
3730
3731         * ecore.cs (MethodGroupExpr.Name): Use
3732         TypeManager.CSharpSignature() instead of just the name.
3733
3734         * expression.cs (Invocation.OverloadResolve): Provide better error
3735         reporting.
3736         (Invocation.DoResolve): OverloadResolve() never returns null
3737         without reporting an error, so removed the error -6 reporting here.
3738
3739 2004-03-23  Martin Baulig  <martin@ximian.com>
3740
3741         * typemanager.cs (TypeManager.GetMethodFlags): Fixed the FIXME for
3742         generic methods.
3743
3744         * cs-parser.jay (delegate_declaration): Support generic delegates.
3745
3746         * delegate.cs: Support generic delegates.
3747
3748 2004-03-22  Martin Baulig  <martin@ximian.com>
3749
3750         * expression.cs (Invocation.InferParamsTypeArguments): New static
3751         method; does type inference for params arguments.
3752
3753 2004-03-21  Martin Baulig  <martin@ximian.com>
3754
3755         * typemanager.cs (TypeManager.IsGenericMethod): New public static
3756         method; checks whether a method is a generic method.    
3757
3758         * expression.cs (Invocation.InferTypeArguments): New static method;
3759         infer type arguments for generic method invocation.
3760
3761         * ecore.cs (MethodGroupExpr.HasTypeArguments): New public
3762         property; we set this to true if we're resolving a generic method
3763         invocation and the user specified type arguments, ie. we're not
3764         doing type inference.
3765
3766 2004-03-20  Martin Baulig  <martin@ximian.com>
3767
3768         * class.cs (MethodData.DeclaringType): New public property.
3769         (MethodData.Define): Set DeclaringType here.
3770         (Operator.Define): Use OperatorMethod.MethodData.DeclaringType
3771         instead of OperatorMethodBuilder.DeclaringType.
3772
3773 2004-03-20  Martin Baulig  <martin@ximian.com>
3774
3775         * cs-tokenizer.cs (xtoken): Return a special
3776         Token.DEFAULT_OPEN_PARENS for "`default' followed by open parens".
3777
3778         * cs-parser.jay (default_value_expression): Switch to the new
3779         syntax (14.5.13).
3780
3781 2004-03-19  Martin Baulig  <martin@ximian.com>
3782
3783         * decl.cs (MemberName): New class.  We use this to "construct"
3784         namespace_or_type_name's.
3785
3786         * generics.cs (TypeArguments.GetDeclarations): New public method;
3787         returns the type arguments as a string[] and reports a CS0081 if
3788         one of them is not an identifier.
3789
3790         * class.cs (MemberBase): The .ctor now takes the name as a
3791         MemberName instead of a string.
3792         (MemberBase.ExplicitInterfaceName): Changed type from string to
3793         Expression.
3794         (MemberBase.DoDefine): If we're an explicit implementation, the
3795         InterfaceType may be a generic instance.
3796
3797         * cs-parser.jay (namespace_or_type_name): Return a MemberName.
3798         (namespace_name): Call MemberName.GetName () to transform the
3799         MemberName into a string and ensure we don't have any type
3800         arguments.
3801         (type_name): Call MemberName.GetTypeExpression() to transfrom the
3802         MemberName into an expression.
3803         (method_header): Use namespace_or_type_name instead of member_name.     
3804
3805 2004-04-07  Miguel de Icaza  <miguel@ximian.com>
3806
3807         * rootcontext.cs: Add new types to the boot resolution.
3808
3809         * ecore.cs (TypeExpr.CanInheritFrom): Inheriting from
3810         MulticastDelegate is not allowed.
3811
3812         * typemanager.cs: Add new types to lookup: System.TypedReference
3813         and ArgIterator.
3814
3815         * paramter.cs (Parameter.Resolve): if we are an out/ref parameter,
3816         check for TypedReference or ArgIterator, they are not allowed. 
3817
3818         * ecore.cs (BoxedCast): Set the eclass to ExprClass.Value, this
3819         makes us properly catch 1510 in some conditions (see bug 56016 for
3820         details). 
3821
3822 2004-04-06  Bernie Solomon  <bernard@ugsolutions.com>
3823
3824         * CryptoConvert.cs: update from corlib version
3825         with endian fixes.
3826
3827 2004-04-05  Miguel de Icaza  <miguel@ximian.com>
3828
3829         * class.cs (Indexer.Define): Check indexername declaration
3830
3831 2004-04-05  Marek Safar  <marek.safar@seznam.cz>
3832
3833         * attribute.cs (IsClsCompliant): Fixed problem with handling
3834         all three states (compliant, not-compliant, undetected).
3835
3836 2004-03-30  Marek Safar  <marek.safar@seznam.cz>
3837
3838         * attribute.cs (Attribute): Location is now public.
3839         (Resolve): Store resolved arguments (pos_values) in attribute class.
3840         Attribute extractors (now GetClsCompliantAttributeValue) can reuse them.
3841         (GetClsCompliantAttributeValue): New method that gets
3842         CLSCompliantAttribute value.
3843         (GetClsCompliantAttribute): Returns CLSCompliantAttribute for DeclSpace
3844         if exists else null.
3845         (AttributeTester): New class for CLS-Compliant verification routines.
3846
3847         * class.cs (Emit): Add CLS-Compliant verification.
3848         (Method.GetSignatureForError): Implemented.
3849         (Constructor.GetSignatureForError): Implemented
3850         (Constructor.HasCompliantArgs): Returns if constructor has
3851         CLS-Compliant arguments.
3852         (Constructor.Emit): Override.
3853         (Construcor.IsIdentifierClsCompliant): New method; For constructors
3854         is needed to test only parameters.
3855         (FieldBase.GetSignatureForError): Implemented.
3856         (TypeContainer): New member for storing base interfaces.
3857         (TypeContainer.FindMembers): Search in base interfaces too.
3858
3859         * codegen.cs (GetClsComplianceAttribute): New method that gets
3860         assembly or module CLSCompliantAttribute value.
3861         (ResolveClsCompliance): New method that resolve CLSCompliantAttribute
3862         for assembly.
3863         (ModuleClass.Emit): Add error 3012 test.
3864
3865         * const.cs (Emit): Override and call base for CLS-Compliant tests.
3866
3867         * decl.cs (ClsComplianceValue): New enum that holds CLS-Compliant
3868         state for all decl types.
3869         (MemberCore.Emit): Emit is now virtual and call VerifyClsCompliance
3870         if CLS-Compliant tests are required.
3871         (IsClsCompliaceRequired): New method. Analyze whether code
3872         must be CLS-Compliant.
3873         (IsExposedFromAssembly): New method. Returns true when MemberCore
3874         is exposed from assembly.
3875         (GetClsCompliantAttributeValue): New method. Resolve CLSCompliantAttribute
3876         value or gets cached value.
3877         (HasClsCompliantAttribute): New method. Returns true if MemberCore
3878         is explicitly marked with CLSCompliantAttribute.
3879         (IsIdentifierClsCompliant): New abstract method. This method is
3880         used to testing error 3005.
3881         (IsIdentifierAndParamClsCompliant): New method. Common helper method
3882         for identifier and parameters CLS-Compliant testing.
3883         (VerifyClsCompliance): New method. The main virtual method for
3884         CLS-Compliant verifications.
3885         (CheckAccessLevel): In one special case (System.Drawing) was TypeBuilder
3886         null. I don't know why is null (too many public members !).
3887         (GetClsCompliantAttributeValue). New method. Goes through class hierarchy
3888         and get value of first CLSCompliantAttribute that found.
3889
3890         * delegate.cs (Emit): Override and call base for CLS-Compliant tests.
3891         (VerifyClsCompliance): Override and add extra tests.
3892
3893         * driver.cs (CSCParseOption): New command line options (clscheck[+|-]).
3894         clscheck- disable CLS-Compliant verification event if assembly is has
3895         CLSCompliantAttribute(true).
3896
3897         * enum.cs (Emit): Override and call base for CLS-Compliant tests.
3898         ApllyAttribute is now called in emit section as in the other cases.
3899         Possible future Emit integration.
3900         (IsIdentifierClsCompliant): New override.
3901         (VerifyClsCompliance): New override.
3902         (GetEnumeratorName): Returns full enum name.
3903
3904         * parameter.cs (GetSignatureForError): Implemented.
3905
3906         * report.cs (WarningData): New struct for Warning message information.
3907         (LocationOfPreviousError): New method.
3908         (Warning): New method. Reports warning based on the warning table.
3909         (Error_T): New method. Reports error based on the error table.
3910
3911         * rootcontext.cs (EmitCode): Added new Emit(s) because CLS-Compliant
3912         verifications are done here.
3913
3914         * tree.cs (RecordDecl): Used new LocationOfPreviousError method.
3915
3916         * typemanager.cs (cls_compliant_attribute_type): New member thath holds
3917         CLSCompliantAttribute.
3918         (all_imported_types): New member holds all imported types from other
3919         assemblies.
3920         (LoadAllImportedTypes): New method fills static table with exported types
3921         from all referenced assemblies.
3922         (Modules): New property returns all assembly modules.
3923
3924 2004-03-30  Miguel de Icaza  <miguel@ximian.com>
3925
3926         * cs-parser.jay: Add a rule to catch wrong event syntax instead of
3927         throwing a parser error.
3928
3929         * ecore.cs (PropertyExpr.GetAccessor): Apply patch from Patrik Reali
3930         which removes the hardcoded get_/set_ prefixes for properties, as
3931         IL allows for the properties to be named something else.  
3932
3933         Bug #56013
3934
3935         * expression.cs: Do not override operand before we know if it is
3936         non-null.  Fix 56207
3937
3938 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
3939
3940         * typemanager.cs: support for pinned variables.
3941
3942 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
3943
3944         * decl.cs, typemanager.cs: Avoid using an arraylist
3945         as a buffer if there is only one result set.
3946
3947 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
3948
3949         * expression.cs: Make sure you cant call a static method
3950         with an instance expression, bug #56174.
3951
3952 2004-03-29  Miguel de Icaza  <miguel@ximian.com>
3953
3954         * class.cs (IsDuplicateImplementation): Improve error reporting to
3955         flag 663 (method only differs in parameter modifier).
3956
3957         * cs-tokenizer.cs: Do not require whitespace when a ( or " will do
3958         in preprocessor directives.
3959
3960         * location.cs (LookupFile): Allow for the empty path.
3961
3962         * attribute.cs (DefinePInvokeMethod): Fix 56148;  I would like a
3963         better approach for some of that patch, but its failing with the
3964         CharSet enumeration.  For now try/catch will do.
3965
3966         * typemanager.cs: Do not crash if a struct does not have fields.
3967         Fixes 56150.
3968
3969 2004-03-28 Ben Maurer  <bmaurer@users.sourceforge.net>
3970
3971         * expression.cs: cs0213, cant fix a fixed expression.
3972         fixes 50231.
3973
3974 2004-03-28 Ben Maurer  <bmaurer@users.sourceforge.net>
3975
3976         * cs-parser.jay: detect invalid embeded statements gracefully.
3977         bug #51113.
3978
3979 2004-03-28 Ben Maurer  <bmaurer@users.sourceforge.net>
3980
3981         * ecore.cs, typemanager.cs: Correct impl of cs1540 check.
3982         As a regex:
3983         s/
3984         the invocation type may not be a subclass of the tye of the item/
3985         The type of the item must be a subclass of the invocation item.
3986         /g
3987
3988         Fixes bug #50820.
3989
3990 2004-03-25  Sebastien Pouliot  <sebastien@ximian.com>
3991
3992         * attribute.cs: Added methods to get a string and a bool from an
3993         attribute. Required to information from AssemblyKeyFileAttribute,
3994         AttributeKeyNameAttribute (string) and AssemblyDelaySign (bool).
3995         * codegen.cs: Modified AssemblyName creation to include support for
3996         strongnames. Catch additional exceptions to report them as CS1548.
3997         * compiler.csproj: Updated include CryptoConvert.cs.
3998         * compiler.csproj.user: Removed file - user specific configuration.
3999         * CryptoConvert.cs: New. A COPY of the class CryptoConvert from 
4000         Mono.Security assembly. The original class is maintained and tested in
4001         /mcs/class/Mono.Security/Mono.Security.Cryptography/CryptoConvert.cs.
4002         * drivers.cs: Added support for /keyfile, /keycontainer and /delaysign
4003         like CSC 8.0 (C# v2) supports.
4004         * Makefile: Added CryptoConvert.cs to mcs sources.
4005         * rootcontext.cs: Added new options for strongnames.
4006
4007 2004-03-24 Ben Maurer  <bmaurer@users.sourceforge.net>
4008
4009         * driver.cs: For --expect-error, report error code `2'
4010         if the program compiled with no errors, error code `1' if
4011         it compiled with an error other than the one expected.
4012
4013 2004-03-24  Sebastien Pouliot  <sebastien@ximian.com>
4014
4015         * compiler.csproj: Updated for Visual Studio .NET 2003.
4016         * compiler.csproj.user: Updated for Visual Studio .NET 2003.
4017         * compiler.sln: Updated for Visual Studio .NET 2003.
4018
4019 2004-03-24  Ravi Pratap M  <ravi@ximian.com>
4020
4021         * expression.cs: Fix bug #47234. We basically need to apply the
4022         rule that we prefer the conversion of null to a reference type
4023         when faced with a conversion to 'object' (csc behaviour).
4024
4025 2004-03-23 Ben Maurer  <bmaurer@users.sourceforge.net>
4026
4027         * statement.cs: Shorter form for foreach, eliminates
4028         a local variable. r=Martin.
4029
4030 2004-03-23 Ben Maurer  <bmaurer@users.sourceforge.net>
4031
4032         * constant.cs, ecore.cs, literal.cs: New prop IsZeroInteger that
4033         checks if we can use brtrue/brfalse to test for 0.
4034         * expression.cs: use the above in the test for using brtrue/brfalse.
4035         cleanup code a bit.
4036
4037 2004-03-23 Ben Maurer  <bmaurer@users.sourceforge.net>
4038
4039         * expression.cs: Rewrite string concat stuff. Benefits:
4040
4041         - "a" + foo + "b" + "c" becomes "a" + foo + "bc"
4042         - "a" + foo + "b" + bar + "c" + baz ... uses concat (string []).
4043         rather than a concat chain.
4044
4045         * typemanager.cs: Add lookups for more concat overloads.
4046
4047 2004-03-23 Ben Maurer  <bmaurer@users.sourceforge.net>
4048
4049         * expression.cs: Emit shorter il code for array init.
4050
4051         newarr
4052         dup
4053         // set 1
4054
4055         // set 2
4056
4057         newarr
4058         stloc.x
4059
4060         ldloc.x
4061         // set 1
4062
4063         ldloc.x
4064         // set 2
4065
4066 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4067
4068         * statement.cs: Before, two switch blocks would be merged if the
4069         total size of the blocks (end_item - begin_item + 1) was less than
4070         two times the combined sizes of the blocks.
4071
4072         Now, it will only merge if after the merge at least half of the
4073         slots are filled.
4074
4075         fixes 55885.
4076
4077 2004-03-20  Atsushi Enomoto  <atsushi@ximian.com>
4078
4079         * class.cs : csc build fix for GetMethods(). See bug #52503.
4080
4081 2004-03-20 Ben Maurer  <bmaurer@users.sourceforge.net>
4082
4083         * expression.cs: Make sure fp comparisons work with NaN.
4084         This fixes bug #54303. Mig approved this patch a long
4085         time ago, but we were not able to test b/c the runtime
4086         had a related bug.
4087
4088 2004-03-19  Miguel de Icaza  <miguel@ximian.com>
4089
4090         * ecore.cs (TypExpr.GetHashCode): implement this overload. 
4091
4092 2004-03-19  Martin Baulig  <martin@ximian.com>
4093
4094         * class.cs (MemberCore.IsDuplicateImplementation): Check whether
4095         two overloads may unify for some type parameter substitutions and
4096         report a CS0408 if appropriate.
4097
4098 2004-03-19  Martin Baulig  <martin@ximian.com>
4099
4100         * class.cs (MemberCore.IsDuplicateImplementation): Report the
4101         error here and not in our caller.
4102
4103 2004-03-19  Martin Baulig  <martin@ximian.com>
4104
4105         * interface.cs: Completely killed this file.
4106         (Interface): We're now a TypeContainer and live in class.cs.
4107
4108         * class.cs (TypeContainer.GetClassBases): Added `bool is_iface'
4109         argument; we're now also called for interfaces.
4110         (TypeContainer.DefineMembers): Allow this method being called
4111         multiple times.
4112         (TypeContainer.GetMethods): New public method; formerly known as
4113         Interface.GetMethod().  This is used by PendingImplementation.
4114         (TypeContainer.EmitDefaultMemberAttr): Moved here from Interface;
4115         it's now private and non-static.
4116         (Interface): Moved this here; it's now implemented similar to
4117         Class and Struct.
4118         (Method, Property, Event, Indexer): Added `bool is_interface'
4119         argument to their .ctor's.
4120         (MemberBase.IsInterface): New public field.
4121
4122         * cs-parser.jay: Create normal Method, Property, Event, Indexer
4123         instances instead of InterfaceMethod, InterfaceProperty, etc.
4124         (opt_interface_base): Removed; we now use `opt_class_base' instead.
4125         (InterfaceAccessorInfo): Create `Get' and `Set' Accessor's.
4126
4127 2004-03-19  Martin Baulig  <martin@ximian.com>
4128
4129         * class.cs (MethodCore.IsDuplicateImplementation): New private
4130         method which does the CS0111 checking.
4131         (Method.CheckBase, Constructor.CheckBase, PropertyBase.CheckBase):
4132         Use IsDuplicateImplementation().
4133
4134 2004-03-17 Ben Maurer  <bmaurer@users.sourceforge.net>
4135
4136         * decl.cs (FindMemberToOverride): New method to find the correct
4137         method or property to override in the base class.
4138         * class.cs
4139             - Make Method/Property use the above method to find the
4140               version in the base class.
4141             - Remove the InheritableMemberSignatureCompare as it is now
4142               dead code.
4143
4144         This patch makes large code bases much faster to compile, as it is
4145         O(n) rather than O(n^2) to do this validation.
4146
4147         Also, it fixes bug 52458 which is that nested classes are not
4148         taken into account when finding the base class member.
4149
4150         Reviewed/Approved by Martin.
4151
4152 2004-03-17  Martin Baulig  <martin@ximian.com>
4153
4154         * expression.cs (MemberAccess.DoResolve): Take the parent's number
4155         of type arguments into account; use the `real_num_type_args'
4156         approach like in DoResolveAsTypeStep().
4157
4158         * generic.cs (GenericMemberAccess.DoResolve): Make this work for
4159         nested types.
4160
4161 2004-03-17  Marek Safar  <marek.safar@seznam.cz>
4162
4163         * interface.cs: In all interface classes removed redundant
4164         member initialization.
4165
4166 2004-03-16  Martin Baulig  <martin@ximian.com>
4167
4168         * class.cs (TypeContainer.GetClassBases): Fix the CS0528 check.
4169
4170 2004-03-15  Miguel de Icaza  <miguel@ximian.com>
4171
4172         * decl.cs (DefineTypeAndParents): New helper method to define a
4173         type's containers before the type itself is defined;  This is a
4174         bug exposed by the recent changes to Windows.Forms when an
4175         implemented interface was defined inside a class that had not been
4176         built yet.   
4177
4178         * modifiers.cs (MethodAttr): All methods in C# are HideBySig.
4179
4180         (Check): Loop correctly to report errors modifiers
4181         (UNSAFE was not in the loop, since it was the same as TOP).
4182
4183         * interface.cs: Every interface member now takes a ModFlags,
4184         instead of a "is_new" bool, which we set on the base MemberCore. 
4185
4186         Every place where we called "UnsafeOk" in the interface, now we
4187         call the proper member (InterfaceMethod.UnsafeOK) instead to get
4188         the unsafe settings from the member declaration instead of the
4189         container interface. 
4190
4191         * cs-parser.jay (opt_new): Allow unsafe here per the spec. 
4192
4193         * pending.cs (TypeAndMethods): Add `get_indexer_name' and
4194         `set_indexer_name' to the pending bits (one per type).
4195
4196         We fixed a bug today that was picking the wrong method to
4197         override, since for properties the existing InterfaceMethod code
4198         basically ignored the method name.  Now we make sure that the
4199         method name is one of the valid indexer names.
4200
4201 2004-03-14  Gustavo Giráldez  <gustavo.giraldez@gmx.net>
4202  
4203         * support.cs (SeekableStreamReader): Keep track of stream byte
4204         positions and don't mix them with character offsets to the buffer.
4205
4206         Patch from Gustavo Giráldez
4207
4208 2004-03-15  Marek Safar  <marek.safar@seznam.cz>
4209
4210         * interface.cs (InterfaceSetGetBase): Removed double member
4211         initialization, base class does it as well.
4212
4213 2004-03-13  Martin Baulig  <martin@ximian.com>
4214
4215         * class.cs: Reverted Miguel's latest commit; it makes mcs crash
4216         when compiling corlib.
4217
4218 2004-03-13  Miguel de Icaza  <miguel@ximian.com>
4219
4220         * convert.cs (ExplicitConversion): We were reporting an error on
4221         certain conversions (object_type source to a value type, when the
4222         expression was `null') before we had a chance to pass it through
4223         the user defined conversions.
4224
4225         * driver.cs: Replace / and \ in resource specifications to dots.
4226         Fixes 50752
4227
4228         * class.cs: Add check for duplicate operators.  Fixes 52477
4229
4230 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
4231
4232         * statement.cs (Switch.SimpleSwitchEmit): Deal with default labels
4233         that are in the middle of the statements, not only at the end.
4234         Fixes #54987
4235
4236         * class.cs (TypeContainer.AddField): No longer set the
4237         `HaveStaticConstructor' flag, now we call it
4238         `UserDefineStaticConstructor' to diferentiate the slightly
4239         semantic difference.
4240
4241         The situation is that we were not adding BeforeFieldInit (from
4242         Modifiers.TypeAttr) to classes that could have it.
4243         BeforeFieldInit should be set to classes that have no static
4244         constructor. 
4245
4246         See:
4247
4248         http://www.yoda.arachsys.com/csharp/beforefieldinit.html
4249
4250         And most importantly Zoltan's comment:
4251
4252         http://bugzilla.ximian.com/show_bug.cgi?id=44229
4253
4254         "I think beforefieldinit means 'it's ok to initialize the type sometime 
4255          before its static fields are used', i.e. initialization does not need
4256          to be triggered by the first access to the type. Setting this flag
4257          helps the JIT to compile better code, since it can run the static
4258          constructor at JIT time, and does not need to generate code to call it
4259          (possibly lots of times) at runtime. Unfortunately, mcs does not set
4260          this flag for lots of classes like String. 
4261          
4262          csc sets this flag if the type does not have an explicit static 
4263          constructor. The reasoning seems to be that if there are only static
4264          initalizers for a type, and no static constructor, then the programmer
4265          does not care when this initialization happens, so beforefieldinit
4266          can be used.
4267          
4268          This bug prevents the AOT compiler from being usable, since it 
4269          generates so many calls to mono_runtime_class_init that the AOT code
4270          is much slower than the JITted code. The JITted code is faster, 
4271          because it does not generate these calls if the vtable is type is
4272          already initialized, which is true in the majority of cases. But the
4273          AOT compiler can't do this."
4274
4275 2004-03-10  Miguel de Icaza  <miguel@ximian.com>
4276
4277         * class.cs (MethodData.Emit): Refactor the code so symbolic
4278         information is generated for destructors;  For some reasons we
4279         were taking a code path that did not generate symbolic information
4280         before. 
4281
4282 2004-03-11 Ben Maurer  <bmaurer@users.sourceforge.net>
4283
4284         * class.cs: Create a Constructor.CheckBase method that
4285         takes care of all validation type code. The method
4286         contains some code that was moved from Define.
4287
4288         It also includes new code that checks for duplicate ctors.
4289         This fixes bug #55148.
4290
4291 2004-03-09  Joshua Tauberer <tauberer@for.net>
4292
4293         * expression.cs (ArrayCreation): Fix: More than 6 nulls in
4294         a { ... }-style array creation invokes EmitStaticInitializers
4295         which is not good for reference-type arrays.  String, decimal
4296         and now null constants (NullCast) are not counted toward
4297         static initializers.
4298
4299 2004-03-05  Martin Baulig  <martin@ximian.com>
4300
4301         * location.cs (SourceFile.HasLineDirective): New public field;
4302         specifies whether the file contains or is referenced by a "#line"
4303         directive.
4304         (Location.DefineSymbolDocuments): Ignore source files which
4305         either contain or are referenced by a "#line" directive.        
4306
4307 2004-02-29  Ben Maurer <bmaurer@users.sourceforge.net>
4308
4309         * class.cs (Method.CheckBase): Avoid using FindMembers, we have
4310         direct access to our parent, so check the method inline there.
4311
4312 2004-02-27 Ben Maurer  <bmaurer@users.sourceforge.net>
4313
4314         * expression.cs (Invocation.EmitCall): Miguel's last commit
4315         caused a regression. If you had:
4316
4317             T t = null;
4318             t.Foo ();
4319
4320         In Foo the implict this would be null.
4321
4322 2004-02-27  Miguel de Icaza  <miguel@ximian.com>
4323
4324         * expression.cs (Invocation.EmitCall): If the method is not
4325         virtual, do not emit a CallVirt to it, use Call.
4326
4327         * typemanager.cs (GetFullNameSignature): Improve the method to
4328         cope with ".ctor" and replace it with the type name.
4329
4330         * class.cs (ConstructorInitializer.Resolve): Now the method takes
4331         as an argument the ConstructorBuilder where it is being defined,
4332         to catch the recursive constructor invocations.
4333
4334 2004-03-16  Martin Baulig  <martin@ximian.com>
4335
4336         * expression.cs (MemberAccess.DoResolve): If `expr' resolved to a
4337         ConstructedType, call ResolveType() on it to get the type rather
4338         than just using `expr.Type'.
4339
4340 2004-03-16  Martin Baulig  <martin@ximian.com>
4341
4342         * generics.cs (ConstructedType.GetMemberAccess): Take the
4343         EmitContext instead on the TypeExpr and use
4344         ec.TypeContainer.CurrentType/ec.ContainerType.
4345
4346 2004-03-16  Martin Baulig  <martin@ximian.com>
4347
4348         * ecore.cs (SimpleName.DoResolveAsTypeStep): Lookup type
4349         parameters before aliases.
4350
4351 2004-03-16  Martin Baulig  <martin@ximian.com>
4352
4353         * typemanager.cs (TypeManager.MayBecomeEqualGenericInstances):
4354         New oublic function; checks whether two generic instances may become
4355         equal under some instantiations (26.3.1).
4356
4357         * class.cs (TypeContainer.Define): Call
4358         TypeManager.MayBecomeEqualGenericInstances() and report CS0695 on
4359         error.
4360
4361 2004-03-16  Martin Baulig  <martin@ximian.com>
4362
4363         * class.cs (TypeContainer.GetClassBases): Moved
4364         Error_TypeParameterAsBase() here and also check whether the base
4365         class is not an attribute.
4366
4367 2004-03-16  Martin Baulig  <martin@ximian.com>
4368
4369         * class.cs (TypeContainer.GetClassBases): Fix the CS0528 check.
4370
4371 2004-03-16  Martin Baulig  <martin@ximian.com>
4372
4373         * class.cs (Error_TypeParameterAsBase): Use correct error number
4374         here (CS0689).  
4375
4376 2004-03-16  Martin Baulig  <martin@ximian.com>
4377
4378         * decl.cs (DeclSpace.ResolveTypeExpr): Added more error checking
4379         for generics.
4380
4381         * generics.cs (ConstructedType.DoResolveAsTypeStep): Added better
4382         error reporting.
4383
4384 2004-03-15  Martin Baulig  <martin@ximian.com>
4385
4386         * typemanager.cs (TypeManager.GetFullName): New public method.
4387         (TypeManager.MemberLookup): Added `int_num_type_arguments'
4388         argument; only return members with the correct number of type
4389         arguments.
4390         (TypeManager.CheckGeneric): Allow -1 to bypass the check.
4391         (TypeManager.FilterWithClosure): Call CheckGeneric() to check
4392         whether the number of type arguments matches.
4393
4394         * generic.cs (GenericMemberAccess.ResolveAsTypeStep): Allow `expr'
4395         not being a ConstructedType; we can now do "typeof (Foo.Bar<U>)".
4396
4397         * expression.cs (MemberAccess): Added public `NumTypeArguments'
4398         field; it's set by the protected .ctor when we're actually a
4399         GenericMemberAccess.
4400         (MemberAccess.ResolveAsTypeStep): Compute the total number of type
4401         arguments and pass it to MemberLookupFinal ().
4402
4403         * ecore.cs (Expression.MemberLookup): Added `int
4404         num_type_arguments' argument; only return members with the correct
4405         number of type arguments.
4406         (Expression.MemberLookupFailed): Check whether the MemberLookup
4407         failed because we did not have the correct number of type
4408         arguments; report CS0305 in this case.
4409
4410         * decl.cs (DeclSpace.ResolveTypeExpr): Don't report an error if
4411         `e.ResolveAsTypeTerminal()' already did so.
4412
4413 2004-03-15  Martin Baulig  <martin@ximian.com>
4414
4415         * ecore.cs (Expression.ResolveLValue): Allow e.type being null if
4416         we're a ConstructedType; in this case, the caller must report an
4417         error (for instance CS0131).
4418
4419         * generic.cs (TypeArguments): Added Location argument to the .ctor.
4420         (TypeArguments.Resolve): Actually report errors here.
4421
4422 2004-03-15  Miguel de Icaza  <miguel@ximian.com>
4423
4424         * pending.cs (TypeAndMethods): Add `get_indexer_name' and
4425         `set_indexer_name' to the pending bits (one per type).
4426
4427         We fixed a bug today that was picking the wrong method to
4428         override, since for properties the existing InterfaceMethod code
4429         basically ignored the method name.  Now we make sure that the
4430         method name is one of the valid indexer names.
4431
4432 2004-03-15  Martin Baulig  <martin@ximian.com>
4433
4434         * typemanager.cs (TypeManager.IndexerPropertyName): Added support
4435         for generic instances.
4436
4437 2004-03-13  Martin Baulig  <martin@ximian.com>
4438
4439         * class.cs (TypeContainer.DefineType): Call
4440         TypeManager.AddUserType() immediately after creating the
4441         TypeBuilder; pass all type parameters when creating the
4442         CurrentType.
4443
4444         * decl.cs (DeclSpace.FindNestedType): New public method.
4445         (DeclSpace.FindType): Added `int num_type_args' argument; only
4446         return types with the correct number of type parameters.
4447         (DeclSpace.CountTypeParams): New public property.
4448
4449         * ecore.cs (SimpleName.ctor): Added overloaded version which takes
4450         the number of type parameters; defaults to zero.
4451
4452         * generic.cs (TypeArguments.Count): New public property.
4453         (ConstructedType.DoResolveAsTypeStep): First call
4454         ds.FindNestedType() to find out whether we're nested in the
4455         current generic type; in this case, we inherit all type parameters
4456         from the current class.
4457
4458         * rootcontext.cs (RootContext.NamespaceLookup): Added `int
4459         num_type_args' argument.
4460         (RootContext.LookupType): Added overloaded version which takes the
4461         number of type arguments; only return types with the correct
4462         number of type arguments.
4463
4464         * typemanager.cs (TypeManager.CheckGeneric): New public function;
4465         checks whether `Type t' has `int num_type_args'.
4466
4467 2004-03-13  Martin Baulig  <martin@ximian.com>
4468
4469         * generic.cs (GenericMethod.DefineType): New method; calls
4470         DefineType() on all the type parameters.
4471
4472         * class.cs (MethodData.ctor): Added `GenericMethod generic' argument.
4473         (MethodData.Define): If we're a generic method, call
4474         GenericMethod.DefineType() to define the type parameters.       
4475
4476 2004-03-10  Martin Baulig  <martin@ximian.com>
4477
4478         * pending.cs (Pending.InterfaceMethod): Use TypeManager.IsEqual()
4479         instead of IsAssignableFrom.    
4480
4481 2004-03-10  Martin Baulig  <martin@ximian.com>
4482
4483         * ecore.cs (FieldExpr.ctor): Use TypeManager.TypeToCoreType().
4484
4485         * support.cs (ParameterData.HasArrayParameter): New property.
4486         (ReflectionParameters.ctor): Take a MethodBase instead of a
4487         ParameterInfo[].  If we have any type parameters, get the generic
4488         method definition and ask it whether we have variable arguments.
4489
4490 2004-02-26  Miguel de Icaza  <miguel@ximian.com>
4491
4492         * iterators.cs (IteratorHandler.IsIEnumerator, IsIEnumerable): New
4493         routines to check if a type is an enumerable/enumerator allow
4494         classes that implement the IEnumerable or IEnumerator interfaces.
4495
4496         * class.cs (Property, Operator): Implement IIteratorContainer, and
4497         implement SetYields.
4498
4499         (Property.Define): Do the block swapping for get_methods in the
4500         context of iterators.   We need to check if Properties also
4501         include indexers or not.
4502
4503         (Operator): Assign the Block before invoking the
4504         OperatorMethod.Define, so we can trigger the Iterator code
4505         replacement. 
4506
4507         * cs-parser.jay (SimpleIteratorContainer): new helper class.  Both
4508         Property and Operator classes are not created when we parse the
4509         declarator but until we have the block completed, so we use a
4510         singleton SimpleIteratorContainer.Simple to flag whether the
4511         SetYields has been invoked.
4512
4513         We propagate this setting then to the Property or the Operator to
4514         allow the `yield' to function.
4515
4516 2004-02-25  Marek Safar  <marek.safar@seznam.cz>
4517
4518         * codegen.cs: Implemented attribute support for modules.
4519         New AssemblyClass, ModuleClass and CommonAssemblyModulClass for
4520         Assembly/Module functionality.
4521
4522         * attribute.cs, class.cs, cs-parser.jay, delegate.cs, driver.cs, enum.cs
4523         interface.cs, rootcontext.cs, statement.cs, typemanager.cs:
4524         Updated dependencies on CodeGen.ModuleBuilder and CodeGen.AssemblyBuilder.
4525
4526 2004-02-16  Marek Safar  <marek.safar@seznam.cz>
4527
4528         * interface.cs (FindMembers): The operation is performed on all base
4529         interfaces and not only on the first. It is required for future CLS Compliance patch.
4530
4531 2004-02-12 Ben Maurer  <bmaurer@users.sourceforge.net>
4532
4533         * statement.cs, codegen.cs:
4534         This patch deals with patterns such as:
4535
4536         public class List : IEnumerable {
4537
4538                 public MyEnumerator GetEnumerator () {
4539                         return new MyEnumerator(this);
4540                 }
4541
4542                 IEnumerator IEnumerable.GetEnumerator () {
4543                         ...
4544                 }
4545                 
4546                 public struct MyEnumerator : IEnumerator {
4547                         ...
4548                 }
4549         }
4550
4551         Before, there were a few things we did wrong:
4552         1) we would emit callvirt on a struct, which is illegal
4553         2) we emited ldarg when we needed to emit ldarga
4554         3) we would mistakenly call the interface methods on an enumerator
4555         type that derived from IEnumerator and was in another assembly. For example:
4556
4557         public class MyEnumerator : IEnumerator
4558
4559         Would have the interface methods called, even if there were public impls of the
4560         method. In a struct, this lead to invalid IL code.
4561
4562 2004-02-11  Marek Safar  <marek.safar@seznam.cz>
4563
4564         * const.cs: Const is now derived from FieldBase. Method EmitConstant name
4565           renamed to Emit.
4566
4567         * delegate.cs (Define): Fixed crash when delegate type is undefined.
4568
4569 2004-02-11  Miguel de Icaza  <miguel@ximian.com>
4570
4571         * cs-parser.jay: Fix small regression: we were not testing V2
4572         compiler features correctly.
4573
4574         * interface.cs: If the emit context is null, then create one
4575
4576 2004-02-09  Marek Safar  <marek.safar@seznam.cz>
4577
4578         * decl.cs (GetSignatureForError): New virtual method to get full name
4579           for error messages.
4580
4581         * attribute.cs (IAttributeSupport): New interface for attribute setting.
4582           Now it is possible to rewrite ApplyAttributes method to be less if/else.
4583
4584         * interface.cs : All InterfaceXXX classes are now derived from MemberCore.
4585           Duplicated members and code in these classes has been removed.
4586           Better encapsulation in these classes.
4587
4588 2004-02-07  Miguel de Icaza  <miguel@ximian.com>
4589
4590         * assign.cs (Assign.DoResolve): When dealing with compound
4591         assignments, there is a new rule in ECMA C# 2.4 (might have been
4592         there before, but it is documented here) that states that in:
4593
4594         a op= b;
4595
4596         If b is of type int, and the `op' is a shift-operator, then the
4597         above is evaluated as:
4598
4599         a = (int) a op b 
4600
4601         * expression.cs (Binary.ResolveOperator): Instead of testing for
4602         int/uint/long/ulong, try to implicitly convert to any of those
4603         types and use that in pointer arithmetic.
4604
4605         * delegate.cs (Error_NoMatchingMethodForDelegate): Compute the
4606         method to print information for from the type, not from the
4607         null-method we were given.
4608
4609 2004-02-01  Duncan Mak  <duncan@ximian.com>
4610
4611         * cs-tokenizer.cs (get_cmd_arg): Skip over whitespace before
4612         parsing for cmd, fixes bug #53694.
4613
4614 2004-02-04  Marek Safar  <marek.safar@seznam.cz>
4615
4616         * class.cs, decl.cs: Fixed problem where IndexerName attribute was ignored
4617         in the member name duplication tests. Property and operator name duplication
4618         was missing too (error tests cs0102-{2,3,4,5}.cs, cs0111-{3,4}.cs).
4619
4620 2004-02-03  Marek Safar  <marek.safar@seznam.cz>
4621
4622         * interface.cs (PopulateMethod): Fixed crash when interface method
4623         returns not existing type (error test cs0246-3.cs).
4624
4625 2004-02-02  Ravi Pratap M <ravi@ximian.com>
4626
4627         * cs-parser.jay (interface_accessors): Re-write actions to also
4628         store attributes attached to get and set methods. Fix spelling
4629         while at it.
4630
4631         (inteface_property_declaration): Modify accordingly.
4632
4633         (InterfaceAccessorInfo): New helper class to store information to pass
4634         around between rules that use interface_accessors.
4635
4636         * interface.cs (Emit): Apply attributes on the get and set
4637         accessors of properties and indexers too.
4638
4639         * attribute.cs (ApplyAttributes): Modify accordingly to use the
4640         right MethodBuilder when applying attributes to the get and set accessors.
4641
4642 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
4643
4644         * cs-tokenizer.cs: Applied patch from Marek Safar to fix bug 53386
4645
4646 2004-01-26  Miguel de Icaza  <miguel@ximian.com>
4647
4648         * cs-tokenizer.cs: Handle #line hidden from PDC bits.
4649
4650 2004-01-25  Miguel de Icaza  <miguel@ximian.com>
4651
4652         * cs-parser.jay: Remove YIELD token, instead use the new grammar
4653         changes that treat `yield' specially when present before `break'
4654         or `return' tokens.
4655
4656         * cs-tokenizer.cs: yield is no longer a keyword.
4657
4658 2004-01-23  Marek Safar  <marek.safar@seznam.cz>
4659
4660         * cs-parser.jay, class.cs (DefineDefaultConstructor): Fixed ModFlags
4661         setting for default constructors.
4662         For default constructors are almost every time set wrong Modifier. The
4663         generated IL code has been alright. But inside mcs this values was
4664         wrong and this was reason why several of my CLS Compliance tests
4665         failed.
4666
4667 2004-02-27  Martin Baulig  <martin@ximian.com>
4668
4669         * generics.cs (ConstructedType.ResolveType): Make the nested type
4670         stuff actually work.
4671
4672 2004-02-25  Martin Baulig  <martin@ximian.com>
4673
4674         * decl.cs (DeclSpace.CurrentTypeParameters): New protected
4675         property; returns the type parameters just from the current type,
4676         ie. with the ones from outer classes.
4677         (DeclSpace.LookupGeneric): First search in the current class, then
4678         in outer classes.
4679         (DeclSpace.initialize_type_params): When hiding a type parameter
4680         from an outer class, put it into the `type_param_list' anyways.
4681
4682         * expression.cs (MemberAccess.expr): Made this field protected.
4683
4684         * class.cs (TypeContainer.Define): The `CurrentType' just contains
4685         the type parameters from the current class.
4686
4687         * generic.cs (ConstructedType.ResolveType): Support nested generic
4688         types by taking the type parameters which we inherit from outer
4689         classes into account.
4690         (GenericMemberAccess.ResolveAsTypeStep): Override this and added
4691         support for nested generic types.
4692
4693 2004-02-23  Martin Baulig  <martin@ximian.com>
4694
4695         * decl.cs (DeclSpace.IsGeneric): Make this a property instead of a
4696         field and check whether we're nested inside a generic type.
4697         (DeclSpace.ResolveType): If we're resolving to a generic type
4698         definition, create a ConstructedType and return its resolved type.
4699         (DeclSpace.initialize_type_params): New private method;
4700         initializes the `type_param_list' field from the type parameters
4701         from this and all enclosing classes.
4702         (DeclSpace.TypeParameters): Call initialize_type_params() unless
4703         we're already initialized.
4704
4705 2004-02-23  Martin Baulig  <martin@ximian.com>
4706
4707         * class.cs (Method.Define): Create the generic method before
4708         calling DoDefine().
4709         (Memberbase.DoDefine): Added DeclSpace argument (in addition to
4710         the TypeContainer one); we use this for generic methods.
4711
4712         * decl.cs (CheckAccessLevel): If we're a GenericMethod, use our
4713         parent's TypeBuilder.
4714
4715 2004-02-18  Martin Baulig  <martin@ximian.com>
4716
4717         * ecore.cs (FieldExpr.DoResolveLValue): Use TypeManager.IsEqual()
4718         to check for equality.
4719
4720 2004-02-05  Martin Baulig  <martin@ximian.com>
4721
4722         * ecore.cs (FieldExpr.DoResolveLValue): If we have an
4723         `ec.TypeContainer.CurrentType', use it instead of
4724         `ec.ContainerType' to check whether we're in the type's ctor.
4725
4726 2004-01-29  Martin Baulig  <martin@ximian.com>
4727
4728         * expression.cs (Invocation.DoResolve): If we're a
4729         `ConstructedType', then we're actually a generic method, so
4730         rewrite the expr as a GenericMemberAccess.
4731
4732         * cs-parser.jay (member_name): Don't use `namespace_or_type_name'
4733         here; manually parse it into a string.
4734
4735 2004-01-28  Martin Baulig  <martin@ximian.com>
4736
4737         * typemanager.cs (TypeManager.IsEqual): New static method.
4738         (TypeManager.FilterWithClosure): Call TypeManager.IsEqual() to
4739         check for equality instead of using `=='.
4740
4741 2004-01-26  Martin Baulig  <martin@ximian.com>
4742
4743         * decl.cs (DeclSpace.CurrentType): New public field.
4744
4745         * expression.cs (This.ResolveBase): If we have an
4746         `ec.TypeContainer.CurrentType', use it instead of
4747         `ec.ContainerType'.
4748
4749         * class.cs (TypeContainer.DefineType): If we're a generic type,
4750         create the `CurrentType' (unresolved).
4751         (TypeContainer.GenericType): New private field.
4752         (TypeContainer.DefineMembers): If we have a `CurrentType', resolve
4753         it and store it in `GenericType' before creating the MemberCache.
4754         (TypeContainer.GetMembers): If we have a `GenericType', call
4755         TypeManager.FindMembers() on it.
4756
4757         * interface.cs (Interface.GenericType): New private field.
4758         (Interface.DefineType): If we're a generic type, create the
4759         `CurrentType' (unresolved).
4760         (Interface.DefineMembers): If we have a `CurrentType', resolve it
4761         and store it in `GenericType' before creating the MemberCache.
4762         (Interface.GetMembers): If we have a `GenericType', call
4763         TypeManager.FindMembers() on it.
4764
4765 2004-01-22  Martin Baulig  <martin@ximian.com>
4766
4767         * cs-parser.jay (namespace_or_type_name): Return an Expression,
4768         not a QualifiedIdentifier.  This is what `type_name_expression'
4769         was previously doing.
4770         (type_name_expression): Removed; the code is now in
4771         `namespace_or_type_name'.
4772         (qualified_identifier): Removed, use `namespace_or_type_name'
4773         instead.
4774         (QualifiedIdentifier): Removed this class.      
4775
4776 2004-01-22  Martin Baulig  <martin@ximian.com>
4777
4778         * namespace.cs (NamespaceEntry.UsingAlias): Take an Expression,
4779         not a string as alias name.
4780
4781 2004-01-21  Miguel de Icaza  <miguel@ximian.com>
4782
4783         * ecore.cs (FieldInfo.AddressOf): Revert patch from previous
4784         #52730 bug, and instead compute correctly the need to use a
4785         temporary variable when requesting an address based on the
4786         static/instace modified of the field and the constructor.
4787  
4788 2004-01-21  Martin Baulig  <martin@ximian.com>
4789
4790         * ecore.cs (SimpleName.ResolveAsTypeStep): Lookup in the current
4791         class and namespace before looking up aliases.  Fixes #52517.
4792
4793 2004-01-21  Martin Baulig  <martin@ximian.com>
4794
4795         * flowanalysis.cs (UsageVector.Merge): Allow variables being
4796         assinged in a 'try'; fixes exception4.cs.
4797
4798 2004-01-21  Marek Safar  <marek.safar@seznam.cz>
4799         * class.cs : Implemented parameter-less constructor for TypeContainer
4800
4801         * decl.cs: Attributes are now stored here. New property OptAttributes
4802
4803         * delegate.cs, enum.cs, interface.cs: Removed attribute member.
4804
4805         * rootcontext.cs, tree.cs: Now use parameter-less constructor of TypeContainer
4806
4807 2004-01-21  Marek Safar  <marek.safar@seznam.cz>
4808
4809         * typemanager.cs (CSharpSignature): Now reports also inner class name.
4810           (CSharpSignature): New method for indexer and property signature.
4811
4812 2004-01-21  Marek Safar  <marek.safar@seznam.cz>
4813
4814         * pending.cs (IsVirtualFilter): Faster implementation.
4815
4816 2004-01-21  Marek Safar  <marek.safar@seznam.cz>
4817
4818         * typemanager.cs: Avoid inclusion of same assembly more than once.
4819
4820 2004-01-21  Marek Safar  <marek.safar@seznam.cz>
4821
4822         * cs-parser.jay: Fixed problem where the last assembly attribute
4823           has been applied also to following declaration (class, struct, etc.)
4824           
4825 2004-01-21  Marek Safar  <marek.safar@seznam.cz>
4826
4827         * class.cs: Added error CS0538, CS0539 reporting.
4828         Fixed crash on Microsoft runtime when field type is void.
4829
4830         * cs-parser.jay: Added error CS0537 reporting.
4831
4832         * pending.cs: Added error CS0535 reporting.
4833         Improved error report for errors CS0536, CS0534.
4834
4835 2004-01-20  Miguel de Icaza  <miguel@ximian.com>
4836
4837         Merge a few bits from the Anonymous Method MCS tree.
4838
4839         * statement.cs (ToplevelBlock): New class for toplevel methods,
4840         will hold anonymous methods, lifted variables.
4841
4842         * cs-parser.jay: Create toplevel blocks for delegates and for
4843         regular blocks of code. 
4844
4845 2004-01-20  Martin Baulig  <martin@ximian.com>
4846
4847         * codegen.cs (EmitContext): Removed `InTry', `InCatch',
4848         `InFinally', `InLoop', `TryCatchLevel', `LoopBeginTryCatchLevel'
4849         and `NeedExplicitReturn'; added `IsLastStatement'.
4850         (EmitContext.EmitTopBlock): Emit the explicit "ret" if we either
4851         have a `ReturnLabel' or we're not unreachable.
4852
4853         * flowanalysis.cs (FlowBranching.MergeChild): Actually merge the
4854         child's reachability; don't just override ours with it.  Fixes
4855         #58058 (lluis's example).
4856         (FlowBranching): Added public InTryOrCatch(), InCatch(),
4857         InFinally(), InLoop(), InSwitch() and
4858         BreakCrossesTryCatchBoundary() methods.
4859
4860         * statement.cs (Return): Do all error checking in Resolve().
4861         Unless we are the last statement in a top-level block, always
4862         create a return label and jump to it.
4863         (Break, Continue): Do all error checking in Resolve(); also make
4864         sure we aren't leaving a `finally'.
4865         (Block.DoEmit): Set `ec.IsLastStatement' when emitting the last
4866         statement in a top-level block.
4867         (Block.Flags): Added `IsDestructor'.
4868         (Block.IsDestructor): New public property.
4869
4870 2004-01-20  Martin Baulig  <martin@ximian.com>
4871
4872         * statement.cs (Break.DoEmit): Set ec.NeedExplicitReturn; fixes #52427.
4873
4874 2004-01-20  Martin Baulig  <martin@ximian.com>
4875
4876         * statement.cs (Statement.ResolveUnreachable): New public method.
4877         (If, While): Do the dead-code elimination in Resolve(), not in Emit().
4878         (Block.Resolve): Resolve unreachable statements.
4879
4880 2004-01-19 Ben Maurer  <bmaurer@users.sourceforge.net>
4881
4882         * expression.cs: We need to fix the case where we do
4883         not have a temp variable here.
4884
4885         * assign.cs: Only expression compound assignments need
4886         temporary variables.
4887
4888 2004-01-19 Ben Maurer  <bmaurer@users.sourceforge.net>
4889
4890         * flowanalysis.cs: Reduce memory allocation in a few ways:
4891           - A block with no variables should not allocate a bit
4892             vector for itself.
4893           - A method with no out parameters does not need any tracking
4894             for assignment of the parameters, so we need not allocate
4895             any data for it.
4896           - The arrays:
4897                 public readonly Type[] VariableTypes;
4898                 public readonly string[] VariableNames;
4899             Are redundant. The data is already stored in the variable
4900             map, so we need not allocate another array for it.
4901           - We need to add alot of checks for if (params | locals) == null
4902             due to the first two changes.
4903
4904 2004-01-18  Miguel de Icaza  <miguel@ximian.com>
4905
4906         * ecore.cs (FieldExpr.AddressOf): For ValueTypes that do not
4907         implement IMemoryLocation, we store a copy on a local variable and
4908         take the address of it.  Patch from Benjamin Jemlich
4909
4910         * cs-parser.jay: Applied patch from Ben Maurer to the "type" rule
4911         to use a special "type_name_expression" rule which reduces the
4912         number of "QualifiedIdentifier" classes created, and instead
4913         directly creates MemberAccess expressions.
4914
4915 2004-01-17  Miguel de Icaza  <miguel@ximian.com>
4916
4917         * convert.cs: Applied patch from Benjamin Jemlich (pcgod@gmx.net)
4918         that fixes #52853.  Null literal assignment to ValueType
4919
4920         * class.cs (MethodData.Emit): Instead of checking the name of the
4921         method to determine if its a destructor, create a new derived
4922         class from Method called Destructor, and test for that.  
4923
4924         * cs-parser.jay: Create a Destructor object instead of a Method.  
4925
4926         Based on a fix from Benjamin Jemlich (pcgod@gmx.net)
4927
4928         Fixes: 52933
4929
4930 2004-01-16  Miguel de Icaza  <miguel@ximian.com>
4931
4932         * expression.cs (Binary.ResolveOperator): Perform an implicit
4933         conversion from MethodGroups to their delegate types on the
4934         Addition operation.
4935
4936         * delegate.cs: Introduce a new class DelegateCreation that is the
4937         base class for `NewDelegate' and `ImplicitDelegateCreation',
4938         factor some code in here.
4939
4940         * convert.cs (Convert.ImplicitConversionStandard): Add an implicit
4941         conversion from MethodGroups to compatible delegate types. 
4942
4943         * ecore.cs (Expression.Resolve): Do not flag error 654
4944         (Methodgroupd needs parenthesis) if running on the V2 compiler, as
4945         we allow conversions from MethodGroups to delegate types now.
4946
4947         * assign.cs (Assign.DoResolve): Do not flag errors on methodgroup
4948         assignments in v2 either.
4949
4950 2004-01-10  Miguel de Icaza  <miguel@ximian.com>
4951
4952         * ecore.cs (FieldExpr.AddressOf): Fix generated IL for accessing
4953         static read-only fields in ctors.
4954
4955         Applied patch from Benjamin Jemlich 
4956
4957         * expression.cs (UnaryMutator): Avoid leaking local variables. 
4958
4959 2004-01-09  Miguel de Icaza  <miguel@ximian.com>
4960
4961         * cs-tokenizer.cs (IsCastToken): Allow the various native types
4962         here to return true, as they can be used like this:
4963
4964                 (XXX) int.MEMBER ()
4965
4966         Fixed 49836 and all the other dups
4967
4968 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
4969
4970         * driver.cs: Implement /win32res and /win32icon.
4971
4972 2004-01-08  Miguel de Icaza  <miguel@ximian.com>
4973
4974         * cs-parser.jay: Add a rule to improve error handling for the
4975         common mistake of placing modifiers after the type.
4976
4977 2004-01-07  Miguel de Icaza  <miguel@ximian.com>
4978
4979         * cs-parser.jay (interface_event_declaration): Catch
4980         initialization of events on interfaces, and report cs0068
4981
4982         * cs-parser.jay (interface_event_declaration): Catch
4983         initialization of events. 
4984
4985         * ecore.cs: Better report missing constructors.
4986
4987         * expression.cs (Binary.ResolveOperator): My previous bug fix had
4988         the error reporting done in the wrong place.  Fix.
4989
4990         * expression.cs (Binary.ResolveOperator): Catch the 
4991         operator + (E x, E y) error earlier, and later allow for implicit
4992         conversions in operator +/- (E e, U x) from U to the underlying
4993         type of E.
4994
4995         * class.cs (TypeContainer.DefineDefaultConstructor): Fix bug
4996         52596, if the container class is abstract, the default constructor
4997         is protected otherwise its public (before, we were always public).
4998
4999         * statement.cs (Fixed.Resolve): Catch a couple more errors in the
5000         fixed statement.
5001
5002         (Using.EmitLocalVariableDecls): Applied patch from Benjamin
5003         Jemlich that fixes bug #52597, MCS was generating invalid code for
5004         idisposable structs.   Thanks to Ben for following up with this
5005         bug as well.
5006
5007 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5008
5009         * driver.cs: Allow assemblies without code to be generated, fixes
5010         52230.
5011
5012 2004-01-07  Nick Drochak <ndrochak@gol.com>
5013
5014         * attribute.cs: Remove unneeded catch variables. Eliminates a warning.
5015
5016 2004-01-05  Miguel de Icaza  <miguel@ximian.com>
5017
5018         * cs-parser.jay: Add rules to improve error reporting if fields or
5019         methods are declared at the namespace level (error 116)
5020
5021         * Add rules to catch event add/remove
5022
5023 2004-01-04  David Sheldon <dave-mono@earth.li>
5024
5025   * expression.cs: Added matching ")" to error message for 
5026   CS0077
5027
5028 2004-01-03 Todd Berman <tberman@gentoo.org>
5029
5030         * ecore.cs, attribute.cs:
5031         Applying fix from #52429.
5032
5033 2004-01-03 Ben Maurer  <bmaurer@users.sourceforge.net>
5034
5035         * ecore.cs, expression.cs, statement.cs:
5036         Total rewrite of how we handle branching. We
5037         now handle complex boolean expressions with fewer
5038         jumps. As well if (x == 0) no longer emits a ceq.
5039
5040         if (x is Foo) is much faster now, because we generate
5041         better code.
5042
5043         Overall, we get a pretty big improvement on our benchmark
5044         tests. The code we generate is smaller and more readable.
5045
5046         I did a full two-stage bootstrap. The patch was reviewed
5047         by Martin and Miguel.
5048
5049 2004-01-03 Ben Maurer  <bmaurer@users.sourceforge.net>
5050
5051         * cs-parser.jay: Make primary_expression not take a QI.
5052         we dont need this because the member_access rule covers
5053         us here. So we replace the rule with just IDENTIFIER.
5054
5055         This has two good effects. First, we remove a s/r conflict.
5056         Second, we allocate many fewer QualifiedIdentifier objects.
5057
5058 2004-01-03 Ben Maurer  <bmaurer@users.sourceforge.net>
5059
5060         * attribute.cs: Handle MarshalAs attributes as pseudo, and
5061         set the correct information via SRE. This prevents
5062         hanging on the MS runtime. Fixes #29374.
5063
5064 2004-01-03 Ben Maurer  <bmaurer@users.sourceforge.net>
5065
5066         * convert.cs: correctly handle conversions to value types
5067         from Enum and ValueType as unboxing conversions.
5068
5069         Fixes bug #52569. Patch by Benjamin Jemlich.
5070
5071 2004-01-02  Ravi Pratap  <ravi@ximian.com>
5072
5073         * expression.cs (BetterConversion): Prefer int -> uint
5074         over int -> ulong (csc's behaviour). This fixed bug #52046.
5075
5076 2004-01-02 Ben Maurer  <bmaurer@users.sourceforge.net>
5077
5078         * decl.cs (MemberCache.FindMembers): now returns a
5079         MemberInfo [].
5080
5081         * typemanager.cs: In general, go with with ^^.
5082         (CopyNewMethods): take an IList.
5083         (RealMemberLookup): Only allocate an arraylist
5084         if we copy from two sets of methods.
5085
5086         This change basically does two things:
5087         1) Fewer array lists allocated due to CopyNewMethods.
5088         2) the explicit cast in MemberList costed ALOT.
5089
5090 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
5091
5092         * cs-tokenizer.cs (consume_identifier) driver.cs: Cache identifiers in
5093         a hashtable to avoid needless string allocations when an identifier is
5094         used more than once (the common case).
5095
5096 2004-01-01 Ben Maurer  <bmaurer@users.sourceforge.net>
5097
5098         * pending.cs: MS's TypeBuilder.GetInterfaces ()
5099         is broken, it will not return anything. So, we
5100         have to use the information we have in mcs to
5101         do the task.
5102
5103         * typemanager.cs: Add a cache for GetInterfaces,
5104         since this will now be used more often (due to ^^)
5105
5106         (GetExplicitInterfaces) New method that gets the
5107         declared, not effective, interfaces on a type
5108         builder (eg, if you have interface IFoo, interface
5109         IBar, Foo : IFoo, Bar : Foo, IBar, GetExplInt (Bar) ==
5110         { IBar }.
5111
5112         This patch makes MCS able to bootstrap itself on
5113         Windows again.
5114
5115 2004-01-01 Ben Maurer  <bmaurer@users.sourceforge.net>
5116
5117         * expression.cs: Remove the Nop's that Miguel put
5118         in by mistake.
5119
5120 2003-12-31 Ben Maurer  <bmaurer@users.sourceforge.net>
5121
5122         * report.cs, codegen.cs: Give the real stack trace to
5123         the error when an exception is thrown.
5124
5125 2003-12-31 Ben Maurer  <bmaurer@users.sourceforge.net>
5126
5127         * decl.cs: only allocate hashtables for ifaces if 
5128         it is an iface!
5129
5130 2003-12-31 Ben Maurer  <bmaurer@users.sourceforge.net>
5131
5132         * expression.cs: fix the error from cs0121-2.cs
5133         (a parent interface has two child interfaces that
5134         have a function with the same name and 0 params
5135         and the function is called through the parent).
5136
5137 2003-12-30 Ben Maurer  <bmaurer@users.sourceforge.net>
5138
5139         * class.cs, rootcontext.cs, typmanager.cs: do not
5140         leak pointers.
5141
5142 2003-12-28 Ben Maurer  <bmaurer@users.sourceforge.net>
5143
5144         * codegen.cs: remove stack for the ec flow branching.
5145         It is already a linked list, so no need.
5146
5147 2003-12-27 Ben Maurer  <bmaurer@users.sourceforge.net>
5148
5149         * Makefile: Allow custom profiler here.
5150
5151 2003-12-26 Ben Maurer  <bmaurer@users.sourceforge.net>
5152
5153         * typemanager.cs (LookupType):
5154           - Use a static char [], because split takes
5155             a param array for args, so it was allocating
5156             every time.
5157           - Do not store true in a hashtable, it boxes.
5158
5159 2003-12-26 Ben Maurer  <bmaurer@users.sourceforge.net>
5160
5161         * flowanalysis.cs: bytify common enums.
5162
5163 2003-12-25 Ben Maurer  <bmaurer@users.sourceforge.net>
5164
5165         * modifiers.cs: Add a new set of flags for the
5166         flags allowed on explicit interface impls.
5167         * cs-parser.jay: catch the use of modifiers in
5168         interfaces correctly.
5169         * class.cs: catch private void IFoo.Blah ().
5170
5171         All related to bug #50572.
5172
5173 2003-12-25 Ben Maurer  <bmaurer@users.sourceforge.net>
5174
5175         * decl.cs: Rewrite the consistant accessability checking.
5176         Accessability is not linear, it must be implemented in
5177         a tableish way. Fixes #49704.
5178
5179 2003-12-25 Ben Maurer  <bmaurer@users.sourceforge.net>
5180
5181         * expression.cs: Handle negation in a checked context.
5182         We must use subtraction from zero. Fixes #38674.
5183
5184 2003-12-23 Ben Maurer  <bmaurer@users.sourceforge.net>
5185
5186         * class.cs: Ignore static void main in DLLs.
5187         * rootcontext.cs: Handle the target type here,
5188         since we are have to access it from class.cs
5189         * driver.cs: account for the above.
5190
5191 2003-12-23 Ben Maurer  <bmaurer@users.sourceforge.net>
5192
5193         * report.cs: Give line numbers and files if available.
5194
5195 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5196
5197         * driver.cs: Implement /addmodule.
5198
5199         * typemanager.cs:  Change 'modules' field so it now contains Modules not
5200         ModuleBuilders.
5201
5202 2003-12-20  Martin Baulig  <martin@ximian.com>
5203
5204         * class.cs (TypeContainer.DefineMembers): Don't do the CS0649 check here.
5205         (FieldBase.IsAssigned): Removed this field.
5206         (FieldBase.SetAssigned): New public method.
5207         (TypeContainer.Emit): Make the CS0169/CS0649 checks actually work.
5208
5209 2003-12-20  Martin Baulig  <martin@ximian.com>
5210
5211         * expression.cs (LocalVariableReference.DoResolve): Don't set
5212         `vi.Used' if we're called from DoResolveLValue().
5213
5214         * statement.cs (Block.DoResolve): `ec.DoEndFlowBranching()' now
5215         returns the usage vector it just merged into the current one -
5216         pass this one to UsageWarning().
5217         (Block.UsageWarning): Take the `FlowBranching.UsageVector' instead
5218         of the `EmitContext', don't call this recursively on our children.
5219
5220 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
5221
5222         * driver.cs: Implement /target:module.
5223
5224 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
5225
5226         * support.cs (CharArrayHashtable): New helper class.
5227
5228         * cs-tokenizer.cs: Store keywords in a hashtable indexed by 
5229         char arrays, not strings, so we can avoid creating a string in
5230         consume_identifier if the identifier is a keyword.
5231
5232 2003-12-16  Martin Baulig  <martin@ximian.com>
5233
5234         * statement.cs (LocalInfo.Assigned): Removed this property.
5235         (LocalInfo.Flags): Removed `Assigned'.
5236         (LocalInfo.IsAssigned): New public method; takes the EmitContext
5237         and uses flow analysis.
5238         (Block.UsageWarning): Made this method private.
5239         (Block.Resolve): Call UsageWarning() if appropriate.
5240
5241         * expression.cs (LocalVariableReference.DoResolve): Always set
5242         LocalInfo.Used here.
5243
5244 2003-12-13  Martin Baulig  <martin@ximian.com>
5245
5246         * statement.cs (Statement.DoEmit, Statement.Emit): Don't return
5247         any value here; we're now using flow analysis to figure out
5248         whether a statement/block returns a value.
5249
5250 2003-12-13  Martin Baulig  <martin@ximian.com>
5251
5252         * flowanalysis.cs (UsageVector.MergeFinallyOrigins): Made this
5253         working again.
5254         (FlowBranching.MergeFinally): Don't call
5255         `branching.CheckOutParameters()' here, this is called in
5256         MergeTopBlock().
5257         (FlowBranchingException.AddSibling): Call MergeFinallyOrigins()
5258         when adding the `finally' vector.       
5259
5260 2003-12-13  Martin Baulig  <martin@ximian.com>
5261
5262         * flowanalysis.cs
5263         (UsageVector.MergeJumpOrigins, FlowBranching.Label): Make this
5264         actually work and also fix #48962.
5265
5266 2003-12-12 Ben Maurer  <bmaurer@users.sourceforge.net>
5267
5268         * decl.cs: Do not check System.Object for nested types,
5269         since we know it does not have any. Big bang for buck:
5270
5271         BEFORE:
5272            Run 1:   8.35 seconds
5273            Run 2:   8.32 seconds
5274            corlib:  17.99 seconds
5275         AFTER:
5276            Run 1:   8.17 seconds
5277            Run 2:   8.17 seconds
5278            corlib:  17.39 seconds
5279
5280 2003-12-11 Ben Maurer  <bmaurer@users.sourceforge.net>
5281
5282         * class.cs (FindMembers): Allocate arraylists on demand. Most of the
5283         time we are returning 0 members, so we save alot here.
5284
5285 2003-12-11  Martin Baulig  <martin@ximian.com>
5286
5287         * flowanalysis.cs (UsageVector.MergeResult): Renamed this back to
5288         `MergeChild()', also just take the `FlowBranching' as argument;
5289         call Merge() on it and return the result.
5290         (FlowBranching.Merge): We don't need to do anything if we just
5291         have one sibling.
5292
5293 2003-12-11  Martin Baulig  <martin@ximian.com>
5294
5295         * flowanalysis.cs: Use a list of `UsageVector's instead of storing
5296         them in an `ArrayList' to reduce memory usage.  Thanks to Ben
5297         Maurer for this idea.
5298
5299 2003-12-11  Martin Baulig  <martin@ximian.com>
5300
5301         * flowanalysis.cs (MergeResult): This class is now gone; we now
5302         use the `UsageVector' for this.  The reason for this is that if a
5303         branching just has one sibling, we don't need to "merge" them at
5304         all - that's the next step to do.
5305         (FlowBranching.Merge): We now return a `UsageVector' instead of a
5306         `MergeResult'.
5307
5308 2003-12-11  Martin Baulig  <martin@ximian.com>
5309
5310         Reworked flow analyis and made it more precise and bug-free.  The
5311         most important change is that we're now using a special `Reachability'
5312         class instead of having "magic" meanings of `FlowReturns'.  I'll
5313         do some more cleanups and optimizations and also add some more
5314         documentation this week.
5315
5316         * flowanalysis.cs (Reachability): Added `Throws' and `Barrier';
5317         largely reworked this class.
5318         (FlowReturns): Removed `Unreachable' and `Exception'; we now use
5319         the new `Reachability' class instead of having "magic" values here.
5320         (FlowBranching): We're now using an instance of `Reachability'
5321         instead of having separate `Returns', `Breaks' etc. fields.
5322
5323         * codegen.cs (EmitContext.EmitTopBlock): Set `has_ret' solely
5324         based on flow analysis; ignore the return value of block.Emit ().
5325
5326 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5327
5328         * driver.cs typemanager.cs: Find the mono extensions to corlib even
5329         if they are private.
5330
5331 2003-12-09  Martin Baulig  <martin@ximian.com>
5332
5333         * flowanalyis.cs (FlowBranching.Return, Goto, Throw): Removed;
5334         call them directly on the UsageVector.
5335
5336 2003-12-09  Martin Baulig  <martin@ximian.com>
5337
5338         * flowanalysis.cs (FlowBranching.MergeChild, MergeTopBlock):
5339         Changed return type from `FlowReturns' to `Reachability'.
5340
5341 2003-12-09  Martin Baulig  <martin@ximian.com>
5342
5343         * flowanalysis.cs (FlowBranching.Reachability): New sealed class.
5344         (FlowBranching.MergeResult): Replaced the `Returns', `Breaks' and
5345         `Reachable' fields with a single `Reachability' one.
5346
5347 2003-12-08 Ben Maurer  <bmaurer@users.sourceforge.net>
5348
5349         * class.cs (FindMembers): Remove foreach's.
5350
5351         Bootstrap times:
5352
5353         BEFORE
5354                 Run 1:   8.74 seconds
5355                 Run 2:   8.71 seconds
5356
5357         AFTER
5358                 Run 1:   8.64 seconds
5359                 Run 2:   8.58 seconds
5360
5361
5362 2003-12-08 Ben Maurer  <bmaurer@users.sourceforge.net>
5363
5364         * cs-parser.jay:
5365         * gen-treedump.cs:
5366         * statement.cs:
5367         This patch does a few things:
5368                 1. EmptyStatement is now a singleton, so it is never reallocated.
5369                 2. All blah is EmptyStatement constructs have been changed to
5370                    blah == EmptyStatement.Value, which is much faster and valid
5371                    now that EmptyStatement is a singleton.
5372                 3. When resolving a block, rather than allocating a new array for
5373                    the non-empty statements, empty statements are replaced with
5374                    EmptyStatement.Value
5375                 4. Some recursive functions have been made non-recursive.
5376         Mainly the performance impact is from (3), however (1) and (2) are needed for
5377         this to work. (4) does not make a big difference in normal situations, however
5378         it makes the profile look saner.
5379
5380         Bootstrap times:
5381
5382         BEFORE
5383         9.25user 0.23system 0:10.28elapsed 92%CPU (0avgtext+0avgdata 0maxresident)k
5384         9.34user 0.13system 0:10.23elapsed 92%CPU (0avgtext+0avgdata 0maxresident)k
5385         Total memory allocated: 56397 KB
5386
5387         AFTER
5388         9.13user 0.09system 0:09.64elapsed 95%CPU (0avgtext+0avgdata 0maxresident)k
5389         8.96user 0.24system 0:10.13elapsed 90%CPU (0avgtext+0avgdata 0maxresident)k
5390         Total memory allocated: 55666 KB
5391
5392 2003-12-08 Ben Maurer  <bmaurer@users.sourceforge.net>
5393
5394         * support.cs: Rewrite DoubleHash to use its own impl. Is faster
5395         than the hashtable in a hashtable version
5396
5397         * decl.cs: Right now, whenever we try to lookup a type inside a namespace,
5398         we always end up concating a string. This results in a huge perf
5399         loss, because many strings have to be tracked by the GC. In this
5400         patch, we first use a hashtable that works with two keys, so that
5401         the strings do not need to be concat'ed.
5402
5403         Bootstrap times:
5404         BEFORE
5405                 Run 1:   8.74 seconds
5406                 Run 2:   8.71 seconds
5407
5408         AFTER
5409                 Run 1:   8.65 seconds
5410                 Run 2:   8.56 seconds
5411
5412 2003-12-08 Ben Maurer  <bmaurer@users.sourceforge.net>
5413
5414         * Makefile: Add a new target `do-time' that does a quick and simple
5415         profile, leaving easy to parse output.
5416
5417 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
5418
5419         * codegen.cs (Init): Create the dynamic assembly with 
5420         AssemblyBuilderAccess.Save, to enable some optimizations in the runtime.
5421
5422 2003-12-02 Ben Maurer  <bmaurer@users.sourceforge.net>
5423
5424         * support.cs: Make the PtrHashtable use only one
5425         instance of its comparer.
5426
5427 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
5428
5429         * typemanager.cs: Fix lookup of GetNamespaces.
5430
5431 2003-11-29  Miguel de Icaza  <miguel@ximian.com>
5432
5433         * expression.cs: Removed redundant line.
5434
5435         * statement.cs (Block.Resolve, Block.Emit): Avoid foreach on
5436         ArrayLists, use for loops with bounds.  
5437
5438         * flowanalysis.cs (FlowBranching.Merge): Avoid foreach on
5439         arraylist.
5440
5441         * expression.cs (Invocation.OverloadResolve): Avoid foreach on
5442         arraylists, use for loop with bounds.
5443
5444         The above three changes give us a 0.071 second performance
5445         improvement out of 3.294 seconds down to 3.223.  On my machine
5446         the above changes reduced the memory usage by 1,387 KB during
5447         compiler bootstrap.
5448
5449         * cs-parser.jay (QualifiedIdentifier): New class used to represent
5450         QualifiedIdentifiers.  Before we created a new string through
5451         concatenation, and mostly later on, the result would be
5452         manipulated by DecomposeQI through string manipulation.
5453
5454         This reduced the compiler memory usage for bootstrapping from
5455         59380 KB to 59007 KB on my machine, 373 KB, and also reduced the
5456         compile times in 0.05 seconds.
5457
5458 2003-11-28  Dick Porter  <dick@ximian.com>
5459
5460         * support.cs: Do string compares with the Invariant culture.
5461
5462         * rootcontext.cs: 
5463         * gen-treedump.cs: 
5464         * expression.cs: 
5465         * driver.cs: 
5466         * decl.cs: 
5467         * codegen.cs: 
5468         * class.cs: Use the char forms of IndexOf and LastIndexOf, so that
5469         the comparison is done with the Invariant culture.
5470
5471 2003-11-27  Miguel de Icaza  <miguel@ximian.com>
5472
5473         * statement.cs (Foreach.TryType): Use DeclaredOnly to find the
5474         GetEnumerator method.
5475
5476         (ProbeCollectionType): Iterate starting at the most specific type
5477         upwards looking for a GetEnumerator
5478
5479         * expression.cs: Shift count can be up to 31 for int/uint and 63
5480         for long/ulong.
5481
5482 2003-11-26  Miguel de Icaza  <miguel@ximian.com>
5483
5484         * statement.cs (Block.LookupLabel): Also look for the label on the
5485         children blocks.  Use a hash table to keep track of visited
5486         nodes. 
5487
5488         * cfold.cs (IntConstant to UIntConstant mapping): Only return if
5489         we actually did transform the other operand, otherwise fall back
5490         to the common codepath that casts to long.
5491
5492         * cs-tokenizer.cs: Use the same code pattern as the int case.
5493         Maybe I should do the parsing myself, and avoid depending on the
5494         Parse routines to get this done.
5495
5496 2003-11-25  Miguel de Icaza  <miguel@ximian.com>
5497
5498         * expression.cs: Apply fix from l_m@pacbell.net (Laurent Morichetti),  
5499         which fixes bug 51347.  This time test it.
5500
5501         * expression.cs: Make TypeOfVoid derive from TypeOf, so code in
5502         attributes for example can not tell the difference between these.
5503         The difference was only a syntax feature of the language. 
5504
5505         * attribute.cs: Apply attributes to delegates.
5506
5507         * delegate.cs: Call the apply attributes method.
5508
5509 2003-11-24  Miguel de Icaza  <miguel@ximian.com>
5510
5511         * convert.cs (TryImplicitIntConversion): One line bug fix: we were
5512         comparing 0 vs Byte.MinValue, not the value
5513
5514         (ImplicitConversionRequired): When reporting a conversion error,
5515         use error 31 to print out the constant error instead of the
5516         simpler 29.
5517
5518         * expression.cs: Apply fix from l_m@pacbell.net (Laurent Morichetti),  
5519         which fixes bug 51347.
5520
5521 2003-11-22  Miguel de Icaza  <miguel@ximian.com>
5522
5523         * driver.cs: Applied patch from gert.driesen@pandora.be (Gert Driesen) 
5524         which fixes the -warnaserror command line option.
5525
5526 2003-11-21  Miguel de Icaza  <miguel@ximian.com>
5527
5528         * cfold.cs (DoNumericPromotions): During constant folding of
5529         additions on UIntConstant, special case intconstants with
5530         IntConstants like we do on the expression binary operator. 
5531
5532 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
5533
5534         * convert.cs (ImplicitReferenceConversion): We were missing a case
5535         (System.Enum are not value types or class types, so we need to
5536         classify them separatedly).
5537
5538         * driver.cs: We do not support error 2007.
5539
5540 2003-11-12 Jackson Harper <jackson@ximian.com>
5541
5542         * driver.cs: Use corlib.dll or mscorlib.dll when looking up the
5543         system directory. Also use the full file name so users can
5544         libraries names mscorlib-o-tron.dll in a non system dir.
5545         
5546 2004-01-04  David Sheldon <dave-mono@earth.li>
5547
5548         * expression.cs: Added matching ")" to error message for CS0077.
5549
5550 2003-12-19  Martin Baulig  <martin@ximian.com>
5551
5552         * typemanager.cs (TypeManager.IsEqualGenericType): New public
5553         static method; see documentation in the method.
5554         (TypeManager.IsSubclassOrNestedChild): Allow IsEqualGenericType().
5555
5556         * convert.cs (Convert.ImplicitReferenceConversion,
5557         Convert.ImplicitReferenceConversionExists): Add support for
5558         generic type declarations; see gen-36.cs.
5559
5560 2003-12-19  Martin Baulig  <martin@ximian.com>
5561
5562         * pending.cs (Pending.InterfaceMethod): Use
5563         `Type.IsAssignableFrom()' instead of `=='.
5564
5565 2003-12-18  Martin Baulig  <martin@ximian.com>
5566
5567         * decl.cs (DeclSpace.AsAccessible): Check for array, pointer and
5568         byref types first.
5569
5570         * convert.cs (Convert.ImplicitStandardConversionExists): Use
5571         `expr_type.Equals (target_type)' instead of `=='.
5572
5573 2003-12-08  Martin Baulig  <martin@ximian.com>
5574
5575         * generics.cs (Constraints.Types): Removed.
5576         (Constraints.Resolve): Just resolve everything to TypeExpr's, not
5577         to Type's.
5578         (Constraints.ResolveTypes): New public method; resolves the
5579         TypeExpr's to Type's.
5580         (TypeParameter.Define): TypeBuilder.DefineGenericParameter() no
5581         longer takes the constraints.
5582         (TypeParameter.DefineMethod): Likewise.
5583         (TypeParameter.DefineType): New public method.  Calls
5584         `TypeBuilder/MethodBuilder.SetGenericParameterConstraints()' to set
5585         the constraints.
5586
5587 2003-12-08  Martin Baulig  <martin@ximian.com>
5588
5589         * convert.cs (Convert.ImplicitConversionStandard): Use
5590         `expr_type.Equals (target_type)' instead of `=='.
5591
5592 2003-12-08  Martin Baulig  <martin@ximian.com>
5593
5594         * typemanager.cs (TypeManager.GetReferenceType): Call
5595         `Type.MakeByRefType ()'.
5596
5597 2003-12-08  Martin Baulig  <martin@ximian.com>
5598
5599         * cs-parser.jay, cs-tokenizer.cs: `where' is not a keyword, it
5600         just has some special meaning in some situations.  For instance,
5601         it is allowed to use `where' as the name of a variable etc.
5602
5603 2003-12-04  Martin Baulig  <martin@ximian.com>
5604
5605         * expression.cs (ComposedCast.DoResolveAsTypeStep): Use
5606         `Type.MakeArrayType()' for array types.
5607
5608 2003-11-18  Miguel de Icaza  <miguel@ximian.com>
5609
5610         * expression.cs (Invocation.VerifyArgumentsCompat): Remove
5611         debugging message.
5612
5613         (SizeOf.DoResolve): assign the `type_queried' field.  This gets
5614         corlib to compile.
5615
5616 2003-11-16  Martin Baulig  <martin@ximian.com>
5617
5618         * codegen.cs (EmitContext.IsGeneric): Removed.
5619
5620         * ecore.cs (SimpleName.ResolveAsTypeStep): Always call
5621         ResolveGeneric() on the DeclSpace.
5622
5623 2003-11-16  Martin Baulig  <martin@ximian.com>
5624
5625         * generic.cs (TypeArguments.Resolve):
5626         `Expression.ResolveAsTypeTerminal()' returns a TypeExpr; call
5627         `ResolveType()' on it to get the Type.
5628
5629 2003-11-15  Martin Baulig  <martin@ximian.com>
5630
5631         * generic.cs (ConstructedType.GetInterfaces): Override this.
5632
5633 2003-11-14  Martin Baulig  <martin@ximian.com>
5634
5635         * interface.cs (Interface.DefineType): Define all type parameters
5636         before adding the interfaces we inherit.
5637
5638 2003-11-11  Martin Baulig  <martin@ximian.com>
5639
5640         * generic.cs (ConstructedType.ResolveType): Always call
5641         `gt.BindGenericParameters (atypes)'; also if `args.HasTypeArguments'.
5642
5643 2003-11-10  Martin Baulig  <martin@ximian.com>
5644
5645         * typemanager.cs (TypeManager.ResolveExpressionTypes): Removed.
5646         (TypeManager.InitCoreTypes): Initialize them here, but instead of
5647         calling `ResolveType()' on them, directly assign their `Type'.
5648
5649 2003-11-08  Martin Baulig  <martin@ximian.com>
5650
5651         * generic.cs (ConstructedType): Override `IsClass' etc.
5652
5653 2003-11-08  Martin Baulig  <martin@ximian.com>
5654
5655         * class.cs (TypeContainer.GetClassBases): Use TypeExpr's for the
5656         return value and the `out parent' parameter.
5657         (TypeContainer.DefineType): Moved the CS0644 check into
5658         GetClassBases().  Don't pass the interface types to the
5659         `builder.DefineType()'/`builder.DefineNestedType()', but resolve
5660         them later and then call `TypeBuilder.AddInterfaceImplementation()'.
5661
5662         * ecore.cs (TypeExpr.IsAttribute): New property.
5663         (TypeExpr.GetInterfaces): New method.
5664
5665         * interface.cs (Interface.GetInterfaceTypeByName): Return a
5666         TypeExpr instead of a Type.
5667         (Interface.GetInterfaceBases): Return TypeExpr's instead of Type's.
5668         (Interface.DefineType): Don't pass the interface types to the
5669         `builder.Definetype()'/`builder.DefineNestedType()', but resolve
5670         them later and then call `TypeBulider.AddInterfaceImplementation()'.
5671
5672         * typemanager.cs (TypeManager.AddUserType): Take a `TypeExpr[]'
5673         instead of a `Type[]'.
5674         (TypeManager.RegisterBuilder): Likewise.
5675         (TypeManager.AddUserInterface): Likewise.
5676         (TypeManager.ExpandInterfaces): Take a `Type[]' instead of a
5677         `Type[]' and also return a `TypeExpr[]'.
5678         (TypeManager.GetInterfaces): Return a `TypeExpr[]'.
5679
5680 2003-11-08  Martin Baulig  <martin@ximian.com>
5681
5682         * decl.cs (DeclSpace.ResolveTypeExpr): Return a TypeExpr, not an
5683         Expression.     
5684
5685 2003-11-08  Martin Baulig  <martin@ximian.com>
5686
5687         * decl.cs (DeclSpace.GetTypeResolveEmitContext): Call
5688         TypeManager.ResolveExpressionTypes().
5689
5690         * ecore.cs (Expression.ResolveAsTypeTerminal): Return a TypeExpr
5691         instead of an Expression.
5692         (TypeExpr): This is now an abstract base class for `TypeExpression'.
5693         (TypeExpression): New public class; formerly known as `TypeExpr'.
5694
5695         * expression.cs (ComposedCast): Derive from TypeExpr.
5696
5697         * typemanager.cs (TypeManager.system_*_expr): These are now
5698         TypExpr's instead of Expression's.
5699         (TypeManager.ResolveExpressionTypes): New public static function;
5700         called from DeclSpace.GetTypeResolveEmitContext() to resolve all
5701         of them.        
5702
5703 2003-11-06  Miguel de Icaza  <miguel@ximian.com>
5704
5705         * expression.cs (New.DoResolve): Do not dereference value that
5706         might be a null return.
5707
5708         * statement.cs (Block.EmitMeta): Use the Const.ChangeType to make
5709         sure that the constant value has the right type.  Fixes an
5710         unreported bug, similar to 50425.
5711
5712         * const.cs (Const.LookupConstantValue): Call
5713         ImplicitStandardConversionExists before doing a conversion to
5714         avoid havng the TypeManager.ChangeType do conversions.
5715
5716         Reduced the number of casts used
5717
5718         (Const.ChangeType): New routine to enable reuse of the constant
5719         type changing code from statement.
5720
5721         * typemanager.cs (ChangeType): Move common initialization to
5722         static global variables.
5723
5724         Fixes #50425.
5725
5726         * convert.cs (ImplicitReferenceConversion): Somehow we allowed
5727         every value type to go through, even if it was void.  Fix that. 
5728
5729         * cs-tokenizer.cs: Use is_identifier_start_character on the start
5730         character of the define, and the is_identifier_part_character for
5731         the rest of the string.
5732
5733 2003-11-05  Miguel de Icaza  <miguel@ximian.com>
5734
5735         * expression.cs (UnaryMutator.EmitCode): When I updated
5736         LocalVariableReference.DoResolve, I overdid it, and dropped an
5737         optimization done on local variable references.
5738
5739 2003-11-04  Miguel de Icaza  <miguel@ximian.com>
5740
5741         * ecore.cs: Convert the return from Ldlen into an int.
5742
5743 2003-10-20  Miguel de Icaza  <miguel@ximian.com>
5744
5745         * decl.cs (DeclSpace.GetAccessLevel): Handle NotPublic case for
5746         the accessibility, this is a special case for toplevel non-public
5747         classes (internal for instance).
5748
5749 2003-10-20  Nick Drochak <ndrochak@gol.com>
5750
5751         * ecore.cs: Fix typo and build.  Needed another right paren.
5752
5753 2003-10-19  Miguel de Icaza  <miguel@ximian.com>
5754
5755         * ecore.cs: Applied fix from Ben Maurer.   We were handling in the
5756         `internal' case regular and protected, but not allowing protected
5757         to be evaluated later.  Bug 49840
5758
5759 2003-10-15  Miguel de Icaza  <miguel@ximian.com>
5760
5761         * statement.cs (Switch.TableSwitchEmit): Compare the upper bound
5762         to kb.Nlast, and not the kb.nFirst to isolate the switch
5763         statement.
5764
5765         Extract the underlying type, so enumerations of long/ulong are
5766         treated like long/ulong.
5767
5768 2003-10-14  Miguel de Icaza  <miguel@ximian.com>
5769
5770         * expression.cs (New): Overload the meaning of RequestedType to
5771         track the possible creation of the NewDelegate type, since
5772         DoResolve is invoked more than once for new constructors on field
5773         initialization.
5774
5775         See bugs: #48800 and #37014
5776
5777         * cs-parser.jay (declare_local_constants): Take an arraylist
5778         instead of a single constant.
5779
5780         (local_constant_declaration): It should take a
5781         constant_declarators, not a constant_declarator.  Fixes 49487
5782
5783         * convert.cs: Fix error report.
5784
5785 2003-10-13 Jackson Harper <jackson@ximian.com>
5786
5787         * typemanager.cs (TypeToCoreType): Add float and double this fixes
5788         bug #49611
5789         
5790 2003-11-03  Martin Baulig  <martin@ximian.com>
5791
5792         * expression.cs (ArrayAccess.GetStoreOpcode): Added
5793         `out bool has_type_arg'; if set, we need to pass the type to
5794         ig.Emit().
5795         (ArrayAccess.GetStoreOpcode, ArrayAccess.EmitLoadOpcode): Use
5796         Stelem_Any/Ldelem_Any for generic parameters.   
5797
5798 2003-11-02  Martin Baulig  <martin@ximian.com>
5799
5800         * expression.cs (Invocation.EmitCall): Use
5801         `TypeManager.IsValueType()' to check whether it's a value type.
5802         Don't set `struct_call' when calling a method on a type parameter.
5803
5804 2003-11-02  Martin Baulig  <martin@ximian.com>
5805
5806         * generics.cs (ConstructedType.Resolve): Renamed to ResolveType()
5807         and removed the TypeBuilder argument.
5808
5809         * typemanager.cs (TypeManager.IsValueType): Return
5810         `t.IsGenericParameter || t.IsValueType'.
5811
5812 2003-10-25  Martin Baulig  <martin@ximian.com>
5813
5814         * decl.cs (DeclSpace.ResolveType): If we're a ConstructedType,
5815         call ConstructedType.Resolve() on it.
5816
5817         * generic.cs (ConstructedType.Resolve): Set `type' on success.
5818
5819 2003-10-25  Martin Baulig  <martin@ximian.com>
5820
5821         * class.cs (TypeContainer.GetClassBases): Changed
5822         `out Type parent' into `out TypeExpr parent'.  Moved CS0644 and
5823         CS8214 reporting here.
5824         (TypeContainer.DefineType): GetClassBases() gives us a `TypeExpr'
5825         instead of a `Type' for our parent.  In case of a recursive
5826         declaration (see tests/gen-23.cs for an example), our parent is a
5827         ConstructedType and it doesn't have its type set.  So, first
5828         create our own TypeBuilder, then call constructed.Resolve() to get
5829         the parent's type and finally TypeBuilder.SetParent() it.
5830
5831         * ecore.cs (TypeExpr.Name): New public virtual property.
5832
5833         * generic.cs
5834         (ConstructedType): We're now a TypeExpr and not just an Expression.
5835         (ConstructedType.ResolveAsTypeStep): Don't resolve our type
5836         arguments here; this is done later.
5837         (ConstructedType.Resolve): New public method to resolve the type
5838         arguments and bind them.
5839
5840 2003-10-21  Martin Baulig  <martin@ximian.com>
5841
5842         * convert.cs: Use `TypeManager.IsValueType' instead of
5843         'type.IsValueType' everywhere.
5844
5845         * typemanager.cs (TypeManager.IsValueType): Return true for type
5846         parameters.  The reason for this is that we need to box a type
5847         parameter when converting it to a reference type.
5848
5849         * cs-parser.jay: Added support for default value expressions.
5850
5851         * generics.cs (DefaultValueExpression): New public class.       
5852
5853 2003-10-17  Martin Baulig  <martin@ximian.com>
5854
5855         * generic.cs (Constraints.Resolve): Take a DecpSpace instead of a
5856         TypeContainer so we can also use this for Interfaces.
5857         (TypeParameter.Resolve): Likewise.
5858
5859         * interface.cs (Interface.DefineType): Added support for generic
5860         interfaces.
5861
5862         * cs-parser.jay: Added support for generic structs and interfaces.
5863
5864 2003-10-17  Martin Baulig  <martin@ximian.com>
5865
5866         * generic.cs (GenericMemberAccess.DoResolve): We can now actually
5867         call generic methods :-)
5868
5869 2003-10-16  Martin Baulig  <martin@ximian.com>
5870
5871         * cs-parser.jay (namespace_or_type_name): Only create a
5872         GenericMemberAccess if we actually have type arguments.
5873
5874 2003-10-13  Martin Baulig  <martin@ximian.com>
5875
5876         * class.cs (Method.Define): If we're a generic method, call
5877         TypeBuilder.DefineGenericMethod () before resolving
5878         the parameters.
5879         (MethodData): Added .ctor which takes an additional MethodBuilder
5880         argument; this is used for generic methods.
5881         (MethodData.Define): Call `builder.SetGenericMethodSignature()' if
5882         we already have a MethodBuilder.
5883
5884 2003-10-10  Martin Baulig  <martin@ximian.com>
5885
5886         * class.cs (Method): Added .ctor which takes a `GenericMethod'
5887         instead of a `DeclSpace'.  This is used for generic methods.
5888
5889         * cs-parser.jay (method_header): Added support for generic
5890         methods; create a `GenericMethod' instance and pass it to the
5891         `Method's .ctor; it'll be used as the `DeclSpace' to lookup
5892         parameters and locals.
5893
5894         * decl.cs (DeclSpace.SetParameterInfo): Removed Location argument
5895         since we already have the location.  Check whether we're a generic
5896         type declaration or a generic method and create the correct type
5897         parameter.
5898
5899         * generic.cs (TypeParameter.DefineMethod): New public method.
5900         (GenericMethod): New public class; derives from DeclSpace and is
5901         used for generic methods.       
5902
5903 2003-10-09  Martin Baulig  <martin@ximian.com>
5904
5905         * class.cs (MethodCore): Added additional `DeclSpace ds' argument
5906         to the .ctor.
5907         (MethodCore.DoDefineParameters): Removed the TypeContainer
5908         argument; use the DeclSpace which was passed to the .ctor instead.
5909         (MethodCore.CheckParameter): Take a DeclSpace instead of a
5910         TypeContainer; we only need a DeclSpace here.
5911
5912 2003-10-09  Martin Baulig  <martin@ximian.com>
5913
5914         * class.cs (MethodData): Added additional `DeclSpace ds' argument
5915         to the .ctor.
5916         (MethodData.Define, MethodData.Emit): Pass the `ds' to the
5917         EmitContext's .ctor.    
5918
5919 2003-10-09  Martin Baulig  <martin@ximian.com>
5920
5921         * decl.cs (DeclSpace.AsAccessible): Moved here from TypeContainer.
5922         (AccessLevel, CheckAccessLevel, GetAccessLevel): They're used by
5923         AsAccessible(), moved them as well.
5924
5925         * class.cs (TypeContainer.AsAccessible): Moved to DeclSpace.
5926
5927 2003-10-07  Miguel de Icaza  <miguel@ximian.com>
5928
5929         * expression.cs (Binary.Emit.GreatherThanOrEqual): Fix the code
5930         generation for >=, as spotted by Paolo, bug 48679.  
5931         Patch from David Waite.
5932
5933         * cs-tokenizer.cs: Add handling for #pragma.
5934
5935         * cs-parser.jay: Allow for both yield and yield return in the
5936         syntax.  The anti-cobolization of C# fight will go on!
5937
5938         * class.cs (TypeBuilder.DefineType): Catch error condition here
5939         (Parent.DefineType erroring out and returning null).
5940
5941         * expression.cs (ArrayCreation.EmitDynamicInitializers): When
5942         coping with enumerations variables, we were mistakenly processing
5943         them as a regular value type instead of built-in types.  Fixes the
5944         bug #48063
5945
5946         * typemanager.cs (IsBuiltinOrEnum): New method.
5947
5948 2003-09-30  Miguel de Icaza  <miguel@ximian.com>
5949
5950         * cs-parser.jay: Upgrade: yield now needs the return clause.
5951
5952 2003-10-08  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
5953
5954         * cs-parser.jay : Renamed yyName to yyNames related to jay.
5955
5956 2003-09-29  Martin Baulig  <martin@ximian.com>
5957
5958         * typemanager.cs (TypeManager.GetMethodFlags): Added support for
5959         inflated generic methods.
5960
5961         * generics.cs (ConstructedType): Distinguish between open and
5962         closed constructed types; correctly resolve the arguments.
5963
5964 2003-09-22  Martin Baulig  <martin@ximian.com>
5965
5966         * generic.cs (ConstructedType.ResolveAsTypeCheck): Check whether
5967         all type arguments meet their constraints.
5968
5969 2003-09-19  Martin Baulig  <martin@ximian.com>
5970
5971         * decl.cs (MemberCache.SetupCacheForInterface): Take a
5972         `MemberCache parent' argument.  Normally, an interface doesn't
5973         have a parent type except System.Object, but we use this in gmcs
5974         for generic type parameters.
5975
5976 2003-09-18  Martin Baulig  <martin@ximian.com>
5977
5978         * typemanager.cs (TypeHandle.ctor): Set `IsInterface' solely based
5979         on `type.IsInterface'; don't check whether the type has a parent
5980         to determine whether it's an interface.
5981
5982 2003-09-17  Martin Baulig  <martin@ximian.com>
5983
5984         * generic.cs (ConstructedType.ToString): Always use `name' as the
5985         type name.
5986
5987 2003-09-15  Martin Baulig  <martin@ximian.com>
5988
5989         * cs-parser.jay: Fix grammar wrt. type_parameter_constraints.
5990
5991         * generic.cs (Constraints.Resolve): New public method; this is
5992         called to resolve the constraint types and to check whether all
5993         the constraints are correct.
5994         (Constraints.Types): New public property.
5995         (TypeParameter.Resolve): New public method; resolves all the
5996         type's constraints.
5997
5998         * class.cs (TypeContainer.DefineType): Call
5999         TypeParameter.Resolve() before actually defining the type.
6000
6001 2003-09-15  Martin Baulig  <martin@ximian.com>
6002
6003         * class.cs (TypeContainer.DefineType): Added an error flag to
6004         avoid reporting duplicate CS0146's ("class definition is
6005         circular.").
6006
6007         * driver.cs (Driver.MainDriver): Abort if
6008         RootContext.ResolveTree() reported any errors.
6009
6010 2003-09-07  Martin Baulig  <martin@ximian.com>
6011
6012         * report.cs (Error, Warning): Added overloaded versions which take
6013         a `params object[] args' and call String.Format().
6014
6015 2003-09-07  Martin Baulig  <martin@ximian.com>
6016
6017         * decl.cs (DeclSpace..ctor): Don't call
6018         NamespaceEntry.DefineName() here; do it in RecordDecl() which is
6019         called from Tree.RecordDecl().  Fixes the CS0101 reporting.
6020         (DeclSpace.RecordDecl): New method.
6021
6022         * tree.cs (Tree.RecordDecl): Call ds.RecordDecl().
6023
6024 2003-09-02  Ravi Pratap  <ravi@ximian.com>
6025
6026         * attribute.cs (CheckAttributeTarget): Ensure that we allow return
6027         value attributes to be applied to ParameterBuilders.
6028
6029         * class.cs (MethodCore.LabelParameters): Make static and more
6030         generic so that it can be used from other places - like interface
6031         methods, for instance.
6032
6033         * interface.cs (Interface.Emit): Call LabelParameters before
6034         emitting attributes on the InterfaceMethod.
6035
6036 2003-09-07  Martin Baulig  <martin@ximian.com>
6037
6038         * generic.cs (ConstructedType.ResolveAsTypeStep): Report a CS8217
6039         if the number of type parameters doesn't match.
6040
6041 2003-09-04  Martin Baulig  <martin@ximian.com>
6042
6043         * expression.cs (ComposedCast.ResolveAsTypeStep): Added support
6044         for arrays of generic type params (ie. `!0[]').
6045
6046 2003-09-04  Martin Baulig  <martin@ximian.com>
6047
6048         * class.cs (TypeContainer.AsAccessible): Ignore generic parameters
6049         for the moment.
6050
6051 2003-09-04  Martin Baulig  <martin@ximian.com>
6052
6053         * decl.cs (DeclSpace.LookupGeneric): New method.
6054         (DeclSpace.CheckAccessLevel): Ignore generic parameters for the
6055         moment.
6056
6057         * generic.cs (TypeParameterExpr): Take a TypeParameter as
6058         argument, not just a string.
6059         (TypeParameter.Define): New public method; this is called to
6060         actually define the generic parameter; after this, you can use the
6061         new `Type' property to get the type.
6062
6063 2003-09-04  Martin Baulig  <martin@ximian.com>
6064
6065         * decl.cs (DeclSpace.SetParameterInfo): The `constraints' argument
6066         is now an ArrayList; initialize the result of the `TypeParameters'
6067         property here.
6068         (DeclSpace.GetGenericData): Removed.
6069         (DeclSpace.LookupGeneric): Temporarily removed; we need to
6070         implement this in a different way.
6071         (DeclSpace.GetTypeParameters): Removed; there's now a
6072         `TypeParameters' property.
6073         (DeclSpace.TypeParameters): New public property.
6074
6075         * generic.cs (Constraints): Make this class public.
6076         (TypeParameter): New public class.
6077
6078 2003-09-04  Martin Baulig  <martin@ximian.com>
6079
6080         * decl.cs (DeclSpace.GetTypeParameters): New method to return the
6081         generic parameters.
6082
6083         * class.cs (TypeContainer.DefineType): Call
6084         TypeBuilder.DefineGenericParameter () on all generic parameters if
6085         this is a generic type.
6086
6087 2003-08-28  Martin Baulig  <martin@ximian.com>
6088
6089         * sample-stack.il: Compile this with ilasm: "ilasm /dll
6090         sample-stack.il".
6091
6092         * sample-hello.cs: Compile this with gmcs: "gmcs
6093         /r:sample-stack.dll sample-hello.cs".
6094
6095 2003-08-28  Martin Baulig  <martin@ximian.com>
6096
6097         * generic.cs (ConstructedType.ResolveAsTypeStep): Actually bind
6098         the parameters to the generic type.
6099
6100 2003-08-28  Martin Baulig  <martin@ximian.com>
6101
6102         * cs-tokenizer.cs (parse_less_than): Also allow all builtin types.
6103
6104 2003-08-28  Martin Baulig  <martin@ximian.com>
6105
6106         * cs-parser.jay (opt_type_argument_list): Use
6107         `OP_GENERICS_LT type_arguments OP_GENERICS_GT'.
6108         (primary_expression): Replace `qualified_identifier' with `type_name'.
6109         (type_parameter_list): Use `OP_GENERICS_LT type_parameters OP_GENERICS_GT'.
6110
6111         * cs-tokenizer.cs (is_punct): When reading a `<', invoke a custom
6112         parser to check whether it is syntactically a type parameter list;
6113         return OP_GENERICS_LT/OP_GENERICS_GT instead of OP_LT/OP_GT in
6114         this case.
6115
6116 2003-08-26  Martin Baulig  <martin@ximian.com>
6117
6118         * ecore.cs (SimpleName.SimpleNameResolve): Look for members before
6119         resolving aliases; fixes #47927.
6120
6121 2003-08-26  Martin Baulig  <martin@ximian.com>
6122
6123         * statement.cs (Using.DoResolve): This is internally emitting a
6124         try/finally clause, so we need to set ec.NeedExplicitReturn if we
6125         do not always return.  Fixes #47681.
6126
6127 2003-08-26  Martin Baulig  <martin@ximian.com>
6128
6129         * decl.cs (MemberCore): Moved WarningNotHiding(),
6130         Error_CannotChangeAccessModifiers() and CheckMethodAgainstBase()
6131         into MemberBase.
6132         (AdditionResult): Make this nested in DeclSpace.
6133         (DeclSpace.ctor): The .ctor now takes an additional NamespaceEntry
6134         argument; call NamespaceEntry.Define() unless we're nested in a
6135         class or struct.
6136
6137         * namespace.cs (Namespace.DefineName): New public function.  This
6138         is called from DeclSpace's .ctor to add 
6139         (Namespace.Lookup): Include DeclSpaces in the lookup.
6140
6141         * class.cs (Operator): Derive from MemberBase, not MemberCore.
6142
6143         * const.cs (Const): Derive from MemberBase, not MemberCore.     
6144
6145 2003-08-25  Martin Baulig  <martin@ximian.com>
6146
6147         * convert.cs (Convert.ExplicitReferenceConversion): When
6148         converting from an interface type to a class, unbox if the target
6149         type is a struct type.  Fixes #47822.
6150
6151 2003-08-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6152
6153         * typemanager.cs: fixed the values of MethodFlags. Closes #47855 and
6154         #47854.
6155
6156 2003-08-22  Martin Baulig  <martin@ximian.com>
6157
6158         * class.cs (TypeManager.DefineType): When defining a nested type,
6159         call DefineType() on our parent; fixes #47801.
6160
6161 2003-08-22  Martin Baulig  <martin@ximian.com>
6162
6163         * class.cs (MethodData.Define): While checking if a method is an
6164         interface implementation, improve the test a bit more to fix #47654.
6165
6166 2003-08-22  Martin Baulig  <martin@ximian.com>
6167
6168         * expression.cs (Probe.DoResolve): Check whether `expr' resolved
6169         correctly; fixes #47722.
6170
6171 2003-08-22  Martin Baulig  <martin@ximian.com>
6172
6173         * expression.cs (UnaryMutator.ResolveVariable): If the target is a
6174         LocalVariableReference, ensure it's not read-only.  Fixes #47536.
6175
6176         * statement.cs (Fixed.DoResolve): Make all variables read-only. 
6177
6178 2003-08-22  Martin Baulig  <martin@ximian.com>
6179
6180         * ecore.cs (FieldExpr.DoResolveLValue): Static read-only fields
6181         can only be assigned in static constructors.  Fixes #47161.
6182
6183 2003-08-22  Martin Baulig  <martin@ximian.com>
6184
6185         Rewrote and improved the flow analysis code.
6186
6187         * flowbranching.cs (FlowBranching): Make this class abstract.
6188         (FlowBranching.CreateBranching): New static function to create a
6189         new flow branching.
6190         (FlowBranchingBlock, FlowBranchingException): New classes.
6191         (FlowBranching.UsageVector.Type): New public readonly field.
6192         (FlowBranching.UsageVector.Breaks): Removed the setter.
6193         (FlowBranching.UsageVector.Returns): Removed the setter.
6194         (FlowBranching.UsageVector): Added Break(), Return(),
6195         NeverReachable() and Throw() methods to modify the reachability.
6196         (FlowBranching.UsageVector.MergeChildren): Removed, this is now
6197         done by FlowBranching.Merge().
6198         (FlowBranching.UsageVector.MergeChild): New method; merges the
6199         merge result into the current vector.
6200         (FlowBranching.Merge): New abstract method to merge a branching.
6201
6202 2003-08-12  Martin Baulig  <martin@ximian.com>
6203
6204         * expression.cs (Indirection.CacheTemporaries): Create the
6205         LocalTemporary with the pointer type, not its element type.
6206
6207 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
6208
6209         * cs-parser.jay: FIRST_KEYWORD, LAST_KEYWORD: used to know if a
6210         token was a keyword or not.
6211
6212         Add `error' options where an IDENTIFIER was expected;  Provide
6213         CheckToken and CheckIdentifierToken convenience error reporting
6214         functions. 
6215
6216         Do not use `DeclSpace.Namespace', use `DeclSpace.NamespaceEntry'.
6217
6218         * decl.cs: Rename `NamespaceEntry Namespace' public field into
6219         NameSpaceEntry NameSpaceEntry.
6220
6221         (LookupInterfaceOrClass): Avoid creating a full qualified name
6222         from namespace and name: avoid doing lookups when we know the
6223         namespace is non-existant.   Use new Tree.LookupByNamespace which
6224         looks up DeclSpaces based on their namespace, name pair.
6225
6226         * driver.cs: Provide a new `parser verbose' to display the
6227         exception thrown during parsing.  This is turned off by default
6228         now, so the output of a failure from mcs is more graceful.
6229
6230         * namespace.cs: Track all the namespaces defined in a hashtable
6231         for quick lookup.
6232
6233         (IsNamespace): New method
6234
6235 2003-08-09  Miguel de Icaza  <miguel@ximian.com>
6236
6237         * namespace.cs: Remove redundant call;  Avoid using MakeFQN when
6238         we know that we need to concatenate (full typename can never be
6239         null). 
6240
6241         * class.cs: ditto.
6242
6243         * statement.cs: Use a bitfield;  Do not initialize to null things
6244         which are done by the constructor by default.
6245
6246         * cs-parser.jay: bug fix, parameter was 4, not 3.
6247
6248         * expression.cs: Just use the property;
6249
6250         * statement.cs: No need for GetVariableInfo method.
6251
6252 2003-08-08  Martin Baulig  <martin@ximian.com>
6253
6254         * flowanalysis.cs (FlowReturns): This is now nested in the
6255         `FlowBranching' class.
6256         (MyBitVector): Moved this here from statement.cs.
6257         (FlowBranching.SiblingType): New enum type.
6258         (FlowBranching.CreateSibling): Added `SiblingType' argument.
6259
6260 2003-08-07  Martin Baulig  <martin@ximian.com>
6261
6262         * flowanalysis.cs (FlowBranchingType): This is now nested in the
6263         `FlowBranching' class and called `BranchingType'.
6264
6265 2003-08-07  Martin Baulig  <martin@ximian.com>
6266
6267         * flowanalysis.cs: Moved all the control flow analysis code into
6268         its own file.
6269
6270 2003-08-07  Martin Baulig  <martin@ximian.com>
6271
6272         * assign.cs (Assign.DoResolve): `target' must either be an
6273         IAssignMethod or an EventAccess; report a CS0131 otherwise.  Fixes
6274         #37319.
6275
6276 2003-08-07  Miguel de Icaza  <miguel@ximian.com>
6277
6278         * expression.cs (BinaryMethod): This kind of expression is created by the
6279         Binary class if it determines that the operator has to be handled
6280         by a method.
6281
6282         (BinaryDelegate): This kind of expression is created if we are
6283         dealing with a + or - operator on delegates.
6284
6285         (Binary): remove method, argumetns, and DelegateOperator: when
6286         dealing with methods, 
6287
6288         * ecore.cs (EventExpr.EmitAddOrRemove): Update to new layout.
6289
6290         * statement.cs (Block): use bitfields for the three extra booleans
6291         we had in use.   Remove unused topblock parameter.
6292
6293         * codegen.cs: Remove unecessary argument to Block.EmitTopBlock
6294
6295         * assign.cs: Drop extra unneeded tests.
6296
6297 2003-08-06  Miguel de Icaza  <miguel@ximian.com>
6298
6299         * iterators.cs (Mapvariable): provide a mechanism to use prefixes.
6300
6301         * statement.cs (Foreach): Use VariableStorage instead of
6302         LocalBuilders.   
6303
6304         * codegen.cs (VariableStorage): New class used by clients that
6305         require a variable stored: locals or fields for variables that
6306         need to live across yield.
6307
6308         Maybe provide a convenience api for EmitThis+EmitLoad?
6309
6310         (GetTemporaryLocal, FreeTemporaryLocal): Recycle
6311         these bad boys.
6312
6313 2003-08-05  Miguel de Icaza  <miguel@ximian.com>
6314
6315         * codegen.cs (RemapLocal, RemapLocalLValue, RemapParameter,
6316         RemapParameterLValue): New methods that are used to turn a
6317         precomputed FieldInfo into an expression like this:
6318
6319                 instance.FieldInfo
6320
6321         The idea is to use this instead of making LocalVariableReference
6322         have more than one meaning.
6323
6324         * cs-parser.jay: Add error production to BASE.
6325
6326         * ecore.cs: Deal with TypeManager.GetField returning null, which
6327         is now a valid return value.
6328
6329         (FieldExprNoAddress): New expression for Fields whose address can
6330         not be taken.
6331
6332         * expression.cs (LocalVariableReference): During the resolve
6333         phases, create new expressions if we are in a remapping context.
6334         Remove code that dealt with remapping here.
6335
6336         (ParameterReference): same.
6337
6338         (ProxyInstance): New expression, like the `This' expression, but
6339         it is born fully resolved.  We know what we are doing, so remove
6340         the errors that are targeted to user-provided uses of `this'.
6341
6342         * statement.cs (Foreach): our variable is now stored as an
6343         Expression;  During resolution, follow the protocol, dont just
6344         assume it will return this.
6345
6346 2003-08-06  Martin Baulig  <martin@ximian.com>
6347
6348         * support.cs (SeekableStreamReader.cs): New public class.
6349
6350         * cs-tokenizer.cs, cs-parser.jay, driver.cs: Use the new
6351         SeekableStreamReader instead of the normal StreamReader.
6352
6353 2003-08-04  Martin Baulig  <martin@ximian.com>
6354
6355         * cs-parser.jay (CLOSE_PARENS_CAST, CLOSE_PARENS_NO_CAST,
6356         CLOSE_PARENS_OPEN_PARENS, CLOSE_PARENS_MINUS): New tokens to
6357         deambiguate casts and delegate invocations.
6358         (parenthesized_expression): Use the new tokens to ensure this is
6359         not a cast of method invocation.
6360
6361         * cs-tokenizer.cs (is_punct): Return one of the new special tokens
6362         when reading a `)' and Deambiguate_CloseParens () was previously
6363         called.
6364
6365         * expression.cs (ParenthesizedExpression): New class.  This is
6366         just used for the CS0075 test.
6367         (Binary.DoResolve): Check for CS0075.   
6368
6369 2003-07-29  Ravi Pratap  <ravi@ximian.com>
6370
6371         * expression.cs (Invocation.MakeUnionSet): Patch from Lluis
6372         Sanchez : use TypeManager.ArrayContainsMethod instead of a direct
6373         reference comparison.
6374
6375         (TypeManager.ArrayContainsMethod): When we have a MethodInfo, also
6376         examine the ReturnType for equality - this is necessary in the
6377         cases of implicit and explicit operators whose signature also
6378         includes the return type.
6379
6380 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
6381
6382         * namespace.cs: Cache the result of the namespace computation,
6383         instead of computing it every time.
6384
6385 2003-07-24  Miguel de Icaza  <miguel@ximian.com>
6386
6387         * decl.cs: Use a global arraylist that we reuse over invocations
6388         to avoid excesive memory consumption.  Reduces memory usage on an
6389         mcs compile by one meg (45 average).
6390
6391         * typemanager.cs (LookupTypeReflection): In .NET pointers are
6392         private, work around that.
6393
6394 2003-07-23  Miguel de Icaza  <miguel@ximian.com>
6395
6396         * literal.cs (IntLiteral): Define Zero and One static literals. 
6397
6398         * cs-parser.jay (integer_literal): use static literals to reduce
6399         memory usage for the most used literals (0, 1 and -1).  211kb
6400         reduced in memory usage.
6401
6402         Replace all calls to `new ArrayList' with `new
6403         ArrayList(4)' which is a good average number for most allocations,
6404         and also requires only 16 bytes of memory for its buffer by
6405         default. 
6406
6407         This reduced MCS memory usage in seven megabytes for the RSS after
6408         bootstrapping.
6409
6410 2003-07-28  Ravi Pratap  <ravi@ximian.com>
6411
6412         * expression.cs (Invocation.OverloadResolve): Fix the algorithm to
6413         handle params methods the correct way by forming only one
6414         applicable set with params and normal methods in them. Earlier we
6415         were looking at params methods only if we found no normal methods
6416         which was not the correct thing to do.
6417
6418         (Invocation.BetterFunction): Take separate arguments indicating
6419         when candidate and the best method are params methods in their
6420         expanded form.
6421
6422         This fixes bugs #43367 and #46199.
6423
6424         * attribute.cs: Documentation updates.
6425
6426         (CheckAttribute): Rename to CheckAttributeTarget.
6427         (GetValidPlaces): Rename to GetValidTargets.
6428
6429         * expression.cs (Invocation.IsParamsMethodApplicable): Fix trivial
6430         bug - use Convert.ImplicitConversion, not ImplicitUserConversion!
6431
6432         Fixes bug #44468.
6433
6434 2003-07-28  Miguel de Icaza  <miguel@ximian.com>
6435
6436         * codegen.cs: Compute IsGeneric correctly.
6437
6438         * cs-parser.jay: Introduce OP_GENERIC_LT for the grammar ambiguity
6439         resolution. 
6440
6441         Bring back (temporarily) OP_LEFT_SHIFT, OP_RIGHT_SHIFT,
6442         OP_SHIFT_RIGHT_ASSIGN, OP_SHIFT_LEFT_ASSIGN.  There were too many
6443         regressions, and I was chasing more bugs than I required.
6444
6445         * interface.cs: Use expressions for base type names (like classes
6446         and structs have been doing for a while now), and resolve that.
6447         This patch should probably go into head as well.
6448
6449         This makes it one less user of FindType.
6450
6451 2003-07-24  Miguel de Icaza  <miguel@ximian.com>
6452
6453         This compiler can not self host currently.  Need to fix that.
6454         
6455         * Makefile: compile to `gmcs.exe'
6456
6457         * driver.cs: Turn on v2 by default on gmcs.
6458
6459         * generic.cs (ConstructedType): Does no longer take a container
6460         type argument;  That will be taken care of later.
6461
6462         (ConstructedType.DoResolve, ConstructedType.ResolveAsTypeStep):
6463         Use SimpleName to resolve for now, so we can continue the work on
6464         the parser, until we get Type.GetType that understands generics.
6465
6466         (ConstructedType.ToString): Implement
6467
6468         (TypeArguments.Resolve): Resolve the child expressions as types. 
6469         
6470         * cs-parser.jay: Rename interface_constraints to
6471         type_parameter_constraints
6472
6473         (namespace_or_type_name): Only use constructed types for the basic
6474         construction, we will deal with identifier<...> later.
6475
6476         (type/type_name): No longer call DecomposeQI, as
6477         namespace_or_type_name is always decoded now.
6478         
6479 2003-07-22  Ravi Pratap  <ravi@ximian.com>
6480
6481         * expression.cs (Invocation.OverloadResolve): Follow the spec more
6482         closely: we eliminate methods in base types when we have an
6483         applicable method in a top-level type.
6484
6485         Please see section 14.5.5.1 for an exact description of what goes
6486         on. 
6487
6488         This fixes bug #45127 and a host of other related to corlib compilation.
6489
6490         * ecore.cs (MethodGroupExpr.DeclaringType): The element in the
6491         array is the method corresponding to the top-level type (this is
6492         because of the changes made to icall.c) so we change this
6493         accordingly.
6494
6495         (MethodGroupExpr.Name): This too.
6496
6497         * typemanager.cs (GetElementType): New method which does the right
6498         thing when compiling corlib. 
6499
6500         * everywhere: Make use of the above in the relevant places.
6501
6502 2003-07-22  Martin Baulig  <martin@ximian.com>
6503
6504         * cs-parser.jay (invocation_expression): Moved
6505         `OPEN_PARENS expression CLOSE_PARENS unary_expression' here from
6506         `cast_expression', but create a InvocationOrCast which later
6507         resolves to either an Invocation or a Cast.
6508
6509         * ecore.cs (ExpressionStatement.ResolveStatement): New virtual
6510         method; call this before EmitStatement() to make sure that this
6511         expression can be used as a statement.
6512
6513         * expression.cs (InvocationOrCast): New class; resolves to either
6514         an Invocation or a Cast.
6515
6516         * statement.cs (StatementExpression): Call ResolveStatement() on
6517         the ExpressionStatement before emitting it.
6518
6519 2003-07-21  Martin Baulig  <martin@ximian.com>
6520
6521         * expression.cs (Invocation.VerifyArgumentsCompat): Check whether
6522         `ref' and `out' attributes match; fixes #46220.
6523         (MemberAccess.ResolveMemberAccess): You can't reference a type
6524         through an expression; fixes #33180.
6525         (Indexers.GetIndexersForType): Don't return the indexers from
6526         interfaces the class implements; fixes #46502.
6527
6528 2003-07-21  Martin Baulig  <martin@ximian.com>
6529
6530         * class.cs (TypeContainer.CheckPairedOperators): Added CS0660 and
6531         CS0661 checks; fixes bug #30442.
6532
6533 2003-07-21  Martin Baulig  <martin@ximian.com>
6534
6535         * decl.cs (AdditionResult): Added `Error'.
6536
6537         * enum.cs (AddEnumMember): Report a CS0076 if name is `value__'.
6538
6539         * typemanager.cs (TypeManager.ChangeType): Catch exceptions; makes
6540         cs0031.cs actually work.
6541
6542  2003-07-20  Miguel de Icaza  <miguel@ximian.com>
6543  
6544         * cs-parser.jay (namespace_name): do not use
6545         namespace_or_type_name, use qualified_identifier, because
6546         namespace_or_type_name will soon return a composed expression
6547         instead of a string.
6548  
6549         (namespace_or_type_name): Instead of returning a string, now this
6550         production returns an expression.
6551  
6552         * codegen.cs (EmitContext): Setup IsGeneric property based on
6553         whether our DeclSpace is generic, our the method is generic.
6554  
6555         * modifier.cs (Modifiers.METHOD_GENERIC): New definition, use if
6556         the method is generic.
6557  
6558         * cs-parser.jay (type_arguments, opt_type_argument_list,
6559         type_parameters, type_parameter_list, opt_type_parameter_list,
6560         type_parameter,, opt_type_parameter_constraints_clauses,
6561         type_parameter_constraints_clauses,
6562         type_parameter_constraint_clause, type_parameter_constraint,
6563         interface_constraints): Add new production
6564  
6565         * decl.cs (DeclSpace): IsGeneric, flag to track whether this
6566         DeclSpace is generic or not.
6567  
6568         (DeclSpace.SetParameterInfo): New routine, used to set the
6569         parameter info for a type.
6570  
6571         (DeclSpace.LookupGeneric): Lookups a name, and if it is a generic,
6572         returns a GenericTypeExpr
6573  
6574         * ecore.cs (SimpleName.ResolveAsTypeStep): If our container is
6575         generic, lookup the generic argument.
6576  
6577         * attribute.cs: Do not allow TypeParameterExpressions in
6578         Attributes.
6579  
6580         * class.cs: Do not allow the Main method to be defined in a
6581         Generic container.
6582  
6583         * expression.cs (SizeOf): Do not allow generic types to be used as
6584         arguments to sizeof.
6585  
6586         * typemanager.cs (IsGeneric): Wrapper for Reflection when we have
6587         it: whether a type is generic or not.  Only works for types we are
6588         currently building for now.
6589         
6590 2003-07-20  Martin Baulig  <martin@ximian.com>
6591
6592         * namespace.cs: Fixed that bug which caused a crash when compiling
6593         the debugger's GUI.
6594
6595 2003-07-20  Miguel de Icaza  <miguel@ximian.com>
6596
6597         * typemanager.cs (LookupTypeReflection): Never expose types which
6598         are NotPublic, NestedPrivate, NestedAssembly, or
6599         NestedFamANDAssem.  We used to return these, and later do a check
6600         that would report a meaningful error, but the problem is that we
6601         would not get the real match, if there was a name override.
6602
6603 2003-07-18  Miguel de Icaza  <miguel@ximian.com>
6604
6605         * namespace.cs (Namespace, Name): Do not compute the namespace
6606         name dynamically, compute it in the constructor.  This reduced
6607         memory usage by 1697 KB.
6608
6609         * driver.cs: Use --pause to pause at the end.
6610
6611 2003-07-17  Peter Williams  <peter@newton.cx>
6612
6613         * Makefile: Change the name of the test target so that it doesn't
6614         conflict with the recursive test target.
6615
6616 2003-07-17  Miguel de Icaza  <miguel@ximian.com>
6617
6618         * expression.cs (LocalVariableReference.Emit, EmitAssign,
6619         AddressOf): Do not use EmitThis, that was wrong, use the actual
6620         this pointer.
6621
6622 2003-07-15  Miguel de Icaza  <miguel@ximian.com>
6623
6624         * class.cs (MethodData.Define): While checking if a method is an
6625         interface implementation, improve the test: If we are not public
6626         (use new test here: use the computed MethodAttributes directly,
6627         instead of the parsed modifier flags) check if the `implementing'
6628         method comes from an interface or not.
6629
6630         * pending.cs (VerifyPendingMethods): Slightly better error
6631         message.
6632
6633         * makefile: add test target that does the mcs bootstrap.
6634
6635 2003-07-16  Ravi Pratap  <ravi@ximian.com>
6636
6637         * interface.cs (Define): Do nothing here since there are no
6638         members to populate etc. Move the attribute emission out of here
6639         since this was just totally the wrong place to put it. Attribute
6640         application happens during the 'Emit' phase, not in the 'Define'
6641         phase.
6642
6643         (Emit): Add this method and move the attribute emission here
6644
6645         * rootcontext.cs (EmitCode): Call the Emit method on interface
6646         types too.
6647
6648 2003-07-14  Ravi Pratap M  <ravi@ximian.com>
6649
6650         * expression.cs (OverloadResolve): Report error only if Location
6651         is not 'Null' which means that there was a probe going on.
6652
6653 2003-07-14  Martin Baulig  <martin@ximian.com>
6654
6655         * expression.cs (ConditionalLogicalOperator): New public class to
6656         implement user defined conditional logical operators.
6657         This is section 14.11.2 in the spec and bug #40505.
6658
6659 2003-07-14  Martin Baulig  <martin@ximian.com>
6660
6661         * ecore.cs (FieldExpr.DoResolveLValue): Fixed bug #46198.
6662
6663 2003-07-14  Martin Baulig  <martin@ximian.com>
6664
6665         * codegen.cs (EmitContext.InFixedInitializer): New public field.
6666
6667         * ecore.cs (IVariable.VerifyFixed): New interface method.
6668
6669         * expression.cs (Unary.ResolveOperator): When resolving the `&'
6670         operator, check whether the variable is actually fixed.  Fixes bug
6671         #36055.  Set a variable definitely assigned when taking its
6672         address as required by the spec.
6673
6674         * statement.cs (LocalInfo.IsFixed): New field.
6675         (LocalInfo.MakePinned): Set `IsFixed' to true.
6676
6677 2003-07-14  Ravi Pratap M  <ravi@ximian.com>
6678
6679         * attribute.cs (Attribute.Resolve): While doing a Member lookup
6680         for .ctors, ensure that we only ask for members declared in the
6681         attribute type (BindingFlags.DeclaredOnly).
6682
6683         Fixes bug #43632.
6684
6685         * expression.cs (Error_WrongNumArguments): Report error 1501
6686         correctly the way CSC does.
6687
6688 2003-07-13  Martin Baulig  <martin@ximian.com>
6689
6690         * expression.cs (MemberAccess.ResolveAsTypeStep): Try to do a type
6691         lookup on the fully qualified name, to make things like "X.X" work
6692         where "X.X" is a fully qualified type name, but we also have a
6693         namespace "X" in the using list.  Fixes #41975.
6694
6695 2003-07-13  Martin Baulig  <martin@ximian.com>
6696
6697         * assign.cs (Assign.GetEmbeddedAssign): New protected virtual
6698         function. If we're a CompoundAssign, we need to create an embedded
6699         CompoundAssign, not an embedded Assign.
6700         (Assign.DoResolve): Make this work for embedded CompoundAssign's.
6701         Fixes #45854.
6702
6703 2003-07-13  Martin Baulig  <martin@ximian.com>
6704
6705         * typemanager.cs (TypeManager.IsNestedChildOf): Make this actually
6706         work to fix bug #46088.
6707
6708 2003-07-13  Ravi Pratap <ravi@ximian.com>
6709
6710         * class.cs (Operator.Emit): Do not emit attributes here - it is
6711         taken care of by the Method class that we delegate too. This takes
6712         care of bug #45876.
6713
6714 2003-07-10  Martin Baulig  <martin@ximian.com>
6715
6716         * expression.cs (TypeOfVoid): New class.
6717         (TypeOf): Report a CS0673 if it's System.Void.  Fixes #42264.
6718
6719 2003-07-10  Martin Baulig  <martin@ximian.com>
6720
6721         * class.cs (MethodCore.DoDefineParameters): Added CS0225 check;
6722         bug #35957.
6723
6724 2003-07-10  Martin Baulig  <martin@ximian.com>
6725
6726         * rootcontext.cs (RootContext.NamespaceLookup): Take a DeclSpace,
6727         not a NamespaceEntry, so we can use DeclSpace.CheckAccessLevel().
6728
6729         * decl.cs (DeclSpace.FindType): Use DeclSpace.CheckAccessLevel().
6730
6731         * typemanager.cs (TypeManager.IsAccessibleFrom): Removed.
6732
6733 2003-07-10  Martin Baulig  <martin@ximian.com>
6734
6735         * expression.cs (ArrayCreation): Don't use a byte blob for arrays
6736         of decimal.  Fixes #42850.
6737
6738         NOTE: I also fixed the created byte blob, but this doesn't work on
6739         the MS runtime and csc never produces any byte blobs for decimal
6740         arrays.
6741
6742 2003-07-10  Martin Baulig  <martin@ximian.com>
6743
6744         * statement.cs (StructInfo.GetStructInfo): Catch deep cycles in
6745         structs; fixes #32068.
6746         (Block.AddChildVariableNames): Fixed #44302.
6747
6748 2003-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6749
6750         * namespace.cs: fixed compilation with csc. It's bugzilla #44302.
6751
6752 2003-07-07  Miguel de Icaza  <miguel@ximian.com>
6753
6754         * attribute.cs: And this test is onger needed.
6755
6756 2003-07-08  Martin Baulig  <martin@ximian.com>
6757
6758         * rootcontext.cs (RootContext.NamespaceLookup): Ignore
6759         inaccessible types.  Fixes #36313.
6760
6761         * decl.cs (DeclSpace.FindType): Ignore inaccessible types.
6762
6763         * namespace.cs (NamespaceEntry): Create implicit entries for all
6764         namespaces; ie. if we have `namespace N1.N2.N3 { ... }', we create
6765         implicit entries for N1.N2 and N1.
6766
6767 2003-07-08  Martin Baulig  <martin@ximian.com>
6768
6769         Rewrote the handling of namespaces to fix a lot of the issues
6770         wrt. `using' aliases etc.
6771
6772         * namespace.cs (Namespace): Splitted this class into a
6773         per-assembly `Namespace' and a per-file `NamespaceEntry'.
6774
6775         * typemanager.cs (TypeManager.IsNamespace): Removed.
6776         (TypeManager.ComputeNamespaces): Only compute namespaces from
6777         loaded assemblies here, not the namespaces from the assembly we're
6778         currently compiling.
6779
6780 2003-07-08  Martin Baulig  <martin@ximian.com>
6781
6782         * rootcontext.cs, class.cs: Fixed the CS1530 reporting.
6783
6784 2003-07-07  Miguel de Icaza  <miguel@ximian.com>
6785
6786         * typemanager.cs: Reverted patch from Gonzalo, my previous patch
6787         already fixed it.  
6788
6789         I thought about the memory savings here, but LookupTypeReflection
6790         is used under already very constrained scenarios.  Compiling
6791         corlib or mcs only exposes one hit, so it would not really reduce
6792         any memory consumption.
6793
6794 2003-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6795
6796         * typemanager.cs: fixes bug #45889 by only adding public types from
6797         other assemblies to the list of known types.
6798
6799 2003-07-07  Miguel de Icaza  <miguel@ximian.com>
6800
6801         * attribute.cs (Attribute.Resolve): Add call to CheckAccessLevel
6802         on the type we resolved.
6803
6804 2003-07-05  Martin Baulig  <martin@ximian.com>
6805
6806         * pending.cs (PendingImplementation.ParentImplements): Don't
6807         create the proxy if the parent is abstract.
6808
6809         * class.cs (TypeContainer.DefineIndexers): Process explicit
6810         interface implementations first.  Fixes #37714.
6811
6812 2003-07-04  Miguel de Icaza  <miguel@ximian.com>
6813
6814         * expression.cs (MemberAccess.ResolveMemberAccess): Events are
6815         defined recursively;  but since we modify the input parameters
6816         (left is set to `this' temporarily), we reset this value if the
6817         left_is_explicit is false, which gives the original semantics to
6818         the code.  
6819
6820         * literal.cs (NullPointer): new class used to represent a null
6821         literal in a pointer context.
6822
6823         * convert.cs (Convert.ImplicitReferenceConversion): Is the target
6824         type is a pointer, use a NullPointer object instead of a
6825         NullLiteral.   Closes 43687
6826
6827         (ExplicitConversion): Convert pointer values using
6828         the conv opcode to the proper type.
6829
6830         * ecore.cs (New): change ValueTypeVariable property into a method,
6831         that returns whether the valuetype is suitable for being used.
6832
6833         * expression.cs (Binary.DoNumericPromotions): Only return if we
6834         the int constant was a valid uint, and we can return both left and
6835         right as uints.  If not, we continue processing, to trigger the
6836         type conversion.  This fixes 39018.
6837
6838         * statement.cs (Block.EmitMeta): During constant resolution, set
6839         the CurrentBlock property on the emitcontext, so that we resolve
6840         constants propertly.
6841
6842 2003-07-02  Martin Baulig  <martin@ximian.com>
6843
6844         * codegen.cs (EmitContext.NeedExplicitReturn): New public variable.
6845         (EmitContext.EmitTopBlock): Emit an explicit return if it's set.
6846
6847         * statement.cs (Try.Resolve): Set ec.NeedExplicitReturn rather
6848         than emitting it here.
6849
6850         * statement.cs: Fixed some more flow analysis bugs.
6851
6852 2003-07-02  Martin Baulig  <martin@ximian.com>
6853
6854         * class.cs (MethodData.Define): When implementing interface
6855         methods, set Final unless we're Virtual.
6856
6857         * decl.cs (MemberCore.CheckMethodAgainstBase): Make the CS0506
6858         check work for interface methods.
6859
6860 2003-07-01  Martin Baulig  <martin@ximian.com>
6861
6862         * ecore.cs (EmitContext.This): Replaced this property with a
6863         GetThis() method which takes a Location argument.  This ensures
6864         that we get the correct error location for a CS0188.
6865
6866 2003-07-01  Miguel de Icaza  <miguel@ximian.com>
6867
6868         * ecore.cs: (Convert.ConvertIntLiteral): Add test for
6869         ImplicitStandardConversion.
6870
6871         * class.cs (TypeContainer.GetClassBases): Small bug fix for 45649.
6872
6873 2003-07-01  Zoltan Varga  <vargaz@freemail.hu>
6874
6875         * expression.cs (ResolveOperator): Fix Concat (string, string, string)
6876         optimization.
6877
6878 2003-06-30  Miguel de Icaza  <miguel@ximian.com>
6879
6880         * class.cs (Constructor.Define): Turn off initlocals for unsafe
6881         constructors.
6882
6883         (MethodData.Define): Turn off initlocals for unsafe methods.
6884
6885 2003-06-29  Miguel de Icaza  <miguel@ximian.com>
6886
6887         * decl.cs (DeclSpace.CheckAccessLevel): Make this routine
6888         complete;  Fixes #37521.
6889
6890         * delegate.cs: Use Modifiers.TypeAttr to compute the
6891         TypeAttributes, instead of rolling our own.  This makes the flags
6892         correct for the delegates.
6893
6894 2003-06-28  Miguel de Icaza  <miguel@ximian.com>
6895
6896         * class.cs (Constructor.Define): Set the private flag for static
6897         constructors as well.
6898
6899         * cs-parser.jay (statement_expression): Set the return value to
6900         null, to avoid a crash when we catch an error.
6901
6902 2003-06-24  Miguel de Icaza  <miguel@ximian.com>
6903
6904         * cs-parser.jay: Applied patch from Jackson that adds support for
6905         extern and unsafe modifiers to destructor declarations.
6906
6907         * expression.cs: Report error 21 if the user is trying to index a
6908         System.Array.
6909
6910         * driver.cs: Add an error message, suggested by the bug report.
6911
6912         * class.cs (TypeContainer.Emit): Only call EmitFieldInitializers
6913         if we do not have a ": this ()" constructor initializer.  Fixes 45149
6914
6915 2003-06-14  Miguel de Icaza  <miguel@ximian.com>
6916
6917         * namespace.cs: Add some information to reduce FAQs.
6918
6919 2003-06-13  Miguel de Icaza  <miguel@ximian.com>
6920
6921         * cfold.cs (BinaryFold): BitwiseAnd, BitwiseOr: handle other
6922         underlying enumeration types.  Fixes #43915.
6923
6924         * expression.cs: Treat ushort/short as legal values to be used in
6925         bitwise operations.
6926
6927 Wed Jun 4 13:19:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
6928
6929         * delegate.cs: transfer custom attributes for paramenters from
6930         the delegate declaration to Invoke and BeginInvoke.
6931
6932 Tue Jun 3 11:11:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6933
6934         * attribute.cs: handle custom marshalers and emit marshal info
6935         for fields, too.
6936
6937 2003-05-28  Hector E. Gomez Morales  <hgomez_36@flashmail.com>
6938
6939         * makefile.gnu: Added anonymous.cs to the compiler sources.
6940
6941 2003-05-28  Miguel de Icaza  <miguel@ximian.com>
6942
6943         * iterators.cs: Change the name of the proxy class to include two
6944         underscores.
6945
6946         * cs-parser.jay: Update grammar to include anonymous methods.
6947
6948         * anonymous.cs: new file.
6949
6950 2003-05-27  Miguel de Icaza  <miguel@ximian.com>
6951
6952         * class.cs (Field.Define): Add missing test for pointers and
6953         safety. 
6954
6955 2003-05-27  Ravi Pratap  <ravi@ximian.com>
6956
6957         * expression.cs (ArrayAccess.GetStoreOpCode): For System.IntPtr,
6958         we use the stobj opcode.
6959
6960         (ArrayCreation.EmitDynamicInitializers): Revert Miguel's patch
6961         since it wasn't the correct fix. 
6962
6963         It still is puzzling that we are required to use stobj for IntPtr
6964         which seems to be a ValueType.
6965
6966 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
6967
6968         * ecore.cs (SimpleName.SimpleNameResolve): Consider using aliases
6969         during regular simple name resolution.   Now, the trick is that
6970         instead of returning for processing the simplename, we do a
6971         TypeManager.LookupType (ie, a rooted lookup as opposed to a
6972         contextual lookup type).   If a match is found, return that, if
6973         not, return for further composition.
6974
6975         This fixes long-standing 30485.
6976
6977         * expression.cs (ArrayCreation.EmitDynamicInitializers): When
6978         using the address to initialize an object, do an Stobj instead of
6979         using the regular Stelem.
6980
6981         (IndexerAccess.Emit, IndexerAccess.EmitAssign):
6982         Pass `is_base_indexer' to Invocation.EmitCall instead of false.
6983         Because if we are a BaseIndexerAccess that value will be true.
6984         Fixes 43643.
6985
6986         * statement.cs (GotoCase.Resolve): Return after reporting an
6987         error, do not attempt to continue. 
6988
6989         * expression.cs (PointerArithmetic.Emit): If our operand is a
6990         long, convert our constants to match the operand before
6991         multiplying.  Convert to I type before adding.   Fixes 43670.
6992
6993 2003-05-14  Ravi Pratap  <ravi@ximian.com>
6994
6995         * enum.cs (ImplicitConversionExists) : Rename to
6996         ImplicitEnumConversionExists to remove ambiguity. 
6997
6998         * ecore.cs (NullCast): New type of cast expression class which
6999         basically is very similar to EmptyCast with the difference being
7000         it still is a constant since it is used only to cast a null to
7001         something else
7002         (eg. (string) null)
7003
7004         * convert.cs (ImplicitReferenceConversion): When casting a null
7005         literal, we return a NullCast.
7006
7007         * literal.cs (NullLiteralTyped): Remove - I don't see why this
7008         should be around anymore.
7009
7010         The renaming (reported was slightly wrong). Corrections:
7011
7012         ConvertImplicitStandard -> ImplicitConversionStandard
7013         ConvertExplicitStandard -> ExplicitConversionStandard
7014
7015         * expression.cs (StaticCallExpr.MakeSimpleCall): Resolve arguments
7016         before passing them in !
7017
7018         * convert.cs (ImplicitConversionStandard): When comparing for
7019         equal expr and target types, ensure that expr is not a
7020         NullLiteral.
7021
7022         In general, we must not be checking (expr_type ==
7023         target_type) in the top level conversion methods
7024         (ImplicitConversion, ExplicitConversion etc). This checking is
7025         done in the methods that they delegate to.
7026
7027 2003-05-20  Miguel de Icaza  <miguel@ximian.com>
7028
7029         * convert.cs: Move Error_CannotConvertType,
7030         ImplicitReferenceConversion, ImplicitReferenceConversionExists,
7031         ImplicitNumericConversion, ImplicitConversionExists,
7032         ImplicitUserConversionExists, StandardConversionExists,
7033         FindMostEncompassedType, FindMostSpecificSource,
7034         FindMostSpecificTarget, ImplicitUserConversion,
7035         ExplicitUserConversion, GetConversionOperators,
7036         UserDefinedConversion, ConvertImplicit, ConvertImplicitStandard,
7037         TryImplicitIntConversion, Error_CannotConvertImplicit,
7038         ConvertImplicitRequired, ConvertNumericExplicit,
7039         ExplicitReferenceConversionExists, ConvertReferenceExplicit,
7040         ConvertExplicit, ConvertExplicitStandard from the ecore.cs into
7041         its own file.
7042
7043         Perform the following renames:
7044
7045         StandardConversionExists -> ImplicitStandardConversionExists
7046         ConvertImplicit -> ImplicitConversion
7047         ConvertImplicitStandard -> ImplicitStandardConversion
7048         TryImplicitIntConversion -> ImplicitIntConversion
7049         ConvertImplicitRequired -> ImplicitConversionRequired
7050         ConvertNumericExplicit -> ExplicitNumericConversion
7051         ConvertReferenceExplicit -> ExplicitReferenceConversion
7052         ConvertExplicit -> ExplicitConversion
7053         ConvertExplicitStandard -> ExplicitStandardConversion
7054
7055 2003-05-19  Martin Baulig  <martin@ximian.com>
7056
7057         * statement.cs (TypeInfo.StructInfo): Made this type protected.
7058         (TypeInfo): Added support for structs having structs as fields.
7059
7060         * ecore.cs (FieldExpr): Implement IVariable.
7061         (FieldExpr.DoResolve): Call VariableInfo.GetSubStruct() to get the
7062         VariableInfo for the field.
7063
7064 2003-05-18  Martin Baulig  <martin@ximian.com>
7065
7066         * expression.cs (This.DoResolve): Report a CS0027 if we're
7067         emitting a field initializer.
7068
7069 2003-05-18  Martin Baulig  <martin@ximian.com>
7070
7071         * expression.cs (This.ResolveBase): New public function.
7072         (This.DoResolve): Check for CS0188.
7073
7074         * codegen.cs (EmitContext.This): Just call This.ResolveBase(), not
7075         This.Resolve().
7076
7077         * ecore.cs (MethodGroupExpr.DoResolve): Set the
7078         `instance_expression' to null if we don't have any non-static
7079         methods.
7080
7081 2003-05-18  Martin Baulig  <martin@ximian.com>
7082
7083         Reworked the way how local variables and parameters are handled by
7084         the flow analysis code.
7085
7086         * statement.cs (TypeInfo, VariableMap): New public classes.
7087         (VariableInfo): New public class.  This is now responsible for
7088         checking whether a variable has been assigned.  It is used for
7089         parameters and local variables.
7090         (Block.EmitMeta): Take the InternalParameters as argument; compute
7091         the layout of the flow vectors here.
7092         (Block.LocalMap, Block.ParameterMap): New public properties.
7093         (FlowBranching): The .ctor doesn't get the InternalParameters
7094         anymore since Block.EmitMeta() now computes the layout of the flow
7095         vector.
7096         (MyStructInfo): This class is now known as `StructInfo' and nested
7097         in `TypeInfo'; we don't access this directly anymore.
7098
7099         * ecore.cs (IVariable): Added `VariableInfo VariableInfo'
7100         property and removed IsAssigned(), IsFieldAssigned(),
7101         SetAssigned() and SetFieldAssigned(); we now call them on the
7102         VariableInfo so we don't need to duplicate this code everywhere.
7103
7104         * expression.cs (ParameterReference): Added `Block block' argument
7105         to the .ctor.
7106         (LocalVariableReference, ParameterReference, This): The new
7107         VariableInfo class is now responsible for all the definite
7108         assignment stuff.
7109
7110         * codegen.cs (EmitContext.IsVariableAssigned, SetVariableAssigned,
7111         IsParameterAssigned, SetParameterAssigned): Removed.
7112
7113 2003-05-18  Martin Baulig  <martin@ximian.com>
7114
7115         * typemanager.cs (InitCoreTypes): Try calling
7116         SetCorlibTypeBuilders() with 4 args; if that fails, fall back to
7117         the 3-args-version.  Corlib now also needs our `void_type'.
7118         (GetMethod): Added overloaded version which takes an optional
7119         `bool report_errors' to allow lookups of optional methods.
7120
7121 2003-05-12  Martin Baulig  <martin@ximian.com>
7122
7123         * statement.cs (VariableInfo): Renamed to LocalInfo since it's
7124         only used for locals and not for parameters.
7125
7126 2003-05-12  Miguel de Icaza  <miguel@ximian.com>
7127
7128         * support.cs (InternalParameters.ParameterType): Return the
7129         ExternalType of the parameter.
7130
7131         * parameter.cs (Parameter.ExternalType): drop the two arguments,
7132         they were unused.
7133
7134 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
7135
7136         * class.cs (MethodData.Define): Do not set the `newslot' on
7137         interface members, if they are also flagged as "override".
7138
7139         * expression.cs (UnaryMutator.EmitCode): Simple workaround to emit
7140         better code for ++i and i++.  This only works for static fields
7141         and local variables.
7142
7143         * typemanager.cs (LookupDeclSpace): Add new method, sometimes we
7144         want to pull the DeclSpace out of the builder_to_declspace instead
7145         of the TypeBuilder (like in TypeContainer.FindMembers).
7146
7147         * class.cs (TypeContainer.FindMembers): Use LookupDeclSpace
7148         instead of LookupTypeContainer.  Fixes the crash on .NET for
7149         looking up interface members.
7150
7151         * const.cs: Create our own emit context during the Definition
7152         stage, so that constants are evaluated in the proper context, when
7153         a recursive definition happens.
7154
7155 2003-05-11  Martin Baulig  <martin@ximian.com>
7156
7157         * statement.cs (Block.CreateSwitchBlock): New method.  Creates a
7158         new block for a switch section.
7159         (Block.AddLabel, Block.LookupLabel): If we're a switch section, do
7160         the adding/lookup in the switch block.  Fixes #39828.
7161
7162 2003-05-09  Miguel de Icaza  <miguel@ximian.com>
7163
7164         * expression.cs (UnaryMutator.LoadOneAndEmitOp): Missing
7165         functionality: I needed to convert the data after I had performed
7166         the add/sub operation into the operands type size.
7167
7168         * ecore.cs (ImplicitReferenceConversion): When boxing an interface
7169         pass the type for the box operation, otherwise the resulting
7170         object would have been of type object.
7171
7172         (BoxedCast): Add constructor to specify the type to box as.
7173
7174 2003-05-07  Miguel de Icaza  <miguel@ximian.com>
7175
7176         * iterators.cs: I was reusing the `count' variable inadvertently,
7177         take steps to not allow this to happen.
7178
7179 2003-05-06  Miguel de Icaza  <miguel@ximian.com>
7180
7181         * attribute.cs (Attribute.Resolve): Params attributes are encoded
7182         by creating an array at the point where the params starts and
7183         putting all those arguments there, then adjusting the size of the
7184         array.
7185
7186 2003-05-05  Miguel de Icaza  <miguel@ximian.com>
7187
7188         * expression.cs (New.AddressOf): Implement interface
7189         IMemoryLocation.  This is used when the `new' operator is used in
7190         the context of an invocation to a method on a value type.
7191
7192         See http://bugzilla.ximian.com/show_bug.cgi?id=#42390 for an
7193         example. 
7194
7195         * namespace.cs: Also check the using aliases here.
7196
7197         * driver.cs: Move the test for using validity after the types have
7198         been entered, so we do a single pass that also includes the using
7199         aliases. 
7200
7201         * statement.cs (Try.Resolve): Avoid crashing if there is a failure
7202         in the regular case.   CreateSiblingForFinally is doing extra
7203         error checking.
7204
7205         * attribute.cs (GetAttributeArgumentExpression): Store the result
7206         on an out value, and use the return value to indicate failure
7207         instead of using null (which is a valid return for Constant.GetValue).
7208
7209         * statement.cs: Perform the analysis flow for the increment
7210         portion after the statement, because this will be the real flow of
7211         execution.  Fixes #42385
7212
7213         * codegen.cs (EmitContext.EmitArgument,
7214         EmitContext.EmitStoreArgument): New helper functions when the
7215         RemapToProxy flag is set.
7216
7217         * expression.cs (ParameterReference.EmitLdarg): Expose this useful
7218         function.
7219
7220         Add support for remapping parameters. 
7221
7222         * iterators.cs: Propagate parameter values;  Store parameter
7223         values in the proxy classes.
7224
7225 2003-05-04  Miguel de Icaza  <miguel@ximian.com>
7226
7227         * ecore.cs (FieldExpr): Fix an obvious bug.  static fields do not
7228         need a proxy reference;  I do not know what I was thinking
7229
7230         * cs-parser.jay (constructor_initializer): catch another error,
7231         and display nice message.
7232
7233         (field_declaration): catch void field declaration
7234         to flag a better error. 
7235
7236         * class.cs (MemberBase.CheckBase): Report an error instead of a
7237         warning if a new protected member is declared in a struct. 
7238         (Field.Define): catch the error of readonly/volatile.
7239
7240         * ecore.cs (FieldExpr.EmitAssign): reuse the field lookup.
7241
7242         (FieldExpr.AddressOf): ditto.  Catch error where the address of a
7243         volatile variable is taken
7244
7245 2003-05-02  Miguel de Icaza  <miguel@ximian.com>
7246
7247         * statement.cs (Fixed.Resolve): Report an error if we are not in
7248         an unsafe context.
7249
7250 2003-05-01  Miguel de Icaza  <miguel@ximian.com>
7251
7252         * typemanager.cs: reuse the code that handles type clashes for
7253         delegates and enumerations.
7254
7255         * class.cs (Report28): Always report.
7256
7257         * expression.cs (EncodeAsAttribute): Allow nulls here.
7258
7259 2003-04-28  Miguel de Icaza  <miguel@ximian.com>
7260
7261         * attribute.cs (Attribute.GetAttributeArgumentExpression): Moved
7262         the functionality for testing whether an expression is valid for
7263         an attribute here.  Also handle the case of arrays of elements
7264         being stored. 
7265
7266         * expression.cs (ArrayCreation.EncodeAsAttribute): Add support for
7267         encoding a linear array into an array of objects that are suitable
7268         to be passed to an CustomAttributeBuilder.
7269
7270         * delegate.cs: Check unsafe types being used outside of an Unsafe context.
7271
7272         * ecore.cs: (FieldExpr): Handle field remapping here.
7273
7274         * iteratators.cs: Pass the instance variable (if the method is an
7275         instance method) to the constructors, so we can access the field
7276         variables on the class.
7277
7278         TODO: Test this with structs.  I think the THIS variable on
7279         structs might have to be a pointer, and not a refenrece
7280
7281 2003-04-27  Miguel de Icaza  <miguel@ximian.com>
7282
7283         * codegen.cs (EmitContext.Mapvariable): Adds a mechanism to map
7284         local variables to fields in a proxy class.
7285
7286         * iterators.cs (PopulateProxy): Rename our internal fields to
7287         <XXX>.  
7288         Create a <THIS> field if we are an instance method, so we can
7289         reference our parent container variables.
7290         (MapVariable): Called back from the EmitContext code to enter a
7291         new variable to field mapping into the proxy class (we just create
7292         a FieldBuilder).
7293
7294         * expression.cs
7295         (LocalVariableReference.{Emit,EmitAssign,AddressOf}): Add support
7296         for using the remapped locals to fields.
7297
7298         I placed the code here, because that gives the same semantics to
7299         local variables, and only changes the Emit code.
7300
7301         * statement.cs (Fixed.Resolve): it is not allowed to have fixed
7302         statements inside iterators.
7303         (VariableInfo): Add a FieldBuilder for the cases when we are
7304         remapping local variables to fields in a proxy class
7305
7306         * ecore.cs (SimpleNameResolve): Avoid testing two times for
7307         current_block != null.
7308
7309         * statement.cs (Swithc.SimpleSwitchEmit): Removed code that did
7310         not cope with strings, as it has been moved to the
7311         TableSwitchEmit.  Fixed bug in switch generation.
7312
7313         * expression.cs (New.DoResolve): Provide more context for the user
7314         when reporting an error.
7315
7316         * ecore.cs (Expression.LoadFromPtr): Use ldind_i when loading
7317         pointers. 
7318
7319         * expression.cs (MemberAccess.DoResolve): When we get a type back,
7320         check the permissions for it.  Note than in a type-resolution
7321         context the check was already present in DeclSpace.ResolveType,
7322         but was missing from the MemberAccess.
7323
7324         (ArrayCreation.CheckIndices): warn if the user has
7325         more nested levels of expressions, but there are no more
7326         dimensions specified.  Avoids crash on bug 41906.
7327
7328 2003-04-26  Miguel de Icaza  <miguel@ximian.com>
7329
7330         * statement.cs (Block): replace Implicit bool, for a generic
7331         flags.   
7332         New flag: `Unchecked'.  This is used during the EmitMeta phase
7333         (which is out-of-line with the regular Resolve/Emit process for a
7334         statement, as this is done ahead of time, but still gets a chance
7335         to call constant resolve).
7336
7337         (Block.Flags): new enum for adding a new flag.
7338
7339         (Block.EmitMeta): track the state of unchecked.
7340
7341         (Unchecked): Set the "UnChecked" flags on any blocks we enclose,
7342         to enable constant resolution to work there as well.
7343
7344 2003-04-22  Miguel de Icaza  <miguel@ximian.com>
7345
7346         * typemanager.cs (ienumerable_type): Also look up
7347         System.Collections.IEnumerable. 
7348
7349 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
7350
7351         TODO: Test more than one conditional per method.
7352
7353         * class.cs (Indexer.Define): Report the location where the user is
7354         referencing the unsupported feature.
7355
7356         (MethodData): Overload the use of `conditionals' to
7357         minimize the creation of needless ArrayLists.   This saves roughly
7358         212kb on my machine.
7359
7360         (Method): Implement the new IIteratorContainer interface.
7361         (Method.SetYields): Implement the method by setting the ModFlags
7362         to contain METHOD_YIELDS.
7363
7364         * expression.cs (Unary.ResolveOperator): Use expr_type, not Expr,
7365         which just got set to null.
7366
7367         * iterators.cs: New file.
7368
7369         (Yield, YieldBreak): New statements.
7370
7371         * statement.cs (Return.Resolve): Flag an error if we are used in
7372         an iterator method.
7373
7374         * codegen.cs (InIterator): New flag set if the code is being
7375         compiled in an iterator method.
7376
7377         * modifiers.cs: New flag METHOD_YIELDS.  This modifier is an
7378         internal modifier, and we just use it to avoid adding extra
7379         fields, as this is seldom used.  
7380
7381         * cs-parser.jay: Add yield_statement (yield and yield break).
7382
7383         * driver.cs: New flag -v2 to turn on version 2 features. 
7384
7385         * cs-tokenizer.cs (Tokenizer): Add yield and __yield to the
7386         hashtable when v2 is enabled.
7387
7388 2003-04-20  Miguel de Icaza  <miguel@ximian.com>
7389
7390         * typemanager.cs (TypeManager.NamespaceClash): Use to check if
7391         there is already a namespace defined with this name.
7392
7393         (TypeManager.InitCoreTypes): Remove the temporary workaround, as
7394         people upgraded their corlibs.
7395
7396         (TypeManager.CoreLookupType): Use LookupTypeDirect, as we
7397         always use fully qualified types, no need to use the compiler
7398         front end.
7399
7400         (TypeManager.IsNamespace): Use binarysearch.
7401
7402         * class.cs (AddClass, AddStruct, AddInterface, AddEvent,
7403         AddDelegate): I did not quite use the new IsValid API properly: I
7404         have to pass the short-name and the fullname.  I was passing only
7405         the basename instead of the fullname sometimes. 
7406
7407         (TypeContainer.DefineType): call NamespaceClash.
7408
7409         * interface.cs (Interface.DefineType): use NamespaceClash before
7410         defining the type.
7411
7412         * delegate.cs (Delegate.DefineType): use NamespaceClash before
7413         defining the type.
7414
7415         * enum.cs: (Enum.DefineType): use NamespaceClash before
7416         defining the type.
7417
7418         * typemanager.cs (: 3-line patch that gives us some tasty 11%
7419         speed increase.  First, use the negative_hits cache when we get a
7420         negative.  Second, add the type with its full original name
7421         instead of the new . and + encoded name (reflection uses + to
7422         separate type from a nested type).  Use LookupTypeReflection
7423         directly which bypasses the type->name hashtable (that we already
7424         know does not contain the type.
7425
7426         * decl.cs (DeclSpace.ResolveTypeExpr): track the
7427         location/container type. 
7428
7429         * driver.cs: When passing utf8, use directly the UTF8Encoding.
7430
7431 2003-04-19  Miguel de Icaza  <miguel@ximian.com>
7432
7433         * decl.cs (ResolveTypeExpr): Mirror check acess here too.
7434
7435         * delegate.cs (NewDelegate.Resolve): Test whether an instance
7436         method is being referenced in the method group from a static
7437         context, and report error 120 if so.
7438
7439         * expression.cs, ecore.cs (Error_UnexpectedKind): New name for
7440         Error118. 
7441
7442         * typemanager.cs: Add intermediate namespaces (if a namespace A.B
7443         is created, we create the A namespace).
7444
7445         * cs-parser.jay: A namespace also introduces a DeclarationFound.
7446         Fixes #41591
7447
7448 2003-04-18  Miguel de Icaza  <miguel@ximian.com>
7449
7450         * typemanager.cs (GetReferenceType, GetPointerType): In .NET each
7451         invocation to ModuleBuilder.GetType with the same values will
7452         return a new type instance, so we need to cache its return
7453         values. 
7454
7455         * expression.cs (Binary.ResolveOperator): Only allow the compare
7456         operators on enums if they are of the same type.
7457
7458         * ecore.cs (Expression.ImplicitReferenceConversion): handle target
7459         types of ValueType on their own case.  Before we were giving them
7460         the same treatment as objects.
7461
7462         * decl.cs (DeclSpace.IsValid): IsValid takes the short name and
7463         fullname.  Short name is used to compare against container name.
7464         Fullname is used to check against defined namespace names.
7465
7466         * class.cs (AddProperty, AddField, AddClass, AddStruct, AddEnum,
7467         AddDelegate, AddEvent): Pass new parameter to DeclSpace.IsValid
7468
7469         (Method.CheckBase): Call parent.
7470         (MemberBase.CheckBase): Check for protected members on sealed
7471         classes.
7472         (PropertyBase.CheckBase): Call parent.
7473         (Field.Define): Call parent.
7474
7475         * report.cs: Negative error codes are now mapped to 8000 - code,
7476         so that the display is render more nicely.
7477
7478         * typemanager.cs: Do not use try/catch, instead report a regular
7479         error. 
7480
7481         (GetPointerType, GetReferenceType): These methods provide
7482         mechanisms to obtain the T* and T& from a T.  We had the code
7483         previously scattered around the code base, and it also used
7484         TypeManager.LookupType that would go through plenty of caches.
7485         This one goes directly to the type source.
7486
7487         In some places we did the Type.GetType followed by
7488         ModuleBuilder.GetType, but not in others, so this unifies the
7489         processing as well.
7490
7491         * namespace.cs (VerifyUsing): Perform a non-lazy approach to using
7492         statements now that we have namespace information.
7493
7494         * typemanager.cs (IsNamespace): New method, returns whether the
7495         string presented is a namespace or not.
7496
7497         (ComputeNamespaces): New public entry point, computes the list of
7498         available namespaces, using the GetNamespaces API call in Mono, or
7499         the slower version in MS.NET.   
7500
7501         Now before we start the semantic analysis phase, we have a
7502         complete list of namespaces including everything that the user has
7503         provided.
7504
7505         Deleted old code to cache namespaces in .nsc files.
7506
7507 2003-04-17  Miguel de Icaza  <miguel@ximian.com>
7508
7509         * class.cs: (TypeContainer.DefineDefaultConstructor): Use the
7510         class/struct location definition Location for the implicit
7511         constructor location.
7512
7513         (Operator.Define): Use the location of the operator for the
7514         implicit Method definition.
7515
7516         (Constructor.Emit): use the constructor location for the implicit
7517         base initializer constructor.
7518
7519         * ecore.cs: Remove ITypeExpression.  This interface is now gone,
7520         and the Expression class now contains two new methods:
7521
7522         ResolveAsTypeStep and ResolveAsTypeTerminal.  This is used to
7523         isolate type lookup from the rest of the resolution process.
7524
7525         Since we use Expressions to hold type definitions due to the way
7526         we parse the input we have historically overloaded Resolve to
7527         perform the Type lookups if a special flag is passed.  Now this is
7528         eliminated and two methods take their place. 
7529
7530         The differences in the two methods between xStep and xTerminal is
7531         that xStep is involved in our current lookup system that uses
7532         SimpleNames to compose a name, while xTerminal is used just to
7533         catch the case where the simplename lookup failed.
7534
7535 2003-04-16  Miguel de Icaza  <miguel@ximian.com>
7536
7537         * expression.cs (ResolveMemberAccess): Remove redundant code.
7538         TypeExpr expressions are always born fully resolved.
7539
7540         * interface.cs (PopulateMethod): Do not lookup the types twice.
7541         We were doing it once during SemanticAnalysis and once during
7542         PopulateMethod.
7543
7544         * cs-parser.jay: Due to our hack in the grammar, things like A.B[]
7545         in local variable type definitions, were being returned as a
7546         SimpleName (we decomposed everything into a string), that is
7547         because primary_expression was being used instead of a type in the
7548         grammar (reduce/reduce conflicts).
7549
7550         The part that was wrong is that we converted the expression into a
7551         string (an oversimplification in one hand, compounded with primary
7552         expressions doing string concatenation).
7553
7554         So things like:
7555
7556         A.B.C [] x;
7557
7558         Would return "A.B.C[]" as a SimpleName.  This stopped things like
7559         using clauses from working on this particular context.  And a type
7560         was being matched directly against "A.B.C[]".
7561
7562         We now use the correct approach, and allow for ComposedCast to be
7563         part of the unary expression.  So the "A.B.C []" become a composed
7564         cast of "A.B.C" (as a nested group of MemberAccess with a
7565         SimpleName at the end) plus the rank composition "[]". 
7566
7567         Also fixes 35567
7568
7569 2003-04-10  Miguel de Icaza  <miguel@ximian.com>
7570
7571         * decl.cs (CheckAccessLevel): Implement the NestedPrivate rules
7572         for the access level checking.
7573
7574         * class.cs: Cosmetic changes.  Renamed `TypeContainer parent' to
7575         `TypeContainer container', because I kept getting confused when I
7576         was debugging this code.
7577
7578         * expression.cs (Indexers): Instead of tracking getters/setters,
7579         we now track them in parallel.  We create one arraylist less, but
7580         most importantly it is possible now for the LValue code to find a
7581         matching get for a set.
7582
7583         (IndexerAccess.DoResolveLValue): Update the code.
7584         GetIndexersForType has been modified already to extract all the
7585         indexers from a type.  The code assumed it did not.
7586
7587         Also make the code set the correct return type for the indexer.
7588         This was fixed a long time ago for properties, but was missing for
7589         indexers.  It used to be void_type.
7590
7591         (Binary.Emit): Test first for doubles instead of
7592         floats, as they are more common.
7593
7594         (Binary.EmitBranchable): Use the .un version of the branch opcodes
7595         when dealing with floats and the <=, >= operators.  This fixes bug
7596         #39314 
7597
7598         * statement.cs (Foreach.EmitArrayForeach): bug fix: The code used
7599         to load the array value by emitting a load on the foreach variable
7600         type.  This was incorrect.  
7601
7602         We now emit the code to load an element using the the array
7603         variable type, and then we emit the conversion operator.
7604
7605         Fixed #40176
7606
7607 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
7608
7609         * attribute.cs: Avoid allocation of ArrayLists in the common case.
7610
7611 2003-04-09  Miguel de Icaza  <miguel@ximian.com>
7612
7613         * class.cs (MethodSignature.InheritableMemberSignatureCompare):
7614         test for protection before we test for signatures. 
7615
7616         (MethodSignature.ToString): implement.
7617
7618         * expression.cs (Unary.TryReduceNegative): Add missing minus sign
7619         to the case where we reduced into a LongConstant.
7620
7621         * decl.cs (CheckAccessLevel): If the type is an array, we can not
7622         depend on whether the information is acurrate, because the
7623         Microsoft runtime will always claim that the array type is public,
7624         regardless of the real state.
7625
7626         If the type is a pointer, another problem happens: the type is
7627         reported as non-public in Microsoft.  
7628
7629         In both cases we have to call CheckAccessLevel recursively with
7630         the underlying type as the argument to be tested.
7631
7632 2003-04-08  Miguel de Icaza  <miguel@ximian.com>
7633
7634         * assign.cs (Assign.Emit): If we are dealing with a compound
7635         assignment expression, we should use the code path that stores the
7636         intermediate result in a temporary value.  This fixes #40903.
7637
7638         *expression.cs (Indirection.ToString): Provide ToString method for
7639         debugging. 
7640
7641 2003-04-08  Zoltan Varga  <vargaz@freemail.hu>
7642
7643         * class.cs: Null out fields holding references to Block objects so
7644         they can be garbage collected.
7645
7646         * expression.cs (OverloadResolve): Remove unused local.
7647
7648 2003-04-07  Martin Baulig  <martin@ximian.com>
7649
7650         * codegen.cs (EmitContext.CurrentFile): New public field.
7651         (EmitContext.Mark): Use the CurrentFile to check whether the
7652         location is in the correct file.
7653         (EmitContext.EmitTopBlock): Initialize CurrentFile here.
7654
7655 2003-04-07  Martin Baulig  <martin@ximian.com>
7656
7657         * ecore.cs (Expression.ResolveBoolean): Don't call ec.Mark().
7658
7659         * codegen.cs (EmitContext.EmitTopBlock): Don't call Mark() on the
7660         location.  [FIXME: The location argument which gets passed to this
7661         method is sometimes wrong!]
7662
7663 2003-04-07  Nick Drochak <ndrochak@gol.com>
7664
7665         * codegen.cs: Be more verbose when we can't find the symbol writer dll.
7666
7667 2003-04-07  Miguel de Icaza  <miguel@ximian.com>
7668
7669         * expression.cs (Indirection.EmitAssign): We were using the
7670         temporary, but returning immediately instead of continuing the
7671         EmitAssing flow.
7672
7673 2003-04-06  Martin Baulig  <martin@ximian.com>
7674
7675         * ecore.cs (SimpleName.SimpleNameResolve): Don't report an error
7676         if it's a nested child, but also deriving from the outer class.
7677         See test 190.cs.
7678
7679         * typemanager.cs (IsNestedChildOf): Make this work if it's a
7680         nested child, but also deriving from the outer class.  See
7681         test-190.cs.
7682         (FilterWithClosure): We may access private members of the outer
7683         class if we're a nested child and deriving from the outer class.
7684         (RealMemberLookup): Only set `closure_private_ok' if the
7685         `original_bf' contained BindingFlags.NonPublic.
7686
7687 2003-04-05  Martin Baulig  <martin@ximian.com>
7688
7689         * expression.cs (SizeOf.DoResolve): Use ResolveTypeExpr, so we can
7690         probe if its a type parameter, and if so, flag an error.
7691
7692         * decl.cs: Move here the SetParameterInfo code from class.cs.
7693         Handle IsGeneric here.
7694
7695         Handle a variety of errors in the parameter info definition.
7696
7697         * ecore.cs (SimpleName.DoResolveType): Handle look ups for generic
7698         type parameters here.
7699
7700         * cs-parser.jay (class_declaration): report errors for parameters
7701         here as well.
7702
7703 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
7704
7705         * generic.cs: New file, contains support code for generics.
7706
7707         * cs-parser.jay: Remove OP_SHIFT_LEFT, OP_SHIFT_RIGHT,
7708         OP_SHIFT_LEFT_ASSIGN, OP_SHIFT_RIGHT_ASSIGN.
7709
7710         Update parser for the above removals.
7711
7712         * cs-tokenizer.cs: Do not handle <<= or >>= specially.  This is
7713         now taken care of in the parser.
7714
7715 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
7716
7717         * class.cs (Event.Define): Do not allow abstract events to have
7718         initializers. 
7719
7720 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
7721
7722         * cs-parser.jay: Add error productions for ADD/REMOVE missing a
7723         block in event declarations.
7724
7725         * ecore.cs (FieldExpr.AddressOf): If our instance expression is a
7726         value type, get its address.
7727
7728         * expression.cs (Is.Emit): For action `LeaveOnStack' we were
7729         leaving a class on the stack instead of a boolean value (int
7730         0/1).  Change the code so we compare against null, and then the
7731         result against zero.
7732
7733         * class.cs (TypeContainer.GetClassBases): We were checking for the
7734         parent class being sealed too late.
7735
7736         * expression.cs (Binary.Emit): For <= and >= when dealing with
7737         floating point values, use cgt.un and clt.un instead of cgt and
7738         clt alone.
7739
7740 2003-04-01  Zoltan Varga  <vargaz@freemail.hu>
7741
7742         * statement.cs: Apply the same optimization as MS: skip the 
7743         GetEnumerator returning an IEnumerator, and use the one returning a 
7744         CharEnumerator instead. This allows us to avoid the try-finally block 
7745         and the boxing.
7746
7747 2003-03-31  Gaurav Vaish <gvaish_mono@lycos.com>
7748
7749         * cs-parser.jay: Attributes cannot be applied to
7750                          namespaces. Fixes #40473
7751
7752 2003-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7753
7754         * class.cs:
7755         (Add*): check if the name is valid using the full name for constants,
7756         fields, properties and events.
7757
7758 2003-03-28  Miguel de Icaza  <miguel@ximian.com>
7759
7760         * enum.cs (Enum.DefineType, Enum.IsValidEnumConstant): Also allow
7761         char constants to be part of the enumeration.
7762
7763         * expression.cs (Conditional.DoResolve): Add support for operator
7764         true. Implements the missing functionality from 14.12
7765
7766         * class.cs (TypeContainer.CheckPairedOperators): Report error for missmatch on
7767         operator true/false as required by the spec.
7768
7769         * expression.cs (Unary.ResolveOperator): In LogicalNot, do an
7770         implicit conversion to boolean.
7771
7772         * statement.cs (Statement.ResolveBoolean): A boolean expression is
7773         also one where the type implements `operator true'. 
7774
7775         * ecore.cs (Expression.GetOperatorTrue): New helper routine to
7776         get an expression that will invoke operator true based on an
7777         expression.  
7778
7779         (GetConversionOperators): Removed the hack that called op_True
7780         here.  
7781
7782         (Expression.ResolveBoolean): Move this from Statement.
7783
7784 2003-03-17  Miguel de Icaza  <miguel@ximian.com>
7785
7786         * ecore.cs (FieldExpr): do not allow initialization of initonly
7787         fields on derived classes
7788
7789 2003-03-13  Martin Baulig  <martin@ximian.com>
7790
7791         * statement.cs (Block.Emit): Call ig.BeginScope() and
7792         ig.EndScope() when compiling with debugging info; call
7793         LocalBuilder.SetLocalSymInfo _after_ opening the scope.
7794
7795 2003-03-08  Miguel de Icaza  <miguel@ximian.com>
7796
7797         * expression.cs (Indexers): Do not construct immediately, allow
7798         for new members to be appended as we go.  Fixes 38143
7799
7800 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7801
7802         * expression.cs: save/restore context when resolving an unchecked
7803         expression.
7804
7805 2003-03-05  Miguel de Icaza  <miguel@ximian.com>
7806
7807         * cfold.cs: Catch division by zero in modulus operator during
7808         constant folding.
7809
7810 2003-03-03  Miguel de Icaza  <miguel@ximian.com>
7811
7812         * interface.cs (Interface.DefineMembers): Avoid defining members
7813         twice. 
7814
7815 2003-02-27  Miguel de Icaza  <miguel@ximian.com>
7816
7817         * driver.cs: handle the +/- options for -noconfig
7818
7819         * statement.cs (Unckeched.Resolve): Also track the state of
7820         unchecked in the Resolve phase.
7821
7822 2003-02-27  Martin Baulig  <martin@ximian.com>
7823
7824         * ecore.cs (Expression.MemberLookup): Don't create a
7825         MethodGroupExpr for something which is not a method.  Fixes #38291.
7826
7827 2003-02-25  Miguel de Icaza  <miguel@ximian.com>
7828
7829         * class.cs (MemberBase.CheckParameters): Also check that the type
7830         is unmanaged if it is a pointer.
7831
7832         * expression.cs (SizeOf.Resolve): Add location information.
7833
7834         * statement.cs (Block.EmitMeta): Flag error (208) if a pointer to
7835         a managed type is declared.
7836
7837         * expression.cs (Invocation.VerifyArgumentsCompat): Check for the
7838         parameter modifiers as well.  Fixes bug 38606
7839
7840         * class.cs: Very sad.  Am backing out the speed up changes
7841         introduced by the ArrayList -> Array in the TypeContainer, as they
7842         were not actually that much faster, and introduced a bug (no error
7843         reports on duplicated methods).
7844
7845         * assign.cs (CompoundAssign.DoLResolve): Resolve the original
7846         source first, this will guarantee that we have a valid expression
7847         before calling in lower levels functions that will require a
7848         resolved object.  Then use this original_source in the
7849         target.ResolveLValue instead of the original source that was
7850         passed to us.
7851
7852         Another change.  Use target.Resolve instead of LValueResolve.
7853         Although we are resolving for LValues, we will let the Assign code
7854         take care of that (it will be called again from Resolve).  This
7855         basically allows code like this:
7856
7857         class X { X operator + (X x, object o) {} X this [int idx] { get; set; } }
7858         class Y { void A (X x) { x [0] += o; }
7859
7860         The problem was that the indexer was trying to resolve for
7861         set_Item (idx, object o) and never finding one.  The real set_Item
7862         was set_Item (idx, X).  By delaying the process we get the right
7863         semantics. 
7864
7865         Fixes bug 36505
7866
7867 2003-02-23  Martin Baulig  <martin@ximian.com>
7868
7869         * statement.cs (Block.Emit): Override this and set ec.CurrentBlock
7870         while calling DoEmit ().
7871
7872         * codegen.cs (EmitContext.Mark): Don't mark locations in other
7873         source files; if you use the #line directive inside a method, the
7874         compiler stops emitting line numbers for the debugger until it
7875         reaches the end of the method or another #line directive which
7876         restores the original file.
7877
7878 2003-02-23  Martin Baulig  <martin@ximian.com>
7879
7880         * statement.cs (FlowBranching.UsageVector.MergeChildren): Fix bug #37708.
7881
7882 2003-02-23  Martin Baulig  <martin@ximian.com>
7883
7884         * statement.cs (Block.AddChildVariableNames): We need to call this
7885         recursively, not just for our immediate children.
7886
7887 2003-02-23  Martin Baulig  <martin@ximian.com>
7888
7889         * class.cs (Event.Define): Always make the field private, like csc does.
7890
7891         * typemanager.cs (TypeManager.RealMemberLookup): Make events
7892         actually work, fixes bug #37521.
7893
7894 2003-02-23  Miguel de Icaza  <miguel@ximian.com>
7895
7896         * delegate.cs: When creating the various temporary "Parameters"
7897         classes, make sure that we call the ComputeAndDefineParameterTypes
7898         on those new parameters (just like we do with the formal ones), to
7899         allow them to be resolved in the context of the DeclSpace.
7900
7901         This fixes the bug that Dick observed in Bugzilla #38530.
7902
7903 2003-02-22  Miguel de Icaza  <miguel@ximian.com>
7904
7905         * expression.cs (ResolveMemberAccess): When resolving a constant,
7906         do not attempt to pull a constant if the value was not able to
7907         generate a valid constant.
7908
7909         * const.cs (LookupConstantValue): Do not report more errors than required.
7910
7911 2003-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7912
7913         * expression.cs: fixes bug #38328.
7914
7915 2003-02-18  Miguel de Icaza  <miguel@ximian.com>
7916
7917         * class.cs: Changed all the various members that can be part of a
7918         class from being an ArrayList to be an Array of the right type.
7919         During the DefineType type_list, interface_list, delegate_list and
7920         enum_list are turned into types, interfaces, delegates and enums
7921         arrays.  
7922
7923         And during the member population, indexer_list, event_list,
7924         constant_list, field_list, instance_constructor_list, method_list,
7925         operator_list and property_list are turned into their real arrays.
7926
7927         Although we could probably perform this operation earlier, for
7928         good error reporting we need to keep the lists and remove the
7929         lists for longer than required.
7930
7931         This optimization was triggered by Paolo profiling the compiler
7932         speed on the output of `gen-sample-program.pl' perl script. 
7933
7934         * decl.cs (DeclSpace.ResolveType): Set the ContainerType, so we do
7935         not crash in methods like MemberLookupFailed that use this field.  
7936
7937         This problem arises when the compiler fails to resolve a type
7938         during interface type definition for example.
7939
7940 2003-02-18  Miguel de Icaza  <miguel@ximian.com>
7941
7942         * expression.cs (Indexers.GetIndexersForType): Interfaces do not
7943         inherit from System.Object, so we have to stop at null, not only
7944         when reaching System.Object.
7945
7946 2003-02-17  Miguel de Icaza  <miguel@ximian.com>
7947
7948         * expression.cs: (Indexers.GetIndexersForType): Martin's fix used
7949         DeclaredOnly because the parent indexer might have had a different
7950         name, but did not loop until the top of the hierarchy was reached.
7951
7952         The problem this one fixes is 35492: when a class implemented an
7953         indexer from an interface, we were getting the interface method
7954         (which was abstract) and we were flagging an error (can not invoke
7955         abstract method).
7956
7957         This also keeps bug 33089 functioning, and test-148 functioning.
7958
7959         * typemanager.cs (IsSpecialMethod): The correct way of figuring
7960         out if a method is special is to see if it is declared in a
7961         property or event, or whether it is one of the predefined operator
7962         names.   This should fix correctly #36804.
7963
7964 2003-02-15  Miguel de Icaza  <miguel@ximian.com>
7965
7966         The goal here is to remove the dependency on EmptyCast.Peel ().
7967         Killing it completely.
7968
7969         The problem is that currently in a number of places where
7970         constants are expected, we have to "probe" for an EmptyCast, and
7971         Peel, which is not the correct thing to do, as this will be
7972         repetitive and will likely lead to errors. 
7973
7974         The idea is to remove any EmptyCasts that are used in casts that
7975         can be reduced to constants, so we only have to cope with
7976         constants. 
7977
7978         This bug hunt was triggered by Bug 37363 and the desire to remove
7979         the duplicate pattern where we were "peeling" emptycasts to check
7980         whether they were constants.  Now constants will always be
7981         constants.
7982
7983         * ecore.cs: Use an enumconstant here instead of wrapping with
7984         EmptyCast.  
7985
7986         * expression.cs (Cast.TryReduce): Ah, the tricky EnumConstant was
7987         throwing me off.  By handling this we can get rid of a few hacks.
7988
7989         * statement.cs (Switch): Removed Peel() code.
7990
7991 2003-02-14  Miguel de Icaza  <miguel@ximian.com>
7992
7993         * class.cs: Location information for error 508
7994
7995         * expression.cs (New.DoResolve): Add a guard against double
7996         resolution of an expression.  
7997
7998         The New DoResolve might be called twice when initializing field
7999         expressions (see EmitFieldInitializers, the call to
8000         GetInitializerExpression will perform a resolve on the expression,
8001         and later the assign will trigger another resolution
8002
8003         This leads to bugs (#37014)
8004
8005         * delegate.cs: The signature for EndInvoke should contain any ref
8006         or out parameters as well.  We were not doing this in the past. 
8007
8008         * class.cs (Field.Define): Do not overwrite the type definition
8009         inside the `volatile' group.  Turns out that volatile enumerations
8010         were changing the type here to perform a validity test, which
8011         broke conversions. 
8012
8013 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
8014
8015         * ecore.cs (FieldExpr.AddressOf): In the particular case of This
8016         and structs, we do not want to load the instance variable
8017
8018         (ImplicitReferenceConversion, ImplicitReferenceConversionExists):
8019         enum_type has to be handled like an object reference (implicit
8020         conversions exists from this to object), but the regular IsClass
8021         and IsValueType tests will never return true for this one.
8022
8023         Also we use TypeManager.IsValueType instead of type.IsValueType,
8024         just for consistency with the rest of the code (this is only
8025         needed if we ever use the construct exposed by test-180.cs inside
8026         corlib, which we dont today).
8027
8028 2003-02-12  Zoltan Varga  <vargaz@freemail.hu>
8029
8030         * attribute.cs (ApplyAttributes): apply all MethodImplAttributes, not
8031         just InternalCall.
8032
8033 2003-02-09  Martin Baulig  <martin@ximian.com>
8034
8035         * namespace.cs (Namespace..ctor): Added SourceFile argument.
8036         (Namespace.DefineNamespaces): New static public method; this is
8037         called when we're compiling with debugging to add all namespaces
8038         to the symbol file.
8039
8040         * tree.cs (Tree.RecordNamespace): Added SourceFile argument and
8041         pass it to the Namespace's .ctor.
8042
8043         * symbolwriter.cs (SymbolWriter.OpenMethod): Added TypeContainer
8044         and MethodBase arguments; pass the namespace ID to the symwriter;
8045         pass the MethodBase instead of the token to the symwriter.
8046         (SymbolWriter.DefineNamespace): New method to add a namespace to
8047         the symbol file.
8048
8049 2003-02-09  Martin Baulig  <martin@ximian.com>
8050
8051         * symbolwriter.cs: New file.  This is a wrapper around
8052         ISymbolWriter with a cleaner API.  We'll dynamically Invoke()
8053         methods here in near future.
8054
8055 2003-02-09  Martin Baulig  <martin@ximian.com>
8056
8057         * codegen.cs (EmitContext.Mark): Just pass the arguments to
8058         ILGenerator.MarkSequencePoint() which are actually used by the
8059         symbol writer.
8060
8061 2003-02-09  Martin Baulig  <martin@ximian.com>
8062
8063         * location.cs (SourceFile): New public sealed class.  This
8064         contains the name and an index which is used in the location's token.
8065         (Location): Reserve an appropriate number of bits in the token for
8066         the source file instead of walking over that list, this gives us a
8067         really huge performance improvement when compiling with debugging.
8068
8069         * driver.cs (Driver.parse, Driver.tokenize_file): Take a
8070         `SourceFile' argument instead of a string.
8071         (Driver.ProcessFile): Add all the files via Location.AddFile(),
8072         but don't parse/tokenize here, we need to generate the list of all
8073         source files before we do that.
8074         (Driver.ProcessFiles): New static function.  Parses/tokenizes all
8075         the files.
8076
8077         * cs-parser.jay (CSharpParser): Take a `SourceFile' argument
8078         instead of a string.
8079
8080         * cs-tokenizer.cs (Tokenizer): Take `SourceFile' argument instead
8081         of a string.
8082
8083 2003-02-09  Martin Baulig  <martin@ximian.com>
8084
8085         * cs-tokenizer.cs (Tokenizer.PreProcessLine): Also reset the
8086         filename on `#line default'.
8087
8088 Sat Feb 8 17:03:16 CET 2003 Paolo Molaro <lupus@ximian.com>
8089
8090         * statement.cs: don't clear the pinned var when the fixed statement
8091         returns from the method (fixes bug#37752).
8092
8093 Sat Feb 8 12:58:06 CET 2003 Paolo Molaro <lupus@ximian.com>
8094
8095         * typemanager.cs: fix from mathpup@mylinuxisp.com (Marcus Urban) 
8096         to IsValueType.
8097
8098 2003-02-07  Martin Baulig  <martin@ximian.com>
8099
8100         * driver.cs: Removed the `--debug-args' command line argument.
8101
8102         * codegen.cs (CodeGen.SaveSymbols): Removed, this is now done
8103         automatically by the AsssemblyBuilder.
8104         (CodeGen.InitializeSymbolWriter): We don't need to call any
8105         initialization function on the symbol writer anymore.  This method
8106         doesn't take any arguments.
8107
8108 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
8109
8110         * driver.cs: (AddAssemblyAndDeps, LoadAssembly): Enter the types
8111         from referenced assemblies as well.
8112
8113 2003-02-02  Martin Baulig  <martin@ximian.com>
8114
8115         * class.cs (MethodData.Emit): Generate debugging info for external methods.
8116
8117 2003-02-02  Martin Baulig  <martin@ximian.com>
8118
8119         * class.cs (Constructor.Emit): Open the symbol writer before
8120         emitting the constructor initializer.
8121         (ConstructorInitializer.Emit): Call ec.Mark() to allow
8122         single-stepping through constructor initializers.
8123
8124 2003-01-30  Miguel de Icaza  <miguel@ximian.com>
8125
8126         * class.cs: Handle error 549: do not allow virtual methods in
8127         sealed classes. 
8128
8129 2003-02-01 Jackson Harper <jackson@latitudegeo.com>
8130
8131         * decl.cs: Check access levels when resolving types
8132
8133 2003-01-31 Jackson Harper <jackson@latitudegeo.com>
8134
8135         * statement.cs: Add parameters and locals set in catch blocks that might 
8136         return to set vector
8137
8138 2003-01-29  Miguel de Icaza  <miguel@ximian.com>
8139
8140         * class.cs (Operator): Set the SpecialName flags for operators.
8141
8142         * expression.cs (Invocation.DoResolve): Only block calls to
8143         accessors and operators on SpecialName methods.
8144
8145         (Cast.TryReduce): Handle conversions from char constants.
8146
8147
8148 Tue Jan 28 17:30:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8149
8150         * statement.cs: small memory and time optimization in FlowBranching.
8151
8152 2003-01-28  Pedro Mart  <yoros@wanadoo.es>
8153
8154         * expression.cs (IndexerAccess.DoResolveLValue): Resolve the same
8155         problem that the last fix but in the other sid (Set).
8156
8157         * expression.cs (IndexerAccess.DoResolve): Fix a problem with a null
8158         access when there is no indexer in the hierarchy.
8159
8160 2003-01-27 Jackson Harper <jackson@latitudegeo.com>
8161
8162         * class.cs: Combine some if statements.
8163
8164 2003-01-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8165
8166         * driver.cs: fixed bug #37187.
8167
8168 2003-01-27  Pedro Martinez Juliá  <yoros@wanadoo.es>
8169
8170         * expression.cs (IndexerAccess.DoResolve): Before trying to resolve
8171         any indexer, it's needed to build a list with all the indexers in the
8172         hierarchy (AllGetters), else we have problems. Fixes #35653.
8173
8174 2003-01-23  Miguel de Icaza  <miguel@ximian.com>
8175
8176         * class.cs (MethodData.Define): It is wrong for an interface
8177         implementation to be static in both cases: explicit and implicit.
8178         We were only handling this in one case.
8179
8180         Improve the if situation there to not have negations.
8181
8182         * class.cs (Field.Define): Turns out that we do not need to check
8183         the unsafe bit on field definition, only on usage.  Remove the test.
8184
8185 2003-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8186
8187         * driver.cs: use assembly.Location instead of Codebase (the latest
8188         patch made mcs fail when using MS assemblies).
8189
8190 2003-01-21  Tim Haynes <thaynes@openlinksw.com>
8191
8192         * driver.cs: use DirectorySeparatorChar instead of a hardcoded "/" to
8193         get the path to *corlib.dll.
8194
8195 2003-01-21  Nick Drochak <ndrochak@gol.com>
8196
8197         * cs-tokenizer.cs:
8198         * pending.cs:
8199         * typemanager.cs: Remove compiler warnings
8200
8201 2003-01-20  Duncan Mak  <duncan@ximian.com>
8202
8203         * AssemblyInfo.cs: Bump the version number to 0.19.
8204
8205 2003-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8206
8207         * cs-tokenizer.cs: little fixes to line numbering when #line is used.
8208
8209 2003-01-18  Zoltan Varga  <vargaz@freemail.hu>
8210
8211         * class.cs (Constructor::Emit): Emit debugging info for constructors.
8212
8213 2003-01-17  Miguel de Icaza  <miguel@ximian.com>
8214
8215         * cs-parser.jay: Small fix: we were not comparing the constructor
8216         name correctly.   Thanks to Zoltan for the initial pointer.
8217
8218 2003-01-16 Jackson Harper <jackson@latitudegeo.com>
8219
8220         * cs-tokenizer.cs: Set file name when specified with #line
8221
8222 2003-01-15  Miguel de Icaza  <miguel@ximian.com>
8223
8224         * cs-parser.jay: Only perform the constructor checks here if we
8225         are named like the class;  This will help provider a better
8226         error.  The constructor path is taken when a type definition is
8227         not found, but most likely the user forgot to add the type, so
8228         report that rather than the constructor error.
8229
8230 Tue Jan 14 10:36:49 CET 2003 Paolo Molaro <lupus@ximian.com>
8231
8232         * class.cs, rootcontext.cs: small changes to avoid unnecessary memory
8233         allocations.
8234
8235 2003-01-13 Jackson Harper <jackson@latitudegeo.com>
8236
8237         * cs-parser.jay: Add cleanup call.
8238
8239 2003-01-13  Duncan Mak  <duncan@ximian.com>
8240
8241         * cs-tokenizer.cs (Cleanup): Rename to 'cleanup' to make it more
8242         consistent with other methods.
8243
8244 2003-01-13 Jackson Harper <jackson@latitudegeo.com>
8245
8246         * cs-tokenizer.cs: Add Cleanup method, also fix #region error messages.
8247
8248 Sun Jan 12 19:58:42 CET 2003 Paolo Molaro <lupus@ximian.com>
8249
8250         * attribute.cs: only set GuidAttr to true when we have a
8251         GuidAttribute.
8252
8253 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8254
8255         * ecore.cs:
8256         * expression.cs:
8257         * typemanager.cs: fixes to allow mcs compile corlib with the new
8258         Type.IsSubclassOf fix.
8259
8260 2003-01-08  Miguel de Icaza  <miguel@ximian.com>
8261
8262         * expression.cs (LocalVariableReference.DoResolve): Classify a
8263         constant as a value, not as a variable.   Also, set the type for
8264         the variable.
8265
8266         * cs-parser.jay (fixed_statement): take a type instead of a
8267         pointer_type, so we can produce a better error message later.
8268
8269         * statement.cs (Fixed.Resolve): Flag types that are not pointers
8270         as an error.  
8271
8272         (For.DoEmit): Make inifinite loops have a
8273         non-conditional branch back.
8274
8275         (Fixed.DoEmit): First populate the pinned variables, then emit the
8276         statement, then clear the variables.  Before I was emitting the
8277         code once for each fixed piece.
8278
8279
8280 2003-01-08  Martin Baulig  <martin@ximian.com>
8281
8282         * statement.cs (FlowBranching.MergeChild): A break in a
8283         SWITCH_SECTION does not leave a loop.  Fixes #36155.
8284
8285 2003-01-08  Martin Baulig  <martin@ximian.com>
8286
8287         * statement.cs (FlowBranching.CheckOutParameters): `struct_params'
8288         lives in the same number space than `param_map'.  Fixes #36154.
8289
8290 2003-01-07  Miguel de Icaza  <miguel@ximian.com>
8291
8292         * cs-parser.jay (constructor_declaration): Set the
8293         Constructor.ModFlags before probing for it.  This makes the
8294         compiler report 514, 515 and 132 (the code was there, but got
8295         broken). 
8296
8297         * statement.cs (Goto.Resolve): Set `Returns' to ALWAYS.
8298         (GotoDefault.Resolve): Set `Returns' to ALWAYS.
8299         (GotoCase.Resolve): Set `Returns' to ALWAYS.
8300
8301 Tue Jan 7 18:32:24 CET 2003 Paolo Molaro <lupus@ximian.com>
8302
8303         * enum.cs: create the enum static fields using the enum type.
8304
8305 Tue Jan 7 18:23:44 CET 2003 Paolo Molaro <lupus@ximian.com>
8306
8307         * class.cs: don't try to create the ParamBuilder for the return
8308         type if it's not needed (and handle it breaking for the ms runtime
8309         anyway).
8310
8311 2003-01-06 Jackson Harper <jackson@latitudegeo.com>
8312
8313         * cs-tokenizer.cs: Add REGION flag to #region directives, and add checks to make sure that regions are being poped correctly
8314
8315 2002-12-29  Miguel de Icaza  <miguel@ximian.com>
8316
8317         * cs-tokenizer.cs (get_cmd_arg): Fixups to allow \r to terminate
8318         the command.   This showed up while compiling the JANET source
8319         code, which used \r as its only newline separator.
8320
8321 2002-12-28  Miguel de Icaza  <miguel@ximian.com>
8322
8323         * class.cs (Method.Define): If we are an operator (because it
8324         reuses our code), then set the SpecialName and HideBySig.  #36128
8325
8326 2002-12-22  Miguel de Icaza  <miguel@ximian.com>
8327
8328         * ecore.cs (FieldExpr.DoResolve): Instead of throwing an
8329         exception, report error 120 `object reference required'.
8330
8331         * driver.cs: Add --pause option, used during to measure the size
8332         of the process as it goes with --timestamp.
8333
8334         * expression.cs (Invocation.DoResolve): Do not allow methods with
8335         SpecialName to be invoked.
8336
8337 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
8338
8339         * cs-tokenizer.cs: Small fix to the parser: compute the ascii
8340         number before adding it.
8341
8342 2002-12-21  Ravi Pratap  <ravi@ximian.com>
8343
8344         * ecore.cs (StandardImplicitConversion): When in an unsafe
8345         context, we allow conversion between void * to any other pointer
8346         type. This fixes bug #35973.
8347
8348 2002-12-20 Jackson Harper <jackson@latitudegeo.com>
8349
8350         * codegen.cs: Use Path.GetFileNameWithoutExtension so an exception
8351         is not thrown when extensionless outputs are used 
8352
8353 2002-12-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8354
8355         * rootcontext.cs: fixed compilation of corlib.
8356
8357 2002-12-19  Miguel de Icaza  <miguel@ximian.com>
8358
8359         * attribute.cs (Attributes.Contains): Add new method.
8360
8361         * class.cs (MethodCore.LabelParameters): if the parameter is an
8362         `out' parameter, check that no attribute `[In]' has been passed.
8363
8364         * enum.cs: Handle the `value__' name in an enumeration.
8365
8366 2002-12-14  Jaroslaw Kowalski <jarek@atm.com.pl>
8367
8368         * decl.cs: Added special case to allow overrides on "protected
8369         internal" methods
8370
8371 2002-12-18  Ravi Pratap  <ravi@ximian.com>
8372
8373         * attribute.cs (Attributes.AddAttributeSection): Rename to this
8374         since it makes much more sense.
8375
8376         (Attributes.ctor): Don't require a Location parameter.
8377
8378         * rootcontext.cs (AddGlobalAttributeSection): Rename again.
8379
8380         * attribute.cs (ApplyAttributes): Remove extra Location parameters
8381         since we already have that information per attribute.
8382
8383         * everywhere : make appropriate changes.
8384
8385         * class.cs (LabelParameters): Write the code which actually
8386         applies attributes to the return type. We can't do this on the MS
8387         .NET runtime so we flag a warning in the case an exception is
8388         thrown.
8389
8390 2002-12-18  Miguel de Icaza  <miguel@ximian.com>
8391
8392         * const.cs: Handle implicit null conversions here too.
8393
8394 2002-12-17  Ravi Pratap  <ravi@ximian.com>
8395
8396         * class.cs (MethodCore.LabelParameters): Remove the extra
8397         Type [] parameter since it is completely unnecessary. Instead
8398         pass in the method's attributes so that we can extract
8399         the "return" attribute.
8400
8401 2002-12-17  Miguel de Icaza  <miguel@ximian.com>
8402
8403         * cs-parser.jay (parse): Use Report.Error to flag errors instead
8404         of ignoring it and letting the compile continue.
8405
8406         * typemanager.cs (ChangeType): use an extra argument to return an
8407         error condition instead of throwing an exception.
8408
8409 2002-12-15  Miguel de Icaza  <miguel@ximian.com>
8410
8411         * expression.cs (Unary.TryReduce): mimic the code for the regular
8412         code path.  Perform an implicit cast in the cases where we can
8413         implicitly convert to one of the integral types, and then reduce
8414         based on that constant.   This fixes bug #35483.
8415
8416 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8417
8418         * typemanager.cs: fixed cut & paste error in GetRemoveMethod.
8419
8420 2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8421
8422         * namespace.cs: fixed bug #35489.
8423
8424 2002-12-12  Miguel de Icaza  <miguel@ximian.com>
8425
8426         * class.cs: Remove some dead code.
8427
8428         * cs-parser.jay: Estimate the number of methods needed
8429         (RootContext.MethodCount);
8430
8431         * cs-tokenizer.cs: Use char arrays for parsing identifiers and
8432         numbers instead of StringBuilders.
8433
8434         * support.cs (PtrHashtable): Add constructor with initial size;
8435         We can now reduce reallocations of the method table.
8436
8437 2002-12-10  Ravi Pratap  <ravi@ximian.com>
8438
8439         * attribute.cs (ApplyAttributes): Keep track of the emitted
8440         attributes on a per-target basis. This fixes bug #35413.
8441
8442 2002-12-10  Miguel de Icaza  <miguel@ximian.com>
8443
8444         * driver.cs (MainDriver): On rotor encoding 28591 does not exist,
8445         default to the Windows 1252 encoding.
8446
8447         (UnixParseOption): Support version, thanks to Alp for the missing
8448         pointer. 
8449
8450         * AssemblyInfo.cs: Add nice assembly information.
8451
8452         * cs-tokenizer.cs: Add fix from Felix to the #if/#else handler
8453         (bug 35169).
8454
8455         * cs-parser.jay: Allow a trailing comma before the close bracked
8456         in the attribute_section production.
8457
8458         * ecore.cs (FieldExpr.AddressOf): Until I figure out why the
8459         address of the instance was being taken, I will take this out,
8460         because we take the address of the object immediately here.
8461
8462 2002-12-09  Ravi Pratap  <ravi@ximian.com>
8463
8464         * typemanager.cs (AreMultipleAllowed): Take care of the most
8465         obvious case where attribute type is not in the current assembly -
8466         stupid me ;-)
8467
8468 2002-12-08  Miguel de Icaza  <miguel@ximian.com>
8469
8470         * ecore.cs (SimpleName.DoResolve): First perform lookups on using
8471         definitions, instead of doing that afterwards.  
8472
8473         Also we use a nice little hack, depending on the constructor, we
8474         know if we are a "composed" name or a simple name.  Hence, we
8475         avoid the IndexOf test, and we avoid 
8476
8477         * codegen.cs: Add code to assist in a bug reporter to track down
8478         the source of a compiler crash. 
8479
8480 2002-12-07  Ravi Pratap  <ravi@ximian.com>
8481
8482         * attribute.cs (Attribute.ApplyAttributes) : Keep track of which attribute
8483         types have been emitted for a given element and flag an error
8484         if something which does not have AllowMultiple set is used more
8485         than once.
8486
8487         * typemanager.cs (RegisterAttributeAllowMultiple): Keep track of
8488         attribute types and their corresponding AllowMultiple properties
8489
8490         (AreMultipleAllowed): Check the property for a given type.
8491
8492         * attribute.cs (Attribute.ApplyAttributes): Register the AllowMultiple
8493         property in the case we have a TypeContainer.
8494
8495         (Attributes.AddAttribute): Detect duplicates and just skip on
8496         adding them. This trivial fix catches a pretty gross error in our
8497         attribute emission - global attributes were being emitted twice!
8498
8499         Bugzilla bug #33187 is now fixed.
8500
8501 2002-12-06  Miguel de Icaza  <miguel@ximian.com>
8502
8503         * cs-tokenizer.cs (pp_expr): Properly recurse here (use pp_expr
8504         instead of pp_and).
8505
8506         * expression.cs (Binary.ResolveOperator): I can only use the
8507         Concat (string, string, string) and Concat (string, string,
8508         string, string) if the child is actually a concatenation of
8509         strings. 
8510
8511 2002-12-04  Miguel de Icaza  <miguel@ximian.com>
8512
8513         * cs-tokenizer.cs: Small fix, because decimal_digits is used in a
8514         context where we need a 2-character lookahead.
8515
8516         * pending.cs (PendingImplementation): Rework so we can keep track
8517         of interface types all the time, and flag those which were
8518         implemented by parents as optional.
8519
8520 2002-12-03  Miguel de Icaza  <miguel@ximian.com>
8521
8522         * expression.cs (Binary.ResolveOperator): Use
8523         String.Concat(string,string,string) or
8524         String.Concat(string,string,string,string) when possible. 
8525
8526         * typemanager: More helper methods.
8527
8528
8529 Tue Dec 3 19:32:04 CET 2002 Paolo Molaro <lupus@ximian.com>
8530
8531         * pending.cs: remove the bogus return from GetMissingInterfaces()
8532         (see the 2002-11-06 entry: the mono runtime is now fixed in cvs).
8533
8534 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8535
8536         * namespace.cs: avoid duplicated 'using xxx' being added to
8537         using_clauses. This prevents mcs from issuing and 'ambiguous type' error
8538         when we get more than one 'using' statement for the same namespace.
8539         Report a CS0105 warning for it.
8540
8541 2002-11-30  Miguel de Icaza  <miguel@ximian.com>
8542
8543         * cs-tokenizer.cs (consume_identifier): use read directly, instead
8544         of calling getChar/putback, uses internal knowledge of it.    
8545
8546         (xtoken): Reorder tokenizer so most common patterns are checked
8547         first.  This reduces the compilation time in another 5% (from 8.11s
8548         average to 7.73s for bootstrapping mcs on my Mobile p4/1.8ghz).
8549
8550         The parsing time is 22% of the compilation in mcs, and from that
8551         64% is spent on the tokenization process.  
8552
8553         I tried using a binary search for keywords, but this is slower
8554         than the hashtable.  Another option would be to do a couple of
8555         things:
8556
8557                 * Not use a StringBuilder, instead use an array of chars,
8558                   with a set value.  Notice that this way we could catch
8559                   the 645 error without having to do it *afterwards*.
8560
8561                 * We could write a hand-parser to avoid the hashtable
8562                   compares altogether.
8563
8564         The identifier consumption process takes 37% of the tokenization
8565         time.  Another 15% is spent on is_number.  56% of the time spent
8566         on is_number is spent on Int64.Parse:
8567
8568                 * We could probably choose based on the string length to
8569                   use Int32.Parse or Int64.Parse and avoid all the 64-bit
8570                   computations. 
8571
8572         Another 3% is spend on wrapping `xtoken' in the `token' function.
8573
8574         Handle 0xa0 as whitespace (#34752)
8575
8576 2002-11-26  Miguel de Icaza  <miguel@ximian.com>
8577
8578         * typemanager.cs (IsCLRType): New routine to tell whether a type
8579         is one of the builtin types.  
8580
8581         Maybe it needs to use TypeCodes to be faster.  Maybe we could use
8582         typecode in more places instead of doing pointer comparissions.
8583         We could leverage some knowledge about the way the typecodes are
8584         laid out.
8585
8586         New code to cache namespaces in assemblies, it is currently not
8587         invoked, to be used soon.
8588
8589         * decl.cs (DeclSpace.MakeFQN): Simple optimization.
8590
8591         * expression.cs (Binary.ResolveOperator): specially handle
8592         strings, and do not perform user-defined operator overloading for
8593         built-in types.
8594
8595 2002-11-24  Miguel de Icaza  <miguel@ximian.com>
8596
8597         * cs-tokenizer.cs: Avoid calling Char.IsDigit which is an
8598         internalcall as it is a pretty simple operation;  Avoid whenever
8599         possible to call Char.IsLetter.
8600
8601         (consume_identifier): Cut by half the number of
8602         hashtable calls by merging the is_keyword and GetKeyword behavior.
8603
8604         Do not short-circuit, because if we do, we
8605         report errors (ie, #if false && true would produce an invalid
8606         directive error);
8607
8608
8609 2002-11-24  Martin Baulig  <martin@ximian.com>
8610
8611         * expression.cs (Cast.TryReduce): If we're in checked syntax,
8612         check constant ranges and report a CS0221.  Fixes #33186.
8613
8614 2002-11-24  Martin Baulig  <martin@ximian.com>
8615
8616         * cs-parser.jay: Make this work for uninitialized variable
8617         declarations in the `for' initializer.  Fixes #32416.
8618
8619 2002-11-24  Martin Baulig  <martin@ximian.com>
8620
8621         * ecore.cs (Expression.ConvertExplicit): Make casting from/to
8622         System.Enum actually work.  Fixes bug #32269, added verify-6.cs.
8623
8624 2002-11-24  Martin Baulig  <martin@ximian.com>
8625
8626         * expression.cs (Binary.DoNumericPromotions): Added `check_user_conv'
8627         argument; if true, we also check for user-defined conversions.
8628         This is only needed if both arguments are of a user-defined type.
8629         Fixes #30443, added test-175.cs.
8630         (Binary.ForceConversion): Pass the location argument to ConvertImplicit.
8631
8632         * ecore.cs (Expression.ImplicitUserConversionExists): New method.
8633
8634 2002-11-24  Martin Baulig  <martin@ximian.com>
8635
8636         * expression.cs (ArrayAccess.GetStoreOpcode): New public static
8637         function to get the store opcode.
8638         (Invocation.EmitParams): Call ArrayAccess.GetStoreOpcode() and
8639         only emit the Ldelema if the store opcode is Stobj.  You must run
8640         both test-34 and test-167 to test this.  Fixes #34529.
8641
8642 2002-11-23  Martin Baulig  <martin@ximian.com>
8643
8644         * ecore.cs (Expression.MemberLookup): Added additional
8645         `qualifier_type' argument which is used when we're being called
8646         from MemberAccess.DoResolve() and null if we're called from a
8647         SimpleName lookup.
8648         (Expression.MemberLookupFailed): New method to report errors; this
8649         does the CS1540 check and reports the correct error message.
8650
8651         * typemanager.cs (MemberLookup): Added additional `qualifier_type'
8652         argument for the CS1540 check and redone the way how we're dealing
8653         with private members.  See the comment in the source code for details.
8654         (FilterWithClosure): Reverted this back to revision 1.197; renamed
8655         `closure_start_type' to `closure_qualifier_type' and check whether
8656         it's not null.  It was not this filter being broken, it was just
8657         being called with the wrong arguments.
8658
8659         * expression.cs (MemberAccess.DoResolve): use MemberLookupFinal()
8660         and pass it the correct `qualifier_type'; this also does the error
8661         handling for us.
8662
8663 2002-11-22  Miguel de Icaza  <miguel@ximian.com>
8664
8665         * expression.cs (Invocation.EmitParams): If the we are dealing
8666         with a non-built-in value type, load its address as well.
8667
8668         (ArrayCreation): Use a a pretty constant instead
8669         of the hardcoded value 2.   Use 6 instead of 2 for the number of
8670         static initializers.  
8671
8672         (ArrayCreation.EmitDynamicInitializers): Peel enumerations,
8673         because they are not really value types, just glorified integers. 
8674
8675         * driver.cs: Do not append .exe, the CSC compiler does not do it.
8676
8677         * ecore.cs: Remove redundant code for enumerations, make them use
8678         the same code path as everything else, fixes the casting issue
8679         with enumerations in Windows.Forms.
8680
8681         * attribute.cs: Do only cast to string if it is a string, the
8682         validation happens later.
8683
8684         * typemanager.cs: Temproary hack to avoid a bootstrap issue until
8685         people upgrade their corlibs.
8686
8687         * ecore.cs: Oops, enumerations were not following the entire code path
8688
8689 2002-11-21  Miguel de Icaza  <miguel@ximian.com>
8690
8691         * typemanager.cs (FilterWithClosure): Commented out the test for
8692         1540 in typemanager.cs, as it has problems when accessing
8693         protected methods from a parent class (see test-174.cs). 
8694
8695         * attribute.cs (Attribute.ValidateGuid): new method.
8696         (Attribute.Resolve): Use above.
8697
8698 2002-11-19  Miguel de Icaza  <miguel@ximian.com>
8699
8700         * enum.cs: In FindMembers, perform a recursive lookup for values. (34308)
8701
8702         * ecore.cs (SimpleName.SimpleNameResolve): Remove the special
8703         handling for enumerations, as we only needed the TypeContainer
8704         functionality to begin with (this is required for the fix below to
8705         work for enums that reference constants in a container class for
8706         example). 
8707
8708         * codegen.cs (EmitContext): Make TypeContainer a DeclSpace.
8709
8710         * enum.cs (Enum.Define): Use `this' instead of parent, so we have
8711         a valid TypeBuilder to perform lookups on.o
8712
8713         * class.cs (InheritableMemberSignatureCompare): Use true in the
8714         call to GetGetMethod and GetSetMethod, because we are comparing
8715         the signature, and we need to get the methods *even* if they are
8716         private. 
8717
8718         (PropertyBase.CheckBase): ditto.
8719
8720         * statement.cs (Switch.ResolveAndReduce, Block.EmitMeta,
8721         GotoCase.Resolve): Use Peel on EmpytCasts.
8722
8723         * ecore.cs (EmptyCast): drop child, add Peel method.
8724
8725 2002-11-17  Martin Baulig  <martin@ximian.com>
8726
8727         * ecore.cs (EmptyCast.Child): New public property.
8728
8729         * statement.cs (SwitchLabel.ResolveAndReduce): Check whether the
8730         label resolved to an EmptyCast.  Fixes #34162.
8731         (GotoCase.Resolve): Likewise.
8732         (Block.EmitMeta): Likewise.
8733
8734 2002-11-17  Martin Baulig  <martin@ximian.com>
8735
8736         * expression.cs (Invocation.BetterConversion): Prefer int over
8737         uint; short over ushort; long over ulong for integer literals.
8738         Use ImplicitConversionExists instead of StandardConversionExists
8739         since we also need to check for user-defined implicit conversions.
8740         Fixes #34165.  Added test-173.cs.
8741
8742 2002-11-16  Martin Baulig  <martin@ximian.com>
8743
8744         * expression.cs (Binary.EmitBranchable): Eliminate comparisions
8745         with the `true' and `false' literals.  Fixes #33151.
8746
8747 2002-11-16  Martin Baulig  <martin@ximian.com>
8748
8749         * typemanager.cs (RealMemberLookup): Reverted Miguel's patch from
8750         October 22nd; don't do the cs1540 check for static members.
8751
8752         * ecore.cs (PropertyExpr.ResolveAccessors): Rewrote this; we're
8753         now using our own filter here and doing the cs1540 check again.
8754
8755 2002-11-16  Martin Baulig  <martin@ximian.com>
8756
8757         * support.cs (InternalParameters): Don't crash if we don't have
8758         any fixed parameters.  Fixes #33532.
8759
8760 2002-11-16  Martin Baulig  <martin@ximian.com>
8761
8762         * decl.cs (MemberCache.AddMethods): Use BindingFlags.FlattenHierarchy
8763         when looking up static methods to make this work on Windows.
8764         Fixes #33773.
8765
8766 2002-11-16  Martin Baulig  <martin@ximian.com>
8767
8768         * ecore.cs (PropertyExpr.VerifyAssignable): Check whether we have
8769         a setter rather than using PropertyInfo.CanWrite.
8770
8771 2002-11-15  Nick Drochak  <ndrochak@gol.com>
8772
8773         * class.cs: Allow acces to block member by subclasses. Fixes build
8774         breaker.
8775
8776 2002-11-14  Martin Baulig  <martin@ximian.com>
8777
8778         * class.cs (Constructor.Emit): Added the extern/block check.
8779         Fixes bug #33678.
8780
8781 2002-11-14  Martin Baulig  <martin@ximian.com>
8782
8783         * expression.cs (IndexerAccess.DoResolve): Do a DeclaredOnly
8784         iteration while looking for indexers, this is needed because the
8785         indexer may have a different name in our base classes.  Fixed the
8786         error reporting (no indexers at all, not get accessor, no
8787         overloaded match).  Fixes bug #33089.
8788         (IndexerAccess.DoResolveLValue): Likewise.
8789
8790 2002-11-14  Martin Baulig  <martin@ximian.com>
8791
8792         * class.cs (PropertyBase.CheckBase): Make this work for multiple
8793         indexers.  Fixes the first part of bug #33089.
8794         (MethodSignature.InheritableMemberSignatureCompare): Added support
8795         for properties.
8796
8797 2002-11-13  Ravi Pratap  <ravi@ximian.com>
8798
8799         * attribute.cs (Attribute.Resolve): Catch the
8800         NullReferenceException and report it since it isn't supposed to
8801         happen. 
8802
8803 2002-11-12  Miguel de Icaza  <miguel@ximian.com>
8804
8805         * expression.cs (Binary.EmitBranchable): Also handle the cases for
8806         LogicalOr and LogicalAnd that can benefit from recursively
8807         handling EmitBranchable.  The code now should be nice for Paolo.
8808
8809 2002-11-08  Miguel de Icaza  <miguel@ximian.com>
8810
8811         * typemanager.cs (LookupType): Added a negative-hit hashtable for
8812         the Type lookups, as we perform quite a number of lookups on
8813         non-Types.  This can be removed once we can deterministically tell
8814         whether we have a type or a namespace in advance.
8815
8816         But this might require special hacks from our corlib.
8817
8818         * TODO: updated.
8819
8820         * ecore.cs (TryImplicitIntConversion): Handle conversions to float
8821         and double which avoids a conversion from an integer to a double.
8822
8823         * expression.cs: tiny optimization, avoid calling IsConstant,
8824         because it effectively performs the lookup twice.
8825
8826 2002-11-06  Miguel de Icaza  <miguel@ximian.com>
8827
8828         But a bogus return here to keep the semantics of the old code
8829         until the Mono runtime is fixed.
8830
8831         * pending.cs (GetMissingInterfaces): New method used to remove all
8832         the interfaces that are already implemented by our parent
8833         classes from the list of pending methods. 
8834
8835         * interface.cs: Add checks for calls after ResolveTypeExpr.
8836
8837 2002-11-05  Miguel de Icaza  <miguel@ximian.com>
8838
8839         * class.cs (Class.Emit): Report warning 67: event not used if the
8840         warning level is beyond 3.
8841
8842         * ecore.cs (Expression.ConvertExplicit): Missed a check for expr
8843         being a NullLiteral.
8844
8845         * cs-parser.jay: Fix, Gonzalo reverted the order of the rank
8846         specifiers. 
8847
8848         * class.cs (TypeContainer.GetClassBases): Cover a missing code
8849         path that might fail if a type can not be resolved.
8850
8851         * expression.cs (Binary.Emit): Emit unsigned versions of the
8852         operators. 
8853
8854         * driver.cs: use error 5.
8855
8856 2002-11-02  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
8857
8858         * cs-parser.jay: simplified a rule and 5 SR conflicts dissapeared.
8859
8860 2002-11-01  Miguel de Icaza  <miguel@ximian.com>
8861
8862         * cs-parser.jay (switch_section): A beautiful patch from Martin
8863         Baulig that fixed 33094.
8864
8865 2002-10-31  Miguel de Icaza  <miguel@ximian.com>
8866
8867         * ecore.cs (PropertyExpr.DoResolveLValue, PropertyExpr.DoResolve):
8868         Check whether the base is abstract and report an error if so.
8869
8870         * expression.cs (IndexerAccess.DoResolveLValue,
8871         IndexerAccess.DoResolve): ditto. 
8872
8873         (Invocation.DoResolve): ditto.
8874
8875         (Invocation.FullMethodDesc): Improve the report string.
8876
8877         * statement.cs (Block): Eliminate IsVariableDefined as it is
8878         basically just a wrapper for GetVariableInfo.
8879
8880         * ecore.cs (SimpleName): Use new 
8881
8882         * support.cs (ReflectionParamter.ParameterType): We unwrap the
8883         type, as we return the actual parameter ref/unref state on a
8884         different call.
8885
8886 2002-10-30  Miguel de Icaza  <miguel@ximian.com>
8887
8888         * support.cs: Return proper flags REF/OUT fixing the previous
8889         commit.  
8890
8891         * expression.cs: Reverted last patch, that was wrong.  Is_ref is
8892         not used to mean `ref' but `ref or out' in ParameterReference
8893
8894         * delegate.cs (FullDelegateDesc): use ParameterDesc to get the
8895         full type signature instead of calling TypeManger.CSharpName
8896         ourselves. 
8897
8898         * support.cs (InternalParameters.ParameterDesc): Do not compare
8899         directly to the modflags, because REF/OUT will actually be bitsets
8900         if set. 
8901
8902         * delegate.cs (VerifyMethod): Check also the modifiers.
8903
8904         * cs-tokenizer.cs: Fix bug where floating point values with an
8905         exponent where a sign was missing was ignored.
8906
8907         * driver.cs: Allow multiple assemblies to be specified in a single
8908         /r: argument
8909
8910 2002-10-28  Miguel de Icaza  <miguel@ximian.com>
8911
8912         * cs-parser.jay: Ugly.  We had to add a multiplicative_expression,
8913         because identifiers after a parenthesis would end up in this kind
8914         of production, and we needed to desamiguate it for having casts
8915         like:
8916
8917                 (UserDefinedType *) xxx
8918
8919 2002-10-24  Miguel de Icaza  <miguel@ximian.com>
8920
8921         * typemanager.cs (RealMemberLookup): when we deal with a subclass,
8922         we should set on the Bindingflags.NonPublic, but not turn on
8923         private_ok.  private_ok controls whether a Private member is
8924         returned (this is chekced on the filter routine), while the
8925         BindingFlags.NonPublic just controls whether private/protected
8926         will be allowed.   This fixes the problem part of the problem of
8927         private properties being allowed to be used in derived classes.
8928
8929         * expression.cs (BaseAccess): Provide an DoResolveLValue method,
8930         so we can call the children DoResolveLValue method (this will
8931         properly signal errors on lvalue assignments to base properties)
8932
8933         * ecore.cs (PropertyExpr.ResolveAccessors): If both setter and
8934         getter are null, and we have a property info, we know that this
8935         happened because the lookup failed, so we report an error 122 for
8936         protection level violation.
8937
8938         We also silently return if setter and getter are null in the
8939         resolve functions, this condition only happens if we have flagged
8940         the error before.  This is the other half of the problem. 
8941
8942         (PropertyExpr.ResolveAccessors): Turns out that PropertyInfo does
8943         not have accessibility information, that is why we were returning
8944         true in the filter function in typemanager.cs.
8945
8946         To properly report 122 (property is inaccessible because of its
8947         protection level) correctly, we report this error in ResolveAccess
8948         by failing if both the setter and the getter are lacking (ie, the
8949         lookup failed). 
8950
8951         DoResolve and DoLResolve have been modified to check for both
8952         setter/getter being null and returning silently, the reason being
8953         that I did not want to put the knowledge about this error in upper
8954         layers, like:
8955
8956         int old = Report.Errors;
8957         x = new PropertyExpr (...);
8958         if (old != Report.Errors)
8959                 return null;
8960         else
8961                 return x;
8962
8963         So the property expr is returned, but it is invalid, so the error
8964         will be flagged during the resolve process. 
8965
8966         * class.cs: Remove InheritablePropertySignatureCompare from the
8967         class, as we no longer depend on the property signature to compute
8968         whether it is possible to implement a method or not.
8969
8970         The reason is that calling PropertyInfo.GetGetMethod will return
8971         null (in .NET, in Mono it works, and we should change this), in
8972         cases where the Get Method does not exist in that particular
8973         class.
8974
8975         So this code:
8976
8977         class X { public virtual int A { get { return 1; } } }
8978         class Y : X { }
8979         class Z : Y { public override int A { get { return 2; } } }
8980
8981         Would fail in Z because the parent (Y) would not have the property
8982         defined.  So we avoid this completely now (because the alternative
8983         fix was ugly and slow), and we now depend exclusively on the
8984         method names.
8985
8986         (PropertyBase.CheckBase): Use a method-base mechanism to find our
8987         reference method, instead of using the property.
8988
8989         * typemanager.cs (GetPropertyGetter, GetPropertySetter): These
8990         routines are gone now.
8991
8992         * typemanager.cs (GetPropertyGetter, GetPropertySetter): swap the
8993         names, they were incorrectly named.
8994
8995         * cs-tokenizer.cs: Return are more gentle token on failure. 
8996
8997         * pending.cs (PendingImplementation.InterfaceMethod): This routine
8998         had an out-of-sync index variable, which caused it to remove from
8999         the list of pending methods the wrong method sometimes.
9000
9001 2002-10-22  Miguel de Icaza  <miguel@ximian.com>
9002
9003         * ecore.cs (PropertyExpr): Do not use PropertyInfo.CanRead,
9004         CanWrite, because those refer to this particular instance of the
9005         property, and do not take into account the fact that we can
9006         override single members of a property.
9007
9008         Constructor requires an EmitContext.  The resolution process does
9009         not happen here, but we need to compute the accessors before,
9010         because the resolution does not always happen for properties.
9011
9012         * typemanager.cs (RealMemberLookup): Set private_ok if we are a
9013         subclass, before we did not update this flag, but we did update
9014         bindingflags. 
9015
9016         (GetAccessors): Drop this routine, as it did not work in the
9017         presence of partially overwritten set/get methods. 
9018
9019         Notice that this broke the cs1540 detection, but that will require
9020         more thinking. 
9021
9022 2002-10-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9023
9024         * class.cs:
9025         * codegen.cs:
9026         * driver.cs: issue a warning instead of an error if we don't support
9027         debugging for the platform. Also ignore a couple of errors that may
9028         arise when trying to write the symbols. Undo my previous patch.
9029
9030 2002-10-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9031
9032         * driver.cs: ignore /debug switch except for Unix platforms.
9033
9034 2002-10-23  Nick Drochak  <ndrochak@gol.com>
9035
9036         * makefile: Remove mcs2.exe and mcs3.exe on 'make clean'
9037
9038 2002-10-21  Miguel de Icaza  <miguel@ximian.com>
9039
9040         * driver.cs: Do not make mcs-debug conditional, so we do not break
9041         builds that use it.
9042
9043         * statement.cs (UsageVector.MergeChildren): I would like Martin to
9044         review this patch.  But basically after all the children variables
9045         have been merged, the value of "Breaks" was not being set to
9046         new_breaks for Switch blocks.  I think that it should be set after
9047         it has executed.  Currently I set this to the value of new_breaks,
9048         but only if new_breaks is FlowReturn.ALWAYS, which is a bit
9049         conservative, but I do not understand this code very well.
9050
9051         I did not break anything in the build, so that is good ;-)
9052
9053         * cs-tokenizer.cs: Also allow \r in comments as a line separator.
9054
9055 2002-10-20  Mark Crichton  <crichton@gimp.org>
9056
9057         * cfold.cs: Fixed compile blocker.  Really fixed it this time.
9058
9059 2002-10-20  Nick Drochak  <ndrochak@gol.com>
9060
9061         * cfold.cs: Fixed compile blocker.
9062
9063 2002-10-20  Miguel de Icaza  <miguel@ximian.com>
9064
9065         * driver.cs: I was chekcing the key, not the file.
9066
9067 2002-10-19  Ravi Pratap  <ravi@ximian.com>
9068
9069         * ecore.cs (UserDefinedConversion): Get rid of the bogus error
9070         message that we were generating - we just need to silently return
9071         a null.
9072
9073 2002-10-19  Miguel de Icaza  <miguel@ximian.com>
9074
9075         * class.cs (Event.Define): Change my previous commit, as this
9076         breaks the debugger.  This is a temporary hack, as it seems like
9077         the compiler is generating events incorrectly to begin with.
9078
9079         * expression.cs (Binary.ResolveOperator): Added support for 
9080         "U operator - (E x, E y)"
9081
9082         * cfold.cs (BinaryFold): Added support for "U operator - (E x, E
9083         y)".
9084
9085         * ecore.cs (FieldExpr.AddressOf): We had a special code path for
9086         init-only variables, but this path did not take into account that
9087         there might be also instance readonly variables.  Correct this
9088         problem. 
9089
9090         This fixes bug 32253
9091
9092         * delegate.cs (NewDelegate.DoResolve): Catch creation of unsafe
9093         delegates as well.
9094
9095         * driver.cs: Change the extension for modules to `netmodule'
9096
9097         * cs-parser.jay: Improved slightly the location tracking for
9098         the debugger symbols.
9099
9100         * class.cs (Event.Define): Use Modifiers.FieldAttr on the
9101         modifiers that were specified instead of the hardcoded value
9102         (FamAndAssem).  This was basically ignoring the static modifier,
9103         and others.  Fixes 32429.
9104
9105         * statement.cs (Switch.SimpleSwitchEmit): Simplified the code, and
9106         fixed a bug in the process (32476)
9107
9108         * expression.cs (ArrayAccess.EmitAssign): Patch from
9109         hwang_rob@yahoo.ca that fixes bug 31834.3
9110
9111 2002-10-18  Miguel de Icaza  <miguel@ximian.com>
9112
9113         * driver.cs: Make the module extension .netmodule.
9114
9115 2002-10-16  Miguel de Icaza  <miguel@ximian.com>
9116
9117         * driver.cs: Report an error if the resource file is not found
9118         instead of crashing.
9119
9120         * ecore.cs (PropertyExpr.EmitAssign): Pass IsBase instead of
9121         false, like Emit does.
9122
9123 2002-10-16  Nick Drochak  <ndrochak@gol.com>
9124
9125         * typemanager.cs: Remove unused private member.  Also reported mcs
9126         bug to report this as a warning like csc.
9127
9128 2002-10-15  Martin Baulig  <martin@gnome.org>
9129
9130         * statement.cs (Statement.Emit): Made this a virtual method; emits
9131         the line number info and calls DoEmit().
9132         (Statement.DoEmit): New protected abstract method, formerly knows
9133         as Statement.Emit().
9134
9135         * codegen.cs (EmitContext.Mark): Check whether we have a symbol writer.
9136
9137 2002-10-11  Miguel de Icaza  <miguel@ximian.com>
9138
9139         * class.cs: Following the comment from 2002-09-26 to AddMethod, I
9140         have fixed a remaining problem: not every AddXXXX was adding a
9141         fully qualified name.  
9142
9143         Now everyone registers a fully qualified name in the DeclSpace as
9144         being defined instead of the partial name.  
9145
9146         Downsides: we are slower than we need to be due to the excess
9147         copies and the names being registered this way.  
9148
9149         The reason for this is that we currently depend (on the corlib
9150         bootstrap for instance) that types are fully qualified, because
9151         we dump all the types in the namespace, and we should really have
9152         types inserted into the proper namespace, so we can only store the
9153         basenames in the defined_names array.
9154
9155 2002-10-10  Martin Baulig  <martin@gnome.org>
9156
9157         * expression.cs (ArrayAccess.EmitStoreOpcode): Reverted the patch
9158         from bug #31834, see the bug report for a testcase which is
9159         miscompiled.
9160
9161 2002-10-10  Martin Baulig  <martin@gnome.org>
9162
9163         * codegen.cs (EmitContext.Breaks): Removed, we're now using the
9164         flow analysis code for this.
9165
9166         * statement.cs (Do, While, For): Tell the flow analysis code about
9167         infinite loops.
9168         (FlowBranching.UsageVector): Added support for infinite loops.
9169         (Block.Resolve): Moved the dead code elimination here and use flow
9170         analysis to do it.
9171
9172 2002-10-09  Miguel de Icaza  <miguel@ximian.com>
9173
9174         * class.cs (Field.Define): Catch cycles on struct type
9175         definitions. 
9176
9177         * typemanager.cs (IsUnmanagedtype): Do not recursively check
9178         fields if the fields are static.  We only need to check instance
9179         fields. 
9180
9181         * expression.cs (As.DoResolve): Test for reference type.
9182
9183         * statement.cs (Using.ResolveExpression): Use
9184         ConvertImplicitRequired, not ConvertImplicit which reports an
9185         error on failture
9186         (Using.ResolveLocalVariableDecls): ditto.
9187
9188         * expression.cs (Binary.ResolveOperator): Report errors in a few
9189         places where we had to.
9190
9191         * typemanager.cs (IsUnmanagedtype): Finish implementation.
9192
9193 2002-10-08  Miguel de Icaza  <miguel@ximian.com>
9194
9195         * expression.cs: Use StoreFromPtr instead of extracting the type
9196         and then trying to use Stelem.  Patch is from hwang_rob@yahoo.ca
9197
9198         * ecore.cs (ImplicitReferenceConversion): It is possible to assign
9199         an enumeration value to a System.Enum, but System.Enum is not a
9200         value type, but an class type, so we need to box.
9201
9202         (Expression.ConvertExplicit): One codepath could return
9203         errors but not flag them.  Fix this.  Fixes #31853
9204
9205         * parameter.cs (Resolve): Do not allow void as a parameter type.
9206
9207 2002-10-06  Martin Baulig  <martin@gnome.org>
9208
9209         * statemenc.cs (FlowBranching.SetParameterAssigned): Don't crash
9210         if it's a class type and not a struct.  Fixes #31815.
9211
9212 2002-10-06  Martin Baulig  <martin@gnome.org>
9213
9214         * statement.cs: Reworked the flow analysis code a bit to make it
9215         usable for dead code elimination.
9216
9217 2002-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9218
9219         * cs-parser.jay: allow empty source files. Fixes bug #31781.
9220
9221 2002-10-04  Miguel de Icaza  <miguel@ximian.com>
9222
9223         * expression.cs (ComposedCast.DoResolveType): A quick workaround
9224         to fix the test 165, will investigate deeper.
9225
9226 2002-10-04  Martin Baulig  <martin@gnome.org>
9227
9228         * statement.cs (FlowBranching.UsageVector.MergeChildren): Make
9229         finally blocks actually work.
9230         (Try.Resolve): We don't need to create a sibling for `finally' if
9231         there is no finally block.
9232
9233 2002-10-04  Martin Baulig  <martin@gnome.org>
9234
9235         * class.cs (Constructor.Define): The default accessibility for a
9236         non-default constructor is private, not public.
9237
9238 2002-10-04  Miguel de Icaza  <miguel@ximian.com>
9239
9240         * class.cs (Constructor): Make AllowedModifiers public, add
9241         EXTERN.
9242
9243         * cs-parser.jay: Perform the modifiers test here, as the
9244         constructor for the Constructor class usually receives a zero
9245         because of the way we create it (first we create, later we
9246         customize, and we were never checking the modifiers).
9247
9248         * typemanager.cs (Typemanager.LookupTypeDirect): This new function
9249         is a version of LookupTypeReflection that includes the type-name
9250         cache.  This can be used as a fast path for functions that know
9251         the fully qualified name and are only calling into *.GetType() to
9252         obtain a composed type.
9253
9254         This is also used by TypeManager.LookupType during its type
9255         composition.
9256
9257         (LookupType): We now also track the real type name, as sometimes
9258         we can get a quey for the real type name from things like
9259         ComposedCast.  This fixes bug 31422.
9260
9261         * expression.cs (ComposedCast.Resolve): Since we are obtaining a
9262         complete type fullname, it does not have to go through the type
9263         resolution system to obtain the composed version of the type (for
9264         obtaining arrays or pointers).
9265
9266         (Conditional.Emit): Use the EmitBoolExpression to
9267         generate nicer code, as requested by Paolo.
9268
9269         (ArrayCreation.CheckIndices): Use the patch from
9270         hwang_rob@yahoo.ca to validate the array initializers. 
9271
9272 2002-10-03  Miguel de Icaza  <miguel@ximian.com>
9273
9274         * class.cs (ConstructorInitializer.Emit): simplify code by using
9275         Invocation.EmitCall, and at the same time, fix the bugs in calling
9276         parent constructors that took variable arguments. 
9277
9278         * ecore.cs (Expression.ConvertNumericExplicit,
9279         Expression.ImplicitNumericConversion): Remove the code that
9280         manually wrapped decimal (InternalTypeConstructor call is now gone
9281         as well).
9282
9283         * expression.cs (Cast.TryReduce): Also handle decimal types when
9284         trying to perform a constant fold on the type.
9285
9286         * typemanager.cs (IsUnmanagedtype): Partially implemented.
9287
9288         * parameter.cs: Removed ResolveAndDefine, as it was not needed, as
9289         that only turned off an error report, and did nothing else. 
9290
9291 2002-10-02  Miguel de Icaza  <miguel@ximian.com>
9292
9293         * driver.cs: Handle and ignore /fullpaths
9294
9295 2002-10-01  Miguel de Icaza  <miguel@ximian.com>
9296
9297         * expression.cs (Binary.ResolveOperator): Catch the case where
9298         DoNumericPromotions returns true, 
9299
9300         (Binary.DoNumericPromotions): Simplify the code, and the tests.
9301
9302 2002-09-27  Miguel de Icaza  <miguel@ximian.com>
9303
9304         * ecore.cs (EventExpr.Emit): Instead of emitting an exception,
9305         report error 70.
9306
9307 2002-09-26  Miguel de Icaza  <miguel@ximian.com>
9308
9309         * ecore.cs (ConvertNumericExplicit): It is not enough that the
9310         conversion exists, but it is also required that the conversion be
9311         performed.  This manifested in "(Type64Enum) 2".  
9312
9313         * class.cs (TypeManager.AddMethod): The fix is not to change
9314         AddEnum, because that one was using a fully qualified name (every
9315         DeclSpace derivative does), but to change the AddMethod routine
9316         that was using an un-namespaced name.  This now correctly reports
9317         the duplicated name.
9318
9319         Revert patch until I can properly fix it.  The issue
9320         is that we have a shared Type space across all namespaces
9321         currently, which is wrong.
9322
9323         Options include making the Namespace a DeclSpace, and merge
9324         current_namespace/current_container in the parser.
9325
9326 2002-09-25  Miguel de Icaza  <miguel@ximian.com>
9327
9328         * cs-parser.jay: Improve error reporting when we get a different
9329         kind of expression in local_variable_type and
9330         local_variable_pointer_type. 
9331
9332         Propagate this to avoid missleading errors being reported.
9333
9334         * ecore.cs (ImplicitReferenceConversion): treat
9335         TypeManager.value_type as a target just like object_type.   As
9336         code like this:
9337
9338         ValueType v = 1;
9339
9340         Is valid, and needs to result in the int 1 being boxed before it
9341         is assigned to the value type v.
9342
9343         * class.cs (TypeContainer.AddEnum): Use the basename, not the name
9344         to validate the enumeration name.
9345
9346         * expression.cs (ArrayAccess.EmitAssign): Mimic the same test from
9347         EmitDynamicInitializers for the criteria to use Ldelema.  Thanks
9348         to hwang_rob@yahoo.ca for finding the bug and providing a patch.
9349
9350         * ecore.cs (TryImplicitIntConversion): When doing an
9351         implicit-enumeration-conversion, check if the type is 64-bits and
9352         perform a conversion before passing to EnumConstant.
9353
9354 2002-09-23  Miguel de Icaza  <miguel@ximian.com>
9355
9356         * decl.cs (Error_AmbiguousTypeReference); New routine used to
9357         report ambiguous type references.  Unlike the MS version, we
9358         report what the ambiguity is.   Innovation at work ;-)
9359
9360         (DeclSpace.FindType): Require a location argument to
9361         display when we display an ambiguous error.
9362
9363         * ecore.cs: (SimpleName.DoResolveType): Pass location to FindType.
9364
9365         * interface.cs (GetInterfaceTypeByName): Pass location to FindType.
9366
9367         * expression.cs (EmitDynamicInitializers): Apply patch from
9368         hwang_rob@yahoo.ca that fixes the order in which we emit our
9369         initializers. 
9370
9371 2002-09-21  Martin Baulig  <martin@gnome.org>
9372
9373         * delegate.cs (Delegate.VerifyApplicability): Make this work if the
9374         delegate takes no arguments.
9375
9376 2002-09-20  Miguel de Icaza  <miguel@ximian.com>
9377
9378         * constant.cs: Use Conv_U8 instead of Conv_I8 when loading longs
9379         from integers.
9380
9381         * expression.cs: Extract the underlying type.
9382
9383         * ecore.cs (StoreFromPtr): Use TypeManager.IsEnumType instad of IsEnum
9384
9385         * decl.cs (FindType): Sorry about this, fixed the type lookup bug.
9386
9387 2002-09-19  Miguel de Icaza  <miguel@ximian.com>
9388
9389         * class.cs (TypeContainer.DefineType): We can not use the nice
9390         PackingSize with the size set to 1 DefineType method, because it
9391         will not allow us to define the interfaces that the struct
9392         implements.
9393
9394         This completes the fixing of bug 27287
9395
9396         * ecore.cs (Expresion.ImplicitReferenceConversion): `class-type S'
9397         means also structs.  This fixes part of the problem. 
9398         (Expresion.ImplicitReferenceConversionExists): ditto.
9399
9400         * decl.cs (DeclSparce.ResolveType): Only report the type-not-found
9401         error if there were no errors reported during the type lookup
9402         process, to avoid duplicates or redundant errors.  Without this
9403         you would get an ambiguous errors plus a type not found.  We have
9404         beaten the user enough with the first error.  
9405
9406         (DeclSparce.FindType): Emit a warning if we have an ambiguous
9407         reference. 
9408
9409         * ecore.cs (SimpleName.DoResolveType): If an error is emitted
9410         during the resolution process, stop the lookup, this avoids
9411         repeated error reports (same error twice).
9412
9413         * rootcontext.cs: Emit a warning if we have an ambiguous reference.
9414
9415         * typemanager.cs (LookupType): Redo the type lookup code to match
9416         the needs of System.Reflection.  
9417
9418         The issue is that System.Reflection requires references to nested
9419         types to begin with a "+" sign instead of a dot.  So toplevel
9420         types look like: "NameSpace.TopLevelClass", and nested ones look
9421         like "Namespace.TopLevelClass+Nested", with arbitrary nesting
9422         levels. 
9423
9424 2002-09-19  Martin Baulig  <martin@gnome.org>
9425
9426         * codegen.cs (EmitContext.EmitTopBlock): If control flow analysis
9427         says that a method always returns or always throws an exception,
9428         don't report the CS0161.
9429
9430         * statement.cs (FlowBranching.UsageVector.MergeChildren): Always
9431         set `Returns = new_returns'.
9432
9433 2002-09-19  Martin Baulig  <martin@gnome.org>
9434
9435         * expression.cs (MemberAccess.ResolveMemberAccess): When resolving
9436         to an enum constant, check for a CS0176.
9437
9438 2002-09-18  Miguel de Icaza  <miguel@ximian.com>
9439
9440         * class.cs (TypeContainer.CheckPairedOperators): Now we check
9441         for operators that must be in pairs and report errors.
9442
9443         * ecore.cs (SimpleName.DoResolveType): During the initial type
9444         resolution process, when we define types recursively, we must
9445         check first for types in our current scope before we perform
9446         lookups in the enclosing scopes.
9447
9448         * expression.cs (MakeByteBlob): Handle Decimal blobs.
9449
9450         (Invocation.VerifyArgumentsCompat): Call
9451         TypeManager.TypeToCoreType on the parameter_type.GetElementType.
9452         I thought we were supposed to always call this, but there are a
9453         few places in the code where we dont do it.
9454
9455 2002-09-17  Miguel de Icaza  <miguel@ximian.com>
9456
9457         * driver.cs: Add support in -linkres and -resource to specify the
9458         name of the identifier.
9459
9460 2002-09-16  Miguel de Icaza  <miguel@ximian.com>
9461
9462         * ecore.cs (StandardConversionExists): Sync with the conversion
9463         code: allow anything-* to void* conversions.
9464
9465         (FindMostSpecificSource): Use an Expression argument
9466         instead of a Type, because we might be handed over a Literal which
9467         gets a few more implicit conversions that plain types do not.  So
9468         this information was being lost.
9469
9470         Also, we drop the temporary type-holder expression when not
9471         required.
9472
9473 2002-09-17  Martin Baulig  <martin@gnome.org>
9474
9475         * class.cs (PropertyBase.CheckBase): Don't check the base class if
9476         this is an explicit interface implementation.
9477
9478 2002-09-17  Martin Baulig  <martin@gnome.org>
9479
9480         * class.cs (PropertyBase.CheckBase): Make this work for indexers with
9481         different `IndexerName' attributes.
9482
9483         * expression.cs (BaseIndexerAccess): Rewrote this class to use IndexerAccess.
9484         (IndexerAccess): Added special protected ctor for BaseIndexerAccess and
9485         virtual CommonResolve().
9486
9487 2002-09-16  Miguel de Icaza  <miguel@ximian.com>
9488
9489         * enum.cs (LookupEnumValue): Use the EnumConstant declared type,
9490         and convert that to the UnderlyingType.
9491
9492         * statement.cs (Foreach.Resolve): Indexers are just like variables
9493         or PropertyAccesses.
9494
9495         * cs-tokenizer.cs (consume_string): Track line numbers and columns
9496         inside quoted strings, we were not doing this before.
9497
9498 2002-09-16  Martin Baulig  <martin@gnome.org>
9499
9500         * ecore.cs (MethodGroupExpr.DoResolve): If we have an instance expression,
9501         resolve it.  This is needed for the definite assignment check of the
9502         instance expression, fixes bug #29846.
9503         (PropertyExpr.DoResolve, EventExpr.DoResolve): Likewise.
9504
9505 2002-09-16  Nick Drochak  <ndrochak@gol.com>
9506
9507         * parameter.cs: Fix compile error.  Cannot reference static member
9508         from an instance object.  Is this an mcs bug?
9509
9510 2002-09-14  Martin Baulig  <martin@gnome.org>
9511
9512         * decl.cs (MemberCache.SetupCacheForInterface): Don't add an interface
9513         multiple times.  Fixes bug #30295, added test-166.cs.
9514
9515 2002-09-14  Martin Baulig  <martin@gnome.org>
9516
9517         * statement.cs (Block.Emit): Don't emit unreachable code.
9518         (Switch.SimpleSwitchEmit, Switch.TableSwitchEmit): Check for missing
9519         `break' statements.
9520         (Goto.Emit, Continue.Emit): Set ec.Breaks = true.
9521
9522 2002-09-14  Martin Baulig  <martin@gnome.org>
9523
9524         * parameter.cs (Parameter.Attributes): Make this work if Modifier.ISBYREF
9525         is set.
9526
9527 2002-09-14  Martin Baulig  <martin@gnome.org>
9528
9529         * typemanager.cs (TypeManager.IsNestedChildOf): This must return false
9530         if `type == parent' since in this case `type.IsSubclassOf (parent)' will
9531         be false on the ms runtime.
9532
9533 2002-09-13  Martin Baulig  <martin@gnome.org>
9534
9535         * ecore.cs (SimpleName.SimpleNameResolve): Include the member name in
9536         the CS0038 error message.
9537
9538 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
9539
9540         * expression.cs (CheckedExpr, UnCheckedExpr): If we have a
9541         constant inside, return it.
9542
9543 2002-09-12  Martin Baulig  <martin@gnome.org>
9544
9545         * cfold.cs (ConstantFold.DoConstantNumericPromotions): Check whether an
9546         implicit conversion can be done between enum types.
9547
9548         * enum.cs (Enum.LookupEnumValue): If the value is an EnumConstant,
9549         check whether an implicit conversion to the current enum's UnderlyingType
9550         exists and report an error if not.
9551
9552         * codegen.cs (CodeGen.Init): Delete the symbol file when compiling
9553         without debugging support.
9554
9555         * delegate.cs (Delegate.CloseDelegate): Removed, use CloseType instead.
9556         Fixes bug #30235.  Thanks to Ricardo Fernández Pascual.
9557
9558 2002-09-12  Martin Baulig  <martin@gnome.org>
9559
9560         * typemanager.cs (TypeManager.IsNestedChildOf): New method.
9561
9562         * ecore.cs (IMemberExpr.DeclaringType): New property.
9563         (SimpleName.SimpleNameResolve): Check whether we're accessing a
9564         nonstatic member of an outer type (CS0038).
9565
9566 2002-09-11  Miguel de Icaza  <miguel@ximian.com>
9567
9568         * driver.cs: Activate the using-error detector at warning level
9569         4 (at least for MS-compatible APIs).
9570
9571         * namespace.cs (VerifyUsing): Small buglett fix.
9572
9573         * pending.cs (PendingImplementation): pass the container pointer. 
9574
9575         * interface.cs (GetMethods): Allow for recursive definition.  Long
9576         term, I would like to move every type to support recursive
9577         definitions, not the current ordering mechanism that we have right
9578         now.
9579
9580         The situation is this: Attributes are handled before interfaces,
9581         so we can apply attributes to interfaces.  But some attributes
9582         implement interfaces, we will now handle the simple cases
9583         (recursive definitions will just get an error).  
9584
9585         * parameter.cs: Only invalidate types at the end if we fail to
9586         lookup all types.  
9587
9588 2002-09-09  Martin Baulig  <martin@gnome.org>
9589
9590         * ecore.cs (PropertyExpr.Emit): Also check for
9591         TypeManager.system_int_array_get_length so this'll also work when
9592         compiling corlib.  Fixes #30003.
9593
9594 2002-09-09  Martin Baulig  <martin@gnome.org>
9595
9596         * expression.cs (ArrayCreation.MakeByteBlob): Added support for enums
9597         and throw an exception if we can't get the type's size.  Fixed #30040,
9598         added test-165.cs.
9599
9600 2002-09-09  Martin Baulig  <martin@gnome.org>
9601
9602         * ecore.cs (PropertyExpr.DoResolve): Added check for static properies.
9603
9604         * expression.cs (SizeOf.DoResolve): Sizeof is only allowed in unsafe
9605         context.  Fixes bug #30027.
9606
9607         * delegate.cs (NewDelegate.Emit): Use OpCodes.Ldvirtftn for
9608         virtual functions.  Fixes bug #30043, added test-164.cs.
9609
9610 2002-09-08  Ravi Pratap  <ravi@ximian.com>
9611
9612         * attribute.cs : Fix a small NullRef crash thanks to my stupidity.
9613
9614 2002-09-08  Nick Drochak  <ndrochak@gol.com>
9615
9616         * driver.cs: Use an object to get the windows codepage since it's not a
9617         static property.
9618
9619 2002-09-08  Miguel de Icaza  <miguel@ximian.com>
9620
9621         * statement.cs (For.Emit): for infinite loops (test == null)
9622         return whether there is a break inside, not always "true".
9623
9624         * namespace.cs (UsingEntry): New struct to hold the name of the
9625         using definition, the location where it is defined, and whether it
9626         has been used in a successful type lookup.
9627
9628         * rootcontext.cs (NamespaceLookup): Use UsingEntries instead of
9629         strings.
9630
9631         * decl.cs: ditto.
9632
9633 2002-09-06  Ravi Pratap  <ravi@ximian.com>
9634
9635         * attribute.cs : Fix incorrect code which relied on catching
9636         a NullReferenceException to detect a null being passed in
9637         where an object was expected.
9638
9639 2002-09-06  Miguel de Icaza  <miguel@ximian.com>
9640
9641         * statement.cs (Try): flag the catch variable as assigned
9642
9643         * expression.cs (Cast): Simplified by using ResolveType instead of
9644         manually resolving.
9645
9646         * statement.cs (Catch): Fix bug by using ResolveType.
9647
9648 2002-09-06  Ravi Pratap  <ravi@ximian.com>
9649
9650         * expression.cs (BetterConversion): Special case for when we have
9651         a NullLiteral as the argument and we have to choose between string
9652         and object types - we choose string the way csc does.
9653
9654         * attribute.cs (Attribute.Resolve): Catch the
9655         NullReferenceException and report error #182 since the Mono
9656         runtime no more has the bug and having this exception raised means
9657         we tried to select a constructor which takes an object and is
9658         passed a null.
9659
9660 2002-09-05  Ravi Pratap  <ravi@ximian.com>
9661
9662         * expression.cs (Invocation.OverloadResolve): Flag a nicer error
9663         message (1502, 1503) when we can't locate a method after overload
9664         resolution. This is much more informative and closes the bug
9665         Miguel reported.
9666
9667         * interface.cs (PopulateMethod): Return if there are no argument
9668         types. Fixes a NullReferenceException bug.
9669
9670         * attribute.cs (Attribute.Resolve): Ensure we allow TypeOf
9671         expressions too. Previously we were checking only in one place for
9672         positional arguments leaving out named arguments.
9673
9674         * ecore.cs (ImplicitNumericConversion): Conversion from underlying
9675         type to the enum type is not allowed. Remove code corresponding to
9676         that.
9677
9678         (ConvertNumericExplicit): Allow explicit conversions from
9679         the underlying type to enum type. This precisely follows the spec
9680         and closes a bug filed by Gonzalo.
9681
9682 2002-09-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9683
9684         * compiler.csproj:
9685         * compiler.csproj.user: patch from Adam Chester (achester@bigpond.com).
9686
9687 2002-09-03  Miguel de Icaza  <miguel@ximian.com>
9688
9689         * statement.cs (SwitchLabel.ResolveAndReduce): In the string case,
9690         it was important that we stored the right value after the
9691         reduction in `converted'.
9692
9693 2002-09-04  Martin Baulig  <martin@gnome.org>
9694
9695         * location.cs (Location.SymbolDocument): Use full pathnames for the
9696         source files.
9697
9698 2002-08-30  Miguel de Icaza  <miguel@ximian.com>
9699
9700         * expression.cs (ComposedCast): Use DeclSparce.ResolveType instead
9701         of the expression resolve mechanism, because that will catch the
9702         SimpleName error failures.
9703
9704         (Conditional): If we can not resolve the
9705         expression, return, do not crash.
9706
9707 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9708
9709         * cs-tokenizer.cs:
9710         (location): display token name instead of its number.
9711
9712 2002-08-28  Martin Baulig  <martin@gnome.org>
9713
9714         * expression.cs (Binary.ResolveOperator): Don't silently return
9715         but return an error if an operator cannot be applied between two
9716         enum types.
9717
9718 2002-08-28  Martin Baulig  <martin@gnome.org>
9719
9720         * class.cs (Constructor.Define): Set the permission attributes
9721         correctly instead of making all constructors public.
9722
9723 2002-08-28  Martin Baulig  <martin@gnome.org>
9724
9725         * ecore.cs (Expression.DoResolve): Do a TypeManager.MemberLook
9726         for private members before reporting a CS0103; if we find anything,
9727         it's a CS0122.
9728
9729 2002-08-28  Martin Baulig  <martin@gnome.org>
9730
9731         * typemanager.cs (TypeManager.FilterWithClosure): It's not enough
9732         to check whether `closure_start_type == closure_invocation_type',
9733         we also need to check whether `m.DeclaringType == closure_invocation_type'
9734         before bypassing the permission checks.  We might be accessing
9735         protected/private members from the base class.
9736         (TypeManager.RealMemberLookup): Only set private_ok if private
9737         members were requested via BindingFlags.NonPublic.
9738
9739         * ecore.cs (MethodGroupExpr.IsExplicitImpl): New property.
9740
9741         * expression.cs (MemberAccess.ResolveMemberAccess): Set
9742         MethodGroupExpr.IsExplicitImpl if appropriate.
9743         (Invocation.DoResolve): Don't report the CS0120 for explicit
9744         interface implementations.
9745
9746 2002-08-27  Martin Baulig  <martin@gnome.org>
9747
9748         * expression.cs (Invocation.DoResolve): If this is a static
9749         method and we don't have an InstanceExpression, we must report
9750         a CS0120.
9751
9752 2002-08-25  Martin Baulig  <martin@gnome.org>
9753
9754         * expression.cs (Binary.ResolveOperator): Don't allow `!=' and
9755         `==' between a valuetype and an object.
9756
9757 2002-08-25  Miguel de Icaza  <miguel@ximian.com>
9758
9759         * ecore.cs (TypeExpr): Provide a ToString method.
9760
9761 2002-08-24  Martin Baulig  <martin@gnome.org>
9762
9763         * codegen.cs (CodeGen.InitMonoSymbolWriter): The symbol file is
9764         now called proggie.dbg and it's a binary file.
9765
9766 2002-08-23  Martin Baulig  <martin@gnome.org>
9767
9768         * decl.cs (MemberCache.AddMethods): Ignore varargs methods.
9769
9770 2002-08-23  Martin Baulig  <martin@gnome.org>
9771
9772         * struct.cs (MyStructInfo.ctor): Make this work with empty
9773         structs; it's not allowed to use foreach() on null.
9774
9775 2002-08-23  Martin Baulig  <martin@gnome.org>
9776
9777         * codegen.cs (CodeGen.InitMonoSymbolWriter): Tell the symbol
9778         writer the full pathname of the generated assembly.
9779
9780 2002-08-23  Martin Baulig  <martin@gnome.org>
9781
9782         * statements.cs (FlowBranching.UsageVector.MergeChildren):
9783         A `finally' block never returns or breaks; improved handling of
9784         unreachable code.
9785
9786 2002-08-23  Martin Baulig  <martin@gnome.org>
9787
9788         * statement.cs (Throw.Resolve): Allow `throw null'.
9789
9790 2002-08-23  Martin Baulig  <martin@gnome.org>
9791
9792         * expression.cs (MemberAccess.ResolveMemberAccess): If this is an
9793         EventExpr, don't do a DeclaredOnly MemberLookup, but check whether
9794         `ee.EventInfo.DeclaringType == ec.ContainerType'.  The
9795         MemberLookup would return a wrong event if this is an explicit
9796         interface implementation and the class has an event with the same
9797         name.
9798
9799 2002-08-23  Martin Baulig  <martin@gnome.org>
9800
9801         * statement.cs (Block.AddChildVariableNames): New public method.
9802         (Block.AddChildVariableName): Likewise.
9803         (Block.IsVariableNameUsedInChildBlock): Likewise.
9804         (Block.AddVariable): Check whether a variable name has already
9805         been used in a child block.
9806
9807         * cs-parser.jay (declare_local_variables): Mark all variable names
9808         from the current block as being used in a child block in the
9809         implicit block.
9810
9811 2002-08-23  Martin Baulig  <martin@gnome.org>
9812
9813         * codegen.cs (CodeGen.InitializeSymbolWriter): Abort if we can't
9814         find the symbol writer.
9815
9816         * driver.cs: csc also allows the arguments to /define being
9817         separated by commas, not only by semicolons.
9818
9819 2002-08-23  Martin Baulig  <martin@gnome.org>
9820
9821         * interface.cs (Interface.GetMembers): Added static check for events.
9822
9823 2002-08-15  Martin Baulig  <martin@gnome.org>
9824
9825         * class.cs (MethodData.EmitDestructor): In the Expression.MemberLookup
9826         call, use ec.ContainerType.BaseType as queried_type and invocation_type.
9827
9828         * ecore.cs (Expression.MemberLookup): Added documentation and explained
9829         why the MethodData.EmitDestructor() change was necessary.
9830
9831 2002-08-20  Martin Baulig  <martin@gnome.org>
9832
9833         * class.cs (TypeContainer.FindMembers): Added static check for events.
9834
9835         * decl.cs (MemberCache.AddMembers): Handle events like normal members.
9836
9837         * typemanager.cs (TypeHandle.GetMembers): When queried for events only,
9838         use Type.GetEvents(), not Type.FindMembers().
9839
9840 2002-08-20  Martin Baulig  <martin@gnome.org>
9841
9842         * decl.cs (MemberCache): Added a special method cache which will
9843         be used for method-only searched.  This ensures that a method
9844         search will return a MethodInfo with the correct ReflectedType for
9845         inherited methods.      
9846
9847 2002-08-20  Martin Baulig  <martin@gnome.org>
9848
9849         * decl.cs (DeclSpace.FindMembers): Made this public.
9850
9851 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9852
9853         * delegate.cs: fixed build on windows.
9854         [FIXME:  Filed as bug #29150: MCS must report these errors.]
9855
9856 2002-08-19  Ravi Pratap  <ravi@ximian.com>
9857
9858         * ecore.cs (StandardConversionExists): Return a false
9859         if we are trying to convert the void type to anything else
9860         since that is not allowed.
9861
9862         * delegate.cs (DelegateInvocation.DoResolve): Ensure that
9863         we flag error 70 in the event an event is trying to be accessed
9864         directly from outside the declaring type.
9865
9866 2002-08-20  Martin Baulig  <martin@gnome.org>
9867
9868         * typemanager.cs, decl.cs: Moved MemberList, IMemberContainer and
9869         MemberCache from typemanager.cs to decl.cs.
9870
9871 2002-08-19  Martin Baulig  <martin@gnome.org>
9872
9873         * class.cs (TypeContainer): Implement IMemberContainer.
9874         (TypeContainer.DefineMembers): Create the MemberCache.
9875         (TypeContainer.FindMembers): Do better BindingFlags checking; only
9876         return public members if BindingFlags.Public was given, check
9877         whether members are static.
9878
9879 2002-08-16  Martin Baulig  <martin@gnome.org>
9880
9881         * decl.cs (DeclSpace.Define): Splitted this in Define and
9882         DefineMembers.  DefineMembers is called first and initializes the
9883         MemberCache.
9884
9885         * rootcontext.cs (RootContext.DefineMembers): New function.  Calls
9886         DefineMembers() on all our DeclSpaces.
9887
9888         * class.cs (TypeContainer.Define): Moved all code to DefineMembers(),
9889         but call DefineMembers() on all nested interfaces.  We call their
9890         Define() in our new Define() function.
9891
9892         * interface.cs (Interface): Implement IMemberContainer.
9893         (Interface.Define): Moved all code except the attribute stuf to
9894         DefineMembers().
9895         (Interface.DefineMembers): Initialize the member cache.
9896
9897         * typemanager.cs (IMemberFinder): Removed this interface, we don't
9898         need this anymore since we can use MemberCache.FindMembers directly.
9899
9900 2002-08-19  Martin Baulig  <martin@gnome.org>
9901
9902         * typemanager.cs (MemberCache): When creating the cache for an
9903         interface type, add all inherited members.
9904         (TypeManager.MemberLookup_FindMembers): Changed `ref bool searching'
9905         to `out bool used_cache' and documented it.
9906         (TypeManager.MemberLookup): If we already used the cache in the first
9907         iteration, we don't need to do the interfaces check.
9908
9909 2002-08-19  Martin Baulig  <martin@gnome.org>
9910
9911         * decl.cs (DeclSpace.FindMembers): New abstract method.  Moved this
9912         here from IMemberFinder and don't implement this interface anymore.
9913         (DeclSpace.MemberCache): Moved here from IMemberFinder.
9914
9915         * typemanager.cs (IMemberFinder): This interface is now only used by
9916         classes which actually support the member cache.
9917         (TypeManager.builder_to_member_finder): Renamed to builder_to_declspace
9918         since we only put DeclSpaces into this Hashtable.
9919         (MemberLookup_FindMembers): Use `builder_to_declspace' if the type is
9920         a dynamic type and TypeHandle.GetTypeHandle() otherwise.
9921
9922 2002-08-16  Martin Baulig  <martin@gnome.org>
9923
9924         * typemanager.cs (ICachingMemberFinder): Removed.
9925         (IMemberFinder.MemberCache): New property.
9926         (TypeManager.FindMembers): Merged this with RealFindMembers().
9927         This function will never be called from TypeManager.MemberLookup()
9928         so we can't use the cache here, just the IMemberFinder.
9929         (TypeManager.MemberLookup_FindMembers): Check whether the
9930         IMemberFinder has a MemberCache and call the cache's FindMembers
9931         function.
9932         (MemberCache): Rewrote larger parts of this yet another time and
9933         cleaned it up a bit.
9934
9935 2002-08-15  Miguel de Icaza  <miguel@ximian.com>
9936
9937         * driver.cs (LoadArgs): Support quoting.
9938
9939         (Usage): Show the CSC-like command line arguments.
9940
9941         Improved a few error messages.
9942
9943 2002-08-15  Martin Baulig  <martin@gnome.org>
9944
9945         * typemanager.cs (IMemberContainer.Type): New property.
9946         (IMemberContainer.IsInterface): New property.
9947
9948         The following changes are conditional to BROKEN_RUNTIME, which is
9949         defined at the top of the file.
9950
9951         * typemanager.cs (MemberCache.MemberCache): Don't add the base
9952         class'es members, but add all members from TypeHandle.ObjectType
9953         if we're an interface.
9954         (MemberCache.AddMembers): Set the Declared flag if member.DeclaringType
9955         is the current type.
9956         (MemberCache.CacheEntry.Container): Removed this field.
9957         (TypeHandle.GetMembers): Include inherited members.
9958
9959 2002-08-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9960
9961         * typemanager.cs: fixed compilation and added a comment on a field that
9962         is never used.
9963
9964 2002-08-15  Martin Baulig  <martin@gnome.org>
9965
9966         * class.cs (ConstructorInitializer.Resolve): In the
9967         Expression.MemberLookup call, use the queried_type as
9968         invocation_type.
9969
9970         * typemanager.cs (IMemberContainer.GetMembers): Removed the `bool
9971         declared' attribute, it's always true.
9972         (IMemberContainer.Parent, IMemberContainer.Name): New properties.
9973         (TypeManager.MemberLookup_FindMembers): [FIXME FIXME FIXME] Added
9974         temporary wrapper for FindMembers which tells MemberLookup whether
9975         members from the base classes are included in the return value.
9976         This will go away soon.
9977         (TypeManager.MemberLookup): Use this temporary hack here; once the
9978         new MemberCache is completed, we don't need to do the DeclaredOnly
9979         looping here anymore since the MemberCache will take care of this.
9980         (TypeManager.IsSubclassOrNestedChildOf): Allow `type == parent'.
9981         (MemberCache): When creating the MemberCache for a class, get
9982         members from the current class and all its base classes.
9983         (MemberCache.CacheEntry.Container): New field.  This is a
9984         temporary hack until the Mono runtime is fixed to distinguish
9985         between ReflectedType and DeclaringType.  It allows us to use MCS
9986         with both the MS runtime and the unfixed Mono runtime without
9987         problems and without accecting performance.
9988         (MemberCache.SearchMembers): The DeclaredOnly looping from
9989         TypeManager.MemberLookup is now done here.      
9990
9991 2002-08-14  Martin Baulig  <martin@gnome.org>
9992
9993         * statement.cs (MyStructInfo.MyStructInfo): Don't call
9994         Type.GetFields on dynamic types but get the fields from the
9995         corresponding TypeContainer.
9996         (MyStructInfo.GetStructInfo): Added check for enum types.
9997
9998         * typemanager.cs (MemberList.IsSynchronized): Implemented.
9999         (MemberList.SyncRoot): Implemented.
10000         (TypeManager.FilterWithClosure): No need to check permissions if
10001         closure_start_type == closure_invocation_type, don't crash if
10002         closure_invocation_type is null.
10003
10004 2002-08-13  Martin Baulig  <martin@gnome.org>
10005
10006         Rewrote TypeContainer.FindMembers to use a member cache.  This
10007         gives us a speed increase of about 35% for the self-hosting MCS
10008         build and of about 15-20% for the class libs (both on GNU/Linux).
10009
10010         * report.cs (Timer): New class to get enhanced profiling.  This
10011         whole class is "TIMER" conditional since it remarkably slows down
10012         compilation speed.
10013
10014         * class.cs (MemberList): New class.  This is an IList wrapper
10015         which we're now using instead of passing MemberInfo[]'s around to
10016         avoid copying this array unnecessarily.
10017         (IMemberFinder.FindMember): Return a MemberList, not a MemberInfo [].
10018         (ICachingMemberFinder, IMemberContainer): New interface.
10019         (TypeManager.FilterWithClosure): If `criteria' is null, the name
10020         has already been checked, otherwise use it for the name comparision.
10021         (TypeManager.FindMembers): Renamed to RealMemberFinder and
10022         provided wrapper which tries to use ICachingMemberFinder.FindMembers
10023         if possible.  Returns a MemberList, not a MemberInfo [].
10024         (TypeHandle): New class, implements IMemberContainer.  We create
10025         one instance of this class per type, it contains a MemberCache
10026         which is used to do the member lookups.
10027         (MemberCache): New class.  Each instance of this class contains
10028         all members of a type and a name-based hash table.
10029         (MemberCache.FindMembers): This is our new member lookup
10030         function.  First, it looks up all members of the requested name in
10031         the hash table.  Then, it walks this list and sorts out all
10032         applicable members and returns them.
10033
10034 2002-08-13  Martin Baulig  <martin@gnome.org>
10035
10036         In addition to a nice code cleanup, this gives us a performance
10037         increase of about 1.4% on GNU/Linux - not much, but it's already
10038         half a second for the self-hosting MCS compilation.
10039
10040         * typemanager.cs (IMemberFinder): New interface.  It is used by
10041         TypeManager.FindMembers to call FindMembers on a TypeContainer,
10042         Enum, Delegate or Interface.
10043         (TypeManager.finder_to_member_finder): New PtrHashtable.
10044         (TypeManager.finder_to_container): Removed.
10045         (TypeManager.finder_to_delegate): Removed.
10046         (TypeManager.finder_to_interface): Removed.
10047         (TypeManager.finder_to_enum): Removed.
10048
10049         * interface.cs (Interface): Implement IMemberFinder.
10050
10051         * delegate.cs (Delegate): Implement IMemberFinder.
10052
10053         * enum.cs (Enum): Implement IMemberFinder.
10054
10055         * class.cs (TypeContainer): Implement IMemberFinder.
10056
10057 2002-08-12  Martin Baulig  <martin@gnome.org>
10058
10059         * ecore.cs (TypeExpr.DoResolveType): Mark this as virtual.
10060
10061 2002-08-12  Martin Baulig  <martin@gnome.org>
10062
10063         * ecore.cs (ITypeExpression): New interface for expressions which
10064         resolve to a type.
10065         (TypeExpression): Renamed to TypeLookupExpression.
10066         (Expression.DoResolve): If we're doing a types-only lookup, the
10067         expression must implement the ITypeExpression interface and we
10068         call DoResolveType() on it.
10069         (SimpleName): Implement the new ITypeExpression interface.
10070         (SimpleName.SimpleNameResolve): Removed the ec.OnlyLookupTypes
10071         hack, the situation that we're only looking up types can't happen
10072         anymore when this method is called.  Moved the type lookup code to
10073         DoResolveType() and call it.
10074         (SimpleName.DoResolveType): This ITypeExpression interface method
10075         is now doing the types-only lookup.
10076         (TypeExpr, TypeLookupExpression): Implement ITypeExpression.
10077         (ResolveFlags): Added MaskExprClass.
10078
10079         * expression.cs (MemberAccess): Implement the ITypeExpression
10080         interface.
10081         (MemberAccess.DoResolve): Added support for a types-only lookup
10082         when we're called via ITypeExpression.DoResolveType().
10083         (ComposedCast): Implement the ITypeExpression interface.
10084
10085         * codegen.cs (EmitContext.OnlyLookupTypes): Removed.  Call
10086         Expression.Resolve() with ResolveFlags.Type instead.
10087
10088 2002-08-12  Martin Baulig  <martin@gnome.org>
10089
10090         * interface.cs (Interface.Define): Apply attributes.
10091
10092         * attribute.cs (Attribute.ApplyAttributes): Added support for
10093         interface attributes.
10094
10095 2002-08-11  Martin Baulig  <martin@gnome.org>
10096
10097         * statement.cs (Block.Emit): Only check the "this" variable if we
10098         do not always throw an exception.
10099
10100         * ecore.cs (PropertyExpr.DoResolveLValue): Implemented, check
10101         whether the property has a set accessor.
10102
10103 2002-08-11  Martin Baulig  <martin@gnome.org>
10104
10105         Added control flow analysis support for structs.
10106
10107         * ecore.cs (ResolveFlags): Added `DisableFlowAnalysis' to resolve
10108         with control flow analysis turned off.
10109         (IVariable): New interface.
10110         (SimpleName.SimpleNameResolve): If MemberAccess.ResolveMemberAccess
10111         returns an IMemberExpr, call DoResolve/DoResolveLValue on it.
10112         (FieldExpr.DoResolve): Resolve the instance expression with flow
10113         analysis turned off and do the definite assignment check after the
10114         resolving when we know what the expression will resolve to.
10115
10116         * expression.cs (LocalVariableReference, ParameterReference):
10117         Implement the new IVariable interface, only call the flow analysis
10118         code if ec.DoFlowAnalysis is true.
10119         (This): Added constructor which takes a Block argument.  Implement
10120         the new IVariable interface.
10121         (MemberAccess.DoResolve, MemberAccess.DoResolveLValue): Call
10122         DoResolve/DoResolveLValue on the result of ResolveMemberLookup().
10123         This does the definite assignment checks for struct members.
10124
10125         * class.cs (Constructor.Emit): If this is a non-static `struct'
10126         constructor which doesn't have any initializer, call
10127         Block.AddThisVariable() to tell the flow analysis code that all
10128         struct elements must be initialized before control returns from
10129         the constructor.
10130
10131         * statement.cs (MyStructInfo): New public class.
10132         (UsageVector.this [VariableInfo vi]): Added `int field_idx'
10133         argument to this indexer.  If non-zero, check an individual struct
10134         member, not the whole struct.
10135         (FlowBranching.CheckOutParameters): Check struct members.
10136         (FlowBranching.IsVariableAssigned, SetVariableAssigned): Added
10137         overloaded versions of these methods which take an additional
10138         `int field_idx' argument to check struct members.
10139         (FlowBranching.IsParameterAssigned, SetParameterAssigned): Added
10140         overloaded versions of these methods which take an additional
10141         `string field_name' argument to check struct member.s
10142         (VariableInfo): Implement the IVariable interface.
10143         (VariableInfo.StructInfo): New public property.  Returns the
10144         MyStructInfo instance of the variable if it's a struct or null.
10145         (Block.AddThisVariable): New public method.  This is called from
10146         Constructor.Emit() for non-static `struct' constructor which do
10147         not have any initializer.  It creates a special variable for the
10148         "this" instance variable which will be checked by the flow
10149         analysis code to ensure that all of the struct's fields are
10150         initialized before control returns from the constructor.
10151         (UsageVector): Added support for struct members.  If a
10152         variable/parameter is a struct with N members, we reserve a slot
10153         in the usage vector for each member.  A struct is considered fully
10154         initialized if either the struct itself (slot 0) or all its
10155         members are initialized.
10156
10157 2002-08-08  Martin Baulig  <martin@gnome.org>
10158
10159         * driver.cs (Driver.MainDriver): Only report an error CS5001
10160         if there were no compilation errors.
10161
10162         * codegen.cs (EmitContext.EmitContext): Use the DeclSpace's
10163         `UnsafeContext' property to determine whether the parent is in
10164         unsafe context rather than checking the parent's ModFlags:
10165         classes nested in an unsafe class are unsafe as well.
10166
10167 2002-08-08  Martin Baulig  <martin@gnome.org>
10168
10169         * statement.cs (UsageVector.MergeChildren): Distinguish between
10170         `Breaks' and `Returns' everywhere, don't set `Breaks' anymore if
10171         we return.  Added test17() and test18() to test-154.cs.
10172
10173 2002-08-08  Martin Baulig  <martin@gnome.org>
10174
10175         * typemanager.cs (TypeManager.FilterWithClosure): If we have
10176         Family access, make sure the invoking type isn't a subclass of the
10177         queried type (that'd be a CS1540).
10178
10179         * ecore.cs (Expression.MemberLookup): Added overloaded version of
10180         this method which takes an additional `Type invocation_type'.
10181
10182         * expression.cs (BaseAccess.DoResolve): Use the base type as
10183         invocation and query type.
10184         (MemberAccess.DoResolve): If the lookup failed and we're about to
10185         report a CS0122, try a lookup with the ec.ContainerType - if this
10186         succeeds, we must report a CS1540.
10187
10188 2002-08-08  Martin Baulig  <martin@gnome.org>
10189
10190         * ecore.cs (IMemberExpr): Added `bool IsInstance' property.
10191         (MethodGroupExpr): Implement the IMemberExpr interface.
10192
10193         * expression (MemberAccess.ResolveMemberAccess): No need to have
10194         any special code for MethodGroupExprs anymore, they're now
10195         IMemberExprs.   
10196
10197 2002-08-08  Martin Baulig  <martin@gnome.org>
10198
10199         * typemanager.cs (TypeManager.FilterWithClosure): Check Assembly,
10200         Family, FamANDAssem and FamORAssem permissions.
10201         (TypeManager.IsSubclassOrNestedChildOf): New public method.
10202
10203 2002-08-08  Martin Baulig  <martin@gnome.org>
10204
10205         * statement.cs (FlowBranchingType): Added LOOP_BLOCK.
10206         (UsageVector.MergeChildren): `break' breaks unless we're in a switch
10207         or loop block.
10208
10209 Thu Aug 8 10:28:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
10210
10211         * driver.cs: implemented /resource option to embed managed resources.
10212
10213 2002-08-07  Martin Baulig  <martin@gnome.org>
10214
10215         * class.cs (FieldBase.Initializer): Renamed to `init' and made private.
10216         (FieldBase.HasFieldInitializer): New public property.
10217         (FieldBase.GetInitializerExpression): New public method.  Resolves and
10218         returns the field initializer and makes sure it is only resolved once.
10219         (TypeContainer.EmitFieldInitializers): Call
10220         FieldBase.GetInitializerExpression to get the initializer, this ensures
10221         that it isn't resolved multiple times.
10222
10223         * codegen.cs (EmitContext): Added `bool IsFieldInitialier'.  This tells
10224         the resolving process (SimpleName/MemberLookup) that we're currently
10225         emitting a field initializer (which must not access any instance members,
10226         this is an error CS0236).
10227
10228         * ecore.cs (SimpleName.Error_ObjectRefRequired): Added EmitContext
10229         argument, if the `IsFieldInitializer' flag is set, we must report and
10230         error CS0236 and not an error CS0120.   
10231
10232 2002-08-07  Martin Baulig  <martin@gnome.org>
10233
10234         * ecore.cs (IMemberExpr): New public interface.
10235         (FieldExpr, PropertyExpr, EventExpr): Implement IMemberExpr.
10236         (SimpleName.SimpleNameResolve): Call MemberAccess.ResolveMemberAccess
10237         if the expression is an IMemberExpr.
10238
10239         * expression.cs (MemberAccess.ResolveMemberAccess): Allow `left'
10240         to be null, implicitly default to `this' if we're non-static in
10241         this case.  Simplified the code a lot by using the new IMemberExpr
10242         interface.  Also fixed bug #28176 here.
10243
10244 2002-08-06  Martin Baulig  <martin@gnome.org>
10245
10246         * cs-parser.jay (SimpleLookup): Removed.  We need to create
10247         ParameterReferences during semantic analysis so that we can do a
10248         type-only search when resolving Cast, TypeOf and SizeOf.
10249         (block): Pass the `current_local_parameters' to the Block's
10250         constructor.
10251
10252         * class.cs (ConstructorInitializer): Added `Parameters parameters'
10253         argument to the constructor.
10254         (ConstructorInitializer.Resolve): Create a temporary implicit
10255         block with the parameters.
10256
10257         * ecore.cs (SimpleName.SimpleNameResolve): Resolve parameter
10258         references here if we aren't doing a type-only search.
10259
10260         * statement.cs (Block): Added constructor which takes a
10261         `Parameters parameters' argument.
10262         (Block.Parameters): New public property.
10263
10264         * support.cs (InternalParameters.Parameters): Renamed `parameters'
10265         to `Parameters' and made it public readonly.
10266
10267 2002-08-06  Martin Baulig  <martin@gnome.org>
10268
10269         * ecore.cs (Expression.Warning): Made this public as well.
10270
10271         * report.cs (Report.Debug): Print the contents of collections.
10272
10273 2002-08-06  Martin Baulig  <martin@gnome.org>
10274
10275         * ecore.cs (Expression.ResolveFlags): New [Flags] enum.  This is
10276         used to tell Resolve() which kinds of expressions it may return.
10277         (Expression.Resolve): Added overloaded version of this method which
10278         takes a `ResolveFlags flags' argument.  This can be used to tell
10279         Resolve() which kinds of expressions it may return.  Reports a
10280         CS0118 on error.
10281         (Expression.ResolveWithSimpleName): Removed, use Resolve() with
10282         ResolveFlags.SimpleName.
10283         (Expression.Error118): Added overloaded version of this method which
10284         takes a `ResolveFlags flags' argument.  It uses the flags to determine
10285         which kinds of expressions are allowed.
10286
10287         * expression.cs (Argument.ResolveMethodGroup): New public method.
10288         Resolves an argument, but allows a MethodGroup to be returned.
10289         This is used when invoking a delegate.
10290
10291         * TODO: Updated a bit.
10292
10293 2002-08-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10294
10295         Fixed compilation with csc.
10296
10297         * ecore.cs: Expression.Error made public. Is this correct? Should
10298         Warning be made public too?
10299
10300         * expression.cs: use ea.Location instead of ea.loc.
10301         [FIXME:  Filed as bug #28607: MCS must report these errors.]
10302
10303 2002-08-06  Martin Baulig  <martin@gnome.org>
10304
10305         * ecore.cs (Expression.loc): Moved the location here instead of
10306         duplicating it in all derived classes.
10307         (Expression.Location): New public property.
10308         (Expression.Error, Expression.Warning): Made them non-static and
10309         removed the location argument.
10310         (Expression.Warning): Added overloaded version which takes an
10311         `int level' argument.
10312         (Expression.Error118): Make this non-static and removed the
10313         expression and location arguments.
10314         (TypeExpr): Added location argument to the constructor.
10315
10316         * expression.cs (StaticCallExpr): Added location argument to
10317         the constructor.
10318         (Indirection, PointerArithmetic): Likewise.
10319         (CheckedExpr, UnCheckedExpr): Likewise.
10320         (ArrayAccess, IndexerAccess, UserCast, ArrayPtr): Likewise.
10321         (StringPtr): Likewise.
10322
10323
10324 2002-08-05  Martin Baulig  <martin@gnome.org>
10325
10326         * expression.cs (BaseAccess.DoResolve): Actually report errors.
10327
10328         * assign.cs (Assign.DoResolve): Check whether the source
10329         expression is a value or variable.
10330
10331         * statement.cs (Try.Resolve): Set ec.InTry/InCatch/InFinally
10332         while resolving the corresponding blocks.
10333
10334         * interface.cs (Interface.GetInterfaceTypeByName): Actually report
10335         an error, don't silently return null.
10336
10337         * statement.cs (Block.AddVariable): Do the error reporting here
10338         and distinguish between CS0128 and CS0136.
10339         (Block.DoResolve): Report all unused labels (warning CS0164).
10340         (LabeledStatement): Pass the location to the constructor.
10341         (LabeledStatement.HasBeenReferenced): New property.
10342         (LabeledStatement.Resolve): Set it to true here.
10343
10344         * statement.cs (Return.Emit): Return success even after reporting
10345         a type mismatch error (CS0126 or CS0127), this is what csc does and
10346         it avoids confusing the users with any consecutive errors.
10347
10348 2002-08-05  Martin Baulig  <martin@gnome.org>
10349
10350         * enum.cs (Enum.LookupEnumValue): Catch circular definitions.
10351
10352         * const.cs (Const.LookupConstantValue): Catch circular definitions.
10353
10354         * expression.cs (MemberAccess.DoResolve): Silently return if an
10355         error has already been reported.
10356
10357         * ecore.cs (Expression.MemberLookupFinal): Silently return if an
10358         error has already been reported.
10359
10360 2002-08-05  Martin Baulig  <martin@gnome.org>
10361
10362         * statement.cs (UsageVector): Only initialize the `parameters'
10363         vector if we actually have any "out" parameters.
10364
10365 2002-08-05  Martin Baulig  <martin@gnome.org>
10366
10367         * expression.cs (Binary.ResolveOperator): When combining delegates,
10368         they must have the same type.
10369
10370 2002-08-05  Martin Baulig  <martin@gnome.org>
10371
10372         * typemanager.cs (TypeManager.GetArgumentTypes): Don't call
10373         PropertyInfo.GetIndexParameters() on dynamic types, this doesn't
10374         work with the ms runtime and we also don't need it: if we're a
10375         PropertyBuilder and not in the `indexer_arguments' hash, then we
10376         are a property and not an indexer.
10377
10378         * class.cs (TypeContainer.AsAccessible): Use Type.IsArray,
10379         Type.IsPointer and Type.IsByRef instead of Type.HasElementType
10380         since the latter one doesn't work with the ms runtime.
10381
10382 2002-08-03  Martin Baulig  <martin@gnome.org>
10383
10384         Fixed bugs #27998 and #22735.
10385
10386         * class.cs (Method.IsOperator): New public field.
10387         (Method.CheckBase): Report CS0111 if there's already a method
10388         with the same parameters in the current class.  Report CS0508 when
10389         attempting to change the return type of an inherited method.
10390         (MethodData.Emit): Report CS0179 if a method doesn't have a body
10391         and it's not marked abstract or extern.
10392         (PropertyBase): New abstract base class for Property and Indexer.
10393         (PropertyBase.CheckBase): Moved here from Property and made it work
10394         for indexers.
10395         (PropertyBase.Emit): Moved here from Property.Emit, Indexer.Emit is
10396         the same so we can reuse it there.
10397         (Property, Indexer): Derive from PropertyBase.
10398         (MethodSignature.inheritable_property_signature_filter): New delegate
10399         to find properties and indexers.
10400
10401         * decl.cs (MemberCore.CheckMethodAgainstBase): Added `string name'
10402         argument and improved error reporting.
10403
10404         * parameter.cs (Parameters.GetEmptyReadOnlyParameters): Renamed to
10405         EmptyReadOnlyParameters and made it a property.
10406
10407         * typemanager.cs (TypeManager.GetArgumentTypes): Added overloaded
10408         version of this method which takes a `PropertyInfo indexer'.
10409         (TypeManager.RegisterIndexer): New method.
10410
10411         * class.cs: Added myself as author of this file :-)
10412
10413 2002-08-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10414
10415         * class.cs: fixed compilation on windoze.
10416
10417 2002-08-03  Martin Baulig  <martin@gnome.org>
10418
10419         * interface.cs (Interface.GetInterfaceBases): Check whether all
10420         base interfaces are at least as accessible than the current one.
10421
10422         * class.cs (TypeContainer.GetClassBases): Check whether base types
10423         are at least as accessible than the current type.
10424         (TypeContainer.AsAccessible): Implemented and made non-static.
10425         (MemberBase.CheckParameters): Report errors if the accessibility
10426         checks fail.
10427
10428         * delegate.cs (Delegate.Delegate): The default visibility is
10429         internal for top-level types and private for nested types.
10430         (Delegate.Define): Report errors if the accessibility checks fail.
10431
10432         * enum.cs (Enum.Enum): The default visibility is internal for
10433         top-level types and private for nested types.
10434         (Enum.DefineType): Compute the correct visibility.
10435
10436         * modifiers.cs (Modifiers.TypeAttr): Added a version of this
10437         function which takes a `bool is_toplevel' instead of a TypeContainer.
10438
10439         * typemanager.cs (TypeManager.IsBuiltinType): `void' is also a
10440         builtin type.
10441
10442 2002-08-02  Martin Baulig  <martin@gnome.org>
10443
10444         * expression.cs (LocalVariableReferenc): Added constructor which
10445         takes additional `VariableInfo vi' and `bool is_readonly' arguments.
10446         (LocalVariableReference.IsReadOnly): New property.
10447         (LocalVariableReference.DoResolveLValue): Report a CS1604 if the
10448         variable is readonly, use our own readonly flag to do this; you can
10449         use the new constructor to get a writable reference to a read-only
10450         variable.
10451
10452         * cs-parser.jay (foreach_statement, using_statement): Get a writable
10453         reference to the local variable.
10454
10455 2002-08-01  Miguel de Icaza  <miguel@ximian.com>
10456
10457         * rootcontext.cs (ResolveCore): Also include System.Exception
10458
10459         * statement.cs (Block.Emit): Do not emit the dead-code warnings if
10460         we reach an EmptyStatement.
10461
10462         (Catch.DoResolve, Throw.DoResolve): Throwing the System.Exception
10463         is also fine.
10464
10465         * expression.cs (Binary.ResolveOperator): Check error result in
10466         two places.
10467
10468         use brtrue/brfalse directly and avoid compares to null.
10469
10470 2002-08-02  Martin Baulig  <martin@gnome.org>
10471
10472         * class.cs (TypeContainer.Define): Define all nested interfaces here.
10473         Fixes bug #28407, added test-155.cs.
10474
10475 2002-08-01  Martin Baulig  <martin@gnome.org>
10476
10477         * class.cs (Event.EmitDefaultMethod): Make this work with static
10478         events.  Fixes #28311, added verify-3.cs.
10479
10480 2002-08-01  Martin Baulig  <martin@gnome.org>
10481
10482         * statement.cs (ForeachHelperMethods): Added `enumerator_type' and
10483         `is_disposable' fields.
10484         (Foreach.GetEnumeratorFilter): Set `hm.enumerator_type' and
10485         `hm.is_disposable' if we're using the collection pattern.
10486         (Foreach.EmitCollectionForeach): Use the correct type for the
10487         enumerator's local variable, only emit the try/finally block if
10488         necessary (fixes #27713).
10489
10490 2002-08-01  Martin Baulig  <martin@gnome.org>
10491
10492         * ecore.cs (Expression.report118): Renamed to Error118 and made
10493         it public static.
10494
10495         * statement.cs (Throw.Resolve): Check whether the expression is of
10496         the correct type (CS0118) and whether the type derives from
10497         System.Exception (CS0155).
10498         (Catch.Resolve): New method.  Do the type lookup here and check
10499         whether it derives from System.Exception (CS0155).
10500         (Catch.CatchType, Catch.IsGeneral): New public properties.
10501
10502         * typemanager.cs (TypeManager.exception_type): Added.
10503
10504 2002-07-31  Miguel de Icaza  <miguel@ximian.com>
10505
10506         * driver.cs: Updated About function.
10507
10508 2002-07-31  Martin Baulig  <martin@gnome.org>
10509
10510         Implemented Control Flow Analysis.
10511
10512         * codegen.cs (EmitContext.DoFlowAnalysis): New public variable.
10513         (EmitContext.CurrentBranching): Added.
10514         (EmitContext.StartFlowBranching): Added.
10515         (EmitContext.EndFlowBranching): Added.
10516         (EmitContext.KillFlowBranching): Added.
10517         (EmitContext.IsVariableAssigned): Added.
10518         (EmitContext.SetVariableAssigned): Added.
10519         (EmitContext.IsParameterAssigned): Added.
10520         (EmitContext.SetParameterAssigned): Added.
10521         (EmitContext.EmitTopBlock): Added `InternalParameters ip' argument.
10522         Added control flow analysis stuff here.
10523
10524         * expression.cs (Unary.DoResolve): If the operator is Oper.AddressOf,
10525         resolve the expression as lvalue.
10526         (LocalVariableReference.DoResolve): Check whether the variable has
10527         already been assigned.
10528         (ParameterReference.DoResolveLValue): Override lvalue resolve to mark
10529         the parameter as assigned here.
10530         (ParameterReference.DoResolve): Check whether the parameter has already
10531         been assigned.
10532         (Argument.Resolve): If it's a `ref' or `out' argument, resolve the
10533         expression as lvalue.
10534
10535         * statement.cs (FlowBranching): New class for the flow analysis code.
10536         (Goto): Resolve the label in Resolve, not in Emit; added flow analysis.
10537         (LabeledStatement.IsDefined): New public property.
10538         (LabeledStatement.AddUsageVector): New public method to tell flow
10539         analyis that the label may be reached via a forward jump.
10540         (GotoCase): Lookup and resolve the label in Resolve, not in Emit; added
10541         flow analysis.
10542         (VariableInfo.Number): New public field.  This is used by flow analysis
10543         to number all locals of a block.
10544         (Block.CountVariables): New public property.  This is the number of
10545         local variables in this block (including the locals from all parent
10546         blocks).
10547         (Block.EmitMeta): Number all the variables.
10548
10549         * statement.cs: Added flow analysis support to all classes.
10550
10551 2002-07-31  Martin Baulig  <martin@gnome.org>
10552
10553         * driver.cs: Added "--mcs-debug" argument if MCS_DEBUG is defined.
10554         To get debugging messages, compile mcs with /define:MCS_DEBUG and
10555         then use this argument.
10556
10557         * report.cs (Report.Debug): Renamed to conditional to "MCS_DEBUG".
10558
10559         * makefile.gnu (MCS_FLAGS): Include $(MCS_DEFINES), the user may
10560         use this to specify /define options.
10561
10562 2002-07-29  Martin Baulig  <martin@gnome.org>
10563
10564         * statement.cs (Fixed): Moved all code that does variable lookups
10565         and resolvings from Emit to Resolve.
10566
10567         * statement.cs (For): Moved all code that does variable lookups
10568         and resolvings from Emit to Resolve.
10569
10570         * statement.cs (Using): Moved all code that does variable lookups
10571         and resolvings from Emit to Resolve.
10572
10573 2002-07-29  Martin Baulig  <martin@gnome.org>
10574
10575         * attribute.cs (Attribute.Resolve): Explicitly catch a
10576         System.NullReferenceException when creating the
10577         CustromAttributeBuilder and report a different warning message.
10578
10579 2002-07-29  Martin Baulig  <martin@gnome.org>
10580
10581         * support.cs (ParameterData.ParameterName): Added method to
10582         get the name of a parameter.
10583
10584         * typemanager.cs (TypeManager.IsValueType): New public method.
10585
10586 2002-07-29  Martin Baulig  <martin@gnome.org>
10587
10588         * parameter.cs (Parameter.Modifier): Added `ISBYREF = 8'.  This
10589         is a flag which specifies that it's either ref or out.
10590         (Parameter.GetParameterInfo (DeclSpace, int, out bool)): Changed
10591         the out parameter to `out Parameter.Modifier mod', also set the
10592         Parameter.Modifier.ISBYREF flag on it if it's either ref or out.
10593
10594         * support.cs (InternalParameters.ParameterModifier): Distinguish
10595         between Parameter.Modifier.OUT and Parameter.Modifier.REF, set the
10596         Parameter.Modifier.ISBYREF flag if it's either ref or out.
10597
10598         * expression.cs (Argument.GetParameterModifier): Distinguish
10599         between Parameter.Modifier.OUT and Parameter.Modifier.REF, set the
10600         Parameter.Modifier.ISBYREF flag if it's either ref or out.
10601
10602 2002-07-29  Martin Baulig  <martin@gnome.org>
10603
10604         * expression.cs (ParameterReference.ParameterReference): Added
10605         `Location loc' argument to the constructor.
10606
10607         * cs-parser.jay: Pass location to ParameterReference.
10608
10609 2002-07-28  Miguel de Icaza  <miguel@ximian.com>
10610
10611         * statement.cs (Try): Initialize the location.
10612
10613         * cs-parser.jay: pass location to Try.
10614
10615         * expression.cs (Unary.Reduce): Change the prototype to return
10616         whether a constant fold could be performed or not.  The result is
10617         returned in an out parameters.  In the case of Indirection and
10618         AddressOf, we want to perform the full tests.
10619
10620 2002-07-26  Miguel de Icaza  <miguel@ximian.com>
10621
10622         * statement.cs (Statement.Emit): Flag dead code.
10623
10624 2002-07-27  Andrew Birkett  <andy@nobugs.org>
10625
10626         * expression.cs (Unary.Reduce): Handle AddressOf and Indirection.
10627
10628 2002-07-27  Martin Baulig  <martin@gnome.org>
10629
10630         * class.cs (MethodData.Define): Put back call to
10631         TypeManager.AddMethod(), accidentally commented this out.
10632
10633         * report.cs (Debug): New public method to print debugging information,
10634         this is `[Conditional ("DEBUG")]'.
10635
10636 2002-07-26  Martin Baulig  <martin@gnome.org>
10637
10638         * cs-parser.jay (CSharpParser): Added `Stack switch_stack'.
10639         (switch_statement): Push the current_block to the switch_stack and
10640         pop it again when we're done with the switch.
10641         (switch_section): The new block is a child of the current_block.
10642         Fixes bug #24007, added test-152.cs.
10643
10644 2002-07-27  Martin Baulig  <martin@gnome.org>
10645
10646         * expression.cs (Invocation.EmitArguments): When calling a varargs
10647         function with only its fixed arguments, we need to pass an empty
10648         array.
10649
10650 2002-07-27  Martin Baulig  <martin@gnome.org>
10651
10652         Mono 0.13 has been released.
10653
10654 2002-07-25  Miguel de Icaza  <miguel@ximian.com>
10655
10656         * driver.cs: Rename --resource to --linkres, because that is what
10657         we do currently, we dont support --resource yet.
10658
10659         * cs-tokenizer.cs: Fix test for reporting endif mismatches.
10660
10661 2002-07-25  Martin Baulig  <martin@gnome.org>
10662
10663         * class.cs (MethodData): New public class.  This is a `method builder'
10664         class for a method or one accessor of a Property/Indexer/Event.
10665         (MethodData.GetMethodFlags): Moved here from MemberBase.
10666         (MethodData.ApplyAttributes): Likewise.
10667         (MethodData.ApplyObsoleteAttribute): Likewise.
10668         (MethodData.ApplyConditionalAttribute): Likewise.
10669         (MethodData.ApplyDllImportAttribute): Likewise.
10670         (MethodData.CheckAbstractAndExternal): Likewise.
10671         (MethodData.Define): Formerly knows as MemberBase.DefineMethod().
10672         (MethodData.Emit): Formerly known as Method.Emit().
10673         (MemberBase): Moved everything which was specific to a single
10674         accessor/method to MethodData.
10675         (Method): Create a new MethodData and call Define() and Emit() on it.
10676         (Property, Indexer, Event): Create a new MethodData objects for each
10677         accessor and call Define() and Emit() on them.
10678
10679 2002-07-25  Martin Baulig  <martin@gnome.org>
10680
10681         Made MethodCore derive from MemberBase to reuse the code from there.
10682         MemberBase now also checks for attributes.
10683
10684         * class.cs (MethodCore): Derive from MemberBase, not MemberCore.
10685         (MemberBase.GetMethodFlags): Moved here from class Method and marked
10686         as virtual.
10687         (MemberBase.DefineAccessor): Renamed to DefineMethod(), added
10688         `CallingConventions cc' and `Attributes opt_attrs' arguments.
10689         (MemberBase.ApplyAttributes): New virtual method; applies the
10690         attributes to a method or accessor.
10691         (MemberBase.ApplyObsoleteAttribute): New protected virtual method.
10692         (MemberBase.ApplyConditionalAttribute): Likewise.
10693         (MemberBase.ApplyDllImportAttribute): Likewise.
10694         (MemberBase.CheckAbstractAndExternal): Likewise.
10695         (MethodCore.ParameterTypes): This is now a property instead of a
10696         method, it's initialized from DoDefineParameters().
10697         (MethodCore.ParameterInfo): Removed the set accessor.
10698         (MethodCore.DoDefineParameters): New protected virtual method to
10699         initialize ParameterTypes and ParameterInfo.
10700         (Method.GetReturnType): We can now simply return the MemberType.
10701         (Method.GetMethodFlags): Override the MemberBase version and add
10702         the conditional flags.
10703         (Method.CheckBase): Moved some code from Define() here, call
10704         DoDefineParameters() here.
10705         (Method.Define): Use DoDefine() and DefineMethod() from MemberBase
10706         here to avoid some larger code duplication.
10707         (Property.Emit, Indexer.Emit): Call CheckAbstractAndExternal() to
10708         ensure that abstract and external accessors don't declare a body.
10709
10710         * attribute.cs (Attribute.GetValidPieces): Make this actually work:
10711         `System.Attribute.GetCustomAttributes (attr.Type)' does a recursive
10712         lookup in the attribute's parent classes, so we need to abort as soon
10713         as we found the first match.
10714         (Attribute.Obsolete_GetObsoleteMessage): Return the empty string if
10715         the attribute has no arguments.
10716
10717         * typemanager.cs (TypeManager.AddMethod): Now takes a MemberBase instead
10718         of a Method.
10719
10720 2002-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10721
10722         * cs-parser.jay: reverted previous patch.
10723
10724 2002-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10725
10726         * cs-parser.jay: fixed bug #22119.
10727
10728 2002-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10729
10730         * attribute.cs: fixed compilation. The error was:
10731         "attribute.cs(571,17): error CS0177: The out parameter 'is_error' must 
10732         be assigned to before control leaves the current method."
10733         [FIXME:  Filed as bug #28186: MCS must report this error.]
10734
10735 2002-07-25  Martin Baulig  <martin@gnome.org>
10736
10737         * attribute.cs (Attribute.Conditional_GetConditionName): New static
10738         method to pull the condition name ouf of a Conditional attribute.
10739         (Attribute.Obsolete_GetObsoleteMessage): New static method to pull
10740         the obsolete message and error flag out of an Obsolete attribute.
10741
10742         * class.cs (Method.GetMethodFlags): New public method to get the
10743         TypeManager.MethodFlags for this method.
10744         (Method.ApplyConditionalAttribute, Method.ApplyObsoleteAttribute): New
10745         private methods.
10746         (Method.Define): Get and apply the Obsolete and Conditional attributes;
10747         if we're overriding a virtual function, set the new private variable
10748         `parent_method'; call the new TypeManager.AddMethod().
10749
10750         * typemanager.cs (TypeManager.AddMethod): New static method.  Stores
10751         the MethodBuilder and the Method in a PtrHashtable.
10752         (TypeManager.builder_to_method): Added for this purpose.
10753         (TypeManager.MethodFlags): Added IsObsoleteError.
10754         (TypeManager.GetMethodFlags): Added `Location loc' argument.  Lookup
10755         Obsolete and Conditional arguments in MethodBuilders.  If we discover
10756         an Obsolete attribute, emit an appropriate warning 618 / error 619 with
10757         the message from the attribute.
10758
10759 2002-07-24  Martin Baulig  <martin@gnome.org>
10760
10761         * cs-tokenizer.cs: Eat up trailing whitespaces and one-line comments in
10762         preprocessor directives, ensure that the argument to #define/#undef is
10763         exactly one identifier and that it's actually an identifier.
10764
10765         Some weeks ago I did a `#define DEBUG 1' myself and wondered why this
10766         did not work ....
10767
10768 2002-07-24  Martin Baulig  <martin@gnome.org>
10769
10770         * statement.cs (Foreach.ForeachHelperMethods): Added `Type element_type',
10771         initialize it to TypeManager.object_type in the constructor.
10772         (Foreach.GetEnumeratorFilter): Set `hm.element_type' to the return type
10773         of the `hm.get_current' method if we're using the collection pattern.
10774         (Foreach.EmitCollectionForeach): Use `hm.element_type' as the source type
10775         for the explicit conversion to make it work when we're using the collection
10776         pattern and the `Current' property has a different return type than `object'.
10777         Fixes #27713.
10778
10779 2002-07-24  Martin Baulig  <martin@gnome.org>
10780
10781         * delegate.cs (Delegate.VerifyMethod): Simply return null if the method
10782         does not match, but don't report any errors.  This method is called in
10783         order for all methods in a MethodGroupExpr until a matching method is
10784         found, so we don't want to bail out if the first method doesn't match.
10785         (NewDelegate.DoResolve): If none of the methods in the MethodGroupExpr
10786         matches, report the 123.  Fixes #28070.
10787
10788 2002-07-24  Martin Baulig  <martin@gnome.org>
10789
10790         * expression.cs (ArrayAccess.EmitStoreOpcode): Moved the
10791         TypeManager.TypeToCoreType() to the top of the method so the
10792         following equality checks will work.  Fixes #28107.
10793
10794 2002-07-24  Martin Baulig  <martin@gnome.org>
10795
10796         * cfold.cs (ConstantFold.DoConstantNumericPromotions): "If either
10797         operand is of type uint, and the other operand is of type sbyte,
10798         short or int, the operands are converted to type long." -
10799         Actually do what this comment already told us.  Fixes bug #28106,
10800         added test-150.cs.
10801
10802 2002-07-24  Martin Baulig  <martin@gnome.org>
10803
10804         * class.cs (MethodBase): New abstract class.  This is now a base
10805         class for Property, Indexer and Event to avoid some code duplication
10806         in their Define() and DefineMethods() methods.
10807         (MethodBase.DoDefine, MethodBase.DefineAccessor): Provide virtual
10808         generic methods for Define() and DefineMethods().
10809         (FieldBase): Derive from MemberBase, not MemberCore.
10810         (Property): Derive from MemberBase, not MemberCore.
10811         (Property.DefineMethod): Moved all the code from this method to the
10812         new MethodBase.DefineAccessor(), just call it with appropriate
10813         argumetnts.
10814         (Property.Define): Call the new Property.DoDefine(), this does some
10815         sanity checks and we don't need to duplicate the code everywhere.
10816         (Event): Derive from MemberBase, not MemberCore.
10817         (Event.Define): Use the new MethodBase.DefineAccessor() to define the
10818         accessors, this will also make them work with interface events.
10819         (Indexer): Derive from MemberBase, not MemberCore.
10820         (Indexer.DefineMethod): Removed, call MethodBase.DefineAccessor() insstead.
10821         (Indexer.Define): Use the new MethodBase functions.
10822
10823         * interface.cs (InterfaceEvent.InterfaceEvent): Added `Location loc'
10824         argument to the constructor.
10825         (Interface.FindMembers): Added support for interface events.
10826         (Interface.PopluateEvent): Implemented.
10827
10828         Added test-149.cs for this.  This also fixes bugs #26067 and #24256.
10829
10830 2002-07-22  Miguel de Icaza  <miguel@ximian.com>
10831
10832         * class.cs (TypeContainer.AddMethod): Adding methods do not use IsValid,
10833         but this is required to check for a method name being the same as
10834         the containing class.  
10835
10836         Handle this now.
10837
10838 2002-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10839
10840         * interface.cs: initialize variable.
10841
10842 2002-07-23  Martin Baulig  <martin@gnome.org>
10843
10844         Implemented the IndexerName attribute in interfaces.
10845
10846         * class.cs (TypeContainer.DefineIndexers): Don't set the indexer
10847         name if this is an explicit interface implementation.
10848         (Indexer.InterfaceIndexerName): New public variable.  If we're
10849         implementing an interface indexer, this is the IndexerName in that
10850         interface.  Otherwise, it's the IndexerName.
10851         (Indexer.DefineMethod): If we're implementing interface indexer,
10852         set InterfaceIndexerName.  Use the new Pending.IsInterfaceIndexer
10853         and Pending.ImplementIndexer methods.
10854         (Indexer.Define): Also define the PropertyBuilder if we're
10855         implementing an interface indexer and this is neither an explicit
10856         interface implementation nor do the IndexerName match the one in
10857         the interface.
10858
10859         * pending.cs (TypeAndMethods): Added `MethodInfo [] need_proxy'.
10860         If a method is defined here, then we always need to create a proxy
10861         for it.  This is used when implementing interface indexers.
10862         (Pending.IsInterfaceIndexer): New public method.
10863         (Pending.ImplementIndexer): New public method.
10864         (Pending.InterfaceMethod): Added `MethodInfo need_proxy' argument.
10865         This is used when implementing interface indexers to define a proxy
10866         if necessary.
10867         (Pending.VerifyPendingMethods): Look in the `need_proxy' array and
10868         define a proxy if necessary.
10869
10870         * interface.cs (Interface.IndexerName): New public variable.
10871         (Interface.PopulateIndexer): Set the IndexerName.
10872         (Interface.DefineIndexers): New private method.  Populate all the
10873         indexers and make sure their IndexerNames match.
10874
10875         * typemanager.cs (IndexerPropertyName): Added support for interface
10876         indexers.
10877
10878 2002-07-22  Martin Baulig  <martin@gnome.org>
10879
10880         * codegen.cs (EmitContext.HasReturnLabel): New public variable.
10881         (EmitContext.EmitTopBlock): Always mark the ReturnLabel and emit a
10882         ret if HasReturnLabel.
10883         (EmitContext.TryCatchLevel, LoopBeginTryCatchLevel): New public
10884         variables.
10885
10886         * statement.cs (Do.Emit, While.Emit, For.Emit, Foreach.Emit): Save
10887         and set the ec.LoopBeginTryCatchLevel.
10888         (Try.Emit): Increment the ec.TryCatchLevel while emitting the block.
10889         (Continue.Emit): If the ec.LoopBeginTryCatchLevel is smaller than
10890         the current ec.TryCatchLevel, the branch goes out of an exception
10891         block.  In this case, we need to use Leave and not Br.
10892
10893 2002-07-22  Martin Baulig  <martin@gnome.org>
10894
10895         * statement.cs (Try.Emit): Emit an explicit ret after the end of the
10896         block unless the block does not always return or it is contained in
10897         another try { ... } catch { ... } block.  Fixes bug #26506.
10898         Added verify-1.cs to the test suite.
10899
10900 2002-07-22  Martin Baulig  <martin@gnome.org>
10901
10902         * statement.cs (Switch.TableSwitchEmit): If we don't have a default,
10903         then we do not always return.  Fixes bug #24985.
10904
10905 2002-07-22  Martin Baulig  <martin@gnome.org>
10906
10907         * expression.cs (Invocation.OverloadedResolve): Do the BetterFunction()
10908         lookup on a per-class level; ie. walk up the class hierarchy until we
10909         found at least one applicable method, then choose the best among them.
10910         Fixes bug #24463 and test-29.cs.
10911
10912 2002-07-22  Martin Baulig  <martin@gnome.org>
10913
10914         * typemanager.cs (TypeManager.ArrayContainsMethod): Don't check the
10915         return types of the methods.  The return type is not part of the
10916         signature and we must not check it to make the `new' modifier work.
10917         Fixes bug #27999, also added test-147.cs.
10918         (TypeManager.TypeToCoreType): Added TypeManager.type_type.
10919
10920         * expression.cs (Invocation.DoResolve): Call TypeManager.TypeToCoreType()
10921         on the method's return type.
10922
10923 2002-07-21  Martin Baulig  <martin@gnome.org>
10924
10925         * assign.cs: Make this work if the rightmost source is a constant and
10926         we need to do an implicit type conversion.  Also adding a few more tests
10927         to test-38.cs which should have caught this.
10928
10929         * makefile.gnu: Disable debugging, there's already the mcs-mono2.exe
10930         target in the makefile for this.  The makefile.gnu is primarily intended
10931         for end-users who don't want to debug the compiler.
10932
10933 2002-07-21  Martin Baulig  <martin@gnome.org>
10934
10935         * assign.cs: Improved the Assign class so it can now handle embedded
10936         assignments (X = Y = Z = something).  As a side-effect this'll now also
10937         consume less local variables.  test-38.cs now passes with MCS, added
10938         a few new test cases to that test.
10939
10940 2002-07-20  Martin Baulig  <martin@gnome.org>
10941
10942         * expression.cs (Binary.EmitBranchable): Emit correct unsigned branch
10943         instructions.  Fixes bug #27977, also added test-146.cs.
10944
10945 2002-07-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10946
10947         * cs-tokenizer.cs: fixed getHex ().
10948
10949 2002-07-19  Martin Baulig  <martin@gnome.org>
10950
10951         * expression.cs (Invocation.EmitParams): Use TypeManager.LookupType(),
10952         not Type.GetType() to lookup the array type.  This is needed when
10953         we're constructing an array of a user-defined type.
10954         (ArrayAccess.EmitDynamicInitializers): Only emit the Ldelema for
10955         single-dimensional arrays, but also for single-dimensial arrays of
10956         type decimal.
10957
10958 2002-07-19  Martin Baulig  <martin@gnome.org>
10959
10960         * expression.cs (New.DoEmit): Create a new LocalTemporary each time
10961         this function is called, it's not allowed to share LocalBuilders
10962         among ILGenerators.
10963
10964 2002-07-19  Martin Baulig  <martin@gnome.org>
10965
10966         * expression.cs (Argument.Resolve): Report an error 118 when trying
10967         to pass a type as argument.
10968
10969 2002-07-18  Martin Baulig  <martin@gnome.org>
10970
10971         * ecore.cs (Expression.ImplicitNumericConversion): Don't emit a
10972         Conv_R_Un for the signed `long' type.
10973
10974 2002-07-15  Miguel de Icaza  <miguel@ximian.com>
10975
10976         * expression.cs (MemberAccess.DoResolve): Do not reuse the field
10977         `expr' for the temporary result, as that will fail if we do
10978         multiple resolves on the same expression.
10979
10980 2002-07-05  Miguel de Icaza  <miguel@ximian.com>
10981
10982         * ecore.cs (SimpleNameResolve): Use ec.DeclSpace instead of
10983         ec.TypeContainer for looking up aliases. 
10984
10985         * class.cs (TypeContainer): Remove LookupAlias from here.
10986
10987         * decl.cs (DeclSpace); Move here.
10988
10989 2002-07-01  Miguel de Icaza  <miguel@ximian.com>
10990
10991         * class.cs (FindMembers): Only call filter if the constructor
10992         bulider is not null.
10993
10994         Also handle delegates in `NestedTypes' now.  Now we will perform
10995         type lookups using the standard resolution process.  This also
10996         fixes a bug.
10997
10998         * decl.cs (DeclSpace.ResolveType): New type resolution routine.
10999         This uses Expressions (the limited kind that can be parsed by the
11000         tree) instead of strings.
11001
11002         * expression.cs (ComposedCast.ToString): Implement, used to flag
11003         errors since now we have to render expressions.
11004
11005         (ArrayCreation): Kill FormElementType.  Use ComposedCasts in
11006         FormArrayType. 
11007
11008         * ecore.cs (SimpleName.ToString): ditto.
11009
11010         * cs-parser.jay: Instead of using strings to assemble types, use
11011         Expressions to assemble the type (using SimpleName, ComposedCast,
11012         MemberAccess).  This should fix the type lookups in declarations,
11013         because we were using a different code path for this.
11014
11015         * statement.cs (Block.Resolve): Continue processing statements
11016         even when there is an error.
11017
11018 2002-07-17  Miguel de Icaza  <miguel@ximian.com>
11019
11020         * class.cs (Event.Define): Also remove the `remove' method from
11021         the list of pending items.
11022
11023         * expression.cs (ParameterReference): Use ldarg.N (0..3) to
11024         generate more compact code. 
11025
11026 2002-07-17  Martin Baulig  <martin@gnome.org>
11027
11028         * const.cs (Const.LookupConstantValue): Add support for constant
11029         `unchecked' and `checked' expressions.
11030         Also adding test case test-140.cs for this.
11031
11032 2002-07-17  Martin Baulig  <martin@gnome.org>
11033
11034         * statement.cs (Foreach.GetEnumeratorFilter): When compiling corlib,
11035         check whether mi.ReturnType implements the IEnumerator interface; the
11036         `==' and the IsAssignableFrom() will fail in this situation.
11037
11038 2002-07-16  Ravi Pratap  <ravi@ximian.com>
11039
11040         * ecore.cs (SimpleName.SimpleNameResolve) : Apply Gonzalo's fix 
11041         here too.
11042
11043 2002-07-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11044
11045         * expression.cs: fixed bug #27811.
11046
11047 2002-07-14  Miguel de Icaza  <miguel@ximian.com>
11048
11049         * expression.cs (ParameterReference.AddressOf): Patch from Paolo
11050         Molaro: when we are a ref, the value already contains a pointer
11051         value, do not take the address of it.
11052
11053 2002-07-14 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
11054         * removed mb-parser.jay and mb-tokenizer.cs
11055
11056 Sat Jul 13 19:38:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11057
11058         * expression.cs: check against the building corlib void type.
11059
11060 Sat Jul 13 19:35:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
11061
11062         * ecore.cs: fix for valuetype static readonly fields: when 
11063         initializing them, we need their address, not the address of a copy.
11064
11065 Sat Jul 13 17:32:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11066
11067         * typemanager.cs: register also enum_type in corlib.
11068
11069 Sat Jul 13 15:59:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11070
11071         * class.cs: allow calling this (but not base) initializers in structs.
11072
11073 Sat Jul 13 15:12:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
11074
11075         * ecore.cs: make sure we compare against the building base types
11076         in GetTypeSize ().
11077
11078 Sat Jul 13 15:10:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11079
11080         * typemanager.cs: fix TypeToCoreType() to handle void and object
11081         (corlib gets no more typerefs after this change).
11082
11083 2002-07-12  Miguel de Icaza  <miguel@ximian.com>
11084
11085         * expression.cs (ArrayCreation.EmitArrayArguments): use
11086         Conv.Ovf.U4 for unsigned and Conv.Ovf.I4 for signed.
11087
11088         (ArrayAccess.LoadArrayAndArguments): Use Conv_Ovf_I and
11089         Conv_Ovf_I_Un for the array arguments.  Even if C# allows longs as
11090         array indexes, the runtime actually forbids them.
11091
11092         * ecore.cs (ExpressionToArrayArgument): Move the conversion code
11093         for array arguments here.
11094
11095         * expression.cs (EmitLoadOpcode): System.Char is a U2, use that
11096         instead of the default for ValueTypes.
11097
11098         (New.DoEmit): Use IsValueType instead of
11099         IsSubclassOf (value_type)
11100         (New.DoResolve): ditto.
11101         (Invocation.EmitCall): ditto.
11102
11103         * assign.cs (Assign): ditto.
11104
11105         * statement.cs (Unsafe): Ok, so I got the semantics wrong.
11106         Statements *are* currently doing part of their resolution during
11107         Emit.  
11108
11109         Expressions do always resolve during resolve, but statements are
11110         only required to propagate resolution to their children.
11111
11112 2002-07-11  Miguel de Icaza  <miguel@ximian.com>
11113
11114         * driver.cs (CSCParseOption): Finish the /r: and /lib: support.
11115
11116         (LoadAssembly): Do not add the dll if it is already specified
11117
11118         (MainDriver): Add the System directory to the link path at the end,
11119         after all the other -L arguments. 
11120
11121         * expression.cs (ArrayAccess.EmitLoadOpcode): I was using the
11122         wrong opcode for loading bytes and bools (ldelem.i1 instead of
11123         ldelem.u1) and using the opposite for sbytes.
11124
11125         This fixes Digger, and we can finally run it.
11126
11127         * driver.cs (UnixParseOption): Move the option parsing here.  
11128         (CSCParseOption): Implement CSC-like parsing of options.
11129
11130         We now support both modes of operation, the old Unix way, and the
11131         new CSC-like way.  This should help those who wanted to make cross
11132         platform makefiles.
11133
11134         The only thing broken is that /r:, /reference: and /lib: are not
11135         implemented, because I want to make those have the same semantics
11136         as the CSC compiler has, and kill once and for all the confussion
11137         around this.   Will be doing this tomorrow.
11138
11139         * statement.cs (Unsafe.Resolve): The state is checked during
11140         resolve, not emit, so we have to set the flags for IsUnsfe here.
11141
11142 2002-07-10  Miguel de Icaza  <miguel@ximian.com>
11143
11144         * expression.cs (MemberAccess.ResolveMemberAccess): Since we can
11145         not catch the Error_ObjectRefRequired in SimpleName (as it is
11146         possible to have a class/instance variable name that later gets
11147         deambiguated), we have to check this here.      
11148
11149 2002-07-10  Ravi Pratap  <ravi@ximian.com>
11150
11151         * class.cs (TypeContainer.GetFieldFromEvent): Move away from here,
11152         make static and put into Expression.
11153
11154         (Event.Define): Register the private field of the event with the 
11155         TypeManager so that GetFieldFromEvent can get at it.
11156
11157         (TypeManager.RegisterPrivateFieldOfEvent): Implement to
11158         keep track of the private field associated with an event which
11159         has no accessors.
11160
11161         (TypeManager.GetPrivateFieldOfEvent): Implement to get at the
11162         private field.
11163
11164         * ecore.cs (GetFieldFromEvent): RE-write to use the above methods.
11165
11166 2002-07-10  Miguel de Icaza  <miguel@ximian.com>
11167
11168         * expression.cs (Binary.EmitBranchable): this routine emits the
11169         Binary expression in a branchable context.  This basically means:
11170         we need to branch somewhere, not just get the value on the stack.
11171
11172         This works together with Statement.EmitBoolExpression.
11173
11174         * statement.cs (Statement.EmitBoolExpression): Use
11175         EmitBranchable. 
11176
11177 2002-07-09  Miguel de Icaza  <miguel@ximian.com>
11178
11179         * statement.cs (For): Reduce the number of jumps in loops.
11180
11181         (For): Implement loop inversion for the For statement.
11182
11183         (Break): We can be breaking out of a Try/Catch controlled section
11184         (foreach might have an implicit try/catch clause), so we need to
11185         use Leave instead of Br.
11186
11187         * ecore.cs (FieldExpr.AddressOf): Fix for test-139 (augmented
11188         now).  If the instace expression supports IMemoryLocation, we use
11189         the AddressOf method from the IMemoryLocation to extract the
11190         address instead of emitting the instance.
11191
11192         This showed up with `This', as we were emitting the instance
11193         always (Emit) instead of the Address of This.  Particularly
11194         interesting when This is a value type, as we dont want the Emit
11195         effect (which was to load the object).
11196
11197 2002-07-08  Miguel de Icaza  <miguel@ximian.com>
11198
11199         * attribute.cs: Pass the entry point to the DefinePInvokeMethod
11200
11201         * statement.cs (Checked): Set the CheckedState during the resolve
11202         process too, as the ConvCast operations track the checked state on
11203         the resolve process, and not emit.
11204
11205         * cs-parser.jay (namespace_member_declaration): Flag that we have
11206         found a declaration when we do.  This is used to flag error 1529
11207
11208         * driver.cs: Report ok when we display the help only.
11209
11210 2002-07-06  Andrew Birkett  <adb@tardis.ed.ac.uk>
11211
11212         * cs-tokenizer.cs (xtoken): Improve handling of string literals.
11213
11214 2002-07-04  Miguel de Icaza  <miguel@ximian.com>
11215
11216         * cs-tokenizer.cs (define): We also have to track locally the
11217         defines.  AllDefines is just used for the Conditional Attribute,
11218         but we also need the local defines for the current source code. 
11219
11220 2002-07-03  Miguel de Icaza  <miguel@ximian.com>
11221
11222         * statement.cs (While, For, Do): These loops can exit through a
11223         Break statement, use this information to tell whether the
11224         statement is the last piece of code.
11225
11226         (Break): Flag that we break.
11227
11228         * codegen.cs (EmitContexts): New `Breaks' state variable.
11229
11230 2002-07-03  Martin Baulig  <martin@gnome.org>
11231
11232         * class.cs (TypeContainer.MethodModifiersValid): Allow override
11233         modifiers in method declarations in structs.  Otherwise, you won't
11234         be able to override things like Object.Equals().
11235
11236 2002-07-02  Miguel de Icaza  <miguel@ximian.com>
11237
11238         * class.cs (Method, Property, Indexer): Do not allow the public
11239         modifier to be used in explicit interface implementations.
11240
11241         (TypeContainer.MethodModifiersValid): Catch virtual, abstract and
11242         override modifiers in method declarations in structs
11243
11244 2002-07-02   Andrew Birkett <adb@tardis.ed.ac.uk>
11245
11246         * cs-tokenizer.cs (adjust_int, adjust_real): Do not abort on
11247         integer or real overflow, report an error
11248
11249 2002-07-02  Martin Baulig  <martin@gnome.org>
11250
11251         * typemanager.cs (TypeManager.InitCoreTypes): When compiling
11252         corlib, dynamically call AssemblyBuilder.SetCorlibTypeBuilders()
11253         to tell the runtime about our newly created System.Object and
11254         System.ValueType types.
11255
11256 2002-07-02  Miguel de Icaza  <miguel@ximian.com>
11257
11258         * expression.cs (This): Use Stobj/Ldobj when we are a member of a
11259         struct instead of Ldarg/Starg.
11260
11261 2002-07-02  Martin Baulig  <martin@gnome.org>
11262
11263         * expression.cs (Indirection.Indirection): Call
11264         TypeManager.TypeToCoreType() on `expr.Type.GetElementType ()'.
11265
11266 2002-07-02  Martin Baulig  <martin@gnome.org>
11267
11268         * expression.cs (ArrayAccess.EmitStoreOpcode): If the type is a
11269         ValueType, call TypeManager.TypeToCoreType() on it.
11270         (Invocations.EmitParams): Call TypeManager.TypeToCoreType() on
11271         the OpCodes.Newarr argument.
11272
11273 2002-07-02  Martin Baulig  <martin@gnome.org>
11274
11275         * expression.cs (Invocation.EmitCall): When compiling corlib,
11276         replace all calls to the system's System.Array type to calls to
11277         the newly created one.
11278
11279         * typemanager.cs (TypeManager.InitCodeHelpers): Added a few more
11280         System.Array methods.
11281         (TypeManager.InitCoreTypes): When compiling corlib, get the methods
11282         from the system's System.Array type which must be replaced.
11283
11284 Tue Jul 2 19:05:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
11285
11286         * typemanager.cs: load unverifiable_code_ctor so we can build
11287         corlib using the correct type. Avoid using GetTypeCode() with
11288         TypeBuilders.
11289         * rootcontext.cs: uses TypeManager.unverifiable_code_ctor and
11290         TypeManager.object_type to allow building corlib.
11291
11292 Tue Jul 2 19:03:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11293
11294         * ecore.cs: handle System.Enum separately in LoadFromPtr().
11295
11296 2002-07-01  Martin Baulig  <martin@gnome.org>
11297
11298         * class.cs: Make the last change actually work, we need to check
11299         whether `ifaces != null' to avoid a crash.
11300
11301 Mon Jul 1 16:15:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11302
11303         * class.cs: when we build structs without fields that implement
11304         interfaces, we need to add the interfaces separately, since there is
11305         no API to both set the size and add the interfaces at type creation
11306         time.
11307
11308 Mon Jul 1 14:50:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11309
11310         * expression.cs: the dimension arguments to the array constructors
11311         need to be converted if they are a long.
11312
11313 Mon Jul 1 12:26:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
11314
11315         * class.cs: don't emit ldarg.0 if there is no parent constructor
11316         (fixes showstopper for corlib).
11317
11318 2002-06-29  Martin Baulig  <martin@gnome.org>
11319
11320         MCS now compiles corlib on GNU/Linux :-)
11321
11322         * attribute.cs (Attribute.ApplyAttributes): Treat Accessors like Method,
11323         ie. check for MethodImplOptions.InternalCall.
11324
11325         * class.cs (TypeContainer.DefineType): When compiling corlib, both parent
11326         and TypeManager.attribute_type are null, so we must explicitly check
11327         whether parent is not null to find out whether it's an attribute type.
11328         (Property.Emit): Always call Attribute.ApplyAttributes() on the GetBuilder
11329         and SetBuilder, not only if the property is neither abstract nor external.
11330         This is necessary to set the MethodImplOptions on the accessor methods.
11331         (Indexer.Emit): Call Attribute.ApplyAttributes() on the GetBuilder and
11332         SetBuilder, see Property.Emit().
11333
11334         * rootcontext.cs (RootContext.PopulateTypes): When compiling corlib, don't
11335         populate "System.Object", "System.ValueType" and "System.Attribute" since
11336         they've already been populated from BootCorlib_PopulateCoreTypes().
11337
11338 2002-06-29  Martin Baulig  <martin@gnome.org>
11339
11340         * ecore.cs (Expression.ImplicitReferenceConversionExists): If expr
11341         is the NullLiteral, we also need to make sure that target_type is not
11342         an enum type.   
11343
11344 2002-06-29  Martin Baulig  <martin@gnome.org>
11345
11346         * rootcontext.cs (RootContext.ResolveCore): We must initialize
11347         `TypeManager.multicast_delegate_type' and `TypeManager.delegate_type'
11348         before calling BootstrapCorlib_ResolveDelegate ().
11349
11350 2002-06-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11351
11352         * statement.cs: fixed build-breaker. All tests passed ok.
11353
11354 2002-06-27  Martin Baulig  <martin@gnome.org>
11355
11356         * typemanager.cs (TypeManager.VerifyUnManaged): Added explicit check
11357         for System.Decimal when compiling corlib.
11358
11359 2002-06-27  Martin Baulig  <martin@gnome.org>
11360
11361         * statement.cs (Switch.TableSwitchEmit): Make this work with empty
11362         switch blocks which contain nothing but a default clause.
11363
11364 2002-06-26  Andrew  <adb@tardis.ed.ac.uk>
11365
11366        * ../errors/cs1501-3.cs: Added new test for struct ctr typechecks.
11367
11368 2002-06-27  Martin Baulig  <martin@gnome.org>
11369
11370         * ecore.cs (PropertyExpr.PropertyExpr): Call
11371         TypeManager.TypeToCoreType() on the `pi.PropertyType'.
11372
11373         * typemanager.cs (TypeManager.TypeToCoreType): Return if the type
11374         is already a TypeBuilder.
11375
11376 2002-06-27  Martin Baulig  <martin@gnome.org>
11377
11378         * ecore.cs (Expression.ImplicitReferenceConversionExists): Use
11379         `target_type == TypeManager.array_type', not IsAssignableFrom() in
11380         the "from an array-type to System.Array" case.  This makes it work
11381         when compiling corlib.
11382
11383 2002-06-27  Martin Baulig  <martin@gnome.org>
11384
11385         * ecore.cs (Expression.SimpleNameResolve): If the expression is a
11386         non-static PropertyExpr, set its InstanceExpression.  This makes
11387         the `ICollection.Count' property work in System/Array.cs.
11388
11389 2002-06-25  Andrew Birkett  <adb@tardis.ed.ac.uk>
11390
11391         * driver.cs: Made error handling more consistent.  Errors now
11392         tracked by Report class, so many methods which used to return int
11393         now return void.  Main() now prints success/failure and 
11394         errors/warnings message.
11395
11396         Renamed '--probe' compiler argument to '--expect-error'.  Removed
11397         the magic number return values (123 and 124).  Now, if the
11398         expected error occurs, the compiler exits with success (exit value
11399         0).  If the compilation completes without seeing that particular
11400         error, the compiler exits with failure (exit value 1).  The
11401         makefile in mcs/errors has been changed to handle the new behaviour.
11402
11403         * report.cs: Made 'expected error' number a property and renamed
11404         it from 'Probe' to 'ExpectedError'.
11405
11406         * genericparser.cs: Removed error handling support, since it is
11407         now all done by Report class.
11408
11409         * cs-parser.jay, mb-parser.jay: Errors are tracked by Report
11410         class, so parse() no longer returns an int.
11411
11412         * namespace.cs: Use Report.Error instead of GenericParser.error
11413
11414 2002-06-22  Miguel de Icaza  <miguel@ximian.com>
11415
11416         * class.cs (TypeContainer.AddMethod, TypeContainer.AddIndexer,
11417         TypeContainer.AddOperator): At the front of the list put the
11418         explicit implementations, so they get resolved/defined first. 
11419
11420 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
11421
11422         * class.cs (TypeContainer.VerifyImplements): Verifies that a given
11423         interface type is implemented by this TypeContainer.  Used during
11424         explicit interface implementation.
11425
11426         (Property.Define, Indexer.Define, Method.Define): Validate that
11427         the given interface in the explicit implementation is one of the
11428         base classes for the containing type.
11429
11430         Also if we are explicitly implementing an interface, but there is
11431         no match in the pending implementation table, report an error.
11432
11433         (Property.Define): Only define the property if we are
11434         not explicitly implementing a property from an interface.  Use the
11435         correct name also for those properties (the same CSC uses,
11436         although that is really not needed).
11437
11438         (Property.Emit): Do not emit attributes for explicitly implemented
11439         properties, as there is no TypeBuilder.
11440
11441         (Indexer.Emit): ditto.
11442
11443         Hiding then means that we do not really *implement* a pending
11444         implementation, which makes code fail.
11445
11446 2002-06-22  Martin Baulig  <martin@gnome.org>
11447
11448         * ecore.cs (Expression.Constantify): Call TypeManager.TypeToCoreType() on
11449         the return value of Object.GetType().  [FIXME: we need to do this whenever
11450         we get a type back from the reflection library].
11451
11452 Fri Jun 21 13:37:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11453
11454         * typemanager.cs: make ExpandInterfaces() slip duplicated interfaces.
11455
11456 2002-06-20  Miguel de Icaza  <miguel@ximian.com>
11457
11458         * attribute.cs: Return null if we can not look up the type.
11459
11460         * class.cs (TypeContainer.GetClassBases): Use ExpandInterfaces on
11461         the interface types found.
11462
11463         * interface.cs (Interface.GetInterfaceBases): Use ExpandInterfaces on the
11464         interface types found.
11465
11466         * typemanager.cs (GetInterfaces): Make this routine returns alll
11467         the interfaces and work around the lame differences between
11468         System.Type and System.Reflection.Emit.TypeBuilder in the results
11469         result for GetInterfaces.
11470
11471         (ExpandInterfaces): Given an array of interface types, expand and
11472         eliminate repeated ocurrences of an interface.  This expands in
11473         context like: IA; IB : IA; IC : IA, IB; the interface "IC" to
11474         be IA, IB, IC.
11475
11476 2002-06-21  Martin Baulig  <martin@gnome.org>
11477
11478         * typemanager.cs (TypeManager.EnumToUnderlying): It's now safe to call this function
11479         on System.Enum.
11480
11481 2002-06-21  Martin Baulig  <martin@gnome.org>
11482
11483         * typemanager.cs (TypeManager.TypeToCoreType): New function.  When compiling corlib
11484         and called with one of the core types, return the corresponding typebuilder for
11485         that type.
11486
11487         * expression.cs (ArrayAccess.DoResolve): Call TypeManager.TypeToCoreType() on the
11488         element type.
11489
11490 2002-06-21  Martin Baulig  <martin@gnome.org>
11491
11492         * ecore.cs (Expression.ExplicitReferenceConversionExists): Use
11493         `target_type.IsArray' instead of `target_type.IsSubclassOf (TypeManager.array_type)'.
11494         (Expression.ConvertReferenceExplicit): Likewise.
11495
11496         * expression.cs (ElementAccess.DoResolve): Likewise.
11497         (ElementAccess.DoResolveLValue): Likewise.
11498
11499 2002-06-10  Martin Baulig  <martin@gnome.org>
11500
11501         * interface.cs (Interface.PopulateIndexer): When creating the setter, we need to
11502         add the "value" parameter to the parameter list.
11503
11504         * statement.cs (Fixed.Emit): Pass the return value of the child block's Emit()
11505         to our caller.
11506
11507 2002-06-19  Miguel de Icaza  <miguel@ximian.com>
11508
11509         * expression.cs (ArrayCreation.ExpressionToArrayArgument): Convert
11510         the argument to an int, uint, long or ulong, per the spec.  Also
11511         catch negative constants in array creation.
11512
11513 Thu Jun 20 17:56:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11514
11515         * class.cs: do not allow the same interface to appear twice in
11516         the definition list.
11517
11518 Wed Jun 19 22:33:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11519
11520         * ecore.cs: don't use ldlen with System.Array.
11521
11522 Wed Jun 19 20:57:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11523
11524         * ecore.cs: stobj requires a type argument. Handle indirect stores on enums.
11525
11526 Wed Jun 19 20:17:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11527
11528         * modifiers.cs: produce correct field attributes for protected
11529         internal. Easy fix so miguel can work on ther harder stuff:-)
11530
11531 2002-06-18  Miguel de Icaza  <miguel@ximian.com>
11532
11533         * pending.cs: New file.  Move the code from class.cs here.
11534         Support clearning the pending flag for all methods (when not doing
11535         explicit interface implementation).
11536
11537 Tue Jun 18 10:36:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11538
11539         * rootcontext.cs: added a couple more types needed to bootstrap.
11540
11541 2002-06-17  Miguel de Icaza  <miguel@ximian.com>
11542
11543         * typemanager.cs (GetConstructor): Use DeclaredOnly to look the
11544         constructor in the type, instead of any constructor in the type
11545         hierarchy.  Thanks to Paolo for finding this bug (it showed up as
11546         a bug in the Mono runtime when applying the params attribute). 
11547
11548 2002-06-16  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
11549         * changed namespace.cs to use "GenericParser.error(...)" instead of "CSharpParser.error(...)"
11550
11551 2002-06-14  Rachel Hestilow  <hestilow@ximian.com>
11552
11553         * expression.cs (Unary.ResolveOperator): Use TypeManager
11554         to resolve the type.
11555
11556 2002-06-13  Ravi Pratap  <ravi@ximian.com>
11557
11558         * cs-parser.jay (enum_member_declaration): Pass in the attributes
11559         attached.
11560
11561         * enum.cs (AddEnumMember): Add support to store the attributes associated 
11562         with each member too.
11563
11564         * attribute.cs (CheckAttribute, ApplyAttributes): Update to handle
11565         field builders too - this takes care of the enum member case.
11566
11567 2002-06-10  Rachel Hestilow  <hestilow@ximian.com>
11568
11569         * typemanager.cs (TypeManager.VerifyUnManaged): Allow
11570         address-of operator on both value types and pointers.
11571
11572 2002-06-10  Martin Baulig  <martin@gnome.org>
11573
11574         * interface.cs (Interface.PopulateIndexer): Add the indexer's
11575         PropertyBuilder to the `property_builders' list.
11576
11577         * expression.cs (Indexers.GetIndexersForTypeOrInterface): New private method.
11578         (Indexers.GetIndexersForType): Call GetIndexersForTypeOrInterface() on the
11579         `lookup_type' and all its interfaces.  Unfortunately, Type.FindMembers() won't
11580         find any indexers which are inherited from an interface.
11581
11582 2002-06-09  Martin Baulig  <martin@gnome.org>
11583
11584         * const.cs (Const.LookupConstantValue): Convert `Expr' to a literal of
11585         the same type as the constant if necessary.  There's also a test-130.cs
11586         for this.
11587
11588         * enum.cs (Enum.ChangeEnumType): Moved to typemanager.cs and made public.
11589
11590         * typemanager.cs (TypeManager.ChangeType): Previously known as
11591         Enum.ChangeEnumType().
11592
11593 2002-06-09  Martin Baulig  <martin@gnome.org>
11594
11595         * expression.cs (Cast.TryReduce): Added support for consts.
11596
11597 2002-06-08  Ravi Pratap  <ravi@ximian.com>
11598
11599         * class.cs (Accessor): Hold attributes information so we can pass
11600         it along.
11601
11602         * cs-parser.jay (get_accessor_declaration, set_accessor_declaration):
11603         Modify to pass in attributes attached to the methods.
11604
11605         (add_accessor_declaration, remove_accessor_declaration): Ditto.
11606
11607         * attribute.cs (ApplyAttributes, CheckAttribute): Update accordingly
11608         to handle the Accessor kind :-)
11609
11610         * class.cs (Property.Emit, Event.Emit): Apply attributes to the accessors
11611
11612 2002-06-08  Martin Baulig  <martin@gnome.org>
11613
11614         * expression.cs (Unary.TryReduceNegative): Added support for
11615         ULongConstants.
11616
11617 2002-06-08  Martin Baulig  <martin@gnome.org>
11618
11619         * enum.cs (Enum.LookupEnumValue): Don't report an error if the
11620         name can't be found in the `defined_names' - the caller will do a
11621         MemberLookup in this case and thus find methods in System.Enum
11622         such as Enum.IsDefined().
11623
11624 2002-06-08  Martin Baulig  <martin@gnome.org>
11625
11626         * enum.cs (Enum.ChangeEnumType): This is a custom version of
11627         Convert.ChangeType() which works with TypeBuilder created types.
11628         (Enum.LookupEnumValue, Enum.Define): Use it here.
11629
11630         * class.cs (TypeContainer.RegisterRequiredImplementations): Added
11631         `TypeBuilder.BaseType != null' check.
11632         (TypeContainer.FindMembers): Only lookup parent members if we
11633         actually have a parent.
11634         (Method.EmitDestructor): Added `ec.ContainerType.BaseType != null' check.
11635         (ConstructorInitializer.Resolve): Likewise.
11636
11637         * interface.cs (Interface.FindMembers): Added
11638         `TypeBuilder.BaseType != null' check.
11639
11640         * rootcontext.cs (RootContext.ResolveCore): Added
11641         "System.Runtime.CompilerServices.IndexerNameAttribute" to
11642         classes_second_stage.
11643
11644         * typemanager.cs (TypeManager.InitCoreTypes): Don't initialize
11645         debug_type and trace_type when compiling with --nostdlib.       
11646
11647 2002-06-07  Martin Baulig  <martin@gnome.org>
11648
11649         * class.cs (TypeContainer): Added `have_nonstatic_fields' field.
11650         (AddField): Set it to true when adding a non-static field.
11651         (DefineType): Use `have_nonstatic_fields' to find out whether we
11652         have non-static fields, not `Fields != null'.
11653
11654 2002-06-02  Miguel de Icaza  <miguel@ximian.com>
11655
11656         * ecore.cs (SimpleNameResolve): Removed simple bug (we were
11657         dereferencing a null on the static-field code path)
11658
11659 2002-05-30  Martin Baulig  <martin@gnome.org>
11660
11661         * codegen.cs (InitMonoSymbolWriter): Added `string[] args' argument
11662         to take command line arguments.  Use reflection to call the new
11663         custom `Initialize' function on the symbol writer and pass it the
11664         command line arguments.
11665
11666         * driver.cs (--debug-args): New command line argument to pass command
11667         line arguments to the symbol writer.
11668
11669 2002-05-28  Miguel de Icaza  <miguel@ximian.com>
11670
11671         * assign.cs (DoResolve): Forgot to do the implicit conversion to
11672         the target type for indexers and properties.  Thanks to Joe for
11673         catching this.
11674
11675 2002-05-27  Miguel de Icaza  <miguel@ximian.com>
11676
11677         * typemanager.cs (MethodFlags): returns the method flags
11678         (Obsolete/ShouldIgnore) that control warning emission and whether
11679         the invocation should be made, or ignored. 
11680
11681         * expression.cs (Invocation.Emit): Remove previous hack, we should
11682         not do this on matching a base type, we should do this based on an attribute
11683
11684         Only emit calls to System.Diagnostics.Debug and
11685         System.Diagnostics.Trace if the TRACE and DEBUG defines are passed
11686         on the command line.
11687
11688         * rootcontext.cs: Global settings for tracing and debugging.
11689
11690         * cs-tokenizer.cs (define): New utility function to track
11691         defines.   Set the global settings for TRACE and DEBUG if found.
11692
11693 2002-05-25  Ravi Pratap  <ravi@ximian.com>
11694
11695         * interface.cs (Populate*): Pass in the TypeContainer as well as
11696         the DeclSpace as parameters so that we can create EmitContexts and
11697         then use that to apply attributes etc.
11698
11699         (PopulateMethod, PopulateEvent, PopulateProperty)
11700         (PopulateIndexer): Apply attributes everywhere.
11701
11702         * attribute.cs (CheckAttribute): Include InterfaceMethod, InterfaceEvent
11703         etc.
11704
11705         (ApplyAttributes): Update accordingly.
11706
11707         We now apply interface attributes for all members too.
11708
11709 2002-05-26  Miguel de Icaza  <miguel@ximian.com>
11710
11711         * class.cs (Indexer.Define); Correctly check if we are explicit
11712         implementation (instead of checking the Name for a ".", we
11713         directly look up if the InterfaceType was specified).
11714
11715         Delay the creation of the PropertyBuilder.
11716
11717         Only create the PropertyBuilder if we are not an explicit
11718         interface implementation.   This means that explicit interface
11719         implementation members do not participate in regular function
11720         lookups, and hence fixes another major ambiguity problem in
11721         overload resolution (that was the visible effect).
11722
11723         (DefineMethod): Return whether we are doing an interface
11724         implementation. 
11725
11726         * typemanager.cs: Temporary hack until we get attributes in
11727         interfaces (Ravi is working on that) and we get IndexerName
11728         support in interfaces.
11729
11730         * interface.cs: Register the indexers as properties.
11731
11732         * attribute.cs (Attribute.Resolve): Catch the error, and emit a
11733         warning, I have verified that this is a bug in the .NET runtime
11734         (JavaScript suffers of the same problem).
11735
11736         * typemanager.cs (MemberLookup): When looking up members for
11737         interfaces, the parent of an interface is the implicit
11738         System.Object (so we succeed in searches of Object methods in an
11739         interface method invocation.  Example:  IEnumerable x;  x.ToString
11740         ()) 
11741
11742 2002-05-25  Miguel de Icaza  <miguel@ximian.com>
11743
11744         * class.cs (Event): Events should also register if they do
11745         implement the methods that an interface requires.
11746
11747         * typemanager.cs (MemberLookup); use the new GetInterfaces
11748         method. 
11749
11750         (GetInterfaces): The code used to lookup interfaces for a type is
11751         used in more than one place, factor it here. 
11752
11753         * driver.cs: Track the errors at the bottom of the file, we kept
11754         on going.
11755
11756         * delegate.cs (NewDelegate.Emit): We have to emit a null as the
11757         instance if the method we are calling is static!
11758
11759 2002-05-24  Miguel de Icaza  <miguel@ximian.com>
11760
11761         * attribute.cs (ApplyAttributes): Make this function filter out
11762         the IndexerName attribute (as that attribute in reality is never
11763         applied) and return the string constant for the IndexerName
11764         attribute. 
11765
11766         * class.cs (TypeContainer.Emit): Validate that all the indexers
11767         have the same IndexerName attribute, and if so, set the
11768         DefaultName attribute on the class. 
11769
11770         * typemanager.cs: The return value might contain other stuff (not
11771         only methods).  For instance, consider a method with an "Item"
11772         property and an Item method.
11773
11774         * class.cs: If there is a problem with the parameter types,
11775         return. 
11776
11777 2002-05-24  Ravi Pratap  <ravi@ximian.com>
11778
11779         * ecore.cs (ImplicitConversionExists): Wrapper function which also
11780         looks at user defined conversion after making a call to 
11781         StandardConversionExists - we need this for overload resolution.
11782
11783         * expression.cs : Update accordingly the various method calls.
11784
11785         This fixes 2 bugs filed against implicit user defined conversions 
11786
11787 2002-05-22  Miguel de Icaza  <miguel@ximian.com>
11788
11789         * statement.cs: Track the result of the assignment.
11790
11791 2002-05-21  Miguel de Icaza  <miguel@ximian.com>
11792
11793         * expression.cs (MemberAccess): Improved error reporting for
11794         inaccessible members.
11795
11796 2002-05-22  Martin Baulig  <martin@gnome.org>
11797
11798         * makefile (mcs-mono2.exe): New target.  This is mcs compiled with
11799         itself with debugging support.
11800
11801 2002-05-22  Martin Baulig  <martin@gnome.org>
11802
11803         * typemanager.cs ("System.Runtime.InteropServices.StructLayoutAttribute"):
11804         Removed, this isn't needed anymore.
11805
11806 2002-05-20  Martin Baulig  <martin@gnome.org>
11807
11808         * typemanager.cs (InitEnumUnderlyingTypes): "System.Char" can't
11809         be underlying type for an enum.
11810
11811 2002-05-20  Miguel de Icaza  <miguel@ximian.com>
11812
11813         * typemanager.cs (InitEnumUnderlyingTypes): New helper function
11814         that splits out the loading of just the core types.
11815
11816         * rootcontext.cs (ResolveCore): Split the struct resolution in
11817         two, so we can load the enumeration underlying types before any
11818         enums are used.
11819
11820         * expression.cs (Is): Bandaid until we fix properly Switch (see
11821         bug #24985 for details).
11822
11823         * typemanager.cs (ImplementsInterface): The hashtable will contain
11824         a null if there are no interfaces implemented.
11825
11826 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
11827
11828         * cs-parser.jay (indexer_declarator): It is fine to have array
11829         parameters
11830
11831 2002-05-17  Miguel de Icaza  <miguel@ximian.com>
11832
11833         * typemanager.cs: (RegisterBuilder): New function used to register
11834         TypeBuilders that implement interfaces.  Since
11835         TypeBuilder.GetInterfaces (as usual) does not work with lame
11836         Reflection.Emit. 
11837         (AddUserType): register interfaces.
11838
11839         (ImplementsInterface): Use the builder_to_ifaces hash if we are
11840         dealing with TypeBuilder.  Also, arrays are showing up as
11841         SymbolTypes, which are not TypeBuilders, but whose GetInterfaces
11842         methods can not be invoked on them!
11843
11844         * ecore.cs (ExplicitReferenceConversionExists): Made public.
11845         (ImplicitReferenceConversionExists): Split out from
11846         StandardConversionExists. 
11847
11848         * expression.cs (As): We were only implementing one of the three
11849         cases for the as operator.  We now implement them all.
11850         (Is): Implement the various other cases for Is as well.
11851
11852         * typemanager.cs (CACHE): New define used to control if we want or
11853         not the FindMembers cache.  Seems to have a negative impact on
11854         performance currently
11855
11856         (MemberLookup): Nested types have full acess to
11857         enclosing type members
11858
11859         Remove code that coped with instance/static returns for events, we
11860         now catch this in RealFindMembers.
11861
11862         (RealFindMembers): only perform static lookup if the instance
11863         lookup did not return a type or an event.  
11864
11865 2002-05-17  Miguel de Icaza  <miguel@ximian.com>
11866
11867         * assign.cs (CompoundAssign): We pass more semantic information
11868         now to Compound Assignments than we did before: now we have all
11869         the information at hand, and now we resolve the target *before* we
11870         do the expression expansion, which allows the "CacheValue" method
11871         to have the effect we intended (before, a [x] += 1 would generate
11872         two differen ArrayAccess expressions from the ElementAccess,
11873         during the resolution process).
11874
11875         (CompoundAssign.DoResolve): Resolve target and original_source here.
11876
11877 2002-05-16  Miguel de Icaza  <miguel@ximian.com>
11878
11879         * expression.cs (ArrayAccess): dropped debugging information. 
11880
11881         * typemanager.cs: Small bug fix: I was always returning i_members,
11882         instead of one of i_members or s_members (depending on which had
11883         the content).
11884
11885         * assign.cs (IAssignMethod.CacheTemporaries): New method.  This
11886         method is invoked before any code generation takes place, and it
11887         is a mechanism to inform that the expression will be invoked more
11888         than once, and that the method should use temporary values to
11889         avoid having side effects
11890
11891         (Assign.Emit): Call CacheTemporaries in the IAssignMethod.
11892
11893         * ecore.cs (Expression.CacheTemporaries): Provide empty default
11894         implementation.
11895
11896         * expression.cs (Indirection, ArrayAccess): Add support for
11897         CacheTemporaries in these two bad boys. 
11898
11899         * ecore.cs (LoadFromPtr): figure out on our own if we need to use
11900         ldobj or ldind_ref.  
11901         (StoreFromPtr): Handle stobj as well.
11902
11903         * expression.cs (UnaryMutator): Share more code.
11904
11905         * typemanager.cs (FindMembers): Thanks to Paolo for tracking this
11906         down: I was not tracking the Filter function as well, which
11907         was affecting the results of the cache.
11908
11909 2002-05-15  Miguel de Icaza  <miguel@ximian.com>
11910
11911         * attribute.cs: Remove the hack to handle the CharSet property on
11912         StructLayouts. 
11913
11914 2002-05-14  Miguel de Icaza  <miguel@ximian.com>
11915
11916         * attribute.cs (DoResolve): More uglyness, we now only try to
11917         resolve the attribute partially, to extract the CharSet
11918         information (only if we are a StructLayout attribute).  Otherwise 
11919
11920         (GetExtraTypeInfo): Add some code to conditionally kill in the
11921         future this.   I am more and more convinced that the .NET
11922         framework has special code to handle the attribute setting on
11923         certain elements.
11924
11925         * expression.cs (IsParamsMethodApplicable): Revert my previous
11926         foreach change here, it was wrong.
11927
11928 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
11929
11930         * cs-tokenizer.cs: (pp_primary): Eat the ')' at the end.
11931         (pp_expr): do not abort on unknown input, just return.
11932         (eval): abort if there are pending chars.
11933
11934         * attribute.cs (Attribute.Resolve): Positional parameters are
11935         optional.  Deal with that case.
11936
11937         * class.cs (DefineType): Call Attribute.GetExtraTypeInfo to fetch
11938         the Ansi/Unicode/Auto information for the type.
11939
11940         (TypeContainer.DefineType): instantiate the EmitContext here, as
11941         we will be using it during the type definition (to resolve
11942         attributes) and during the emit phase.
11943
11944         * attribute.cs (Attribute.GetExtraTypeInfo): This routine is used
11945         to pull type information out of the attributes
11946
11947         (Attribute.Resolve): track the constructor builder, and allow for
11948         multiple invocations (structs and classes will use this).
11949
11950         * ecore.cs (MemberLookupFinal): new version with all the
11951         parameters customizable.
11952
11953         * expression.cs (New.DoResolve): Use MemberLookupFinal to locate
11954         constructors.  Return if the result value is null (as the error
11955         would have been flagged already by MemberLookupFinal)
11956
11957         Do not allow instances of abstract classes or interfaces to be
11958         created.
11959
11960         * class.cs: (MethodSignature.InheritableMemberSignatureCompare):
11961         We have to compare the assembly property here when dealing with
11962         FamANDAssem and Assembly access modifiers, because we might be
11963         creating an assembly from *modules* (that means that we are not
11964         getting TypeBuilders for types defined in other modules that are
11965         part of this assembly).
11966
11967         (Method.Emit): If the method is marked abstract and has a body,
11968         emit an error. 
11969
11970         (TypeContainer.DefineMembers): If both the defined member and the
11971         parent name match are methods, then do not emit any warnings: let
11972         the Method.Define routine take care of flagging warnings.  But if
11973         there is a mismatch (method overrides something else, or method is
11974         overriwritten by something, then emit warning).
11975
11976         (MethodSignature.MemberSignatureCompare): If the sig.ret_type is
11977         set to null, this means `do not check for the return type on the
11978         signature'. 
11979
11980         (Method.Define): set the return type for the method signature to
11981         null, so that we get methods with the same name and parameters and
11982         different return types.  This is used to flag warning 114 (you are
11983         hiding a method, and you probably want to use the new/override
11984         keywords instead).
11985
11986         * typemanager.cs (MemberLookup): Implemented proper access
11987         control, closing a long standing set of bug reports.  The problem
11988         was that the Framework only has two bits: Public and NonPublic,
11989         and NonPublic includes private and protected methods, but we need
11990         to enforce the FamANDAssem, FamOrAssem and Family. 
11991
11992 2002-05-11  Miguel de Icaza  <miguel@ximian.com>
11993
11994         * statement.cs (GotoCase): Return true: Ammounts to giving up
11995         knowledge on whether we return or not, and letting the other case
11996         be responsible for it.
11997
11998 2002-05-10  Miguel de Icaza  <miguel@ximian.com>
11999
12000         * driver.cs: Do not load directories for each file processed, only
12001         do it if there is a pattern.
12002
12003         * ecore.cs: Report readonly assigns here as well, as we might have
12004         been resolved only by MemberAccess.
12005
12006         (SimpleName.SimpleNameResolve): Also be useful for LValue
12007         resolution.   We need this to propagate assign to local readonly variables
12008
12009         * typemanager.cs: Use a ptrhashtable for the criteria, because we
12010         do not want to reuse potential criteria memory.
12011
12012         * class.cs (MyEventBuilder): Set reflected_type;
12013
12014         * ecore.cs (Constantify): Added support for constifying bools.
12015
12016         (RootContext.LookupType): Added a cache for values looked up in
12017         the declaration space.
12018
12019         * typemanager.cs (FindMembers): Now is a front-end to
12020         RealFindMembers, and provides a two-level hashtable-based cache to
12021         the request.  
12022
12023         15% performance improvement: from 22.5 to 19.2 seconds.
12024
12025         * expression.cs (IsParamsMethodApplicable): use foreach.
12026         (Invocation.DoResolve): ditto.
12027         (New.DoResolve): ditto.
12028         (ArrayCreation.DoResolve): ditto.
12029
12030         * ecore.cs (FindMostEncompassingType): use foreach.
12031
12032         * delegate.cs (NewDelegate.DoResolve): Use foreach
12033
12034         * ecore.cs (Expression.FindMostSpecificSource): Use foreach.
12035         (RemoveMethods): use foreach.
12036
12037         * expression.cs (Invocation.MakeUnionSet): Optimization: Use two
12038         nested foreach statements instead of for, and also break out of
12039         the inner loop once a match is found.
12040
12041         (Invocation.OverloadResolve): Use foreach, simplify the code. 
12042
12043 2002-05-08  Miguel de Icaza  <miguel@ximian.com>
12044
12045         * cfold.cs (BinaryFold): During an enumeration evaluation context,
12046         we actually unwrap the expression to allow for extra information
12047         to be extracted. 
12048
12049         * expression.cs: Use Shr_Un on unsigned operations. 
12050
12051 2002-05-08  Ravi Pratap  <ravi@ximian.com>
12052
12053         * ecore.cs (FindMostEncompass*): Fix trivial bug where the set of 
12054         applicable operators was not being considered correctly. This closes
12055         the bug Miguel reported.
12056
12057 Wed May 8 16:40:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
12058
12059         * attribute.cs: check that the type derives from System.Attribute
12060         and report the correct error in that case (moved the duplicate code to
12061         its own method, too).
12062
12063 Wed May 8 11:50:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
12064
12065         * attribute.cs: lookup attribute type name as the spec says: first the
12066         bare attribute name and then name + "Attribute" (nant compiles with
12067         mcs after this fix).
12068
12069 2002-05-07  Miguel de Icaza  <miguel@ximian.com>
12070
12071         * expression.cs (Unary.TryReduceNegative): Ah!  Tricky!  Tricky!
12072         Because of the way we parse things, we should try to see if a
12073         UIntConstant can fit in an integer.
12074
12075 2002-05-07  Ravi Pratap  <ravi@ximian.com>
12076
12077         * ecore.cs (GetConversionOperators): Do not pick up op_True operators
12078         when we are in an explicit context.
12079
12080         (ConvertReferenceExplicit): When converting from Iface type S to Class
12081         T make sure the rules are implemented as an OR.
12082
12083         * parameter.cs (ParameterType): Make it a property for now although the
12084         purpose really isn't anything immediate.
12085
12086         * expression.cs (Is*Applicable): Do better checking on the parameter type
12087         of a ref/out parameter. The ones from the system assemblies are already 
12088         marked with the correct type so we don't need to do any correction.
12089
12090         * ecore.cs (StandardConversionExists): Conversion from Interface types to 
12091         the object type is standard too so include that.
12092
12093 2002-05-06  Miguel de Icaza  <miguel@ximian.com>
12094
12095         * ecore.cs (StandardConversionExists): Augment with missing code:
12096         deal with IntConstant, LongConstants and Enumerations.
12097
12098         * assign.cs: Report the error, instead of failing silently
12099
12100         * rootcontext.cs (AddGlobalAttributes): Track attributes on the
12101         typecontainer that they are declared, because the
12102         typecontainer/namespace will have the list of using clauses that
12103         need to be applied.
12104
12105         Assembly Attributes were escaping the normal registration
12106         mechanism. 
12107
12108         (EmitCode): Apply attributes within an EmitContext that represents
12109         the container they were declared on.
12110
12111         * cs-parser.jay: Track bases for structs.  How did I get this wrong?
12112
12113 2002-05-06  Ravi Pratap  <ravi@ximian.com>
12114
12115         * ecore.cs (FindMostEncompassingType, FindMostEncompassedType):
12116         Revamp completely - make much cleaner as we now operate only
12117         on a set of Types.
12118
12119         (FindMostSpecificSource, FindMostSpecificTarget): New methods
12120         to implement the logic detailed in the spec more correctly.
12121
12122         (UserDefinedConversion): Update accordingly.
12123
12124 2002-05-06  Miguel de Icaza  <miguel@ximian.com>
12125
12126         * statement.cs: Return flow analysis information up.
12127
12128         * cs-tokenizer.cs (adjust_real): Share code between LITERAL_DOUBLE
12129         and the default.
12130
12131         (token): Do not consume an extra character before calling
12132         decimal_digits.
12133
12134 2002-05-06  Piers Haken <piersh@friskit.com>
12135
12136         * cs-parser.jay: add 'override' attribute to System.Object.Finalize
12137
12138 2002-05-06  Miguel de Icaza  <miguel@ximian.com>
12139
12140         * class.cs (Constructor.Emit): Set the IsStatic flag in the
12141         EmitContext during the instance constructor initializer
12142         resolution, to stop access to instance variables.
12143
12144         This is mandated by the spec, last paragraph of the `constructor
12145         initializers' section. 
12146
12147 2002-05-05  Miguel de Icaza  <miguel@ximian.com>
12148
12149         * cs-parser.jay, class.cs (Accessor): new class used to represent
12150         an accessor (get or set).  In the past we used `null' to represent
12151         a missing accessor.  But this is ambiguous because there was no
12152         way to tell in abstract indexers/properties if one of them was
12153         specified.
12154
12155         Now there is a way of addressing that.
12156
12157         * expression.cs (Indexers.GetIndexersForType): Use TypeManager.MemberLookup
12158         instead of FindMembers.
12159
12160         * class.cs (TypeContainer.EmitFieldInitializer): Do not typecast
12161         the result of Assign.Resolve as Assign, but rather as ExpressionStatement.
12162
12163         * attribute.cs: Treat indexers and properties as the same in terms
12164         of applying attributes
12165
12166         * ecore.cs (FindMostEncompassedType): Use statically initialized
12167         EmptyExpressions()s like we do elsewhere to avoid creating useless
12168         objects (and we take this out of the tight loop).
12169
12170         (GetConversionOperators): Move the code to extract the actual
12171         operators to a separate routine to clean things up.
12172
12173 2002-05-04  Miguel de Icaza  <miguel@ximian.com>
12174
12175         * ecore.cs (FieldExpr): Remove un-needed tests for null, since now
12176         events are always registered FieldBuilders.
12177
12178         * class.cs (FieldBase): New class shared by Fields 
12179
12180         * delegate.cs: If we are a toplevel delegate, use our full name.
12181         If we are a nested delegate, then only use our tail name.
12182
12183 2002-05-02  Ravi Pratap  <ravi@ximian.com>
12184
12185         * expression.cs (IsApplicable): Ensure that we add the "&" to
12186         ref/out types before comparing it with the type of the argument.
12187
12188         (IsParamsMethodApplicable): Ditto.
12189
12190         (Argument.Type): Use TypeManager.LookupType instead of Type.GetType - 
12191         silly me ;-)
12192
12193         * delegate.cs : Handle the case when we have more than one applicable
12194         method. Flag an error only when we finish checking all.
12195
12196 2002-05-02  Miguel de Icaza  <miguel@ximian.com>
12197
12198         * expression.cs: Add support for boolean static initializers.
12199
12200 2002-05-01  Miguel de Icaza  <miguel@ximian.com>
12201
12202         * attribute.cs: Use proper cast for Events, since we use a MyEventBuilder.
12203
12204         * parameter.cs (ComputeParameterTypes,
12205         ComputeAndDefineParameterTypes): Better error handling: now we
12206         clear the `types' cache if we fail during any of the type lookups.
12207         We also return the status code correctly to our caller
12208
12209         * delegate.cs: If we fail to define a delegate, abort the extra
12210         steps. 
12211
12212         * expression.cs (Binary.ResolveOperator): for
12213         operator==(object,object) and operator !=(object, object) we also
12214         have to verify that there is an implicit conversion from one to
12215         the other.
12216
12217         (ArrayAccess.DoResolve): Array Access can operate on
12218         non-variables. 
12219
12220 2002-04-30  Miguel de Icaza  <miguel@ximian.com>
12221
12222         * assign.cs (CompoundAssign): A new class used as a "flag" that
12223         the assignment actually is happening as part of a compound
12224         assignment operator.
12225
12226         During compound assignment, a few new rules exist to enable things
12227         like:
12228
12229         byte b |= 1 + 2
12230
12231         From the spec:
12232
12233         x op= y can be evaluated as x = (T) (x op y) (ie, an explicit cast
12234         to the type of x) if y is implicitly convertible to the type of x,
12235         and the operator is a builtin operator and the return type of the
12236         operator is explicitly convertible to the type of x. 
12237
12238         * rootcontext.cs: Reset warning level to 2.  4 catches various
12239         "interesting" features in mcs, we must clean this up at some
12240         point, but currently am trying to kill other bugs ;-)
12241
12242         * ecore.cs (SimpleName.SimpleNameResolve): Perform member lookups
12243         in container classes as well.  
12244
12245         * expression.cs (Binary.ResolveOperator): Handle string case
12246         before anything else (as operator overloading does emit an error
12247         before doing anything else).
12248
12249         This code could go away when we move to a table driven model, but
12250         i could not come up with a good plan last night.
12251
12252 2002-04-30  Lawrence Pit <loz@cable.a2000.nl>
12253
12254         * typemanager.cs (CSharpName): reimplementation using regex.
12255         * class.cs: added null check for fields in Emit
12256         * rootcontext.cs: set warninglevel to 4
12257
12258 2002-04-29  Miguel de Icaza  <miguel@ximian.com>
12259
12260         * typemanager.cs (CSharpName): reimplemented with Lupus
12261         suggestion.
12262
12263 2002-04-28  Miguel de Icaza  <miguel@ximian.com>
12264
12265         * statement.cs (If): correclty implement Resolve, because we were
12266         not catching sem errors in there.  The same process is needed
12267         everywhere else. 
12268         (Return, StatementExpression, For, While, Do, Throw, Lock): Implement Resolve
12269
12270
12271         (Statement.Warning_DeadCodeFound): Factorize code.
12272         (While): Report dead code here too.
12273
12274         (Statement): Added Resolve virtual method to allow
12275         for resolution split from the emit code.
12276
12277 2002-04-26  Miguel de Icaza  <miguel@ximian.com>
12278
12279         * statement.cs (EmitBoolExpression): No longer try to resolve the
12280         expression here.    
12281         (MakeBoolean): New utility function that resolve, implicitly
12282         converts to boolean and tags the expression. 
12283
12284
12285         (If, Do): Implement dead code elimination.
12286         (While): Implement loop inversion
12287
12288         (Do, While, For, If): Resolve the expression prior to calling our
12289         code generation.
12290
12291 2002-04-22  Lawrence Pit <loz@cable.a2000.nl>
12292
12293         * class.cs:
12294           - added method Report28 (warning: program has more than one entry point)
12295           - added method IsEntryPoint, implements paragraph 10.1 of the spec
12296           - modified method Method.Define, the part at the end of the method
12297
12298         * rootcontext.cs: added static public Location EntryPointLocation;
12299           
12300         * ../errors/cs0028.cs : Add test case for the above warning.              
12301
12302         * typemanager.cs:
12303           - modified method CSharpName to allow arrays of primitive type to
12304             be printed nicely (e.g. instead of System.Int32[][] it now prints
12305             int[][])
12306           - added method CSharpSignature: returns the signature of a method
12307             in string format to be used in reporting errors, warnings, etc.
12308
12309         * support.cs: InternalParameters.ParameterDesc variable tmp initialized
12310         with String.Empty.
12311
12312 2002-04-26  Ravi Pratap  <ravi@ximian.com>
12313
12314         * delegate.cs (Define): Fix extremely silly bug where I was
12315         setting the type of the 'object' parameter of the BeginInvoke
12316         method to System.IAsyncResult instead of System.Object ;-)
12317
12318 2002-04-26  Miguel de Icaza  <miguel@ximian.com>
12319
12320         * class.cs (ConstructorInitializer.Resolve): Also use DeclaredOnly
12321         here. 
12322
12323         (Constructor.Emit): return if we fail to initialize the
12324         constructor.  Another door closed!  
12325
12326         * expression.cs (New.DoResolve): Improve error message (from -6 to
12327         1501).  Use DeclaredOnly lookup to find the exact constructor.
12328
12329         * typemanager.cs (MemberLookup): If DeclaredOnly is set, do not
12330         loop.  This is useful.
12331
12332         * cs-parser.jay: Adjust the default parameters so that destructors
12333         have the proper signature.
12334
12335 2002-04-26  Martin Baulig  <martin@gnome.org>
12336
12337         * driver.cs (LoadAssembly): If `assembly' contains any characters
12338         which are only valid in path names and not in assembly names
12339         (currently slash, backslash and point), use Assembly.LoadFrom ()
12340         instead of Assembly.Load () on the `assembly' (before iteration
12341         over the link_paths).
12342
12343 2002-04-26  Martin Baulig  <martin@gnome.org>
12344
12345         * cs-tokenizer.cs (is_hex): Correctly handle lowercase chars.
12346
12347 2002-04-25  Miguel de Icaza  <miguel@ximian.com>
12348
12349         * class.cs (Property): use the new typemanager.MemberLookup
12350
12351         (TypeContainer.MemberLookup): Implement using the
12352         TypeManager.MemberLookup now. 
12353
12354         * typemanager.cs: Make MemberLookup a function of the TypeManager,
12355         and return MemberInfos, so that these can be used without an
12356         EmitContext (what we had before).
12357
12358 2002-04-24  Miguel de Icaza  <miguel@ximian.com>
12359
12360         * expression.cs: Fix the case where the argument to params if the
12361         type of the params.  I omitted handling this before.   Fixed
12362
12363 2002-04-22  Miguel de Icaza  <miguel@ximian.com>
12364
12365         * driver.cs: Call BootCorlib_PopulateCoreType
12366
12367         * class.cs (Property.CheckBase): Check for properties only, not
12368         for all members. 
12369
12370         * interface.cs: Temporary hack: try/catch around the
12371         CustomAttributeBuilder, because I am getting an exception that I
12372         do not understand.
12373
12374         * rootcontext.cs (BootCorlib_PopulateCoreType): Populate some
12375         types whose definitions are required to be there (attributes are
12376         defined before standard types).
12377
12378         Compute definitions as we boot the various types, as they are used
12379         immediately (value_type class will need object_type, but if we do
12380         not initialize object_type, we will pass a null, which will let
12381         the runtime pick the System.Object from the existing corlib, which
12382         is not what we want).
12383
12384 2002-04-22  Patrik Torstensson <totte@labs2.com>
12385
12386         * cs-tokenizer.cs: fixed a number of trim() issues.
12387
12388 2002-04-22  Ravi Pratap  <ravi@ximian.com>
12389
12390         * expression.cs (Argument.Type): Ensure that we return the correct
12391         type when we have out or ref parameters [in which case we 
12392         append a "&"].
12393
12394 2002-04-22  Miguel de Icaza  <miguel@ximian.com>
12395
12396         * class.cs (Property, Indexer): Allow extern modifier in there. 
12397
12398         * typemanager.cs (InitBaseTypes): Initializes object_type and
12399         value_type, since those will be used early on during the bootstrap
12400         process to compile corlib.
12401
12402         (InitCoreTypes): Move code from here to InitBaseTypes.
12403
12404 2002-04-21  Miguel de Icaza  <miguel@ximian.com>
12405
12406         * ecore.cs (PropertyExpr): Optimize calls to Array::get_Length on
12407         single-dimension arrays as using the ldlen opcode.  
12408
12409         Daniel Lewis discovered this optimization.  
12410
12411         * typemanager.cs: Add signature for System.Array::get_Length
12412
12413 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12414
12415         * statement.cs: report the error when the foreach does not apply to an
12416         array nor a collection.
12417
12418 2002-04-19  Miguel de Icaza  <miguel@ximian.com>
12419
12420         * expression.cs: Add implicit conversions to the operator ~.
12421
12422         * constant.cs (DecimalConstant.Emit): Emit decimal value.
12423
12424         * typemanager.cs: Locate the decimal constructor.
12425
12426 2002-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12427
12428         * attribute.cs: use the new property of TypeOf.
12429         * expression.cs: added 'get' property around typearg.
12430
12431         These changes fix a build breaker reported by NickD. Is this the
12432         correct way to fix?  If not, please, revert my changes and make it
12433         work :-).
12434
12435 2002-04-17  Miguel de Icaza  <miguel@ximian.com>
12436
12437         * attribute.cs: Add support for typeof in attribute invocations.
12438         I am not sure that this is right though.
12439
12440 2002-04-14  Duncan Mak  <duncan@ximian.com>
12441
12442         * cfold.cs (BinaryFold): Catch DivideByZeroException in the
12443         Binary.Operator.Division case.
12444
12445 2002-04-13  Ravi Pratap  <ravi@ximian.com>
12446
12447         * class.cs (DefineType): Ensure that we do a proper check on
12448         attribute types and also register it with the TypeManager.
12449
12450         (TypeContainer.Targets): The default for attribute types is
12451         AttributeTargets.All.
12452
12453         * attribute.cs (ApplyAttributes): Registering the attribute type
12454         is done elsewhere, not when we discover we have a Usage attribute.
12455
12456 2002-04-12  Ravi Pratap  <ravi@ximian.com>
12457
12458         * expression.cs (VerifyArgumentsCompat): Implement Miguel's suggestion
12459         and get rid of is_delegate parameter.
12460
12461         * everywhere : update.
12462
12463 2002-04-12  Ravi Pratap  <ravi@ximian.com>
12464
12465         * cs-parser.jay (compilation_unit): Revamp completely to use
12466         some new ideas that I got from Rhys' grammar to solve the problems
12467         with assembly level attributes.
12468
12469         (outer_declaration): New grammar production.
12470
12471         (attribute_sections): Add.
12472
12473         (opt_attributes): Base on attribute_sections
12474
12475         (namespace_declaration): Allow opt_attributes to tackle the case
12476         when we have assembly level attributes - we are clever in this
12477         regard now ;-)
12478
12479         * attribute.cs (ApplyAttributes): Do not worry about assembly 
12480         attributes in the non-global context.
12481
12482         * rootcontext.cs (AddGlobalAttributes): Go back to using this
12483         instead of SetGlobalAttributes.
12484
12485         * class.cs, rootcontext.cs : Ensure we define and generate 
12486         attribute types before anything else.
12487
12488         * attribute.cs (CheckAttribute and GetValidPlaces): Handle the exception
12489         and flag the new error -20 for the case when the attribute type
12490         does not have valid targets specified. csc does not catch this.
12491
12492         * ../errors/errors.txt : update for error # -20
12493
12494 2002-04-11  Ravi Pratap  <ravi@ximian.com>
12495
12496         * support.cs (InternalParameters.ParameterModifier): Do some null
12497         checking and return sane values.
12498
12499         * class.cs (Method.Define): If we are a PInvoke method, ensure
12500         that we are static and extern. Report error # 601
12501
12502         * ../errors/cs0601.cs : Add test case for the above error.
12503
12504 2002-04-07  Ravi Pratap  <ravi@ximian.com>
12505
12506         * rootcontext.cs (attribute_types): We need to keep type of
12507         all attribute types separately and emit code for them first.
12508
12509         (RegisterAttribute) : Implement.
12510
12511         * class.cs (DefineType): Check if the current Type is a custom
12512         attribute type and register it accordingly.
12513
12514         * rootcontext.cs (AddGlobalAttributes): Fix silly bug where we were
12515         adding the first attribute twice and rename to
12516
12517         (SetGlobalAttributes): this.
12518
12519         * rootcontext.cs (NamespaceLookup): Run through the aliases too and perform
12520         lookups.
12521
12522         * attribute.cs (ApplyAttributes): Take an additional argument telling us
12523         if we are processing global arguments. Hmm, I am unsure of this.
12524
12525 2002-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12526
12527         * expression.cs: added static array of strings to avoid calling
12528         Enum.ToString () for Operator in Binary. Significant recover of
12529         performance.
12530
12531 2002-04-10  Miguel de Icaza  <miguel@ximian.com>
12532
12533         * class.cs (FindMembers): Allow the Builders of the various
12534         members to be null.  If they are skip them.  This only happens
12535         during the PInvoke declaration.
12536
12537 2002-04-09  Miguel de Icaza  <miguel@ximian.com>
12538
12539         * parameter.cs (Parameters.ComputeParameterTypes): Flag the
12540         failure, so we do not keep going afterwards.
12541
12542         * expression.cs: (Invocation.OverloadResolve): I believe Ravi
12543         wanted to pass `false' as the `is_delegate' argument.  If this is
12544         the case, why not use delegate_type == null to mean `is_delegate =
12545         false' and anything else as is_delegate = true.
12546
12547 Tue Apr  9 05:40:12  2002 Piers Haken <piersh@friskit.com>
12548
12549         * statement.cs: fixed SimpleSwitchEmit to make 'goto case' goto the
12550         code for the section, not the beginning of the tests.
12551
12552 2002-04-08  Miguel de Icaza  <miguel@ximian.com>
12553
12554         * cfold.cs: Handle operator + (Enum x, Underlying x) 
12555
12556         * expression.cs (Binary): same.  Warn about errors where we have
12557         Enum/Enum in operator + as well.
12558
12559 Mon Apr  8 06:29:03  2002 Piers Haken <piersh@friskit.com>
12560
12561         * statement.cs:
12562                 - added support for switch(bool)
12563                 - optimize loading of I8/U8 constants (ldc.i4, iconv_i8)
12564                 - add TableSwitchEmit() to handle table-based switch statements
12565
12566 2002-04-05  Ravi Pratap  <ravi@ximian.com>
12567
12568         * expression.cs (Invocation.OverloadResolve): Factor out code which
12569         does parameter compatibility checking with arguments so that we can 
12570         re-use the code even from Delegate.VerifyApplicability
12571
12572         (VerifyArgumentsCompat): Move above code here.
12573
12574         * delegate.cs (VerifyApplicability): Get rid of duplicate code
12575         and instead make a call to the above method.
12576
12577 2002-03-31  Ravi Pratap  <ravi@ximian.com>
12578
12579         * typemanager.cs (attribute_type): Corresponds to System.Attribute.
12580         We use it to keep track of classes which are attribute types.
12581
12582 2002-04-02  Miguel de Icaza  <miguel@ximian.com>
12583
12584         * delegate.cs (Delegate.Define): Correctly define the types in the
12585         presence of fixed and array parameters.
12586
12587         * class.cs (TypeContainers.FindMembers): Use NonPublic flag while
12588         doing FindMembers.
12589
12590         * ecore.cs (Expression.MemberLookup): Reset binding flags to not
12591         include NonPublic after the first iteration.
12592
12593         * class.cs (Indexer.CheckBase): Only check if both parents are
12594         non-null. 
12595
12596         * cs-parser.jay (accessor_body): If empty, set to null.
12597
12598         * ecore.cs (SimpleName.SimpleNameResolve): We did not have the
12599         same code path here to resolve constants names that we did have in
12600         MemberAccess.DoResolve.  There is too much code duplicated here.
12601
12602 2002-04-01  Miguel de Icaza  <miguel@ximian.com>
12603
12604         * statement.cs, makefile: Drop Statementcollection and just use ArrayLists
12605
12606         * ecore.cs: Optimize UserDefinedConversion by minimizing the calls
12607         to MakeUnionSet.
12608
12609         * cs-tokenizer.cs: Reuse a single StringBuilder for assembling
12610         tokens, numbers and strings.
12611
12612         * ecore.cs (MethodGroupExpr): Make Emit warn about missing
12613         parenthesis.
12614
12615         * delegate.cs: Use ComputeAndDefineParameterTypes for both the
12616         asyncronous parameters and the regular parameters.  
12617
12618         * codegen.cs (CodeGen.Init): Use the constructor that allows us to
12619         specify the target directory.
12620
12621         * expression.cs: (This.DoResolve): Simplify
12622         (As.Emit): Optimize, do not generate IsInst if the expression is
12623         always of the given type.
12624
12625         (Is.DoResolve): Bug fix, we were reporting both always/never for
12626         the is expression.
12627
12628         * (Invocation.MakeUnionSet): Simplify vastly and optimize, we were
12629         creating too many unnecessary arrays.
12630
12631 2002-03-31  Miguel de Icaza  <miguel@ximian.com>
12632
12633         * class.cs (EmitFieldInitializer): Use Assign expression to assign
12634         fields instead of rolling our own initializer.   Takes care of all
12635         implicit conversions, and drops unnecessary static checks/argument.
12636
12637 2002-03-31  Dick Porter  <dick@ximian.com>
12638
12639         * driver.cs: use the GetDirectories() return values properly, and
12640         use "/" as path separator.
12641
12642 2002-03-30  Miguel de Icaza  <miguel@ximian.com>
12643
12644         * expression.cs (Unary): Optimize - - expr into expr.
12645         (Binary): Optimize a + (-b) into a -b.
12646
12647         * codegen.cs (CodeGen): Made all methods static.
12648
12649 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
12650
12651         * rootcontext.cs: 
12652
12653         * decl.cs: Rename `definition' into `TypeBuilder' and drop the
12654         TypeBuilder property.
12655
12656         * cs-parser.jay: Drop the use of RecordXXX and use RecordDecl
12657         instead. 
12658
12659         * tree.cs: Removed the various RecordXXXX, and replaced with a
12660         single RecordDecl.  Removed all the accessor methods, and just
12661         left a single access point Type 
12662
12663         * enum.cs: Rename DefineEnum to DefineType.
12664
12665         * decl.cs: New abstract method `DefineType' used to unify the
12666         Defines for Enumerations, Interfaces, TypeContainers and
12667         Delegates.
12668
12669         (FindType): Moved LookupInterfaceOrClass here.  Moved the
12670         LookupBaseClasses method that used to live in class.cs and
12671         interface.cs here, and renamed to FindType.
12672
12673         * delegate.cs: Implement DefineType.  Take advantage of the
12674         refactored pattern for locating the parent builder without taking
12675         the parent_builder argument (which we know does not work if we are
12676         nested, and triggering a toplevel definition).
12677
12678 2002-03-28  Miguel de Icaza  <miguel@ximian.com>
12679
12680         * decl.cs (MemberCore.CheckMethodAgainstBase): Test if the
12681         accessibility of a member has changed during override and report
12682         an error if so.
12683
12684         * class.cs (Method.Define, Property.Define): Only complain on
12685         overrides if the method is private, any other accessibility is
12686         fine (and since we just checked the permission is the same, we are
12687         good to go).
12688
12689         * cs-tokenizer.cs: only line, region, endregion, if, endif, else
12690         and elif are processed always.  The other pre-processing
12691         directives are only processed if we are "taking" the path
12692
12693 2002-03-29  Martin Baulig  <martin@gnome.org>
12694
12695         * class.cs (Method.Emit): Only emit symbolic debugging info if the
12696         current location is not Null.
12697
12698         * codegen.cs (CodeGen.SaveSymbols): Split out symbol writing code into
12699         a separate method so we can profile it.
12700
12701         * driver.cs (ShowTime): We need to use `(int) span.TotalSeconds' since
12702         `span.Seconds' are just seconds, but no minutes or hours.
12703         (MainDriver): Profile the CodeGen.SaveSymbols calls.
12704
12705 2002-03-28  Miguel de Icaza  <miguel@ximian.com>
12706
12707         * class.cs (Method.Define), (Property.Define), (Indexer.Define):
12708         Remove the gratuitous set of Final:
12709
12710                                 // If an interface implementation, then we can set Final.
12711                                 if (((flags & MethodAttributes.Abstract) == 0) &&
12712                                     implementing.DeclaringType.IsInterface)
12713                                         flags |= MethodAttributes.Final;
12714
12715         I do not know what I was smoking when I used that.
12716
12717
12718         * cs-parser.jay, delegate.cs: Make Delegate be a DeclSpace, first
12719         step into fixing the name resolution issues for delegates and
12720         unifying the toplevel name resolution.
12721
12722 2002-03-28  Martin Baulig  <martin@gnome.org>
12723
12724         * class.cs (Method.Emit): If we have a symbol writer, call its
12725         OpenMethod(), CloseMethod() and SetMethodSourceRange() methods to
12726         tell it about the current method.
12727
12728         * codegen.cs (EmitContext.Mark): New public method. Tell the symbol
12729         writer that we're going to emit the first byte of IL code for a new
12730         statement (a new source line).
12731         (EmitContext.EmitTopBlock): If we have a symbol writer, call
12732         EmitContext.Mark() before emitting any code.
12733
12734         * location.cs (SymbolDocument): Return null when we're Null.
12735
12736         * statement.cs (Statement): Moved the `Location loc' variable here.
12737         (Statement.EmitBoolExpression): If we have a symbol writer, call
12738         ec.Mark() before emitting any code to tell it that we're at the
12739         beginning of a new statement.
12740         (StatementExpression): Added `Location' argument to the constructor.
12741         (Block): Added public readonly variable `StartLocation' and public
12742         variable `EndLocation'.  The latter is to be set using SetEndLocation().
12743         (Block): Added constructor which takes a start and end location.
12744         (Block.SetEndLocation): New method. This sets the end location.
12745         (Block.EmitMeta): If we have a symbol writer, tell it the names of the
12746         local variables we create.
12747         (Block.Emit): If we have a symbol writer, call ec.Mark() before emitting
12748         each statement and do also mark the begin and end of the block.
12749
12750         * cs-parser.jay (block : OPEN_BRACE): Use the new `Block' constructor to
12751         tell it the current lexer.Location, use Location.Null for the end of the
12752         block.
12753         (block : OPEN_BRACE opt_statement_list CLOSE_BRACE): When closing the
12754         current block, set its end location using SetEndLocation().
12755         (statement_expression): StatementExpression constructor now takes the
12756         lexer.Location as additional argument.
12757         (for_statement, declare_local_variables): Likewise.
12758         (declare_local_variables): When creating a new implicit block, use the
12759         new Block constructor and pass it the lexer.Location.
12760
12761 2002-03-28  Miguel de Icaza  <miguel@ximian.com>
12762
12763         * ecore.cs (Expression.MemberLookup): On interfaces, lookup
12764         members also on the parent interfaces recursively.
12765
12766 2002-03-27  Miguel de Icaza  <miguel@ximian.com>
12767
12768         * report.cs: Use new formats, since Gonzalo finished the missing
12769         bits. 
12770
12771         * expression.cs (Binary.ResolveOperator): added missing operator|
12772         operator& and operator^ for bool/bool.
12773
12774         * cs-parser.jay: CheckDef now takes a Location argument that is
12775         used to report errors more precisly (instead of reporting the end
12776         of a definition, we try to track something which is a lot closer
12777         to the source of the problem).
12778
12779         * cs-tokenizer.cs: Track global token use, so we can properly flag
12780         the use of #define/#undef after the first token has been seen.
12781
12782         Also, rename the reportXXXX to Error_DescriptiveName
12783
12784         * decl.cs (DeclSpace.IsTopLevel): Move property here from
12785         TypeContainer, so that Enum and Interface can use this too.
12786
12787         * class.cs (TypeContainer.LookupInterfaceOrClass,
12788         GetInterfaceOrClass, GetClassBases, DefineType): Drop the
12789         `builder' argument.  Typically this was used to pass the parent
12790         builder (a ModuleBuilder or a TypeBuilder from whoever triggered
12791         the definition).  
12792
12793         The problem is that a nested class could trigger the definition of
12794         a toplevel class, and the builder would be obviously wrong in that
12795         case. 
12796
12797         So we drop this argument, and we compute dynamically the
12798         TypeBuilder/ModuleBuilder (the correct information was available
12799         to us anyways from DeclSpace.Parent)
12800
12801         * interface.cs (Interface.DefineInterface): Drop builder
12802         parameter cleanup like class.cs
12803
12804         * enum.cs (Enum.DefineEnum): Drop builder parameter.  Clean up
12805         like class.cs
12806
12807         * statement.cs (Switch.EmitObjectInteger): Emit short/ushort
12808         values. 
12809
12810         (Try.Emit): Propagate the returns value from the statement.
12811
12812         (Return.Emit): Even if we are leavning 
12813
12814         * driver.cs: Catch IOExpcetion for Directory.GetFiles as well.
12815
12816         * modifiers.cs: Fix the computation of MethodAttributes flags.
12817
12818 Tue Mar 26 21:14:36 CET 2002 Paolo Molaro <lupus@ximian.com>
12819
12820         * driver.cs: allow compilation of files that start with '/'.
12821         Add a default case when checking the argument of --target.
12822
12823 2002-03-25  Miguel de Icaza  <miguel@ximian.com>
12824
12825         * interface.cs: Implement the same search algorithm for types in
12826         the interface code.
12827
12828         * delegate.cs: Do not allow multiple definition.
12829
12830         * Recovered ChangeLog that got accidentally amputated
12831
12832         * interface.cs (Interface.DefineInterface): Prevent from double definitions.
12833
12834         * rootcontext.cs: Load manually enum to allow core classes to
12835         contain enumerations.
12836
12837         * enum.cs, ecore.cs, driver.cs, attribute.cs, class.cs, expression.cs:
12838         Update to new static methods in TypeManager.
12839
12840         * typemanager.cs (GetMethod, GetConstructor): Use our
12841         implementation of FindMembers to find the members, since during
12842         corlib compilation, the types are TypeBuilders and GetMethod and
12843         GetConstructor do not work.
12844
12845         Make all methods in TypeManager static.
12846
12847         (InitCodeHelpers): Split the functionality from
12848         the InitCodeTypes function.
12849
12850         * driver.cs: Call InitCodeHelpers after we have populated the
12851         types. 
12852
12853         * cs-parser.jay (delegate_declaration): we did not used to compute
12854         the delegate name correctly for void delegates.
12855
12856 2002-03-24  Miguel de Icaza  <miguel@ximian.com>
12857
12858         * rootcontext.cs (RootContext): Init the interface_resolve_order
12859         and type_container_resolve_order always.
12860
12861         (ResolveCore, BootstrapCorlib_ResolveClass,
12862         BootstrapCorlib_ResolveStruct): New functions to bootstrap the
12863         compiler when compiling with --nostdlib
12864
12865         * class.cs (TypeContainer.DefineType): Check that our parent is
12866         not null.  This test is most important when we are bootstraping
12867         the core types.
12868
12869         * codegen.cs: Split out the symbol writing code.
12870
12871 2002-03-25  Martin Baulig  <martin@gnome.org>
12872
12873         * driver.cs (-g): Made -g an alias for --debug.
12874
12875 2002-03-24  Martin Baulig  <martin@gnome.org>
12876
12877         * codegen.cs (SymbolWriter): New public variable. Returns the
12878         current symbol writer.
12879         (CodeGen): Added `bool want_debugging_support' argument to the
12880          constructor. If true, tell the ModuleBuild that we want debugging
12881         support and ask it for the ISymbolWriter.
12882         (Save): If we have a symbol writer, call it's Close() method after
12883         saving the assembly.
12884
12885         * driver.c (--debug): New command line argument to create a
12886         debugger information file.
12887
12888         * location.cs (SymbolDocument): New public property. Returns an
12889         ISymbolDocumentWriter object for the current source file or null
12890         if we don't have a symbol writer.
12891
12892 2002-03-21  Miguel de Icaza  <miguel@ximian.com>
12893
12894         * driver.cs (LoadAssembly): Correctly return when all the paths
12895         have been tried and not before.
12896
12897         * statement.cs (Switch.Emit): return the actual coverage for this
12898         statement (returns/not-returns)
12899
12900         (Switch.SimpleSwitchEmit): Do not generate jumps to the end of the
12901         switch of the statement if we are the last switch section.  That
12902         kills two problems: try/catch problems (we used to emit an empty
12903         nop at the end) and switch statements where all branches would
12904         return. 
12905
12906 2002-03-19  Miguel de Icaza  <miguel@ximian.com>
12907
12908         * driver.cs: Add default assemblies (the equivalent to the
12909         Microsoft CSC.RSP file)
12910
12911         * cs-tokenizer.cs: When updating `cols and setting it to zero,
12912         also update tokens_seen and set it to false.
12913
12914         * driver.cs: Implement --recurse for Mike.
12915
12916         * driver.cs (SplitPathAndPattern): Small bug fix, I was not
12917         correctly splitting out the paths.
12918
12919 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
12920
12921         * interface.cs (Interface.PopulateProperty): Instead of using
12922         `parent' as the declaration space for the set parameters, use
12923         `this' 
12924
12925         * support.cs (InternalParameters): InternalParameters constructor
12926         takes a DeclSpace instead of a TypeContainer.
12927
12928         * expression.cs (ArrayCreation.EmitDynamicInitializers): If value
12929         types are being initialized, load the address of it before calling
12930         the function.  
12931
12932         (New): Provide a mechanism to disable the generation of local
12933         value type temporaries when the caller will be providing us with
12934         an address to store it.
12935
12936         (ArrayCreation.EmitDynamicInitializers): Use it.
12937
12938 2002-03-17  Miguel de Icaza  <miguel@ximian.com>
12939
12940         * expression.cs (Invocation.EmitArguments): Only probe for array
12941         property if there is more than one argument.  Sorry about that.
12942
12943         * class.cs (Invocation.EmitArguments): Fix to emit arguments for
12944         empty param arrays.
12945
12946         * class.cs (Method.LabelParameters): Fix incorrect code path that
12947         prevented the `ParamArrayAttribute' from being applied to the
12948         params attribute.
12949
12950 2002-03-16  Miguel de Icaza  <miguel@ximian.com>
12951
12952         * support.cs (ReflectionParameters): Correctly compute whether the
12953         last argument is a params array.  Fixes the problem with
12954         string.Split ('a')
12955
12956         * typemanager.cs: Make the assemblies array always be non-null
12957         (empty, but non-null)
12958
12959         * tree.cs (RecordDecl): New function that abstracts the recording
12960         of names.  This reports error 101, and provides a pointer to the
12961         previous declaration.  Fixes a crash in the compiler.
12962
12963         * cs-parser.jay (constructor_declaration): Update to new grammar,
12964         and provide a constructor_body that can be empty.
12965
12966 2002-03-15  Miguel de Icaza  <miguel@ximian.com>
12967
12968         * driver.cs: Add support for --resources.
12969
12970         * expression.cs: (FetchGetMethod, FetchAddressMethod, EmitAssign):
12971         Make all types for the various array helper methods be integer.
12972
12973         * ecore.cs (Expression.ConvertNumericExplicit): Pass the
12974         CheckState to ConvCast.
12975
12976         (ConvCast): Now it takes a `checked' state argument, to avoid
12977         depending on the emit context for the conversion, and just using
12978         the resolve time setting.
12979
12980         * expression.cs (ArrayCreation.EmitArrayArguments): New function,
12981         instead of Invocation.EmitArguments.  We do not emit the original
12982         arguments, instead we emit those which have been converted to
12983         unsigned int expressions.
12984
12985         * statement.cs (Block.EmitMeta): Drop tracking of indexes.
12986
12987         * codegen.cs: ditto.
12988
12989         * expression.cs (LocalVariableReference): Drop the use of the
12990         Store function that depended on the variable index.
12991
12992         * statement.cs (VariableInfo): Drop the `Idx' property from this
12993         class, as this is not taking into account the indexes for
12994         temporaries tat we generate during the execution, getting the
12995         indexes wrong.
12996
12997         * class.cs: First emit class initializers, then call the parent
12998         constructor. 
12999
13000         * expression.cs (Binary): Fix opcode emision.
13001         (UnaryMutator.EmitCode): Support checked code generation
13002
13003         * ecore.cs (MemberLookup): TypeManager.FindMembers will return
13004         matches for events for both the Static and Instance scans,
13005         pointing to the same element.   Fix that.
13006
13007 2002-03-14  Miguel de Icaza  <miguel@ximian.com>
13008
13009         * rootcontext.cs (ResolveTree): Always set the
13010         interface_resolve_order, because nested interfaces will be calling
13011         into us.
13012
13013         * class.cs (GetInterfaceOrClass): Track the same resolution
13014         process used by TypeManager.LookupType.  This fixes the nested
13015         type lookups in class declarations (separate path from
13016         LookupType). 
13017
13018         (TypeContainer.DefineType): Also define nested interfaces.
13019         (TypeContainer.RegisterOrder): New public function used to
13020         register the order in which child interfaces need to be closed.
13021
13022         Nested interfaces need to be closed after their parents have been
13023         created. 
13024
13025         * interface.cs (InterfaceAttr): Put all the logic for computing
13026         the interface attribute here. 
13027
13028         (DefineInterface): Register our interface order with the
13029         RootContext or with the TypeContainer depending on the case.
13030
13031 2002-03-12  Miguel de Icaza  <miguel@ximian.com>
13032
13033         * cs-parser.jay: rework foreach statement to work with the new
13034         changes to the policy on SimpleNames.
13035
13036         * report.cs: support Stacktrace on warnings as well.
13037
13038         * makefile: drop --unsafe and /unsafe from the compile.
13039
13040 2002-03-13  Ravi Pratap  <ravi@ximian.com>
13041
13042         * ecore.cs (StandardConversionExists): Modify to take an Expression
13043         as the first parameter. Ensure we do null -> reference type conversion
13044         checking.
13045
13046         * Everywhere : update calls accordingly, making use of MyEmptyExpr to store
13047         temporary Expression objects.
13048
13049 Wed Mar 13 12:32:40 CET 2002 Paolo Molaro <lupus@ximian.com>
13050
13051         * interface.cs: workaround bug in method overloading resolution
13052         (there is already a bugzilla bug for it).
13053
13054 2002-03-12  Miguel de Icaza  <miguel@ximian.com>
13055
13056         We could also solve this problem by having a separate path for
13057         performing type lookups, instead of DoResolve, we could have a
13058         ResolveType entry point, and only participating pieces of the
13059         production (simplename, deref, array) would implement this. 
13060
13061         * codegen.cs (EmitContext): New field OnlyLookupTypes used to
13062         signal SimpleName to only resolve type names and not attempt to
13063         resolve anything else.
13064
13065         * expression.cs (Cast): Set the flag.
13066
13067         * ecore.cs (SimpleName): Use the OnlyLookupTypes flag
13068
13069         * class.cs: Only report 108 if there is no `new' modifier.
13070
13071         * cs-parser.jay: rework foreach statement to work with the new
13072         changes to the policy on SimpleNames.
13073         
13074         * report.cs: support Stacktrace on warnings as well.
13075
13076         * makefile: drop --unsafe and /unsafe from the compile.
13077
13078 2002-03-11  Miguel de Icaza  <miguel@ximian.com>
13079
13080         * ecore.cs (SimpleName.SimpleNameResolve): Perform local variable
13081         lookups here, instead of doing that at parse time.  This means
13082         that our grammar will not introduce `LocalVariableReferences' as
13083         expressions at this point.  That solves the problem of code like
13084         this:
13085
13086         class X {
13087            static void Main ()
13088            { int X = 1;
13089             { X x = null }}}
13090
13091         This is only half the fix.  The full fix requires parameters to
13092         also be handled in this way.
13093
13094         * Everywhere: Use ec.DeclSpace on calls to LookupType, as this
13095         makes the use more obvious of the DeclSpace.  The
13096         ec.TypeContainer.TypeBuilder is now only used to pull the
13097         TypeBuilder for it.
13098
13099         My theory is that I can get rid of the TypeBuilder completely from
13100         the EmitContext, and have typecasts where it is used (from
13101         DeclSpace to where it matters).  
13102
13103         The only pending problem is that the code that implements Aliases
13104         is on TypeContainer, and probably should go in DeclSpace.
13105
13106         * ecore.cs (SimpleName.SimpleNameResolve): Perform local variable
13107         lookups here, instead of doing that at parse time.  This means
13108         that our grammar will not introduce `LocalVariableReferences' as
13109         expressions at this point.  That solves the problem of code like
13110         this:
13111
13112         class X {
13113            static void Main ()
13114            { int X = 1;
13115             { X x = null }}}
13116
13117         This is only half the fix.  The full fix requires parameters to
13118         also be handled in this way.
13119
13120         * class.cs (Property.DefineMethod): When implementing an interface
13121         method, set newslot, when implementing an abstract method, do not
13122         set the flag (before we tried never setting it, or always setting
13123         it, which is the difference).
13124         (Indexer.DefineMethod): same.
13125         (Method.DefineMethod): same.
13126
13127         * ecore.cs: Only set the status used flag if we get back a Field.
13128
13129         * attribute.cs: Temporary hack, so Paolo can keep working.
13130
13131 2002-03-08  Ravi Pratap  <ravi@ximian.com>
13132
13133         * attribute.cs (Attribute.UnmanagedType): This is to keep track of
13134         the unmanaged type in the case we have a MarshalAs attribute.
13135
13136         (Resolve): Handle the case when we are parsing the special MarshalAs
13137         attribute [we need to store the unmanaged type to use later]
13138
13139         * typemanager.cs (marshal_as_attr_type): Built in type for the 
13140         MarshalAs Attribute.
13141
13142         * attribute.cs (ApplyAttributes): Recognize the MarshalAs attribute 
13143         on parameters and accordingly set the marshalling info.
13144
13145 2002-03-09  Miguel de Icaza  <miguel@ximian.com>
13146
13147         * class.cs: Optimizing slightly by removing redundant code after
13148         we switched to the `NoTypes' return value.
13149         (Property.DefineMethod): use NoTypes here too.
13150
13151         This fixes the bug I introduced in my last batch of changes.
13152
13153 2002-03-05  Ravi Pratap  <ravi@ximian.com>
13154
13155         * tree.cs (RecordEnum): Add. We now keep track of enums too.
13156
13157         * class.cs (LookupInterfaceOrClass): Check against the list of recorded
13158         Enums since those are types too. 
13159
13160         * cs-parser.jay (enum_declaration): Record enums as we parse them.
13161
13162         * enum.cs (DefineEnum): Return if the TypeBuilder has already been defined 
13163         thanks to a call during the lookup process.
13164
13165 2002-03-07  Miguel de Icaza  <miguel@ximian.com>
13166
13167         * statement.cs (Foreach): Lots of work to accomodate a particular
13168         kind of foreach statement that I had not kept in mind.  It is
13169         possible to have foreachs on classes that provide a GetEnumerator
13170         method that return objects that implement the "pattern" for using
13171         a foreach, there is no need to support GetEnumerator
13172         specifically. 
13173
13174         This is needed to compile nant.
13175
13176         * decl.cs: Only report 114 if the member is not `Finalize' and if
13177         the warning level is at least 2.
13178
13179         * class.cs: Moved the compare function from Method to
13180         MethodSignature. 
13181
13182         (MethodSignature.InheritableMemberSignatureCompare): Add new
13183         filter function that is used to extract inheritable methods from a
13184         class. 
13185
13186         (Method.Define): Use the new `inheritable_method_signature_filter'
13187         delegate
13188
13189         * cs-tokenizer.cs (get_cmd_arg): Do not add white space to the
13190         command. 
13191
13192 2002-03-06  Miguel de Icaza  <miguel@ximian.com>
13193
13194         * ecore.cs (Expression.ConvertReferenceExplicit): Removed dead code.
13195
13196         * cs-parser.jay: Add opt_semicolon to the interface declaration.
13197
13198         * expression.cs: Pass location information to
13199         ConvertImplicitStandard. 
13200
13201         * class.cs: Added debugging code to track return values from
13202         interfaces. 
13203
13204 2002-03-05  Miguel de Icaza  <miguel@ximian.com>
13205
13206         * expression.cs (Is.DoResolve): If either side of the `is' is an
13207         interface, do not flag the warning.
13208
13209         * ecore.cs (ImplicitReferenceConversion): We need a separate test
13210         for interfaces
13211
13212         * report.cs: Allow for --fatal to be used with --probe.
13213
13214         * typemanager.cs (NoTypes): Move the definition for the empty Type
13215         array here. 
13216
13217         * class.cs (TypeContainer.FindMembers): Also look for methods defined by
13218         properties. 
13219         (TypeContainer.DefineProxy): New function used to proxy to parent
13220         implementations when implementing interfaces.
13221         (TypeContainer.ParentImplements): used to lookup if our parent
13222         implements a public function that is required by an interface.
13223         (TypeContainer.VerifyPendingMethods): Hook this up.
13224
13225         * typemanager.cs (TypeManager, AddModule, AddAssembly): Make the
13226         `modules' and `assemblies' arraylists into arrays.  We only grow
13227         these are the very early start up of the program, so this improves
13228         the speedof LookupType (nicely measured).
13229
13230         * expression.cs (MakeByteBlob): Replaced unsafe code with
13231         BitConverter, as suggested by Paolo.
13232
13233         * cfold.cs (ConstantFold.Binary): Special case: perform constant
13234         folding of string concatenation, but if either side is a string,
13235         and the other is not, then return null, and let the runtime use
13236         the concatenation on the string plus the object (using
13237         `Object.ToString'). 
13238
13239 2002-03-04  Miguel de Icaza  <miguel@ximian.com>
13240
13241         Constant Folding has been implemented now.
13242
13243         * expression.cs (Unary.Reduce): Do not throw an exception, catch
13244         the error instead on types that are not supported in one's
13245         complement. 
13246
13247         * constant.cs (Constant and all children): New set of functions to
13248         perform implict and explicit conversions.
13249
13250         * ecore.cs (EnumConstant): Implement the new functions to perform
13251         conversion by proxying to the child expression.
13252
13253         * codegen.cs: (ConstantCheckState): Constant evaluation has its
13254         own separate setting that can not be turned off from the command
13255         line using --unchecked or --checked and is only controlled using
13256         the checked/unchecked statements and expressions.  This setting is
13257         used by the constant folder to flag errors.
13258
13259         * expression.cs (CheckedExpr, UncheckedExpr): Set the
13260         ConstantCheckState as well.   
13261
13262         During Resolve, they also have to flag the state, because the
13263         constant folder runs completely in the Resolve phase.
13264
13265         * statement.cs (Checked, Unchecked): Set the ConstantCheckState as
13266         well.
13267
13268 2002-03-01  Miguel de Icaza  <miguel@ximian.com>
13269
13270         * cfold.cs: New file, this file contains the constant folder.
13271
13272         * ecore.cs (IMemoryLocation.AddressOf): Now takes an extra
13273         argument to track whether we are using the resulting address to
13274         load or store a value and provide better error messages. 
13275
13276         (FieldExpr.Emit, FieldExpr.EmitAssign, FieldExpr.AddressOf): Use
13277         new AddressOf arguments.
13278
13279         * statement.cs (Foreach.EmitCollectionForeach): Update
13280
13281         * expression.cs (Argument.Emit): Call AddressOf with proper
13282         arguments to track usage.
13283
13284         (New.DoEmit): Call AddressOf with new arguments.
13285
13286         (Unary.Emit): Adjust AddressOf call.
13287
13288 2002-03-01  Ravi Pratap  <ravi@ximian.com>
13289
13290         * cs-parser.jay (member_access): Change the case for pre-defined types
13291         to use a MemberAccess instead of a SimpleName. Thanks to Felix again for 
13292         this suggestion.
13293
13294         * class.cs (Operator::Emit): If we are abstract or extern, we don't have
13295         a method body.
13296
13297         * attribute.cs (CheckAttribute, ApplyAttribute): Ensure that we treat operators
13298         essentially like methods and apply attributes like MethodImplOptions to them too.
13299
13300         * ecore.cs (SimpleName.SimpleNameResolve): Perform a check on ec.TypeContainer.TypeBuilder
13301         not being null.
13302
13303         * codegen.cs (EmitContext): The constructor now takes in an extra argument specifying the
13304         DeclSpace as the distinction is important. We provide sane defaults as usually the TypeContainer
13305         is the DeclSpace.
13306
13307         * Update code everywhere accordingly.
13308
13309         * ecore.cs : Change references to ec.TypeContainer to ec.DeclSpace where appropriate.
13310
13311         * cs-parser.jay (enum_declaration): Set the current namespace of the enum.
13312
13313 2002-02-28  Ravi Pratap  <ravi@ximian.com>
13314
13315         * rootcontext.cs (LookupType): As we cycle through the chain of namespaces
13316         try performing lookups against those instead of jumping straight into using
13317         the 'using' clauses.
13318
13319         (ImplicitParent): Add. Thanks to Felix Arrese-Igor for this idea.
13320
13321         (LookupType): Perform lookups in implicit parents too.
13322
13323         * class.cs (GetInterfaceOrClass): Modify to perform the exact same lookup
13324         sequence as RootContext.LookupType. 
13325
13326         * rootcontext.cs (NamespaceLookup): Split out code from LookupType which tries 
13327         the various cases of namespace lookups into this method.
13328
13329 2002-03-01  Miguel de Icaza  <miguel@ximian.com>
13330
13331         * cs-parser.jay: Add support for [Attribute ()] (empty arguments
13332         in positional arguments)
13333
13334         * class.cs (Operator): Update the AllowedModifiers to contain
13335         extern. 
13336
13337         * cs-parser.jay: Update operator declaration to allow for the
13338         operator body to be empty.
13339
13340         * cs-tokenizer.cs: Added '\u' unicode support in strings and hex
13341         values. 
13342
13343 2002-02-27  Miguel de Icaza  <miguel@ximian.com>
13344
13345         * class.cs (Method.Emit): Label parameters.
13346
13347         * driver.cs: Return 1 or 0 as the program exit code.
13348
13349 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
13350
13351         * expression.cs: Special case the `null' object when trying to
13352         auto-compute the type, as anything can be explicitly converted to
13353         that. 
13354
13355         * ecore.cs (Expression.ConvertExplicit): Bug fix, thanks for
13356         spotting this Paolo.
13357
13358         (Expression.ImplicitNumericConversion): Perform comparissions of
13359         the type using the underlying type in the case of an enumeration
13360         rather than using the enumeration type for the compare.
13361
13362         Cope with the underlying == type case, which is not possible to
13363         catch before. 
13364
13365         (Expression.ConvertNumericExplicit): Perform comparissions of
13366         the type using the underlying type in the case of an enumeration
13367         rather than using the enumeration type for the compare.
13368
13369         * driver.cs: If the user does not supply an extension, assume .exe
13370
13371         * cs-parser.jay (if_statement): Rewrote so that we can track the
13372         location for the if statement.
13373
13374         * expression.cs (Binary.ConstantFold): Only concat strings when
13375         the operation is "+", not everything ;-)
13376
13377         * statement.cs (Statement.EmitBoolExpression): Take a location
13378         argument. 
13379         (If, While, Do): Track location.
13380
13381         * expression.cs (Binary.ResolveOperator): In the object + string
13382         case, I was missing a call to ConvertImplicit
13383
13384 2002-02-25  Ravi Pratap  <ravi@ximian.com>
13385
13386         * parameter.cs (Parameter.ExternalType): Take in extra DeclSpace and
13387         Location arguments. Ensure we use RootContext.LookupType to do our work
13388         and not try to do a direct Type.GetType and ModuleBuilder.GetType
13389
13390         * interface.cs (PopulateMethod): Handle the type of the parameter being
13391         null gracefully.
13392
13393         * expression.cs (Invocation.BetterFunction): Handle the case when we 
13394         have a params method with no fixed arguments and a call is made with no
13395         arguments.
13396
13397 2002-02-25  Miguel de Icaza  <miguel@ximian.com>
13398
13399         * cs-tokenizer.cs: Add support for the quote-escape-sequence in
13400         the verbatim-string-literal
13401
13402         * support.cs (InternalParameters.ParameterModifier): handle null
13403         fixed parameters.
13404         (InternalParameters.ParameterType): ditto.
13405
13406         * parameter.cs (VerifyArgs): Also check if the fixed parameter is
13407         duplicating the name of the variable parameter.
13408         (GetParameterByName): Fix bug where we were not looking up array
13409         paramters if they were the only present (thanks Paolo!).
13410         (GetParameterInfo): We only have an empty set of types if both
13411         fixed and array are set to null.
13412         (GetParameterInfo-idx): Handle FixedParameter == null
13413
13414         * cs-parser.jay: Handle the case where there is no catch
13415         statements (missing null test).
13416
13417 2002-02-22  Miguel de Icaza  <miguel@ximian.com>
13418
13419         * driver.cs (MainDriver): Be conservative on our command line
13420         handling.
13421
13422         Catch DirectoryNotFoundException when calling GetFiles.
13423
13424         (SplitPathAndPattern): Used to split the input specification into
13425         a path and a pattern that we can feed to Directory.GetFiles.
13426
13427 2002-02-21  Miguel de Icaza  <miguel@ximian.com>
13428
13429         * statement.cs (Fixed): Implement the last case of the Fixed
13430         statement (string handling).
13431
13432         * expression.cs (StringPtr): New class used to return a char * to
13433         a string;  Used by the Fixed statement.
13434
13435         * typemanager.cs: Add char_ptr_type.  Add get_OffsetToStringData method.
13436
13437         * expression.cs (Binary.ResolveOperator): Remove redundant
13438         MemberLookup pn parent type.
13439         Optimize union call, we do not need a union if the types are the same.
13440         (Unary.ResolveOperator): REmove redundant MemberLookup on parent
13441         type.
13442
13443         Specialize the use of MemberLookup everywhere, instead of using
13444         the default settings. 
13445
13446         (StackAlloc): Implement stackalloc keyword.
13447
13448         * cs-parser.jay: Add rule to parse stackalloc.
13449
13450         * driver.cs: Handle /h, /help, /?
13451
13452         * expression.cs (MakeByteBlob): Removed the hacks we had in place
13453         before we supported unsafe code.
13454
13455         * makefile: add --unsafe to the self compilation of mcs.
13456
13457 2002-02-20  Miguel de Icaza  <miguel@ximian.com>
13458
13459         * expression.cs (PointerArithmetic): New class that is used to
13460         perform pointer arithmetic.
13461         (Binary.Resolve): Handle pointer arithmetic
13462         Handle pointer comparission.
13463         (ArrayPtr): Utility expression class that is used to take the
13464         address of an array.
13465
13466         (ElementAccess): Implement array access for pointers
13467
13468         * statement.cs (Fixed): Implement fixed statement for arrays, we
13469         are missing one more case before we are done.
13470
13471         * expression.cs (Indirection): Implement EmitAssign and set the
13472         ExprClass to Variable.  This allows pointer dereferences to be
13473         treated as variables, and to have values assigned to them.
13474
13475         * ecore.cs (Expression.StoreFromPtr): New utility function to
13476         store values dereferencing.
13477
13478 2002-02-20  Ravi Pratap  <ravi@ximian.com>
13479
13480         * expression.cs (Binary.ResolveOperator): Ensure that we are
13481         not trying to operate on a void type - this fixes the reported
13482         bug.
13483
13484         * decl.cs (CheckMethodAgainstBase): Do not allow overriding if
13485         the parent implementation is sealed.
13486
13487         * ../errors/cs0239.cs : Add.
13488
13489         * attribute.cs (ApplyAttributes): Handle Modulebuilders too.
13490
13491         * typemanager.cs (unverifiable_code_type): Corresponds to 
13492         System.Security.UnverifiableCodeAttribute. We need to emit this for modules
13493         which have unsafe code in them.
13494
13495         * rootcontext.cs (EmitCode): Emit the above attribute when we are in an 
13496         unsafe context.
13497
13498 2002-02-19  Miguel de Icaza  <miguel@ximian.com>
13499
13500         * cs-tokenizer.cs: Add support for @"litreal strings"
13501
13502         Make tokenizer accept pre-processor directives
13503         on any column (remove the old C-like limitation). 
13504
13505         * rootcontext.cs (EmitCode): Emit any global attributes.
13506         (AddGlobalAttributes): Used to keep track of assembly attributes. 
13507
13508         * attribute.cs (ApplyAttributes): Support AssemblyAttributes.
13509
13510         * cs-parser.jay: Add support for global attributes.  
13511
13512 2002-02-17  Miguel de Icaza  <miguel@ximian.com>
13513
13514         * expression.cs (Indirection): New helper class.  Unary will
13515         create Indirection classes to be able to implement the
13516         IMemoryLocation interface on it.
13517
13518 2002-02-16  Miguel de Icaza  <miguel@ximian.com>
13519
13520         * cs-parser.jay (fixed_statement): reference the right statement.
13521
13522         * statement.cs (Fixed.Emit): Finish implementing the fixed
13523         statement for the &x case.
13524
13525 2002-02-14  Miguel de Icaza  <miguel@ximian.com>
13526
13527         * class.cs (Property.Define, Method.Define): Remove newslot when
13528         `implementing'.  
13529
13530         * modifiers.cs: My use of NewSlot when `Abstract' was set was
13531         wrong.  NewSlot should only be used if the `new' keyword is present.
13532
13533         * driver.cs (GetSystemDir): Use CodeBase instead of FullName for
13534         locating our system dir.  Sorry about this.
13535
13536 2002-02-13  Miguel de Icaza  <miguel@ximian.com>
13537
13538         * driver.cs (GetSystemDir): Compute correctly the location of our
13539         system assemblies.  I was using the compiler directory instead of
13540         the library directory.
13541
13542 2002-02-13  Ravi Pratap  <ravi@ximian.com>
13543
13544         * expression.cs (BetterFunction): Put back in what Miguel commented out
13545         since it is the correct fix. The problem is elsewhere ;-)
13546
13547         (IsParamsMethodApplicable): Fix bug where we were not checking that the fixed
13548         parameters of the parms method are themselves compatible or not !
13549
13550         (StandardConversionExists): Fix very dangerous bug where we were forgetting
13551         to check that a class implements an interface before saying that an implicit
13552         conversion was allowed. Use ImplementsInterface to do the checking.
13553
13554 2002-02-13  Miguel de Icaza  <miguel@ximian.com>
13555
13556         * class.cs (Method.Define): Track whether we are an explicit
13557         implementation or not.  And only call DefineMethodOverride if we
13558         are an explicit implementation.
13559
13560         (Property.DefineMethod): Ditto.
13561
13562 2002-02-11  Ravi Pratap  <ravi@ximian.com>
13563
13564         * expression.cs (BetterFunction): Catch hideous bug which was
13565          preventing us from detecting ambiguous calls due to implicit casts i.e
13566         cs0121.
13567
13568 2002-01-29  Miguel de Icaza  <miguel@ximian.com>
13569
13570         * support.cs (Pair): Remove un-needed method.  I figured why I was
13571         getting the error in cs-parser.jay, the variable in a foreach loop
13572         is readonly, and the compiler does not really treat this as a variable.
13573
13574         * cs-parser.jay (fixed_statement): Fix grammar.  Use ASSIGN
13575         instead of EQUALS in grammar.  
13576
13577         * typemanager.cs (VerifyUnmanaged): Report correct error (208)
13578
13579         * expression.cs (Unary.DoResolve): Check whether the argument is
13580         managed or not.
13581
13582 2002-01-28  Miguel de Icaza  <miguel@ximian.com>
13583
13584         * support.cs: Api for Pair to set a value.  Despite the fact that
13585         the variables are public the MS C# compiler refuses to compile
13586         code that accesses the field if the variable is part of a foreach
13587         statement. 
13588
13589         * statement.cs (Fixed): Begin implementation of the fixed
13590         statement.
13591
13592         (Block.AddVariable): Return the VariableInfo on success and null
13593         on failure instead of true/false. 
13594
13595         * cs-parser.jay (foreach): Catch errors on variables already
13596         defined (we were ignoring this value before) and properly unwind
13597         the block hierarchy
13598
13599         (fixed_statement): grammar for the fixed statement.
13600
13601 2002-01-25  Miguel de Icaza  <miguel@ximian.com>
13602
13603         * expression.cs (UnaryMutator.IsIncrementableNumber): Allow also
13604         pointer types to be incretemented.
13605
13606         (SizeOf): Implement.
13607
13608         * cs-parser.jay (pointer_member_access): Implement
13609         expr->IDENTIFIER production.
13610
13611         * expression.cs (IndexerAccess.DoResolve, ArrayAccess.DoResolve,
13612         MemberAccess.DoResolve, Invocation.DoResolve): Check for pointers
13613         on safe contexts.
13614
13615         (Unary): Implement indirection.
13616
13617         * ecore.cs (Expression.UnsafeError): Reports error 214 (pointer
13618         use in non-unsafe context).
13619
13620         (SimpleName.DoResolve): Check for pointers in field access on safe
13621         contexts. 
13622
13623         (Expression.LoadFromPtr): Factor the load-indirect code in this
13624         function.  This was duplicated in UnboxCast and ParameterReference
13625
13626 2002-01-24  Miguel de Icaza  <miguel@ximian.com>
13627
13628         * expression.cs (ComposedCast): report an error if a pointer cast
13629         is used in a safe region.
13630
13631         * ecore.cs (Expression.ConvertExplicit): Add rules for implicit
13632         pointer type casts in unsafe context.
13633
13634         * codegen.cs (EmitContext): Set up IsUnsafe.
13635
13636         * cs-parser.jay (non_expression_type): Add productions for pointer
13637         casts. 
13638
13639         * expression.cs (Invocation.EmitCall): Remove chunk of buggy
13640         code.  We should not use force into static mode if the method is
13641         not virtual.  Fixes bug in MIS
13642
13643         * statement.cs (Do.Emit, While.Emit, For.Emit,
13644         Statement.EmitBoolExpression): Add support to Do and While to
13645         propagate infinite loop as `I do return' semantics.
13646
13647         Improve the For case to also test for boolean constants.
13648
13649         * attribute.cs (Attribute.ApplyAttributes): Add ParameterBuilder
13650         to the list of attributes we can add.
13651
13652         Remove `EmitContext' argument.
13653
13654         * class.cs (Method.Define): Apply parameter attributes.
13655         (Constructor.Define): Apply parameter attributes.
13656         (MethodCore.LabelParameters): Move here the core of labeling
13657         parameters. 
13658
13659         * support.cs (ReflectionParameters.ParameterModifier,
13660         InternalParameters.ParameterModifier): Use IsByRef on the type and
13661         only return the OUT bit for these parameters instead of in/out/ref
13662         flags.
13663
13664         This is because I miss-understood things.  The ParameterInfo.IsIn
13665         and IsOut represent whether the parameter has the [In] and [Out]
13666         attributes set.  
13667
13668 2002-01-22  Miguel de Icaza  <miguel@ximian.com>
13669
13670         * ecore.cs (FieldExpr.Emit): Release temporaries.
13671
13672         * assign.cs (LocalTemporary.Release): new function.
13673
13674         * codegen.cs (EmitContext.GetTemporaryStorage,
13675         EmitContext.FreeTemporaryStorage): Rework the way we deal with
13676         temporary storage.  Now we can "put back" localbuilders when we
13677         are done with them
13678
13679 2002-01-21  Miguel de Icaza  <miguel@ximian.com>
13680
13681         * ecore.cs (FieldExpr.Emit): Handle initonly fields specially: we
13682         need to make a copy of the variable to generate verifiable code.
13683
13684 2002-01-19  Miguel de Icaza  <miguel@ximian.com>
13685
13686         * driver.cs: Compute dynamically the system directory.
13687
13688         * ecore.cs (CopyNewMethods): reworked, exposed, made public.
13689         Slower, but more generally useful.  Used by the abstract
13690         registering implementation. 
13691
13692         * expression.cs (ResolveMemberAccess): Reorder the way we evaluate
13693         the rules for the special rule on Type/instances.  First check if
13694         we have the same name, and if so, try that special static path
13695         rather than the instance path.
13696
13697 2002-01-18  Miguel de Icaza  <miguel@ximian.com>
13698
13699         * cs-parser.jay: Emit 642 (warning: possible empty statement) for
13700         for, while and if.
13701
13702         * class.cs (TypeBuilder.DefineType): Do not allow inheritance from
13703         Enum, ValueType, Delegate or Array for non-corlib compiles.
13704
13705         * cs-tokenizer.cs: Catch long identifiers (645)
13706
13707         * typemanager.cs (IndexerPropetyName): Ravi never tested this
13708         piece of code.
13709
13710         * class.cs (TypeContainer.RegisterRequiredImplementations): Bug
13711         fix, we were returning too early, so we were not registering
13712         pending methods from abstract classes.
13713
13714         Do not register pending methods if the class is abstract.
13715
13716         * expression.cs (Conditional.DoResolve): Report circular implicit
13717         conversions when we neecd to compute it for conditional
13718         expressions. 
13719
13720         (Is.DoResolve): If the expression is always of the provided type,
13721         flag warning 183.  If the expression can not ever be of the
13722         provided type flag warning 184.
13723
13724         * class.cs: Catch 169 as well.
13725
13726         * ecore.cs (FieldExpr): For now in AddressOf mark as assigned and
13727         read. 
13728
13729 2002-01-18  Nick Drochak  <ndrochak@gol.com>
13730
13731         * makefile: remove path to beta2 csc.exe.  path to csc.exe must be in PATH instead.
13732
13733 2002-01-17  Miguel de Icaza  <miguel@ximian.com>
13734
13735         * interface.cs: (PopulateMethod): Check for pointers being defined
13736         only if the unsafe context is active.
13737         (PopulateProperty): ditto.
13738         (PopulateIndexer): ditto.
13739
13740         * class.cs (Method, Method.Define): Allow `unsafe' modifier to be
13741         specified.  If pointers are present, make sure that they are
13742         present in an unsafe context.
13743         (Constructor, Constructor.Define): ditto.
13744         (Field, Field.Define): ditto.
13745         (Property, Property.Define): ditto.
13746         (Event, Event.Define): ditto.
13747
13748         * interface.cs (Interface.GetInterfaceTypeByName): Only lookup the
13749         hashtable if there are classes or structs defined.
13750
13751         * expression.cs (LocalVariableReference.DoResolve): Simplify this
13752         code, as the constant resolution moved.
13753
13754         * statement.cs (Block.EmitMeta): Resolve all constants as we emit
13755         the metadata, so we can flag error 133. 
13756
13757         * decl.cs (MemberCore.UnsafeOK): New function to test that a
13758         pointer is being declared in an unsafe context.
13759
13760 2002-01-16  Miguel de Icaza  <miguel@ximian.com>
13761
13762         * modifiers.cs (Modifiers.Check): Require a Location argument.
13763         Report error 227 for Unsafe use.
13764
13765         * typemanager.cs: Remove IsPointerType, we should be using Type.IsPointer
13766
13767         * statement.cs (For.Emit): If the test is null, then report that
13768         we do `return', as we wont reach anything afterwards.
13769
13770         (Switch.SwitchGoverningType): Track the expression that matched
13771         the conversion.
13772
13773         * driver.cs: Allow negative numbers as an error code to flag.
13774
13775         * cs-parser.jay: Handle 1551.
13776
13777         * namespace.cs: Add 1537 checking (repeated using alias namespaces).
13778
13779 2002-01-15  Miguel de Icaza  <miguel@ximian.com>
13780
13781         * cs-parser.jay: Report 1518 (type declaration can only contain
13782         class, struct, interface, enum or delegate)
13783
13784         (switch_label): Report 1523 (keywords `case' or `default' must
13785         preced code)
13786
13787         (opt_switch_sections): Report 1522 (empty switch)
13788
13789         * driver.cs: Report 1515 (response file specified multiple times)
13790         Report 1516 (Source file specified multiple times).
13791
13792         * expression.cs (Argument.Resolve): Signal 1510
13793
13794         (BaseAccess.Resolve, BaseIndexer.Resolve): Signal 1511 (base
13795         access not allowed in static code)
13796
13797 2002-01-11  Ravi Pratap  <ravi@ximian.com>
13798
13799         * typemanager.cs (IsPointerType): Utility method which we are going
13800         to need a lot.
13801
13802         * ecore.cs (ImplicitReferenceConversion): A pointer type cannot be cast to
13803         the object type, so we take care of that.
13804
13805         * expression.cs (FullMethodDesc): Also include the return type in descriptions.
13806
13807         * support.cs (ParameterDesc): Fix minor bug which was causing params tags to be
13808         added to non-params parameters :-)
13809
13810         * typemanager.cs (CSharpName): Include 'void' type too. 
13811
13812         (void_ptr_type): Include in the set of core types.
13813
13814         * ecore.cs (ConvertImplicit): Make use of ConvertImplicitStandard instead of 
13815         duplicating code.
13816
13817         (ConvertImplicitStandard): Handle standard implicit pointer conversions when we have 
13818         an unsafe context.
13819
13820         * cs-parser.jay (local_variable_pointer_type): Add support for 'void *' as I had 
13821         completely forgotten about it.
13822
13823 2002-01-10  Ravi Pratap  <ravi@ximian.com>
13824
13825         * cs-parser.jay (pointer_type): Add. This begins our implementation
13826         of parsing rules for unsafe code.
13827
13828         (unsafe_statement): Implement.
13829
13830         (embedded_statement): Modify to include the above.
13831
13832         * statement.cs (Unsafe): Implement new class for unsafe blocks.
13833
13834         * codegen.cs (EmitContext.InUnsafe): Add. This determines
13835         if the current context is an unsafe one.
13836
13837         * cs-parser.jay (local_variable_pointer_type): Since local variable types
13838         are handled differently, we need separate rules for them.
13839
13840         (local_variable_declaration): Update to use local_variable_pointer_type
13841         to allow variable declarations of unmanaged pointer types.
13842
13843         * expression.cs (Unary.ResolveOperator): Ensure that the '&' operator is used only
13844         in unsafe contexts.
13845
13846         * ../errors/cs0214.cs : Add.
13847
13848 2002-01-16  Nick Drochak  <ndrochak@gol.com>
13849
13850         * makefile: remove 'response' file when cleaning.
13851
13852 2002-01-15  Miguel de Icaza  <miguel@ximian.com>
13853
13854         * cs-parser.jay: Report 1524.
13855
13856 2002-01-14  Miguel de Icaza  <miguel@ximian.com>
13857
13858         * typemanager.cs (RegisterMethod): drop checking if we have
13859         registered this from here
13860
13861 2002-01-12  Miguel de Icaza  <miguel@ximian.com>
13862
13863         * class.cs (Method.EmitDestructor): Implement calling our base
13864         destructor. 
13865
13866         * statement.cs (Try.Emit): Fix to reset the InFinally to the old
13867         value of InFinally.
13868
13869         * codegen.cs (EmitContext.EmitTopBlock): Destructors will call
13870         this routine and will wrap the call in a try/catch block.  Deal
13871         with the case.
13872
13873 2002-01-11  Miguel de Icaza  <miguel@ximian.com>
13874
13875         * ecore.cs (Expression.MemberLookup): instead of taking a
13876         parameter `same_type' that was used to tell whether we could
13877         access private members we compute our containing type from the
13878         EmitContext.
13879
13880         (FieldExpr): Added partial support for volatile fields.  This does
13881         not work for volatile fields exposed from assemblies, as I can not
13882         figure out how to extract the modreq from it.
13883
13884         Updated all the source files to use this.
13885
13886         * codegen.cs (EmitContext): Compute ContainerType ahead of time,
13887         because it is referenced by MemberLookup very often. 
13888
13889 2002-01-09  Ravi Pratap  <ravi@ximian.com>
13890
13891         * typemanager.cs (IndexerPropertyName): If we have a TypeBuilder, use
13892         TypeBuilder.GetCustomAttributes to retrieve what we need.
13893
13894         Get rid of redundant default_member_attr_type as this is the same as
13895         default_member_type which already exists.
13896
13897         * interface.cs, attribute.cs : Update accordingly.
13898
13899 2002-01-08  Miguel de Icaza  <miguel@ximian.com>
13900
13901         * typemanager.cs: Enable IndexerPropertyName again.  It does not
13902         work for TYpeBuilders though.  Ravi, can you please fix this?
13903
13904         * cs-tokenizer.cs: Accept _ as a name in pp-expressions.
13905
13906         * expression.cs (Argument.Emit): Handle the case of ref objects
13907         being passed to ref functions;  
13908
13909         (ParameterReference.EmitLoad): Loads the content of the pointer
13910         without dereferencing.
13911
13912 2002-01-07  Miguel de Icaza  <miguel@ximian.com>
13913
13914         * cs-tokenizer.cs: Implemented the pre-processing expressions.
13915
13916 2002-01-08  Ravi Pratap  <ravi@ximian.com>
13917
13918         * class.cs (Indexer.DefineMethod): Incorporate the interface
13919         type in the name of the method if we are doing explicit interface
13920         implementation.
13921
13922         * expression.cs (ConversionExists): Remove as it is completely obsolete.
13923
13924         (BetterConversion): Fix extremely trivial bug where we were referring to
13925         ConversionExists instead of StandardConversionExists ! Hooray, things are fine
13926         again !
13927
13928         * ../errors/bug16.cs : Add although we have fixed it.
13929
13930 2002-01-07  Miguel de Icaza  <miguel@ximian.com>
13931
13932         * expression.cs (BaseIndexer): Begin implementation.
13933
13934         * class.cs (TypeContainer.IsInterfaceMethod): Bug fix.
13935
13936         * cs-parser.jay (indexer_declarator): Use qualified_identifier
13937         production directly to remove a shift/reduce, and implement
13938         explicit interface implementation.
13939
13940         * cs-tokenizer.cs: Fix tokenizer, it was consuming one extra char
13941         after a floating point suffix.
13942
13943         * expression.cs (DoNumericPromotions): Improved the conversion for
13944         uint/uint.  If we have a constant, we avoid doing a typecast to a
13945         larger type.
13946
13947         * class.cs (Indexer): Implement explicit interface implementation
13948         for indexers.
13949
13950 Sat Jan 5 16:08:23 CET 2002 Paolo Molaro <lupus@ximian.com>
13951
13952         * class.cs: make the default instance constructor public and hidebysig.
13953
13954 2001-01-03  Ravi Pratap  <ravi@ximian.com>
13955
13956         * interface.cs (EmitDefaultMemberAttr): Make this helper method static
13957         so we can call it from elsewhere.
13958
13959         * class.cs (TypeContainer.Emit): Emit the attribute here too. The rule is that
13960         we emit it internally if the class has a defined indexer; otherwise the user
13961         emits it by decorating the class definition with the DefaultMemberAttribute.
13962
13963         * attribute.cs (ApplyAttributes): Perform checks to see that the DefaultMember
13964         attribute is not used on a type which defines an indexer.
13965
13966         * cs-tokenizer.cs (get_cmd_arg): Ensure we trim whitespace and also include the tab
13967         character when we skip whitespace.
13968
13969         * ../errors/cs0646.cs : Add.
13970
13971 2002-01-03  Miguel de Icaza  <miguel@ximian.com>
13972
13973         * ecore.cs (SimpleName.ResolveSimpleName): Report error 120
13974         again. 
13975
13976         * makefile: Add practical target `mcs3.exe' which builds the third
13977         generation compiler. 
13978
13979         * expression.cs (New): Fix structures constructor calling.
13980
13981         * class.cs (Property, Method, Indexer): Emit Final flag on the
13982         method if we are an interface implementation and we are not
13983         abstract. 
13984
13985         * ecore.cs (PropertyExpr): New public field `IsBase', tells
13986         whether this property is referencing a `base' method.
13987
13988         * expression.cs (Invocation.EmitCall): take an extra argument:
13989         is_base, this is used to determine whether the `call' or
13990         `callvirt' opcode should be used.
13991
13992
13993         * delegate.cs: update EmitCall.
13994
13995         * class.cs (Method.Define): Set NewSlot for the cases where we are
13996         not implementing an interface method.
13997
13998         (Property.Define): ditto.
13999
14000 2002-01-02  Miguel de Icaza  <miguel@ximian.com>
14001
14002         * cs-tokenizer.cs: (Tokenizer.escape): Escape '\r' as '\r' not as
14003         'r'.  Allows mcs to parse itself fully.
14004
14005 2002-01-02  Ravi Pratap  <ravi@ximian.com>
14006
14007         * expression.cs (ArrayCreation.num_automatic_initializers): Keep track
14008         of the number of initializers that require the InitializeArray method.
14009
14010         (CheckIndices): Store the Expression in all cases - not the plain value. Also
14011         update the above field where necessary.
14012
14013         (MakeByteBlob): Update accordingly.
14014
14015         (DoEmit): Call EmitStaticInitializers only if the number of initializers is 
14016         greater than 2.
14017
14018         (EmitDynamicInitializers): Update in accordance with the new optimization.
14019
14020         (ArrayAccess.EmitStoreOpcode): Include char type along with short and ushort - the
14021         same OpCode applies.
14022
14023         * cs-parser.jay : Fix some glaring errors I introduced.
14024
14025 2002-01-01  Ravi Pratap  <ravi@ximian.com> 
14026
14027         * parameters.cs (AddVariable, AddConstant): Pass in current_local_parameters
14028         so that we can check for name clashes there too.
14029
14030         * typemanager.cs (default_member_attr_type): The attribute that we need to emit
14031         for interface indexers.
14032
14033         * interfaces.cs (Define): Emit the default member attribute.
14034
14035         * expression.cs (MakeByteBlob): Fix extremely trivial bug where the wrong
14036         variable was being referred to while setting the value ;-)
14037
14038 2002-01-01  Miguel de Icaza  <miguel@ximian.com>
14039
14040         * expression.cs (MakeByteBlob): Optimize: we do not need to fill
14041         byte-by-byte information when we know the data is zero.
14042
14043         Make the block always a multiple of 4, because
14044         DefineInitializedData has a bug.
14045
14046         * assign.cs: Fix, we should assign from the temporary, not from
14047         the source. 
14048
14049         * expression.cs (MakeByteBlob): Fix my incorrect code.
14050
14051 2001-12-31  Miguel de Icaza  <miguel@ximian.com>
14052
14053         * typemanager.cs (EnumToUnderlying): This function is used to get
14054         the underlying type from an enumeration, because it does not
14055         always work. 
14056
14057         * constant.cs: Use the I4_S form for values between -128 and 127.
14058
14059         * statement.cs (Block.LookupLabel): Looks up a label.
14060         (Block): Drop support for labeled blocks.
14061
14062         (LabeledStatement): New kind of statement that represents a label
14063         only.
14064
14065         (Goto): Finally implement this bad boy.
14066
14067         * cs-parser.jay: Update to reflect new mechanism to implement
14068         labels.
14069
14070 2001-12-30  Miguel de Icaza  <miguel@ximian.com>
14071
14072         * codegen.cs (EmitContext.This): a codegen property that keeps the
14073         a single instance of this instead of creating many different this
14074         instances. 
14075
14076         * delegate.cs (Delegate.DoResolve): Update to use the property;
14077
14078         * ecore.cs (SimpleName.SimpleNameResolve): Ditto
14079
14080         * expression.cs (BaseAccess.DoResolve): Ditto.
14081
14082 2001-12-29  Ravi Pratap  <ravi@ximian.com>
14083
14084         * typemanager.cs (methodimpl_attr_type): Add to hold the type
14085         corresponding to System.Runtime.CompilerServices.MethodImplAttribute.
14086
14087         (InitCoreTypes): Update accordingly.
14088
14089         * attribute.cs (Resolve): Remember if the attribute is a MethodImplAttribute
14090         so we can quickly store the state.
14091
14092         (ApplyAttributes): Set the correct implementation flags
14093         for InternalCall methods.
14094
14095 2001-12-29  Miguel de Icaza  <miguel@ximian.com>
14096
14097         * expression.cs (EmitCall): if a method is not virtual, then do
14098         not use callvirt on it.
14099
14100         (ArrayAccess.EmitAssign): storing non-builtin value types (ie,
14101         user defined stuff) requires the use of stobj, which takes an
14102         address on the stack instead of an array and an index.  So emit
14103         the Ldelema operation for it.
14104
14105         (EmitStoreOpcode): Use stobj for valuetypes.
14106
14107         (UnaryMutator.EmitCode): Use the right 1 value depending on
14108         whether we are dealing with int64/uint64, float or doubles.
14109
14110         * class.cs (TypeContainer.AddConstructor): Fix the logic to define
14111         constructors that I implemented last night.
14112
14113         (Constructor.IsDefault): Fix to work properly for static
14114         constructors.
14115
14116         * cs-parser.jay (CheckDef): report method signature errors.
14117         Update error number 103 to be 132.
14118
14119         * decl.cs: New AdditionResult enumeration value: MethodExists.
14120         Although we do this check for methods later on in the semantic
14121         analysis, catching repeated default constructors is so easy that
14122         we catch these here. 
14123
14124         * expression.cs (Binary.DoNumericPromotions): Fix the uint64 type
14125         promotions code.
14126
14127         (ParameterReference.EmitAssign, Emit): handle
14128         bools as bytes.
14129
14130         (ArrayAccess.EmitLoadOpcode): Handle bool type here.
14131         (ArrayAccess.EmitStoreOpcode): ditto.
14132
14133         * cs-tokenizer.cs (is_punct): Eliminated empty computation.
14134
14135         * expression.cs (MakeByteBlob): Complete all the missing types
14136         (uint, short, ushort, byte, sbyte)
14137
14138         * class.cs: Only init instance field initializers on instance
14139         constructors. 
14140
14141         Rename `constructors' to instance_constructors. 
14142
14143         (TypeContainer.AddConstructor): Only add constructors to the list
14144         if it is not static.
14145
14146         Make sure that we handle default_static_constructor independently
14147         everywhere where we handle instance_constructors
14148
14149 2001-12-28  Miguel de Icaza  <miguel@ximian.com>
14150
14151         * class.cs: Do not lookup or create a base initializer for a
14152         static constructor.
14153
14154         (ConstructorInitializer.Resolve): use the proper type to lookup
14155         for constructors.
14156
14157         * cs-parser.jay: Report error 1585 (modifiers between type and name).
14158
14159         * enum.cs, interface.cs: Remove CloseType, this is taken care by
14160         in DeclSpace. 
14161
14162         * decl.cs: CloseType is now an virtual method, the default
14163         implementation just closes this type.
14164
14165 2001-12-28  Ravi Pratap  <ravi@ximian.com>
14166
14167         * attribute.cs (DefinePInvokeMethod): Set the implementation flags
14168         to PreserveSig by default. Also emit HideBySig on such methods.
14169
14170         Basically, set the defaults to standard values.
14171
14172         * expression.cs (Invocation.BetterFunction): We need to make sure that for each
14173         argument, if candidate is better, it can't be worse than the best !
14174
14175         (Invocation): Re-write bits to differentiate between methods being
14176         applicable in their expanded form and their normal form - for params
14177         methods of course.
14178
14179         Get rid of use_standard everywhere as only standard conversions are allowed
14180         in overload resolution. 
14181
14182         More spec conformance.
14183
14184 2001-12-27  Miguel de Icaza  <miguel@ximian.com>
14185
14186         * driver.cs: Add --timestamp, to see where the compiler spends
14187         most of its time.
14188
14189         * ecore.cs (SimpleName.DoResolve): Do not create an implicit
14190         `this' in static code.
14191
14192         (SimpleName.DoResolve): Implement in terms of a helper function
14193         that allows static-references to be passed upstream to
14194         MemberAccess.
14195
14196         (Expression.ResolveWithSimpleName): Resolve specially simple
14197         names when called by MemberAccess to implement the special
14198         semantics. 
14199
14200         (Expression.ImplicitReferenceConversion): Handle conversions from
14201         Null to reference types before others, as Null's type is
14202         System.Object. 
14203
14204         * expression.cs (Invocation.EmitCall): Handle the special case of
14205         calling methods declared on a reference type from a ValueType
14206         (Base classes System.Object and System.Enum)
14207
14208         (MemberAccess.Resolve): Only perform lookups on Enumerations if
14209         the left hand side is a TypeExpr, not on every enumeration. 
14210
14211         (Binary.Resolve): If types are reference types, then do a cast to
14212         object on operators != and == of both arguments.
14213
14214         * typemanager.cs (FindMembers): Extract instance and static
14215         members if requested.
14216
14217         * interface.cs (PopulateProperty): Use void_type instead of null
14218         as the return type for the setter method.
14219
14220         (PopulateIndexer): ditto.
14221
14222 2001-12-27  Ravi Pratap  <ravi@ximian.com>
14223
14224         * support.cs (ReflectionParameters): Fix minor bug where we
14225         were examining the wrong parameter for the ParamArray attribute.
14226
14227         Cope with requests for the type of the parameter at position
14228         greater than the params parameter's. We now return the element
14229         type of the params array as that makes more sense.
14230
14231         * expression.cs (Invocation.IsParamsMethodApplicable): Update 
14232         accordingly as we no longer have to extract the element type
14233         ourselves.
14234
14235         (Invocation.OverloadResolve): Update.
14236
14237 2001-12-27  Miguel de Icaza  <miguel@ximian.com>
14238
14239         * statement.cs (Foreach.GetEnumeratorFilter): Do not compare
14240         against IEnumerator, test whether the return value is a descendant
14241         of the IEnumerator interface.
14242
14243         * class.cs (Indexer.Define): Use an auxiliary method to implement
14244         the other bits of the method definition.  Begin support for
14245         explicit interface implementation.
14246
14247         (Property.DefineMethod): Use TypeManager.void_type instead of null
14248         for an empty return value.
14249
14250 2001-12-26  Miguel de Icaza  <miguel@ximian.com>
14251
14252         * expression.cs (MemberAccess.ResolveMemberAccess): if we are
14253         dealing with a FieldExpr which is composed of a FieldBuilder, in
14254         the code path we did extract the constant, but we should have
14255         obtained the underlying value to be able to cast it (otherwise we
14256         end up in an infinite loop, this is what Ravi was running into).
14257
14258         (ArrayCreation.UpdateIndices): Arrays might be empty.
14259
14260         (MemberAccess.ResolveMemberAccess): Add support for section
14261         14.5.4.1 that deals with the special case of E.I when E is a type
14262         and something else, that I can be a reference to a static member.
14263
14264         (ArrayCreation.MakeByteBlob): It is not an error to not be able to
14265         handle a particular array type to create byte blobs, it is just
14266         something we dont generate byteblobs for.
14267
14268         * cs-tokenizer.cs (get_cmd_arg): Ignore \r in commands and
14269         arguments. 
14270
14271         * location.cs (Push): remove the key from the hashtable that we
14272         are about to add.   This happens for empty files.
14273
14274         * driver.cs: Dispose files after we have parsed them.
14275
14276         (tokenize): new function that only runs the tokenizer on its
14277         input, for speed testing.
14278
14279 2001-12-26  Ravi Pratap  <ravi@ximian.com>
14280
14281         * class.cs (Event.Define): Define the private field only if there
14282         are no accessors defined.
14283
14284         * expression.cs (ResolveMemberAccess): If there is no associated
14285         field with the event, that means we have an event defined with its
14286         own accessors and we should flag error cs0070 since transforming
14287         ourselves into a field is not valid in that case.
14288
14289         * ecore.cs (SimpleName.DoResolve): Same as above.
14290
14291         * attribute.cs (DefinePInvokeMethod): Set the default calling convention
14292         and charset to sane values.
14293
14294 2001-12-25  Ravi Pratap  <ravi@ximian.com>
14295
14296         * assign.cs (DoResolve): Perform check on events only if they 
14297         are being accessed outside the declaring type.
14298
14299         * cs-parser.jay (event_declarations): Update rules to correctly
14300         set the type of the implicit parameter etc.
14301
14302         (add_accessor, remove_accessor): Set current local parameters.
14303
14304         * expression.cs (Binary): For delegate addition and subtraction,
14305         cast the return value from the method into the appropriate delegate
14306         type.
14307
14308 2001-12-24  Ravi Pratap  <ravi@ximian.com>
14309
14310         * typemanager.cs (RegisterDelegateData, GetDelegateData): Get rid
14311         of these as the workaround is unnecessary.
14312
14313         * delegate.cs (NewDelegate.DoResolve): Get rid of bits which registered
14314         delegate data - none of that is needed at all.
14315
14316         Re-write bits to extract the instance expression and the delegate method
14317         correctly.
14318
14319         * expression.cs (Binary.ResolveOperator): Handle the '-' binary operator 
14320         on delegates too.
14321
14322         * attribute.cs (ApplyAttributes): New method to take care of common tasks
14323         of attaching attributes instead of duplicating code everywhere.
14324
14325         * everywhere : Update code to do attribute emission using the above method.
14326
14327 2001-12-23  Miguel de Icaza  <miguel@ximian.com>
14328
14329         * expression.cs (IsParamsMethodApplicable): if there are not
14330         parameters, return immediately.
14331
14332         * ecore.cs: The 0 literal can be implicity converted to an enum
14333         type. 
14334
14335         (SimpleName.DoResolve): First lookup the type, then lookup the
14336         members. 
14337
14338         (FieldExpr.Emit): If the InstanceExpression is a ValueType, we
14339         want to get its address.  If the InstanceExpression is not
14340         addressable, store the result in a temporary variable, then get
14341         the address of it.
14342
14343         * codegen.cs: Only display 219 errors on warning level or above. 
14344
14345         * expression.cs (ArrayAccess): Make it implement the
14346         IMemoryLocation interface.
14347
14348         (Binary.DoResolve): handle the operator == (object a, object b)
14349         and operator != (object a, object b) without incurring into a
14350         BoxedCast (because 5 != o should never be performed).
14351
14352         Handle binary enumerator operators.
14353
14354         (EmitLoadOpcode): Use Ldelema if the object we are loading is a
14355         value type, otherwise use Ldelem_ref.
14356
14357         Use precomputed names;
14358
14359         (AddressOf): Implement address of
14360
14361         * cs-parser.jay (labeled_statement): Fix recursive block
14362         addition by reworking the production.
14363
14364         * expression.cs (New.DoEmit): New has a special case:
14365                 
14366                  If we are dealing with a ValueType, we have a few
14367                  situations to deal with:
14368                 
14369                     * The target of New is a ValueType variable, that is
14370                       easy, we just pass this as the variable reference
14371                 
14372                     * The target of New is being passed as an argument,
14373                       to a boxing operation or a function that takes a
14374                       ValueType.
14375                 
14376                       In this case, we need to create a temporary variable
14377                       that is the argument of New.
14378
14379
14380 2001-12-23  Ravi Pratap  <ravi@ximian.com>
14381
14382         * rootcontext.cs (LookupType): Check that current_type is not null before
14383         going about looking at nested types.
14384
14385         * ecore.cs (EventExpr.EmitAddOrRemove): Rename from EmitAssign as we do
14386         not implement the IAssignMethod interface any more.
14387
14388         * expression.cs (MemberAccess.ResolveMemberAccess): Handle EventExprs specially
14389         where we tranform them into FieldExprs if they are being resolved from within
14390         the declaring type.
14391
14392         * ecore.cs (SimpleName.DoResolve): Do the same here.
14393
14394         * assign.cs (DoResolve, Emit): Clean up code considerably. 
14395
14396         * ../errors/bug10.cs : Add.
14397
14398         * ../errors/cs0070.cs : Add.
14399
14400         * typemanager.cs : Use PtrHashtable for Delegate data hashtable etc.
14401
14402         * assign.cs : Get rid of EventIsLocal everywhere.
14403
14404 2001-12-23  Miguel de Icaza  <miguel@ximian.com>
14405
14406         * ecore.cs (ConvertIntLiteral): finished the implementation.
14407
14408         * statement.cs (SwitchLabel): Convert the value we are using as a
14409         key before looking up the table.
14410
14411 2001-12-22  Miguel de Icaza  <miguel@ximian.com>
14412
14413         * codegen.cs (EmitTopBlock): Require a Location argument now.
14414
14415         * cs-parser.jay (constructor_declarator): We need to setup
14416         current_local_parameters before we parse the
14417         opt_constructor_initializer, to allow the variables to be bound
14418         to the constructor arguments.
14419
14420         * rootcontext.cs (LookupType): First lookup nested classes in our
14421         class and our parents before we go looking outside our class.
14422
14423         * expression.cs (ConstantFold): Extract/debox the values at the
14424         beginnning. 
14425
14426         * rootcontext.cs (EmitCode): Resolve the constants first before we
14427         resolve the types.  This is not really needed, but it helps debugging.
14428
14429         * statement.cs: report location.
14430
14431         * cs-parser.jay: pass location to throw statement.
14432
14433         * driver.cs: Small bug fix.
14434
14435         * report.cs: Updated format to be 4-zero filled digits.
14436
14437 2001-12-22  Ravi Pratap  <ravi@ximian.com>
14438
14439         * expression.cs (CheckIndices): Fix minor bug where the wrong
14440         variable was being referred to ;-)
14441
14442         (DoEmit): Do not call EmitStaticInitializers when the 
14443         underlying type is System.Object.
14444
14445 2001-12-21  Ravi Pratap  <ravi@ximian.com>
14446
14447         * ecore.cs (EventExpr.Resolve): Implement to correctly set the type
14448         and do the usual workaround for SRE.
14449
14450         * class.cs (MyEventBuilder.EventType): New member to get at the type
14451         of the event, quickly.
14452
14453         * expression.cs (Binary.ResolveOperator): Handle delegate addition.
14454
14455         * assign.cs (Assign.DoResolve): Handle the case when the target
14456         is an EventExpr and perform the necessary checks.
14457
14458         * ecore.cs (EventExpr.EmitAssign): Implement the IAssignMethod
14459         interface.
14460
14461         (SimpleName.MemberStaticCheck): Include check for EventExpr.
14462
14463         (EventExpr): Set the type in the constructor itself since we 
14464         are meant to be born fully resolved.
14465
14466         (EventExpr.Define): Revert code I wrote earlier.
14467                 
14468         * delegate.cs (NewDelegate.Resolve): Handle the case when the MethodGroup's
14469         instance expression is null. The instance expression is a This in that case
14470         or a null, depending on whether it is a static method or not.
14471
14472         Also flag an error if the reference to a method is ambiguous i.e the MethodGroupExpr
14473         refers to more than one method.
14474
14475         * assign.cs (DoResolve): Check whether the event belongs to the same Type container
14476         and accordingly flag errors.
14477
14478 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
14479
14480         * statement.cs (Throw.Emit): Add support for re-throwing exceptions.
14481
14482 2001-12-22  Miguel de Icaza  <miguel@ximian.com>
14483
14484         * location.cs (ToString): Provide useful rutine.
14485
14486 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
14487
14488         * ecore.cs (Expression.ConvertIntLiteral): Do not return Constant
14489         objects, return the actual integral boxed.
14490
14491         * statement.cs (SwitchLabel): define an ILLabel for each
14492         SwitchLabel. 
14493
14494         (Switch.CheckSwitch): If the value is a Literal, extract
14495         the underlying literal.
14496
14497         Also in the unused hashtable we had, add the SwitchLabel so we can
14498         quickly look this value up.
14499
14500         * constant.cs: Implement a bunch of new constants.  Rewrite
14501         Literal based on this.  Made changes everywhere to adapt to this.
14502
14503         * expression.cs (Expression.MakeByteBlob): Optimize routine by
14504         dereferencing array only once, and also copes with enumrations.
14505
14506         bytes are two bytes wide, not one.
14507
14508         (Cast): Perform constant conversions.
14509
14510         * ecore.cs (TryImplicitIntConversion): Return literals instead of
14511         wrappers to the literals here.
14512
14513         * expression.cs (DoNumericPromotions): long literals can converted
14514         to ulong implicity (this is taken care of elsewhere, but I was
14515         missing this spot).
14516
14517         * ecore.cs (Expression.Literalize): Make the return type Literal,
14518         to improve type checking.
14519
14520         * rootcontext.cs: Lookup for nested classes in our class hierarchy.
14521
14522 2001-12-20  Miguel de Icaza  <miguel@ximian.com>
14523
14524         * literal.cs: Revert code from ravi that checked the bounds.  The
14525         bounds are sane by the definition of the type itself. 
14526
14527         * typemanager.cs: Fix implementation of ImplementsInterface.  We
14528         need to actually look up in our parent hierarchy for interfaces
14529         implemented. 
14530
14531         * const.cs: Use the underlying type for enumerations
14532
14533         * delegate.cs: Compute the basename for the delegate creation,
14534         that should fix the delegate test case, and restore the correct
14535         Type Lookup semantics in rootcontext
14536
14537         * rootcontext.cs: Revert Ravi's last patch.  The correct way of
14538         referencing a nested type with the Reflection API is using the "+"
14539         sign. 
14540
14541         * cs-parser.jay: Do not require EOF token at the end.
14542
14543 2001-12-20  Ravi Pratap  <ravi@ximian.com>
14544
14545         * rootcontext.cs (LookupType): Concatenate type names with
14546         a '.' instead of a '+' The test suite passes again.
14547
14548         * enum.cs (Enum.DefineEnum): Set RTSpecialName on the 'value__'
14549         field of the enumeration.
14550
14551         * expression.cs (MemberAccess.ResolveMemberAccess): Add support for
14552         the case when the member is an EventExpr.
14553
14554         * ecore.cs (EventExpr.InstanceExpression): Every event which is not
14555         static has an associated instance expression.
14556
14557         * typemanager.cs (RegisterEvent): The usual workaround, now for events.
14558
14559         (GetAddMethod, GetRemoveMethod): Workarounds, as usual.
14560
14561         * class.cs (Event.Define): Register event and perform appropriate checks
14562         for error #111.
14563
14564         We define the Add and Remove methods even if the use provides none because
14565         in that case, we provide default implementations ourselves.
14566
14567         Define a private field of the type of the event. This is done by the CSC compiler
14568         and we should be doing it too ;-)
14569
14570         * typemanager.cs (delegate_combine_delegate_delegate, delegate_remove_delegate_delegate):
14571         More methods we use in code we generate.
14572
14573         (multicast_delegate_type, delegate_type): Two separate types since the distinction
14574         is important.
14575
14576         (InitCoreTypes): Update accordingly for the above.
14577
14578         * class.cs (Event.Emit): Generate code for default accessors that we provide
14579
14580         (EmitDefaultMethod): Do the job in the above.
14581
14582         * delegate.cs (DefineDelegate): Use TypeManager.multicast_delegate_type in the 
14583         appropriate place.
14584
14585 2001-12-20  Miguel de Icaza  <miguel@ximian.com>
14586
14587         * class.cs (Indexer.Define): Fix bug, we were setting both Get/Set
14588         builders even if we were missing one.
14589
14590         * interface.cs, class.cs, enum.cs: When calling DefineNestedType
14591         pass the Basename as our class name instead of the Name.  The
14592         basename will be correctly composed for us.
14593
14594         * parameter.cs (Paramters): Now takes a Location argument.
14595
14596         * decl.cs (DeclSpace.LookupType): Removed convenience function and
14597         make all the code call directly LookupType in RootContext and take
14598         this chance to pass the Location information everywhere.
14599
14600         * Everywhere: pass Location information.
14601
14602 2001-12-19  Miguel de Icaza  <miguel@ximian.com>
14603
14604         * class.cs (Constructor.Define): Updated way of detecting the
14605         length of the parameters.
14606
14607         (TypeContainer.DefineType): Use basename as the type name for
14608         nested types.
14609
14610         (TypeContainer.Define): Do not recursively define types here, as
14611         definition is taken care in order by the RootContext.
14612
14613         * tree.cs: Keep track of namespaces in a per-file basis.
14614
14615         * parameter.cs (Parameter.ComputeSignature): Update to use
14616         DeclSpace. 
14617
14618         (Parameters.GetSignature): ditto.
14619
14620         * interface.cs (InterfaceMethod.GetSignature): Take a DeclSpace
14621         instead of a TypeContainer.
14622
14623         (Interface.SemanticAnalysis): Use `this' instead of our parent to
14624         resolve names.  Because we need to be resolve in our context, not
14625         our parents.
14626
14627         * driver.cs: Implement response files.
14628
14629         * class.cs (TypeContainer.DefineType): If we are defined, do not
14630         redefine ourselves.
14631
14632         (Event.Emit): Emit the code for add/remove handlers.
14633         (Event.Define): Save the MethodBuilders for add/remove.
14634
14635         * typemanager.cs: Use pair here too.
14636
14637         * cs-parser.jay: Replaced use of DictionaryEntry for Pair because
14638         DictionaryEntry requires the first argument to be non-null.  
14639
14640         (enum_declaration): Compute full name for registering the
14641         enumeration.
14642
14643         (delegate_declaration): Instead of using
14644         formal_parameter_list, use opt_formal_parameter_list as the list
14645         can be empty.
14646
14647         * cs-tokenizer.cs (PropertyParsing): renamed from `properties'
14648         (EventParsing): New property that controls whether `add' and
14649         `remove' are returned as tokens or identifiers (for events);
14650
14651 2001-12-19  Ravi Pratap  <ravi@ximian.com>
14652
14653         * class.cs (Event.Define): Revamp use of EventBuilder completely. We now
14654         use MyEventBuilder only and let it wrap the real builder for us.
14655
14656         (MyEventBuilder): Revamp constructor etc.
14657
14658         Implement all operations that we perform on EventBuilder in precisely the same
14659         way here too.
14660
14661         (FindMembers): Update to use the EventBuilder member.
14662
14663         (Event.Emit): Update accordingly.
14664
14665 2001-12-18  Ravi Pratap  <ravi@ximian.com>
14666
14667         * class.cs (MyEventBuilder.Set*): Chain to the underlying builder
14668         by calling the appropriate methods.
14669
14670         (GetCustomAttributes): Make stubs as they cannot possibly do anything
14671         useful.
14672
14673         (Event.Emit): Use MyEventBuilder everywhere - even to set attributes.
14674
14675 2001-12-17  Ravi Pratap  <ravi@ximian.com>
14676
14677         * delegate.cs (Delegate.Populate): Check that the return type
14678         and various parameters types are indeed accessible.
14679
14680         * class.cs (Constructor.Define): Same here.
14681
14682         (Field.Define): Ditto.
14683
14684         (Event.Define): Ditto.
14685
14686         (Operator.Define): Check that the underlying Method defined itself
14687         correctly - so it's MethodBuilder should not be null.
14688
14689         * delegate.cs (DelegateInvocation.DoResolve): Bale out if the type of the Instance
14690         expression happens to be null.
14691
14692         * class.cs (MyEventBuilder): Workaround for SRE lameness. Implement various abstract
14693         members but as of now we don't seem to be able to do anything really useful with it.
14694
14695         (FindMembers): Handle events separately by returning the MyEventBuilder of the event,
14696         not the EventBuilder.
14697
14698 2001-12-18  Miguel de Icaza  <miguel@ximian.com>
14699
14700         * cs-tokenizer.cs: Add support for defines.
14701         Add support for #if, #elif, #else, #endif
14702
14703         (eval_var): evaluates a variable.
14704         (eval): stubbed for evaluating functions.
14705
14706         * cs-parser.jay: Pass the defines information
14707
14708         * driver.cs: Add --define command line option.
14709
14710         * decl.cs: Move MemberCore here.
14711
14712         Make it the base class for DeclSpace.  This allows us to catch and
14713         report 108 and 109 for everything now.
14714
14715         * class.cs (TypeContainer.Define): Extract all the members
14716         before populating and emit the warning 108 (new keyword required
14717         to override) instead of having each member implement this.
14718
14719         (MemberCore.Define): New abstract method, we will be using this in
14720         the warning reporting engine in Populate.
14721
14722         (Operator.Define): Adjust to new MemberCore protocol. 
14723
14724         * const.cs (Const): This does not derive from Expression, it is a
14725         temporary object we use to create fields, it is a MemberCore. 
14726
14727         * class.cs (Method.Define): Allow the entry point to be in a
14728         specific class.
14729
14730         * driver.cs: Rewrite the argument handler to clean it up a bit.
14731
14732         * rootcontext.cs: Made it just an auxiliary namespace feature by
14733         making everything static.
14734
14735         * driver.cs: Adapt code to use RootContext type name instead of
14736         instance variable.
14737
14738         * delegate.cs: Remove RootContext argument.
14739
14740         * class.cs: (Struct, TypeContainer, Class): Remove RootContext
14741         argument. 
14742
14743         * class.cs (Event.Define): The lookup can fail.
14744
14745         * cs-tokenizer.cs: Begin implementation of pre-procesor. 
14746
14747         * expression.cs: Resolve the this instance before invoking the code.
14748
14749 2001-12-17  Miguel de Icaza  <miguel@ximian.com>
14750
14751         * cs-parser.jay: Add a production in element_access that allows
14752         the thing to become a "type" reference.  This way we can parse
14753         things like "(string [])" as a type.
14754
14755         Note that this still does not handle the more complex rules of
14756         casts. 
14757
14758
14759         * delegate.cs (Delegate.Populate): Register the delegage constructor builder here. 
14760
14761         * ecore.cs: (CopyNewMethods): new utility function used to
14762         assemble the list of methods from running FindMembers.
14763
14764         (MemberLookup): Rework FindMembers so that 
14765
14766 2001-12-16  Miguel de Icaza  <miguel@ximian.com>
14767
14768         * class.cs (TypeContainer): Remove Delegates who fail to be
14769         defined.
14770
14771         * delegate.cs (Populate): Verify that we dont get null return
14772         values.   TODO: Check for AsAccessible.
14773
14774         * cs-parser.jay: Use basename to emit error 574 (destructor should
14775         have the same name as container class), not the full name.
14776
14777         * cs-tokenizer.cs (adjust_int): Fit the integer in the best
14778         possible representation.  
14779
14780         Also implements integer type suffixes U and L.
14781
14782 2001-12-15  Miguel de Icaza  <miguel@ximian.com>
14783
14784         * expression.cs (ArrayCreation.DoResolve): We need to do the
14785         argument resolution *always*.
14786
14787         * decl.cs: Make this hold the namespace.  Hold the root context as
14788         well.
14789         (LookupType): Move here.
14790
14791         * enum.cs, class.cs, interface.cs: Adapt to new hierarchy.
14792
14793         * location.cs (Row, Name): Fixed the code, it was always returning
14794         references to the first file.
14795
14796         * interface.cs: Register properties defined through interfaces.
14797
14798         * driver.cs: Add support for globbing on the command line
14799
14800         * class.cs (Field): Make it derive from MemberCore as well.
14801         (Event): ditto.
14802
14803 2001-12-15  Ravi Pratap  <ravi@ximian.com>
14804
14805         * class.cs (Event::Define): Check that the type of the event is a delegate
14806         type else flag error #66.
14807
14808         Also, re-use TypeContainer.MethodModifiersValid here too as the rules are the
14809         same.
14810
14811         * attribute.cs (DefinePInvokeMethod): Handle named arguments and process
14812         values of EntryPoint, CharSet etc etc.
14813
14814         Pass in the values to TypeBuilder.DefinePInvokeMethod; determine Type etc neatly.
14815
14816         * class.cs (FindMembers): If a method is in transit, its MethodBuilder will
14817         be null and we should ignore this. I am not sure if this is really clean. Apparently,
14818         there's no way of avoiding hitting this because the call is coming from SimpleName.DoResolve,
14819         which needs this to do its work.
14820
14821         * ../errors/cs0066.cs : Add.
14822
14823 2001-12-14  Miguel de Icaza  <miguel@ximian.com>
14824
14825         * typemanager.cs: (GetPropertyGetter, GetPropertyGetter): New
14826         helper functions.
14827
14828         * class.cs: (MethodSignature.MethodSignature): Removed hack that
14829         clears out the parameters field.
14830         (MemberSignatureCompare): Cleanup
14831
14832         (MemberCore): New base class used to share code between MethodCore
14833         and Property.
14834
14835         (RegisterRequiredImplementations) BindingFlags.Public requires
14836         either BindingFlags.Instace or Static.  Use instance here.
14837
14838         (Property): Refactored code to cope better with the full spec.
14839
14840         * parameter.cs (GetParameterInfo): Return an empty array instead
14841         of null on error.
14842
14843         * class.cs (Property): Abstract or extern properties have no bodies.
14844
14845         * parameter.cs (GetParameterInfo): return a zero-sized array.
14846
14847         * class.cs (TypeContainer.MethodModifiersValid): Move all the
14848         method modifier validation to the typecontainer so we can reuse
14849         this on properties.
14850
14851         (MethodCore.ParameterTypes): return an empty sized array of types.
14852
14853         (Property.Define): Test property modifier validity.
14854
14855         Add tests for sealed/override too.
14856
14857         (Method.Emit): abstract or extern methods have no bodies.
14858
14859 2001-12-14  Ravi Pratap  <ravi@ximian.com>
14860
14861         * class.cs (Method.IsPInvoke): Get rid of it as it is an expensive
14862         thing.
14863
14864         (Method::Define, ::Emit): Modify accordingly.
14865
14866         * expression.cs (Invocation::OverloadResolve): Handle error # 121.
14867
14868         (ArrayCreation::MakeByteBlob): Handle floats and doubles.
14869
14870         * makefile: Pass in /unsafe.
14871
14872 2001-12-13  Miguel de Icaza  <miguel@ximian.com>
14873
14874         * class.cs (MakeKey): Kill routine.
14875
14876         * class.cs (TypeContainer.Define): Correctly define explicit
14877         method implementations (they require the full interface name plus
14878         the method name).
14879
14880         * typemanager.cs: Deply the PtrHashtable here and stop using the
14881         lame keys.  Things work so much better.
14882
14883         This of course broke everyone who depended on `RegisterMethod' to
14884         do the `test for existance' test.  This has to be done elsewhere.
14885
14886         * support.cs (PtrHashtable): A hashtable that avoid comparing with
14887         the object stupid Equals method (because, that like fails all over
14888         the place).  We still do not use it.
14889
14890         * class.cs (TypeContainer.SetRequiredInterface,
14891         TypeContainer.RequireMethods): Killed these two routines and moved
14892         all the functionality to RegisterRequiredImplementations.
14893
14894         (TypeContainer.RegisterRequiredImplementations): This routine now
14895         registers all the implementations required in an array for the
14896         interfaces and abstract methods.  We use an array of structures
14897         which can be computed ahead of time to reduce memory usage and we
14898         also assume that lookups are cheap as most classes will not
14899         implement too many interfaces.
14900
14901         We also avoid creating too many MethodSignatures.
14902
14903         (TypeContainer.IsInterfaceMethod): Update and optionally does not
14904         clear the "pending" bit if we find that there are problems with
14905         the declaration.
14906
14907         (TypeContainer.VerifyPendingMethods): Update to report errors of
14908         methods that look like implementations but are not.
14909
14910         (TypeContainer.Define): Add support for explicit interface method
14911         implementation. 
14912
14913 2001-12-12  Miguel de Icaza  <miguel@ximian.com>
14914
14915         * typemanager.cs: Keep track of the parameters here instead of
14916         being a feature of the TypeContainer.
14917
14918         * class.cs: Drop the registration of parameters here, as
14919         InterfaceMethods are also interface declarations.
14920
14921         * delegate.cs: Register methods with the TypeManager not only with
14922         the TypeContainer.  This code was buggy.
14923
14924         * interface.cs: Full registation here.
14925
14926 2001-12-11  Miguel de Icaza  <miguel@ximian.com>
14927
14928         * expression.cs: Remove reducer for binary expressions, it can not
14929         be done this way.
14930
14931         * const.cs: Put here the code that used to go into constant.cs
14932
14933         * constant.cs: Put here the code for constants, this is a new base
14934         class for Literals.
14935
14936         * literal.cs: Make Literal derive from Constant.
14937
14938 2001-12-09  Miguel de Icaza  <miguel@ximian.com>
14939
14940         * statement.cs (Return.Emit): Report error 157 if the user
14941         attempts to return from a finally block.
14942
14943         (Return.Emit): Instead of emitting a return, jump to the end of
14944         the function.
14945
14946         * codegen.cs (EmitContext): ReturnValue, ReturnLabel: new
14947         LocalBuilder to store the result of the function.  ReturnLabel is
14948         the target where we jump.
14949
14950
14951 2001-12-09  Radek Doulik  <rodo@ximian.com>
14952
14953         * cs-parser.jay: remember alias in current namespace
14954
14955         * ecore.cs (SimpleName::DoResolve): use aliases for types or
14956         namespaces
14957
14958         * class.cs (LookupAlias): lookup alias in my_namespace
14959
14960         * namespace.cs (UsingAlias): add alias, namespace_or_type pair to
14961         aliases hashtable
14962         (LookupAlias): lookup alias in this and if needed in parent
14963         namespaces
14964
14965 2001-12-08  Miguel de Icaza  <miguel@ximian.com>
14966
14967         * support.cs: 
14968
14969         * rootcontext.cs: (ModuleBuilder) Made static, first step into
14970         making things static.  I need this to avoid passing the
14971         TypeContainer when calling ParameterType.
14972
14973         * support.cs (InternalParameters.ParameterType): Remove ugly hack
14974         that did string manipulation to compute the type and then call
14975         GetType.  Use Parameter.ParameterType instead.
14976
14977         * cs-tokenizer.cs: Consume the suffix for floating values.
14978
14979         * expression.cs (ParameterReference): figure out whether this is a
14980         reference parameter or not.  Kill an extra variable by computing
14981         the arg_idx during emission.
14982
14983         * parameter.cs (Parameters.GetParameterInfo): New overloaded
14984         function that returns whether a parameter is an out/ref value or not.
14985
14986         (Parameter.ParameterType): The type of the parameter (base,
14987         without ref/out applied).
14988
14989         (Parameter.Resolve): Perform resolution here.
14990         (Parameter.ExternalType): The full type (with ref/out applied).
14991
14992         * statement.cs (Using.Emit, Using.EmitExpression): Implement
14993         support for expressions on the using statement.
14994
14995 2001-12-07  Miguel de Icaza  <miguel@ximian.com>
14996
14997         * statement.cs (Using.EmitLocalVariableDecls): Split the
14998         localvariable handling of the using statement.
14999
15000         (Block.EmitMeta): Keep track of variable count across blocks.  We
15001         were reusing slots on separate branches of blocks.
15002
15003         (Try.Emit): Emit the general code block, we were not emitting it. 
15004
15005         Check the type of the declaration to be an IDisposable or
15006         something that can be implicity converted to it. 
15007
15008         Emit conversions if required.
15009
15010         * ecore.cs (EmptyExpression): New utility class.
15011         (Expression.ImplicitConversionExists): New utility function.
15012
15013 2001-12-06  Miguel de Icaza  <miguel@ximian.com>
15014
15015         * statement.cs (Using): Implement.
15016
15017         * expression.cs (LocalVariableReference): Support read only variables.
15018
15019         * statement.cs: Remove the explicit emit for the Leave opcode.
15020         (VariableInfo): Add a readonly field.
15021
15022 2001-12-05  Miguel de Icaza  <miguel@ximian.com>
15023
15024         * ecore.cs (ConvCast): new class used to encapsulate the various
15025         explicit integer conversions that works in both checked and
15026         unchecked contexts.
15027
15028         (Expression.ConvertNumericExplicit): Use new ConvCast class to
15029         properly generate the overflow opcodes.
15030
15031 2001-12-04  Miguel de Icaza  <miguel@ximian.com>
15032
15033         * statement.cs: The correct type for the EmptyExpression is the
15034         element_type, not the variable type.  Ravi pointed this out.
15035
15036 2001-12-04  Ravi Pratap  <ravi@ximian.com>
15037
15038         * class.cs (Method::Define): Handle PInvoke methods specially
15039         by using DefinePInvokeMethod instead of the usual one.
15040
15041         * attribute.cs (DefinePInvokeMethod): Implement as this is what is called
15042         above to do the task of extracting information and defining the method.
15043
15044 2001-12-04  Ravi Pratap  <ravi@ximian.com>
15045
15046         * expression.cs (ArrayCreation::EmitStaticInitializers): Get rid
15047         of the condition for string type.
15048
15049         (Emit): Move that here. 
15050
15051         (ArrayCreation::CheckIndices): Keep string literals in their expression
15052         form.
15053
15054         (EmitDynamicInitializers): Handle strings appropriately.
15055
15056 2001-12-04  Miguel de Icaza  <miguel@ximian.com>
15057
15058         * codegen.cs (EmitContext): Replace multiple variables with a
15059         single pointer to the current Switch statement.
15060
15061         * statement.cs (GotoDefault, Switch): Adjust to cleaned up
15062         EmitContext.
15063
15064 2001-12-03  Miguel de Icaza  <miguel@ximian.com>
15065
15066         * statement.cs 
15067
15068         * statement.cs (GotoDefault), cs-parser.jay: Implement `goto
15069         default'.
15070
15071         (Foreach.Emit): Foreach on arrays was not setting
15072         up the loop variables (for break/continue).
15073
15074         (GotoCase): Semi-implented.
15075
15076 2001-12-03  Ravi Pratap  <ravi@ximian.com>
15077
15078         * attribute.cs (CheckAttribute): Handle system attributes by using
15079         Attribute.GetAttributes to examine information we need.
15080
15081         (GetValidPlaces): Same here.
15082
15083         * class.cs (Method::Define): Catch invalid use of extern and abstract together.
15084
15085         * typemanager.cs (dllimport_type): Core type for System.DllImportAttribute.
15086
15087         * class.cs (Method.IsPinvoke): Used to determine if we are a PInvoke method.
15088
15089         (Method::Define): Set appropriate flags if we have a DllImport attribute.
15090
15091         (Method::Emit): Handle the case when we are a PInvoke method.
15092
15093 2001-12-03  Miguel de Icaza  <miguel@ximian.com>
15094
15095         * expression.cs: Use ResolveWithSimpleName on compound names.
15096
15097 2001-12-02  Ravi Pratap  <ravi@ximian.com>
15098
15099         * constant.cs (EmitConstant): Make sure we resolve the associated expression
15100         before trying to reduce it.
15101
15102         * typemanager.cs (RegisterConstant, LookupConstant): Implement.
15103
15104         * constant.cs (LookupConstantValue): Implement.
15105
15106         (EmitConstant): Use the above in emitting the constant.
15107
15108         * expression.cs (MemberAccess::ResolveMemberAccess): Handle constants
15109         that are user-defined by doing a LookupConstantValue on them.
15110
15111         (SimpleName::DoResolve): When we have a FieldExpr, cope with constants
15112         too, like above.
15113
15114 2001-11-29  Miguel de Icaza  <miguel@ximian.com>
15115
15116         * expression.cs (BaseAccess, BaseIndexer): Also split this out.
15117
15118         (BaseAccess.DoResolve): Implement.
15119
15120         (MemberAccess.DoResolve): Split this routine into a
15121         ResolveMemberAccess routine that can be used independently
15122
15123 2001-11-28  Miguel de Icaza  <miguel@ximian.com>
15124
15125         * expression.cs (Probe, Is, As): Split Probe in two classes Is and
15126         As that share bits of the implementation.  Is returns a boolean,
15127         while As returns the Type that is being probed.
15128
15129 2001-12-01  Ravi Pratap  <ravi@ximian.com>
15130
15131         * enum.cs (LookupEnumValue): Re-write various bits, return an object value
15132         instead of a Literal - much easier.
15133
15134         (EnumInTransit): Remove - utterly useless :-)
15135
15136         (Populate): Re-write bits - remove duplicate code etc. The code is much neater now.
15137
15138         * expression.cs (MemberLookup): Cope with user-defined enums when they are in transit.
15139
15140         * enum.cs (LookupEnumValue): Auto-compute next values by going down the dependency
15141         chain when we have no associated expression.
15142
15143 2001-11-30  Ravi Pratap  <ravi@ximian.com>
15144
15145         * constant.cs (Define): Use Location while reporting the errror.
15146
15147         Also emit a warning when 'new' is used and there is no inherited
15148         member to hide.
15149
15150         * enum.cs (EnumInTransit): Used to tell if an enum type is in the process of being 
15151         populated.
15152
15153         (LookupEnumValue): Implement to lookup an enum member's value and define it
15154         if necessary.
15155
15156         (Populate): Re-write accordingly to use the above routine.
15157
15158 2001-11-27  Miguel de Icaza  <miguel@ximian.com>
15159
15160         * expression.cs (This): Fix prototype for DoResolveLValue to
15161         override the base class DoResolveLValue.
15162
15163         * cs-parser.cs: Report errors cs574 and cs575 (destructor
15164         declarations) 
15165
15166         * ecore.cs (FieldExpr.EmitAssign): Handle value types specially
15167         (we need to load the address of the field here).  This fixes
15168         test-22. 
15169
15170         (FieldExpr.DoResolveLValue): Call the DoResolve
15171         function to initialize the Instance expression.
15172
15173         * statement.cs (Foreach.Emit): Fix the bug where we did not invoke
15174         correctly the GetEnumerator operation on a value type.
15175
15176         * cs-parser.jay: Add more simple parsing error catches.
15177
15178         * statement.cs (Switch): Add support for string switches.
15179         Handle null specially.
15180
15181         * literal.cs (NullLiteral): Make NullLiteral objects singletons. 
15182
15183 2001-11-28  Ravi Pratap  <ravi@ximian.com>
15184
15185         * cs-parser.jay (local_constant_declaration): Use declare_local_constant.
15186
15187         (declare_local_constant): New helper function.
15188
15189         * statement.cs (AddConstant): Keep a separate record of constants
15190
15191         (IsConstant): Implement to determine if a variable is a constant.
15192
15193         (GetConstantExpression): Implement.
15194
15195         * expression.cs (LocalVariableReference): Handle the case when it is a constant.
15196
15197         * statement.cs (IsVariableDefined): Re-write.
15198
15199 2001-11-27  Ravi Pratap  <ravi@ximian.com>
15200
15201         * class.cs (TypeContainer::FindMembers): Look for constants
15202         in the case when we are looking for MemberTypes.Field
15203
15204         * expression.cs (MemberAccess::DoResolve): Check that in the
15205         case we are a FieldExpr and a Literal, we are not being accessed
15206         by an instance reference.
15207
15208         * cs-parser.jay (local_constant_declaration): Implement.
15209
15210         (declaration_statement): Implement for constant declarations.
15211
15212 2001-11-26  Miguel de Icaza  <miguel@ximian.com>
15213
15214         * statement.cs (Switch): Catch double defaults.
15215
15216         (Switch): More work on the switch() statement
15217         implementation.  It works for integral values now, need to finish
15218         string support.
15219
15220
15221 2001-11-24  Miguel de Icaza  <miguel@ximian.com>
15222
15223         * ecore.cs (Expression.ConvertIntLiteral): New function to convert
15224         integer literals into other integer literals.  To be used by
15225         switch. 
15226
15227 2001-11-24  Ravi Pratap  <ravi@ximian.com>
15228
15229         * expression.cs (ArrayCreation): Get rid of ArrayExprs : we save
15230         some memory.
15231
15232         (EmitDynamicInitializers): Cope with the above since we extract data
15233         directly from ArrayData now.
15234
15235         (ExpectInitializers): Keep track of whether initializers are mandatory
15236         or not.
15237
15238         (Bounds): Make it a hashtable to prevent the same dimension being 
15239         recorded for every element in that dimension.
15240
15241         (EmitDynamicInitializers): Fix bug which prevented the Set array method
15242         from being found.
15243
15244         Also fix bug which was causing the indices to be emitted in the reverse
15245         order.
15246
15247 2001-11-24  Miguel de Icaza  <miguel@ximian.com>
15248
15249         * expression.cs (ArrayCreation): Implement the bits that Ravi left
15250         unfinished.  They do not work, because the underlying code is
15251         sloppy.
15252
15253 2001-11-22  Miguel de Icaza  <miguel@ximian.com>
15254
15255         * cs-parser.jay: Remove bogus fixme.
15256
15257         * statement.cs (Switch, SwitchSection, SwithLabel): Started work
15258         on Switch statement.
15259
15260 2001-11-23  Ravi Pratap  <ravi@ximian.com>
15261
15262         * typemanager.cs (IsDelegateType, IsEnumType): Fix logic to determine
15263         the same. 
15264
15265         * expression.cs (ArrayCreation::CheckIndices): Get rid of the require_constant
15266         parameter. Apparently, any expression is allowed. 
15267
15268         (ValidateInitializers): Update accordingly.
15269
15270         (CheckIndices): Fix some tricky bugs thanks to recursion.
15271
15272         * delegate.cs (NewDelegate::DoResolve): Re-write large portions as 
15273         I was being completely brain-dead.
15274
15275         (VerifyMethod, VerifyApplicability, VerifyDelegate): Make static
15276         and re-write acordingly.
15277
15278         (DelegateInvocation): Re-write accordingly.
15279
15280         * expression.cs (ArrayCreation::Emit): Handle string initialization separately.
15281
15282         (MakeByteBlob): Handle types more correctly.
15283
15284         * expression.cs (ArrayCreation:Emit): Write preliminary code to do
15285         initialization from expressions but it is incomplete because I am a complete
15286         Dodo :-|
15287
15288 2001-11-22  Miguel de Icaza  <miguel@ximian.com>
15289
15290         * statement.cs (If.Emit): Fix a bug that generated incorrect code
15291         on If.  Basically, we have to return `true' (ie, we do return to
15292         our caller) only if both branches of the if return.
15293
15294         * expression.cs (Binary.Emit): LogicalOr and LogicalAnd are
15295         short-circuit operators, handle them as short circuit operators. 
15296
15297         (Cast.DoResolve): Resolve type.
15298         (Cast.Cast): Take an expression as the target type.
15299
15300         * cs-parser.jay (cast_expression): Remove old hack that only
15301         allowed a limited set of types to be handled.  Now we take a
15302         unary_expression and we resolve to a type during semantic
15303         analysis.
15304
15305         Use the grammar productions from Rhys to handle casts (this is
15306         not complete like Rhys syntax yet, we fail to handle that corner
15307         case that C# has regarding (-x), but we will get there.
15308
15309 2001-11-22  Ravi Pratap  <ravi@ximian.com>
15310
15311         * class.cs (EmitFieldInitializer): Take care of the case when we have a
15312         field which is an array type.
15313
15314         * cs-parser.jay (declare_local_variables): Support array initialization too.
15315
15316         * typemanager.cs (MakeKey): Implement.
15317
15318         (everywhere): Use the above appropriately.
15319
15320         * cs-parser.jay (for_statement): Update for array initialization while
15321         declaring variables.
15322
15323         * ecore.cs : The error message was correct, it's the variable's names that
15324         were misleading ;-) Make the code more readable.
15325
15326         (MemberAccess::DoResolve): Fix the code which handles Enum literals to set
15327         the correct type etc.
15328
15329         (ConvertExplicit): Handle Enum types by examining the underlying type.
15330
15331 2001-11-21  Ravi Pratap  <ravi@ximian.com>
15332
15333         * parameter.cs (GetCallingConvention): Always return
15334         CallingConventions.Standard for now.
15335
15336 2001-11-22  Miguel de Icaza  <miguel@ximian.com>
15337
15338         * expression.cs (Binary.ResolveOperator): Update the values of `l'
15339         and `r' after calling DoNumericPromotions.
15340
15341         * ecore.cs: Fix error message (the types were in the wrong order).
15342
15343         * statement.cs (Foreach.ProbeCollectionType): Need to pass
15344         BindingFlags.Instance as well 
15345
15346         * ecore.cs (Expression.TryImplicitIntConversion): Wrap the result
15347         implicit int literal conversion in an empty cast so that we
15348         propagate the right type upstream.
15349
15350         (UnboxCast): new class used to unbox value types.
15351         (Expression.ConvertExplicit): Add explicit type conversions done
15352         by unboxing.
15353
15354         (Expression.ImplicitNumericConversion): Oops, forgot to test for
15355         the target type before applying the implicit LongLiterals to ULong
15356         literal cast.
15357
15358 2001-11-21  Miguel de Icaza  <miguel@ximian.com>
15359
15360         * cs-parser.jay (for_statement): Reworked the way For works: now
15361         we declare manually any variables that are introduced in
15362         for_initializer to solve the problem of having out-of-band code
15363         emition (that is what got for broken).
15364
15365         (declaration_statement): Perform the actual variable declaration
15366         that used to be done in local_variable_declaration here.
15367
15368         (local_variable_declaration): Do not declare anything, just pass
15369         the information on a DictionaryEntry
15370
15371 2001-11-20  Ravi Pratap  <ravi@ximian.com>
15372
15373         * expression.cs (ArrayCreation::CheckIndices): The story continues :-) Complete
15374         re-write of the logic to now make it recursive.
15375
15376         (UpdateIndices): Re-write accordingly.
15377
15378         Store element data in a separate ArrayData list in the above methods.
15379
15380         (MakeByteBlob): Implement to dump the array data into a byte array.
15381
15382 2001-11-19  Ravi Pratap  <ravi@ximian.com>
15383
15384         * expression.cs (ArrayCreation): Factor out some code from ValidateInitializers
15385         into CheckIndices.
15386
15387         * constant.cs (Define): Implement.
15388
15389         (EmitConstant): Re-write fully.
15390
15391         Pass in location info.
15392
15393         * class.cs (Populate, Emit): Call Constant::Define and Constant::EmitConstant
15394         respectively.
15395
15396         * cs-parser.jay (constant_declarator): Use VariableDeclaration instead of
15397         DictionaryEntry since we need location info too.
15398
15399         (constant_declaration): Update accordingly.
15400
15401         * expression.cs (ArrayCreation): Make ValidateInitializers simpler by factoring
15402         code into another method : UpdateIndices.
15403
15404 2001-11-18  Ravi Pratap  <ravi@ximian.com>
15405
15406         * expression.cs (ArrayCreation::ValidateInitializers): Update to perform
15407         some type checking etc.
15408
15409 2001-11-17  Ravi Pratap  <ravi@ximian.com>
15410
15411         * expression.cs (ArrayCreation::ValidateInitializers): Implement
15412         bits to provide dimension info if the user skips doing that.
15413
15414         Update second constructor to store the rank correctly.
15415
15416 2001-11-16  Ravi Pratap  <ravi@ximian.com>
15417
15418         * expression.cs (ArrayCreation::ValidateInitializers): Poke around
15419         and try to implement.
15420
15421         * ../errors/cs0150.cs : Add.
15422
15423         * ../errors/cs0178.cs : Add.
15424
15425 2001-11-16  Miguel de Icaza  <miguel@ximian.com>
15426
15427         * statement.cs: Implement foreach on multi-dimensional arrays. 
15428
15429         * parameter.cs (Parameters.GetParameterByName): Also lookup the
15430         name of the params argument.
15431
15432         * expression.cs: Use EmitStoreOpcode to get the right opcode while
15433         initializing the array.
15434
15435         (ArrayAccess.EmitStoreOpcode): move the opcode generation here, so
15436         we can use this elsewhere.
15437
15438         * statement.cs: Finish implementation of foreach for single
15439         dimension arrays.
15440
15441         * cs-parser.jay: Use an out-of-band stack to pass information
15442         around, I wonder why I need this.
15443
15444         foreach_block: Make the new foreach_block the current_block.
15445
15446         * parameter.cs (Parameters.GetEmptyReadOnlyParameters): New
15447         function used to return a static Parameters structure.  Used for
15448         empty parameters, as those are created very frequently.
15449
15450         * cs-parser.jay, class.cs: Use GetEmptyReadOnlyParameters
15451
15452 2001-11-15  Ravi Pratap  <ravi@ximian.com>
15453
15454         * interface.cs : Default modifier is private, not public. The
15455         make verify test passes again.
15456
15457 2001-11-15  Ravi Pratap  <ravi@ximian.com>
15458
15459         * support.cs (ReflectionParameters): Fix logic to determine
15460         whether the last parameter is a params one. Test 9 passes again.
15461
15462         * delegate.cs (Populate): Register the builders we define with
15463         RegisterParameterForBuilder. Test 19 passes again.
15464
15465         * cs-parser.jay (property_declaration): Reference $6 instead
15466         of $$ to get at the location.
15467
15468         (indexer_declaration): Similar stuff.
15469
15470         (attribute): Ditto.
15471
15472         * class.cs (Property): Register parameters for the Get and Set methods
15473         if they exist. Test 23 passes again.
15474
15475         * expression.cs (ArrayCreation::Emit): Pass null for the method in the
15476         call to EmitArguments as we are sure there aren't any params arguments. 
15477         Test 32 passes again.
15478
15479         * suppor.cs (ParameterDesc, ParameterModifier): Fix trivial bug causing
15480         IndexOutOfRangeException. 
15481
15482         * class.cs (Property::Define): Register property using TypeManager.RegisterProperty
15483         Test 33 now passes again.
15484
15485 2001-11-15  Miguel de Icaza  <miguel@ximian.com>
15486
15487         * cs-parser.jay: Kill horrendous hack ($??? = lexer.Location) that
15488         broke a bunch of things.  Will have to come up with a better way
15489         of tracking locations.
15490
15491         * statement.cs: Implemented foreach for single dimension arrays.
15492
15493 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
15494
15495         * enum.cs (Enum.Emit): Delay the lookup of loc until we run into
15496         an error.  This removes the lookup from the critical path.
15497
15498         * cs-parser.jay: Removed use of temporary_loc, which is completely
15499         broken. 
15500
15501 2001-11-14  Miguel de Icaza  <miguel@ximian.com>
15502
15503         * support.cs (ReflectionParameters.ParameterModifier): Report
15504         whether the argument is a PARAMS argument or not.
15505
15506         * class.cs: Set the attribute `ParamArrayAttribute' on the
15507         parameter argument.
15508
15509         * typemanager.cs: Define param_array_type (ParamArrayAttribute)
15510         and cons_param_array_attribute (ConstructorInfo for
15511         ParamArrayAttribute)., 
15512
15513         * codegen.cs: Emit the return using the `Return' statement, that
15514         way we can report the error correctly for missing return values. 
15515
15516         * class.cs (Method.Emit): Clean up.
15517
15518         * expression.cs (Argument.Resolve): Take another argument: the
15519         location where this argument is used.  Notice that this is not
15520         part of the "Argument" class as to reduce the size of the
15521         structure (we know the approximate location anyways).
15522
15523         Test if the argument is a variable-reference, if not, then
15524         complain with a 206.
15525
15526         (Argument.Emit): Emit addresses of variables.
15527
15528         (Argument.FullDesc): Simplify.
15529
15530         (Invocation.DoResolve): Update for Argument.Resolve.
15531
15532         (ElementAccess.DoResolve): ditto.
15533
15534         * delegate.cs (DelegateInvocation.Emit): Invocation of Invoke
15535         method should be virtual, as this method is always virtual.
15536
15537         (NewDelegate.DoResolve): Update for Argument.Resolve.
15538
15539         * class.cs (ConstructorInitializer.DoResolve): ditto.
15540
15541         * attribute.cs (Attribute.Resolve): ditto.
15542
15543 2001-11-13  Miguel de Icaza  <miguel@ximian.com>
15544
15545         * statement.cs (Foreach.Emit): Use EmitAssign instead of Store.
15546
15547         * expression.cs (ParameterReference): Drop IStackStorage and implement
15548         IAssignMethod instead. 
15549
15550         (LocalVariableReference): ditto.
15551
15552         * ecore.cs (FieldExpr): Drop IStackStorage and implement
15553         IAssignMethod instead. 
15554
15555 2001-11-13  Miguel de Icaza <miguel@ximian.com>
15556
15557         * parameter.cs, expression.cs, class.cs, ecore.cs: Made all
15558         enumerations that are used in heavily used structures derive from
15559         byte in a laughable and pathetic attempt to reduce memory usage.
15560         This is the kind of pre-optimzations that you should not do at
15561         home without adult supervision.
15562
15563         * expression.cs (UnaryMutator): New class, used to handle ++ and
15564         -- separatedly from the other unary operators.  Cleans up the
15565         code, and kills the ExpressionStatement dependency in Unary.
15566
15567         (Unary): Removed `method' and `Arguments' from this class, making
15568         it smaller, and moving it all to SimpleCall, so I can reuse this
15569         code in other locations and avoid creating a lot of transient data
15570         strucutres when not required.
15571
15572         * cs-parser.jay: Adjust for new changes.
15573
15574 2001-11-11  Miguel de Icaza  <miguel@ximian.com>
15575
15576         * enum.cs (Enum.Populate): If there is a failure during
15577         definition, return
15578
15579         * cs-parser.jay (opt_enum_base): we used to catch type errors
15580         here, but this is really incorrect.  The type error should be
15581         catched during semantic analysis.
15582
15583 2001-12-11  Ravi Pratap  <ravi@ximian.com>
15584
15585         * cs-parser.jay (operator_declarator, conversion_operator_declarator): Set
15586         current_local_parameters as expected since I, in my stupidity, had forgotten
15587         to do this :-)
15588
15589         * attribute.cs (GetValidPlaces): Fix stupid bug.
15590
15591         * class.cs (Method::Emit): Perform check on applicability of attributes.
15592
15593         (Constructor::Emit): Ditto.
15594
15595         (Field::Emit): Ditto.
15596
15597         (Field.Location): Store location information.
15598
15599         (Property, Event, Indexer, Operator): Ditto.
15600
15601         * cs-parser.jay (field_declaration): Pass in location for each field.
15602
15603         * ../errors/cs0592.cs : Add.
15604
15605 2001-11-12  Ravi Pratap  <ravi@ximian.com>
15606
15607         * typemanager.cs (attribute_usage_type): New static member for System.AttributeUsage.
15608
15609         (InitCoreTypes): Update accordingly.
15610
15611         (RegisterAttrType, LookupAttr): Implement.
15612
15613         * attribute.cs (Attribute.Targets, AllowMultiple, Inherited): New fields to hold
15614         info about the same.
15615
15616         (Resolve): Update to populate the above as necessary.
15617
15618         (Error592): Helper.
15619
15620         (GetValidPlaces): Helper to the above.
15621
15622         (CheckAttribute): Implement to perform validity of attributes on declarative elements.
15623
15624         * class.cs (TypeContainer::Emit): Update attribute emission code to perform checking etc.
15625
15626 2001-11-12  Ravi Pratap  <ravi@ximian.com>
15627
15628         * attribute.cs (Attribute::Resolve): Expand to handle named arguments too.
15629
15630         * ../errors/cs0617.cs : Add.
15631
15632 2001-11-11  Ravi Pratap  <ravi@ximian.com>
15633
15634         * enum.cs (Emit): Rename to Populate to be more consistent with what
15635         we expect it to do and when exactly it is called.
15636
15637         * class.cs, rootcontext.cs : Update accordingly.
15638
15639         * typemanager.cs (RegisterField, GetValue): Workarounds for the fact that
15640         FieldInfo.GetValue does not work on dynamic types ! S.R.E lameness strikes again !
15641
15642         * enum.cs (Populate): Register fields with TypeManager.RegisterField.
15643
15644         * expression.cs (MemberAccess.DoResolve): Adjust code to obtain the value
15645         of a fieldinfo using the above, when dealing with a FieldBuilder.
15646
15647 2001-11-10  Ravi Pratap  <ravi@ximian.com>
15648
15649         * ../errors/cs0031.cs : Add.
15650
15651         * ../errors/cs1008.cs : Add.
15652
15653         * ../errrors/cs0543.cs : Add.
15654
15655         * enum.cs (DefineEnum): Check the underlying type and report an error if not a valid
15656         enum type.
15657
15658         (FindMembers): Implement.
15659
15660         * typemanager.cs (FindMembers): Re-write to call the appropriate methods for
15661         enums and delegates too.
15662
15663         (enum_types): Rename to builder_to_enum.
15664
15665         (delegate_types): Rename to builder_to_delegate.
15666
15667         * delegate.cs (FindMembers): Implement.
15668
15669 2001-11-09  Ravi Pratap  <ravi@ximian.com>
15670
15671         * typemanager.cs (IsEnumType): Implement.
15672
15673         * enum.cs (Emit): Re-write parts to account for the underlying type
15674         better and perform checking etc.
15675
15676         (GetNextDefaultValue): Helper to ensure we don't overshoot max value
15677         of the underlying type.
15678
15679         * literal.cs (GetValue methods everywhere): Perform bounds checking and return
15680         value
15681
15682         * enum.cs (error31): Helper to report error #31.
15683
15684         * cs-parser.jay (enum_declaration): Store location of each member too.
15685
15686         * enum.cs (member_to_location): New hashtable. 
15687
15688         (AddEnumMember): Update location hashtable.
15689
15690         (Emit): Use the location of each member while reporting errors.
15691
15692 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
15693
15694         * cs-parser.jay: A for_initializer if is a
15695         local_variable_declaration really ammount to have an implicit
15696         block with the variable declaration and no initializer for for.
15697
15698         * statement.cs (For.Emit): Cope with null initializers.
15699
15700         This fixes the infinite loop on for initializers.
15701
15702 2001-11-08  Miguel de Icaza  <miguel@ximian.com>
15703
15704         * enum.cs: More cleanup.
15705
15706         * ecore.cs: Remove dead code.
15707
15708         * class.cs (Property.Emit): More simplification.
15709         (Event.Emit): ditto.
15710
15711         Reworked to have less levels of indentation.
15712
15713 2001-11-08  Ravi Pratap  <ravi@ximian.com>
15714
15715         * class.cs (Property): Emit attributes.
15716
15717         (Field): Ditto.
15718
15719         (Event): Ditto.
15720
15721         (Indexer): Ditto.
15722
15723         (Operator): Ditto.
15724
15725         * enum.cs (Emit): Ditto.
15726
15727         * rootcontext.cs (ResolveTree, EmitCode, CloseTypes): Do the same for
15728         Enums too.
15729
15730         * class.cs (Field, Event, etc.): Move attribute generation into the
15731         Emit method everywhere.
15732
15733         * enum.cs (Enum): Revamp to use the same definition semantics as delegates so
15734         we have a DefineEnum, CloseEnum etc. The previous way of doing things was not right
15735         as we had no way of defining nested enums !
15736
15737         * rootcontext.cs : Adjust code accordingly.
15738
15739         * typemanager.cs (AddEnumType): To keep track of enum types separately.
15740
15741 2001-11-07  Ravi Pratap  <ravi@ximian.com>
15742
15743         * expression.cs (EvalConstantExpression): Move into ecore.cs
15744
15745         * enum.cs (Enum): Rename some members and make them public and readonly
15746         according to our convention.
15747
15748         * modifiers.cs (EnumAttr): Implement as we need to set only visibility flags,
15749         nothing else.
15750
15751         * enum.cs (Enum::Define): Use the above instead of TypeAttr.
15752
15753         (Enum::Emit): Write a simple version for now which doesn't try to compute
15754         expressions. I shall modify this to be more robust in just a while.
15755
15756         * class.cs (TypeContainer::Emit): Make sure we include Enums too.
15757
15758         (TypeContainer::CloseType): Create the Enum types too.
15759
15760         * attribute.cs (Resolve): Use the new Reduce method instead of EvalConstantExpression.
15761
15762         * expression.cs (EvalConstantExpression): Get rid of completely.
15763
15764         * enum.cs (Enum::Emit): Use the new expression reducer. Implement assigning
15765         user-defined values and other cases.
15766
15767         (IsValidEnumLiteral): Helper function.
15768
15769         * expression.cs (ExprClassfromMemberInfo): Modify to not do any literalizing 
15770         out there in the case we had a literal FieldExpr.
15771
15772         (MemberAccess:DoResolve): Do the literalizing of the FieldExpr here.
15773
15774         (Literalize): Revamp a bit to take two arguments.
15775
15776         (EnumLiteral): New class which derives from Literal to wrap enum literals.
15777
15778 2001-11-06  Ravi Pratap  <ravi@ximian.com>
15779
15780         * cs-parser.jay (compilation_unit): Remove extra opt_attributes for now.
15781
15782         * expression.cs (ArrayCreation::ValidateInitializers): Implement.
15783
15784         (Resolve): Use the above to ensure we have proper initializers.
15785
15786 2001-11-05  Ravi Pratap  <ravi@ximian.com>
15787
15788         * expression.cs (Expression::EvalConstantExpression): New method to 
15789         evaluate constant expressions.
15790
15791         * attribute.cs (Attribute::Resolve): Modify bits to use the above function.
15792
15793 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
15794
15795         * expression.cs (ArrayCreation.Emit): Some bits to initialize data
15796         in an array.
15797
15798         (Binary.ResolveOperator): Handle operator != (object a, object b)
15799         and operator == (object a, object b);
15800
15801         (Binary.DoNumericPromotions): Indicate whether the numeric
15802         promotion was possible.
15803
15804         (ArrayAccess.DoResolve, ArrayAccess.Emit, ArrayAccess.EmitAssign):
15805         Implement.  
15806
15807         Made the ArrayAccess implement interface IAssignMethod instead of
15808         IStackStore as the order in which arguments are passed reflects
15809         this.
15810
15811         * assign.cs: Instead of using expr.ExprClass to select the way of
15812         assinging, probe for the IStackStore/IAssignMethod interfaces.
15813
15814         * typemanager.cs: Load InitializeArray definition.
15815
15816         * rootcontext.cs (RootContext.MakeStaticData): Used to define
15817         static data that can be used to initialize arrays. 
15818
15819 2001-11-05  Miguel de Icaza  <miguel@ximian.com>
15820
15821         * expression.cs: Handle operator== and operator!= for booleans.
15822
15823         (Conditioal.Reduce): Implement reducer for the ?: operator.
15824
15825         (Conditional.Resolve): Implement dead code elimination.
15826
15827         (Binary.Resolve): Catch string literals and return a new
15828         concatenated string.
15829
15830         (Unary.Reduce): Implement reduction of unary expressions.
15831
15832         * ecore.cs: Split out the expression core handling here.
15833
15834         (Expression.Reduce): New method used to perform constant folding
15835         and CSE.  This is needed to support constant-expressions. 
15836
15837         * statement.cs (Statement.EmitBoolExpression): Pass true and false
15838         targets, and optimize for !x.
15839
15840 2001-11-04  Ravi Pratap  <ravi@ximian.com>
15841
15842         * attribute.cs (Attribute::Resolve): Implement guts. Note that resolution
15843         of an attribute gives us a CustomAttributeBuilder which we use accordingly to
15844         set custom atttributes.
15845
15846         * literal.cs (Literal::GetValue): New abstract method to return the actual
15847         value of the literal, cast as an object.
15848
15849         (*Literal): Implement GetValue method.
15850
15851         * cs-parser.jay (positional_argument_list, named_argument_list): Add not just plain
15852         expressions to the arraylist but objects of type Argument.
15853
15854         * class.cs (TypeContainer::Emit): Emit our attributes too.
15855
15856         (Method::Emit, Constructor::Emit): Ditto.
15857
15858         * cs-parser.jay (constructor_declaration): Set attributes too, which we seemed
15859         to be ignoring earlier.
15860
15861 2001-11-03  Ravi Pratap  <ravi@ximian.com>
15862
15863         * attribute.cs (AttributeSection::Define): Implement to do the business
15864         of constructing a CustomAttributeBuilder.
15865
15866         (Attribute): New trivial class. Increases readability of code.  
15867
15868         * cs-parser.jay : Update accordingly.
15869
15870         (positional_argument_list, named_argument_list, named_argument): New rules
15871
15872         (attribute_arguments): Use the above so that we are more correct.
15873
15874 2001-11-02  Ravi Pratap  <ravi@ximian.com>
15875
15876         * expression.cs (Invocation::IsParamsMethodApplicable): Implement
15877         to perform all checks for a method with a params parameter.
15878
15879         (Invocation::OverloadResolve): Update to use the above method and therefore
15880         cope correctly with params method invocations.
15881
15882         * support.cs (InternalParameters::ParameterDesc): Provide a desc for 
15883         params too.
15884
15885         * class.cs (ConstructorInitializer::Resolve): Make sure we look for Non-public
15886         constructors in our parent too because we can't afford to miss out on 
15887         protected ones ;-)
15888
15889         * attribute.cs (AttributeSection): New name for the class Attribute
15890
15891         Other trivial changes to improve readability.
15892
15893         * cs-parser.jay (opt_attributes, attribute_section etc.): Modify to
15894         use the new class names.
15895
15896 2001-11-01  Ravi Pratap  <ravi@ximian.com>
15897
15898         * class.cs (Method::Define): Complete definition for params types too
15899
15900         (Indexer::Define): Ditto.
15901
15902         * support.cs (InternalParameters::ParameterType, ParameterDesc, ParameterModifier):
15903         Cope everywhere with a request for info about the array parameter.
15904
15905 2001-11-01  Ravi Pratap  <ravi@ximian.com>
15906
15907         * tree.cs (RecordNamespace): Fix up to check for the correct key.
15908
15909         * cs-parser.jay (GetQualifiedIdentifier): New Helper method used in 
15910         local_variable_type to extract the string corresponding to the type.
15911
15912         (local_variable_type): Fixup the action to use the new helper method.
15913
15914         * codegen.cs : Get rid of RefOrOutParameter, it's not the right way to 
15915         go.
15916
15917         * expression.cs : Clean out code which uses the above.
15918
15919 2001-10-31  Ravi Pratap  <ravi@ximian.com>
15920
15921         * typemanager.cs (RegisterMethod): Check if we already have an existing key
15922         and bale out if necessary by returning a false.
15923
15924         (RegisterProperty): Ditto.
15925
15926         * class.cs (everywhere): Check the return value from TypeManager.RegisterMethod
15927         and print out appropriate error messages.
15928
15929         * interface.cs (everywhere): Ditto.
15930
15931         * cs-parser.jay (property_declaration, event_declaration, indexer_declaration): Pass
15932         location to constructor.
15933
15934         * class.cs (Property, Event, Indexer): Update accordingly.
15935
15936         * ../errors/cs111.cs : Added.
15937
15938         * expression.cs (Invocation::IsApplicable): New static method to determine applicability
15939         of a method, as laid down by the spec.
15940
15941         (Invocation::OverloadResolve): Use the above method.
15942
15943 2001-10-31  Ravi Pratap  <ravi@ximian.com>
15944
15945         * support.cs (InternalParameters): Get rid of crap taking in duplicate info. We
15946         now take a TypeContainer and a Parameters object.
15947
15948         (ParameterData): Modify return type of ParameterModifier method to be 
15949         Parameter.Modifier and not a string.
15950
15951         (ReflectionParameters, InternalParameters): Update accordingly.
15952
15953         * expression.cs (Argument::GetParameterModifier): Same here.
15954
15955         * support.cs (InternalParameters::ParameterType): Find a better way of determining
15956         if we are a ref/out parameter. Actually, the type shouldn't be holding the '&'
15957         symbol in it at all so maybe this is only for now.
15958
15959 2001-10-30  Ravi Pratap  <ravi@ximian.com>
15960
15961         * support.cs (InternalParameters): Constructor now takes an extra argument 
15962         which is the actual Parameters class.
15963
15964         (ParameterDesc): Update to provide info on ref/out modifiers.
15965
15966         * class.cs (everywhere): Update call to InternalParameters to pass in
15967         the second argument too.
15968
15969         * support.cs (ParameterData): Add ParameterModifier, which is a method 
15970         to return the modifier info [ref/out etc]
15971
15972         (InternalParameters, ReflectionParameters): Implement the above.
15973
15974         * expression.cs (Argument::ParameterModifier): Similar function to return
15975         info about the argument's modifiers.
15976
15977         (Invocation::OverloadResolve): Update to take into account matching modifiers 
15978         too.
15979
15980         * class.cs (Indexer::Define): Actually define a Parameter object and put it onto
15981         a new SetFormalParameters object which we pass to InternalParameters.
15982
15983 2001-10-30  Ravi Pratap  <ravi@ximian.com>
15984
15985         * expression.cs (NewArray): Merge into the ArrayCreation class.
15986
15987 2001-10-29  Ravi Pratap  <ravi@ximian.com>
15988
15989         * expression.cs (NewArray): Merge classes NewBuiltinArray and 
15990         NewUserdefinedArray into one as there wasn't much of a use in having
15991         two separate ones.
15992
15993         * expression.cs (Argument): Change field's name to ArgType from Type.
15994
15995         (Type): New readonly property which returns the proper type, taking into 
15996         account ref/out modifiers.
15997
15998         (everywhere): Adjust code accordingly for the above.
15999
16000         * codegen.cs (EmitContext.RefOrOutParameter): New field to determine
16001         whether we are emitting for a ref or out parameter.
16002
16003         * expression.cs (Argument::Emit): Use the above field to set the state.
16004
16005         (LocalVariableReference::Emit): Update to honour the flag and emit the
16006         right stuff.
16007
16008         * parameter.cs (Attributes): Set the correct flags for ref parameters.
16009
16010         * expression.cs (Argument::FullDesc): New function to provide a full desc.
16011
16012         * support.cs (ParameterData): Add method ParameterDesc to the interface.
16013
16014         (ReflectionParameters, InternalParameters): Implement the above method.
16015
16016         * expression.cs (Invocation::OverloadResolve): Use the new desc methods in
16017         reporting errors.
16018
16019         (Invocation::FullMethodDesc): Ditto. 
16020
16021 2001-10-29  Miguel de Icaza  <miguel@ximian.com>
16022
16023         * cs-parser.jay: Add extra production for the second form of array
16024         creation. 
16025
16026         * expression.cs (ArrayCreation): Update to reflect the above
16027         change. 
16028
16029         * Small changes to prepare for Array initialization.
16030
16031 2001-10-28  Miguel de Icaza  <miguel@ximian.com>
16032
16033         * typemanager.cs (ImplementsInterface): interface might be null;
16034         Deal with this problem;
16035
16036         Also, we do store negative hits on the cache (null values), so use
16037         this instead of calling t.GetInterfaces on the type everytime.
16038
16039 2001-10-28  Ravi Pratap  <ravi@ximian.com>
16040
16041         * typemanager.cs (IsBuiltinType): New method to help determine the same.
16042
16043         * expression.cs (New::DoResolve): Get rid of array creation code and instead
16044         split functionality out into different classes.
16045
16046         (New::FormArrayType): Move into NewBuiltinArray.
16047
16048         (Invocation::EmitArguments): Get rid of the MethodBase argument. Appears
16049         quite useless.
16050
16051         (NewBuiltinArray): New class to handle creation of built-in arrays.
16052
16053         (NewBuiltinArray::DoResolve): Implement guts of array creation. Also take into
16054         account creation of one-dimensional arrays.
16055
16056         (::Emit): Implement to use Newarr and Newobj opcodes accordingly.
16057
16058         (NewUserdefinedArray::DoResolve): Implement.
16059
16060         * cs-parser.jay (local_variable_type): Fix up to add the rank to the variable too.
16061
16062         * typemanager.cs (AddModule): Used to add a ModuleBuilder to the list of modules
16063         we maintain inside the TypeManager. This is necessary to perform lookups on the
16064         module builder.
16065
16066         (LookupType): Update to perform GetType on the module builders too.     
16067
16068         * driver.cs (Driver): Add the ModuleBuilder to the list maintained by the TypeManager.
16069
16070         * exprssion.cs (NewUserdefinedArray::Emit): Implement.
16071
16072 2001-10-23  Ravi Pratap  <ravi@ximian.com>
16073
16074         * expression.cs (New::DoResolve): Implement guts of array creation.
16075
16076         (New::FormLookupType): Rename to FormArrayType and modify ever so slightly.
16077
16078 2001-10-27  Miguel de Icaza  <miguel@ximian.com>
16079
16080         * expression.cs: Fix bug I introduced lsat night that broke
16081         Delegates. 
16082
16083         (Expression.Resolve): Report a 246 error (can not resolve name)
16084         if we find a SimpleName in the stream.
16085
16086         (Expression.ResolveLValue): Ditto.
16087
16088         (Expression.ResolveWithSimpleName): This function is a variant of
16089         ResolveName, this one allows SimpleNames to be returned without a
16090         warning.  The only consumer of SimpleNames is MemberAccess
16091
16092 2001-10-26  Miguel de Icaza  <miguel@ximian.com>
16093
16094         * expression.cs (Invocation::DoResolve): Catch SimpleNames that
16095         might arrive here.  I have my doubts that this is correct.
16096
16097         * statement.cs (Lock): Implement lock statement.
16098
16099         * cs-parser.jay: Small fixes to support `lock' and `using'
16100
16101         * cs-tokenizer.cs: Remove extra space
16102
16103         * driver.cs: New flag --checked, allows to turn on integer math
16104         checking. 
16105
16106         * typemanger.cs: Load methodinfos for Threading.Monitor.Enter and
16107         Threading.Monitor.Exit 
16108
16109 2001-10-23  Miguel de Icaza  <miguel@ximian.com>
16110
16111         * expression.cs (IndexerAccess::DoResolveLValue): Set the
16112         Expression Class to be IndexerAccess.
16113
16114         Notice that Indexer::DoResolve sets the eclass to Value.
16115
16116 2001-10-22  Miguel de Icaza  <miguel@ximian.com>
16117
16118         * class.cs (TypeContainer::Emit): Emit code for indexers.
16119
16120         * assign.cs (IAssignMethod): New interface implemented by Indexers
16121         and Properties for handling assignment.
16122
16123         (Assign::Emit): Simplify and reuse code. 
16124
16125         * expression.cs (IndexerAccess, PropertyExpr): Implement
16126         IAssignMethod, clean up old code. 
16127
16128 2001-10-22  Ravi Pratap  <ravi@ximian.com>
16129
16130         * typemanager.cs (ImplementsInterface): New method to determine if a type
16131         implements a given interface. Provides a nice cache too.
16132
16133         * expression.cs (ImplicitReferenceConversion): Update checks to use the above
16134         method.
16135
16136         (ConvertReferenceExplicit): Ditto.
16137
16138         * delegate.cs (Delegate::Populate): Update to define the parameters on the 
16139         various methods, with correct names etc.
16140
16141         * class.cs (Operator::OpType): New members Operator.UnaryPlus and 
16142         Operator.UnaryNegation.
16143
16144         * cs-parser.jay (operator_declarator): Be a little clever in the case where
16145         we have a unary plus or minus operator.
16146
16147         * expression.cs (Unary): Rename memebers of Operator enum to UnaryPlus and 
16148         UnaryMinus.
16149
16150         * everywhere : update accordingly.
16151
16152         * everywhere : Change Negate and BitComplement to LogicalNot and OnesComplement
16153         respectively.
16154
16155         * class.cs (Method::Define): For the case where we are implementing a method
16156         inherited from an interface, we need to set the MethodAttributes.Final flag too. 
16157         Also set MethodAttributes.NewSlot and MethodAttributes.HideBySig.
16158
16159 2001-10-21  Ravi Pratap  <ravi@ximian.com>
16160
16161         * interface.cs (FindMembers): Implement to work around S.R.E
16162         lameness.
16163
16164         * typemanager.cs (IsInterfaceType): Implement.
16165
16166         (FindMembers): Update to handle interface types too.
16167
16168         * expression.cs (ImplicitReferenceConversion): Re-write bits which
16169         use IsAssignableFrom as that is not correct - it doesn't work.
16170
16171         * delegate.cs (DelegateInvocation): Derive from ExpressionStatement
16172         and accordingly override EmitStatement.
16173
16174         * expression.cs (ConvertReferenceExplicit): Re-write similary, this time
16175         using the correct logic :-)
16176
16177 2001-10-19  Ravi Pratap  <ravi@ximian.com>
16178
16179         * ../errors/cs-11.cs : Add to demonstrate error -11 
16180
16181 2001-10-17  Miguel de Icaza  <miguel@ximian.com>
16182
16183         * assign.cs (Assign::Resolve): Resolve right hand side first, and
16184         then pass this as a hint to ResolveLValue.
16185
16186         * expression.cs (FieldExpr): Add Location information
16187
16188         (FieldExpr::LValueResolve): Report assignment to readonly
16189         variable. 
16190
16191         (Expression::ExprClassFromMemberInfo): Pass location information.
16192
16193         (Expression::ResolveLValue): Add new method that resolves an
16194         LValue. 
16195
16196         (Expression::DoResolveLValue): Default invocation calls
16197         DoResolve. 
16198
16199         (Indexers): New class used to keep track of indexers in a given
16200         Type. 
16201
16202         (IStackStore): Renamed from LValue, as it did not really describe
16203         what this did.  Also ResolveLValue is gone from this interface and
16204         now is part of Expression.
16205
16206         (ElementAccess): Depending on the element access type
16207
16208         * typemanager.cs: Add `indexer_name_type' as a Core type
16209         (System.Runtime.CompilerServices.IndexerNameAttribute)
16210
16211         * statement.cs (Goto): Take a location.
16212
16213 2001-10-18  Ravi Pratap  <ravi@ximian.com>
16214
16215         * delegate.cs (Delegate::VerifyDelegate): New method to verify
16216         if two delegates are compatible.
16217
16218         (NewDelegate::DoResolve): Update to take care of the case when
16219         we instantiate a delegate from another delegate.
16220
16221         * typemanager.cs (FindMembers): Don't even try to look up members
16222         of Delegate types for now.
16223
16224 2001-10-18  Ravi Pratap  <ravi@ximian.com>
16225
16226         * delegate.cs (NewDelegate): New class to take care of delegate
16227         instantiation.
16228
16229         * expression.cs (New): Split the delegate related code out into 
16230         the NewDelegate class.
16231
16232         * delegate.cs (DelegateInvocation): New class to handle delegate 
16233         invocation.
16234
16235         * expression.cs (Invocation): Split out delegate related code into
16236         the DelegateInvocation class.
16237
16238 2001-10-17  Ravi Pratap  <ravi@ximian.com>
16239
16240         * expression.cs (New::DoResolve): Implement delegate creation fully
16241         and according to the spec.
16242
16243         (New::DoEmit): Update to handle delegates differently.
16244
16245         (Invocation::FullMethodDesc): Fix major stupid bug thanks to me
16246         because of which we were printing out arguments in reverse order !
16247
16248         * delegate.cs (VerifyMethod): Implement to check if the given method
16249         matches the delegate.
16250
16251         (FullDelegateDesc): Implement.
16252
16253         (VerifyApplicability): Implement.
16254
16255         * expression.cs (Invocation::DoResolve): Update to accordingly handle
16256         delegate invocations too.
16257
16258         (Invocation::Emit): Ditto.
16259
16260         * ../errors/cs1593.cs : Added.
16261
16262         * ../errors/cs1594.cs : Added.
16263
16264         * delegate.cs (InstanceExpression, TargetMethod): New properties.
16265
16266 2001-10-16  Ravi Pratap  <ravi@ximian.com>
16267
16268         * typemanager.cs (intptr_type): Core type for System.IntPtr
16269
16270         (InitCoreTypes): Update for the same.
16271
16272         (iasyncresult_type, asynccallback_type): Ditto.
16273
16274         * delegate.cs (Populate): Fix to use System.Intptr as it is indeed
16275         correct.
16276
16277         * typemanager.cs (AddDelegateType): Store a pointer to the Delegate class
16278         too.
16279
16280         * delegate.cs (ConstructorBuilder, InvokeBuilder, ...): New members to hold
16281         the builders for the 4 members of a delegate type :-)
16282
16283         (Populate): Define the BeginInvoke and EndInvoke methods on the delegate
16284         type.
16285
16286         * expression.cs (New::DoResolve): Implement guts for delegate creation.
16287
16288         * ../errors/errors.txt : Update for an error (-11) which only we catch :-)
16289
16290 2001-10-15  Miguel de Icaza  <miguel@ximian.com>
16291
16292         * statement.cs (Break::Emit): Implement.   
16293         (Continue::Emit): Implement.
16294
16295         (For::Emit): Track old being/end loops;  Set Begin loop, ack end loop
16296         (While::Emit): Track old being/end loops;  Set Begin loop, ack end loop
16297         (Do::Emit): Track old being/end loops;  Set Begin loop, ack end loop
16298         (Foreach::Emit): Track old being/end loops;  Set Begin loop, ack
16299         end loop
16300
16301         * codegen.cs (EmitContext::LoopEnd, EmitContext::LoopBegin): New
16302         properties that track the label for the current loop (begin of the
16303         loop and end of the loop).
16304
16305 2001-10-15  Ravi Pratap  <ravi@ximian.com>
16306
16307         * delegate.cs (Emit): Get rid of it as there doesn't seem to be any ostensible
16308         use of emitting anything at all.
16309
16310         * class.cs, rootcontext.cs : Get rid of calls to the same.
16311
16312         * delegate.cs (DefineDelegate): Make sure the class we define is also sealed.
16313
16314         (Populate): Define the constructor correctly and set the implementation
16315         attributes.
16316
16317         * typemanager.cs (delegate_types): New hashtable to hold delegates that
16318         have been defined.
16319
16320         (AddDelegateType): Implement.
16321
16322         (IsDelegateType): Implement helper method.
16323
16324         * delegate.cs (DefineDelegate): Use AddDelegateType instead of AddUserType.
16325
16326         * expression.cs (New::DoResolve): Check if we are trying to instantiate a delegate type
16327         and accordingly handle it.
16328
16329         * delegate.cs (Populate): Take TypeContainer argument.
16330         Implement bits to define the Invoke method. However, I still haven't figured out
16331         how to take care of the native int bit :-(
16332
16333         * cs-parser.jay (delegate_declaration): Fixed the bug that I had introduced :-) 
16334         Qualify the name of the delegate, not its return type !
16335
16336         * expression.cs (ImplicitReferenceConversion): Implement guts of implicit array
16337         conversion.
16338
16339         (StandardConversionExists): Checking for array types turns out to be recursive.
16340
16341         (ConvertReferenceExplicit): Implement array conversion.
16342
16343         (ExplicitReferenceConversionExists): New method to determine precisely that :-)
16344
16345 2001-10-12  Ravi Pratap  <ravi@ximian.com>
16346
16347         * cs-parser.jay (delegate_declaration): Store the fully qualified
16348         name as it is a type declaration.
16349
16350         * delegate.cs (ReturnType, Name): Rename members to these. Make them 
16351         readonly.
16352
16353         (DefineDelegate): Renamed from Define. Does the same thing essentially,
16354         as TypeContainer::DefineType.
16355
16356         (Populate): Method in which all the definition of the various methods (Invoke)
16357         etc is done.
16358
16359         (Emit): Emit any code, if necessary. I am not sure about this really, but let's
16360         see.
16361
16362         (CloseDelegate): Finally creates the delegate.
16363
16364         * class.cs (TypeContainer::DefineType): Update to define delegates.
16365         (Populate, Emit and CloseType): Do the same thing here too.
16366
16367         * rootcontext.cs (ResolveTree, PopulateTypes, EmitCode, CloseTypes): Include
16368         delegates in all these operations.
16369
16370 2001-10-14  Miguel de Icaza  <miguel@ximian.com>
16371
16372         * expression.cs: LocalTemporary: a new expression used to
16373         reference a temporary that has been created.
16374
16375         * assign.cs: Handle PropertyAccess back here, so that we can
16376         provide the proper semantic access to properties.
16377
16378         * expression.cs (Expression::ConvertReferenceExplicit): Implement
16379         a few more explicit conversions. 
16380
16381         * modifiers.cs: `NEW' modifier maps to HideBySig.
16382
16383         * expression.cs (PropertyExpr): Make this into an
16384         ExpressionStatement, and support the EmitStatement code path. 
16385
16386         Perform get/set error checking, clean up the interface.
16387
16388         * assign.cs: recognize PropertyExprs as targets, and if so, turn
16389         them into toplevel access objects.
16390
16391 2001-10-12  Miguel de Icaza  <miguel@ximian.com>
16392
16393         * expression.cs: PropertyExpr::PropertyExpr: use work around the
16394         SRE.
16395
16396         * typemanager.cs: Keep track here of our PropertyBuilders again to
16397         work around lameness in SRE.
16398
16399 2001-10-11  Miguel de Icaza  <miguel@ximian.com>
16400
16401         * expression.cs (LValue::LValueResolve): New method in the
16402         interface, used to perform a second resolution pass for LValues. 
16403
16404         (This::DoResolve): Catch the use of this in static methods.
16405
16406         (This::LValueResolve): Implement.
16407
16408         (This::Store): Remove warning, assigning to `this' in structures
16409         is 
16410
16411         (Invocation::Emit): Deal with invocation of
16412         methods on value types.  We need to pass the address to structure
16413         methods rather than the object itself.  (The equivalent code to
16414         emit "this" for structures leaves the entire structure on the
16415         stack instead of a pointer to it). 
16416
16417         (ParameterReference::DoResolve): Compute the real index for the
16418         argument based on whether the method takes or not a `this' pointer
16419         (ie, the method is static).
16420
16421         * codegen.cs (EmitContext::GetTemporaryStorage): Used to store
16422         value types returned from functions when we need to invoke a
16423         method on the sturcture.
16424
16425
16426 2001-10-11  Ravi Pratap  <ravi@ximian.com>
16427
16428         * class.cs (TypeContainer::DefineType): Method to actually do the business of
16429         defining the type in the Modulebuilder or Typebuilder. This is to take
16430         care of nested types which need to be defined on the TypeBuilder using
16431         DefineNestedMethod.
16432
16433         (TypeContainer::GetClassBases): Implement. Essentially the code from the 
16434         methods in RootContext, only ported to be part of TypeContainer.
16435
16436         (TypeContainer::GetInterfaceOrClass): Ditto.
16437
16438         (TypeContainer::LookupInterfaceOrClass, ::MakeFQN): Ditto.
16439
16440         * interface.cs (Interface::DefineInterface): New method. Does exactly
16441         what RootContext.CreateInterface did earlier, only it takes care of nested types 
16442         too.
16443
16444         (Interface::GetInterfaces): Move from RootContext here and port.
16445
16446         (Interface::GetInterfaceByName): Same here.
16447
16448         * rootcontext.cs (ResolveTree): Re-write.
16449
16450         (PopulateTypes): Re-write.
16451
16452         * class.cs (TypeContainer::Populate): Populate nested types too.
16453         (TypeContainer::Emit): Emit nested members too.
16454
16455         * typemanager.cs (AddUserType): Do not make use of the FullName property,
16456         instead just use the name argument passed in as it is already fully
16457         qualified.
16458
16459         (FindMembers): Check in the Builders to TypeContainer mapping instead of the name
16460         to TypeContainer mapping to see if a type is user-defined.
16461
16462         * class.cs (TypeContainer::CloseType): Implement. 
16463
16464         (TypeContainer::DefineDefaultConstructor): Use Basename, not Name while creating
16465         the default constructor.
16466
16467         (TypeContainer::Populate): Fix minor bug which led to creating default constructors
16468         twice.
16469
16470         (Constructor::IsDefault): Fix up logic to determine if it is the default constructor
16471
16472         * interface.cs (CloseType): Create the type here.
16473
16474         * rootcontext.cs (CloseTypes): Re-write to recursively close types by running through
16475         the hierarchy.
16476
16477         Remove all the methods which are now in TypeContainer.
16478
16479 2001-10-10  Ravi Pratap  <ravi@ximian.com>
16480
16481         * delegate.cs (Define): Re-write bits to define the delegate
16482         correctly.
16483
16484 2001-10-10  Miguel de Icaza  <miguel@ximian.com>
16485
16486         * makefile: Renamed the compiler to `mcs.exe' instead of compiler.exe
16487
16488         * expression.cs (ImplicitReferenceConversion): handle null as well
16489         as a source to convert to any reference type.
16490
16491         * statement.cs (Return): Perform any implicit conversions to
16492         expected return type.  
16493
16494         Validate use of return statement.  
16495
16496         * codegen.cs (EmitContext): Pass the expected return type here.
16497
16498         * class.cs (Method, Constructor, Property): Pass expected return
16499         type to EmitContext.
16500
16501 2001-10-09  Miguel de Icaza  <miguel@ximian.com>
16502
16503         * expression.cs: Make DoResolve take an EmitContext instead of a
16504         TypeContainer.
16505
16506         Replaced `l' and `location' for `loc', for consistency.
16507
16508         (Error, Warning): Remove unneeded Tc argument.
16509
16510         * assign.cs, literal.cs, constant.cs: Update to new calling
16511         convention. 
16512
16513         * codegen.cs: EmitContext now contains a flag indicating whether
16514         code is being generated in a static method or not.
16515
16516         * cs-parser.jay: DecomposeQI, new function that replaces the old
16517         QualifiedIdentifier.  Now we always decompose the assembled
16518         strings from qualified_identifier productions into a group of
16519         memberaccesses.
16520
16521 2001-10-08  Miguel de Icaza  <miguel@ximian.com>
16522
16523         * rootcontext.cs: Deal with field-less struct types correctly now
16524         by passing the size option to Define Type.
16525
16526         * class.cs: Removed hack that created one static field. 
16527
16528 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
16529
16530         * statement.cs: Moved most of the code generation here. 
16531
16532 2001-10-09  Ravi Pratap  <ravi@ximian.com>
16533
16534         * expression.cs (New::DoResolve): Revert changes for array creation, doesn't
16535         seem very right.
16536
16537         (ElementAccess): Remove useless bits for now - keep checks as the spec
16538         says.
16539
16540 2001-10-08  Ravi Pratap  <ravi@ximian.com>
16541
16542         * expression.cs (ElementAccess::DoResolve): Remove my crap code
16543         and start performing checks according to the spec.
16544
16545 2001-10-07  Ravi Pratap  <ravi@ximian.com>
16546
16547         * cs-parser.jay (type_suffix*): Remove - they are redundant. Use
16548         rank_specifiers instead.
16549
16550         (rank_specifiers): Change the order in which the rank specifiers are stored
16551
16552         (local_variable_declaration): Use opt_rank_specifier instead of type_suffixes.
16553
16554         * expression.cs (ElementAccess): Implement the LValue interface too.
16555
16556 2001-10-06  Ravi Pratap  <ravi@ximian.com>
16557
16558         * expression.cs (ConvertExplicitStandard): Add. Same as ConvertExplicit
16559         except that user defined conversions are not included.
16560
16561         (UserDefinedConversion): Update to use the ConvertExplicitStandard to 
16562         perform the conversion of the return type, if necessary.
16563
16564         (New::DoResolve): Check whether we are creating an array or an object
16565         and accordingly do the needful.
16566
16567         (New::Emit): Same here.
16568
16569         (New::DoResolve): Implement guts of array creation.
16570
16571         (New::FormLookupType): Helper function.
16572
16573 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
16574
16575         * codegen.cs: Removed most of the code generation here, and move the
16576         corresponding code generation bits to the statement classes. 
16577
16578         Added support for try/catch/finalize and throw.
16579
16580         * cs-parser.jay: Added support for try/catch/finalize.
16581
16582         * class.cs: Catch static methods having the flags override,
16583         virtual or abstract.
16584
16585         * expression.cs (UserCast): This user cast was not really doing
16586         what it was supposed to do.  Which is to be born in fully resolved
16587         state.  Parts of the resolution were being performed at Emit time! 
16588
16589         Fixed this code.
16590
16591 2001-10-05  Miguel de Icaza  <miguel@ximian.com>
16592
16593         * expression.cs: Implicity convert the result from UserCast.
16594
16595 2001-10-05  Ravi Pratap  <ravi@ximian.com>
16596
16597         * expression.cs (Expression::FindMostEncompassingType): Fix bug which
16598         prevented it from working correctly. 
16599
16600         (ConvertExplicit): Make the first try, a call to ConvertImplicitStandard, not
16601         merely ConvertImplicit.
16602
16603 2001-10-05  Miguel de Icaza  <miguel@ximian.com>
16604
16605         * typemanager.cs: Make the LookupTypeContainer function static,
16606         and not per-instance.  
16607
16608         * class.cs: Make static FindMembers (the one that takes a Type
16609         argument). 
16610
16611         * codegen.cs: Add EmitForeach here.
16612
16613         * cs-parser.jay: Make foreach a toplevel object instead of the
16614         inline expansion, as we need to perform semantic analysis on it. 
16615
16616 2001-10-05  Ravi Pratap  <ravi@ximian.com>
16617
16618         * expression.cs (Expression::ImplicitUserConversion): Rename to
16619         UserDefinedConversion.
16620
16621         (Expression::UserDefinedConversion): Take an extra argument specifying 
16622         whether we look for explicit user conversions too.
16623
16624         (Expression::ImplicitUserConversion): Make it a call to UserDefinedConversion.
16625
16626         (UserDefinedConversion): Incorporate support for user defined explicit conversions.
16627
16628         (ExplicitUserConversion): Make it a call to UserDefinedConversion
16629         with the appropriate arguments.
16630
16631         * cs-parser.jay (cast_expression): Record location too.
16632
16633         * expression.cs (Cast): Record location info.
16634
16635         (Expression::ConvertExplicit): Take location argument.
16636
16637         (UserImplicitCast): Change name to UserCast. Take an extra constructor argument
16638         to determine if we are doing explicit conversions.
16639
16640         (UserCast::Emit): Update accordingly.
16641
16642         (Expression::ConvertExplicit): Report an error if everything fails.
16643
16644         * ../errors/cs0030.cs : Add.
16645
16646 2001-10-04  Miguel de Icaza  <miguel@ximian.com>
16647
16648         * modifiers.cs: If the ABSTRACT keyword is present, also set the
16649         virtual and newslot bits. 
16650
16651         * class.cs (TypeContainer::RegisterRequiredImplementations):
16652         Record methods we need.
16653
16654         (TypeContainer::MakeKey): Helper function to make keys for
16655         MethodBases, since the Methodbase key is useless.
16656
16657         (TypeContainer::Populate): Call RegisterRequiredImplementations
16658         before defining the methods.   
16659
16660         Create a mapping for method_builders_to_methods ahead of time
16661         instead of inside a tight loop.
16662
16663         (::RequireMethods):  Accept an object as the data to set into the
16664         hashtable so we can report interface vs abstract method mismatch.
16665
16666 2001-10-03  Miguel de Icaza  <miguel@ximian.com>
16667
16668         * report.cs: Make all of it static.
16669
16670         * rootcontext.cs: Drop object_type and value_type computations, as
16671         we have those in the TypeManager anyways.
16672
16673         Drop report instance variable too, now it is a global.
16674
16675         * driver.cs: Use try/catch on command line handling.
16676
16677         Add --probe option to debug the error reporting system with a test
16678         suite. 
16679
16680         * report.cs: Add support for exiting program when a probe
16681         condition is reached.
16682
16683 2001-10-03  Ravi Pratap  <ravi@ximian.com>
16684
16685         * expression.cs (Binary::DoNumericPromotions): Fix the case when
16686         we do a forcible conversion regardless of type, to check if 
16687         ForceConversion returns a null.
16688
16689         (Binary::error19): Use location to report error.
16690
16691         (Unary::error23): Use location here too.
16692
16693         * ../errors/cs0019.cs : Check in.
16694
16695         * ../errors/cs0023.cs : Check in.
16696
16697         * expression.cs (Expression.MemberLookup): Return null for a rather esoteric
16698         case of a non-null MethodInfo object with a length of 0 !
16699
16700         (Binary::ResolveOperator): Flag error if overload resolution fails to find
16701         an applicable member - according to the spec :-)
16702         Also fix logic to find members in base types.
16703
16704         (Unary::ResolveOperator): Same here.
16705
16706         (Unary::report23): Change name to error23 and make first argument a TypeContainer
16707         as I was getting thoroughly confused between this and error19 :-)
16708
16709         * expression.cs (Expression::ImplicitUserConversion): Re-write fully
16710         (::FindMostEncompassedType): Implement.
16711         (::FindMostEncompassingType): Implement.
16712         (::StandardConversionExists): Implement.
16713
16714         (UserImplicitCast): Re-vamp. We now need info about most specific
16715         source and target types so that we can do the necessary conversions.
16716
16717         (Invocation::MakeUnionSet): Completely re-write to make sure we form a proper
16718         mathematical union with no duplicates.
16719
16720 2001-10-03  Miguel de Icaza  <miguel@ximian.com>
16721
16722         * rootcontext.cs (RootContext::PopulateTypes): Populate containers
16723         in order from base classes to child classes, so that we can in
16724         child classes look up in our parent for method names and
16725         attributes (required for handling abstract, virtual, new, override
16726         constructs: we need to instrospect our base class, and if we dont
16727         populate the classes in order, the introspection might be
16728         incorrect.  For example, a method could query its parent before
16729         the parent has any methods and would determine that the parent has
16730         no abstract methods (while it could have had them)).
16731
16732         (RootContext::CreateType): Record the order in which we define the
16733         classes.
16734
16735 2001-10-02  Miguel de Icaza  <miguel@ximian.com>
16736
16737         * class.cs (TypeContainer::Populate): Also method definitions can
16738         fail now, keep track of this.
16739
16740         (TypeContainer::FindMembers): Implement support for
16741         DeclaredOnly/noDeclaredOnly flag.
16742
16743         (Constructor::Emit) Return the ConstructorBuilder.
16744
16745         (Method::Emit) Return the MethodBuilder. 
16746         Check for abstract or virtual methods to be public.
16747
16748         * rootcontext.cs (RootContext::CreateType): Register all the
16749         abstract methods required for the class to be complete and the
16750         interface methods that must be implemented. 
16751
16752         * cs-parser.jay: Report error 501 (method requires body if it is
16753         not marked abstract or extern).
16754
16755         * expression.cs (TypeOf::Emit): Implement.
16756
16757         * typemanager.cs: runtime_handle_type, new global type.
16758
16759         * class.cs (Property::Emit): Generate code for properties.
16760
16761 2001-10-02  Ravi Pratap  <ravi@ximian.com>
16762
16763         * expression.cs (Unary::ResolveOperator): Find operators on base type
16764         too - we now conform exactly to the spec.
16765
16766         (Binary::ResolveOperator): Same here.
16767
16768         * class.cs (Operator::Define): Fix minor quirk in the tests.
16769
16770         * ../errors/cs0215.cs : Added.
16771
16772         * ../errors/cs0556.cs : Added.
16773
16774         * ../errors/cs0555.cs : Added.
16775
16776 2001-10-01  Miguel de Icaza  <miguel@ximian.com>
16777
16778         * cs-tokenizer.cs: Reimplemented Location to be a struct with a
16779         single integer which is really efficient
16780
16781 2001-10-01  Ravi Pratap  <ravi@ximian.com>
16782
16783         *  expression.cs (Expression::ImplicitUserConversion): Use location
16784         even in the case when we are examining True operators.
16785  
16786         * class.cs (Operator::Define): Perform extensive checks to conform
16787         with the rules for operator overloading in the spec.
16788
16789         * expression.cs (Expression::ImplicitReferenceConversion): Implement
16790         some of the other conversions mentioned in the spec.
16791
16792         * typemanager.cs (array_type): New static member for the System.Array built-in
16793         type.
16794
16795         (cloneable_interface): For System.ICloneable interface.
16796
16797         * driver.cs (Driver::Driver): Initialize TypeManager's core types even before
16798         we start resolving the tree and populating types.
16799
16800         * ../errors/errors.txt : Update for error numbers -7, -8, -9, -10
16801  
16802 2001-10-01  Miguel de Icaza  <miguel@ximian.com>
16803
16804         * expression.cs (Expression::ExprClassFromMemberInfo,
16805         Expression::Literalize): Create literal expressions from
16806         FieldInfos which are literals.
16807
16808         (ConvertNumericExplicit, ImplicitNumericConversion): Fix a few
16809         type casts, because they were wrong.  The test suite in tests
16810         caught these ones.
16811
16812         (ImplicitNumericConversion): ushort to ulong requires a widening
16813         cast. 
16814
16815         Int32 constant to long requires widening cast as well.
16816
16817         * literal.cs (LongLiteral::EmitLong): Do not generate i4 constants
16818         for integers because the type on the stack is not i4.
16819
16820 2001-09-30  Miguel de Icaza  <miguel@ximian.com>
16821
16822         * expression.cs (report118): require location argument. 
16823
16824         * parameter.cs: Do not dereference potential null value.
16825
16826         * class.cs: Catch methods that lack the `new' keyword when
16827         overriding a name.  Report warnings when `new' is used without
16828         anything being there to override.
16829
16830         * modifiers.cs: Handle `NEW' as MethodAttributes.NewSlot.
16831
16832         * class.cs: Only add constructor to hashtable if it is non-null
16833         (as now constructors can fail on define).
16834
16835         (TypeManager, Class, Struct): Take location arguments.
16836
16837         Catch field instance initialization in structs as errors.
16838
16839         accepting_filter: a new filter for FindMembers that is static so
16840         that we dont create an instance per invocation.
16841
16842         (Constructor::Define): Catch errors where a struct constructor is
16843         parameterless 
16844
16845         * cs-parser.jay: Pass location information for various new
16846         constructs. 
16847
16848         * delegate.cs (Delegate): take a location argument.
16849
16850         * driver.cs: Do not call EmitCode if there were problesm in the
16851         Definition of the types, as many Builders wont be there. 
16852
16853         * decl.cs (Decl::Decl): Require a location argument.
16854
16855         * cs-tokenizer.cs: Handle properly hex constants that can not fit
16856         into integers, and find the most appropiate integer for it.
16857
16858         * literal.cs: Implement ULongLiteral.
16859
16860         * rootcontext.cs: Provide better information about the location of
16861         failure when CreateType fails.
16862
16863 2001-09-29  Miguel de Icaza  <miguel@ximian.com>
16864
16865         * rootcontext.cs (RootContext::PopulateTypes): Populates structs
16866         as well.
16867
16868         * expression.cs (Binary::CheckShiftArguments): Add missing type
16869         computation.
16870         (Binary::ResolveOperator): Add type to the logical and and logical
16871         or, Bitwise And/Or and Exclusive Or code paths, it was missing
16872         before.
16873
16874         (Binary::DoNumericPromotions): In the case where either argument
16875         is ulong (and most signed types combined with ulong cause an
16876         error) perform implicit integer constant conversions as well.
16877
16878 2001-09-28  Miguel de Icaza  <miguel@ximian.com>
16879
16880         * expression.cs (UserImplicitCast): Method should always be
16881         non-null. 
16882         (Invocation::BetterConversion): Simplified test for IntLiteral.
16883
16884         (Expression::ImplicitNumericConversion): Split this routine out.
16885         Put the code that performs implicit constant integer conversions
16886         here. 
16887
16888         (Expression::Resolve): Become a wrapper around DoResolve so we can
16889         check eclass and type being set after resolve.
16890
16891         (Invocation::Badness): Remove this dead function
16892
16893         (Binary::ResolveOperator): Do not compute the expensive argumnets
16894         unless we have a union for it.
16895
16896         (Probe::Emit): Is needs to do an isinst and then
16897         compare against null.
16898
16899         (::CanConvert): Added Location argument.  If the Location argument
16900         is null (Location.Null), then we do not report errors.  This is
16901         used by the `probe' mechanism of the Explicit conversion.  We do
16902         not want to generate an error for something that the user
16903         explicitly requested to be casted.  But the pipeline for an
16904         explicit cast first tests for potential implicit casts.
16905
16906         So for now, if the Location is null, it means `Probe only' to
16907         avoid adding another argument.   Might have to revise this
16908         strategy later.
16909
16910         (ClassCast): New class used to type cast objects into arbitrary
16911         classes (used in Explicit Reference Conversions).
16912
16913         Implement `as' as well.
16914
16915         Reverted all the patches from Ravi below: they were broken:
16916
16917                 * The use of `level' as a mechanism to stop recursive
16918                   invocations is wrong.  That was there just to catch the
16919                   bug with a strack trace but not as a way of addressing
16920                   the problem.
16921
16922                   To fix the problem we have to *understand* what is going
16923                   on and the interactions and come up with a plan, not
16924                   just get things going.
16925
16926                 * The use of the type conversion cache that I proposed
16927                   last night had an open topic: How does this work across
16928                   protection domains.  A user defined conversion might not
16929                   be public in the location where we are applying the
16930                   conversion, a different conversion might be selected
16931                   (ie, private A->B (better) but public B->A (worse),
16932                   inside A, A->B applies, but outside it, B->A will
16933                   apply).
16934
16935                 * On top of that (ie, even if the above is solved),
16936                   conversions in a cache need to be abstract.  Ie, `To
16937                   convert from an Int to a Short use an OpcodeCast', not
16938                   `To convert from an Int to a Short use the OpcodeCast on
16939                   the variable 5' (which is what this patch was doing).
16940
16941 2001-09-28  Ravi Pratap  <ravi@ximian.com>
16942
16943         * expression.cs (Invocation::ConversionExists): Re-write to use
16944         the conversion cache
16945
16946         (Expression::ConvertImplicit): Automatic bailing out if level != 0. Also
16947         cache all conversions done, not just user-defined ones.
16948
16949         (Invocation::BetterConversion): The real culprit. Use ConversionExists
16950         to determine if a conversion exists instead of acutually trying to 
16951         perform the conversion. It's faster too.
16952
16953         (Expression::ConvertExplicit): Modify to use ConversionExists to check
16954         and only then attempt the implicit conversion.
16955
16956 2001-09-28  Ravi Pratap  <ravi@ximian.com>
16957
16958         * expression.cs (ConvertImplicit): Use a cache for conversions
16959         already found. Check level of recursion and bail out if necessary.
16960
16961 2001-09-28  Miguel de Icaza  <miguel@ximian.com>
16962
16963         * typemanager.cs (string_concat_string_string, string_concat_object_object):
16964         Export standard methods that we expect for string operations.
16965
16966         * statement.cs (Block::UsageWarning): Track usage of variables and
16967         report the errors for not used variables.
16968
16969         * expression.cs (Conditional::Resolve, ::Emit): Implement ?:
16970         operator. 
16971
16972 2001-09-27  Miguel de Icaza  <miguel@ximian.com>
16973
16974         * codegen.cs: remove unnneded code 
16975
16976         * expression.cs: Removed BuiltinTypeAccess class
16977
16978         Fix the order in which implicit conversions are
16979         done.  
16980
16981         The previous fixed dropped support for boxed conversions (adding a
16982         test to the test suite now)
16983
16984         (UserImplicitCast::CanConvert): Remove test for source being null,
16985         that code is broken.  We should not feed a null to begin with, if
16986         we do, then we should track the bug where the problem originates
16987         and not try to cover it up here.
16988
16989         Return a resolved expression of type UserImplicitCast on success
16990         rather than true/false.  Ravi: this is what I was talking about,
16991         the pattern is to use a static method as a "constructor" for
16992         objects. 
16993
16994         Also, do not create arguments until the very last minute,
16995         otherwise we always create the arguments even for lookups that
16996         will never be performed. 
16997
16998         (UserImplicitCast::Resolve): Eliminate, objects of type
16999         UserImplicitCast are born in a fully resolved state. 
17000
17001         * typemanager.cs (InitCoreTypes): Init also value_type
17002         (System.ValueType). 
17003
17004         * expression.cs (Cast::Resolve): First resolve the child expression.
17005
17006         (LValue): Add new method AddressOf to be used by
17007         the `&' operator.  
17008
17009         Change the argument of Store to take an EmitContext instead of an
17010         ILGenerator, because things like FieldExpr need to be able to call
17011         their children expression to generate the instance code. 
17012
17013         (Expression::Error, Expression::Warning): Sugar functions for
17014         reporting errors.
17015
17016         (Expression::MemberLookup): Accept a TypeContainer instead of a
17017         Report as the first argument.
17018
17019         (Expression::ResolvePrimary): Killed.  I still want to improve
17020         this as currently the code is just not right.
17021
17022         (Expression::ResolveMemberAccess): Simplify, but it is still
17023         wrong. 
17024
17025         (Unary::Resolve): Catch errors in AddressOf operators.
17026
17027         (LocalVariableReference::Emit, ::Store, ::AddressOf): typecast
17028         index to a byte for the short-version, or the compiler will choose
17029         the wrong Emit call, which generates the wrong data.
17030
17031         (ParameterReference::Emit, ::Store): same.
17032
17033         (FieldExpr::AddressOf): Implement.
17034
17035         * typemanager.cs: TypeManager: made public variable instead of
17036         property.
17037
17038         * driver.cs: document --fatal.
17039
17040         * report.cs (ErrorMessage, WarningMessage): new names for the old
17041         Error and Warning classes.
17042
17043         * cs-parser.jay (member_access): Turn built-in access to types
17044         into a normal simplename
17045
17046 2001-09-27  Ravi Pratap  <ravi@ximian.com>
17047
17048         * expression.cs (Invocation::BetterConversion): Fix to cope
17049         with q being null, since this was introducing a bug.
17050
17051         * expression.cs (ConvertImplicit): Do built-in conversions first.
17052
17053 2001-09-27  Ravi Pratap  <ravi@ximian.com>
17054
17055         * expression.cs (UserImplicitCast::Resolve): Fix bug.
17056
17057 2001-09-27  Ravi Pratap  <ravi@ximian.com>
17058
17059         * class.cs (TypeContainer::AddConstructor): Fix a stupid bug
17060         I had introduced long ago (what's new ?).
17061
17062         * expression.cs (UserImplicitCast::CanConvert): Static method to do 
17063         the work of all the checking. 
17064         (ConvertImplicit): Call CanConvert and only then create object if necessary.
17065         (UserImplicitCast::CanConvert, ::Resolve): Re-write.
17066
17067         (Unary::Operator): Rename Add and Subtract to Addition and Subtraction because
17068         that is the right way. 
17069
17070         (Invocation::MakeUnionSet): Convenience function to make unions of sets for 
17071         overloading resolution. Use everywhere instead of cutting and pasting code.
17072
17073         (Binary::ResolveOperator): Use MakeUnionSet.
17074
17075         (UserImplicitCast::CanConvert, ::Resolve): Update to take care of the case when 
17076         we have to convert to bool types. Not complete yet.
17077
17078 2001-09-27  Miguel de Icaza  <miguel@ximian.com>
17079
17080         * typemanager.cs (TypeManager::CSharpName): support ushort.
17081
17082         * expression.cs (Expression::TryImplicitIntConversion): Attempts
17083         to provide an expression that performsn an implicit constant int
17084         conversion (section 6.1.6).
17085         (Expression::ConvertImplicitRequired): Reworked to include
17086         implicit constant expression conversions.
17087
17088         (Expression::ConvertNumericExplicit): Finished.
17089
17090         (Invocation::Emit): If InstanceExpression is null, then it means
17091         that we perform a call on this.
17092
17093 2001-09-26  Miguel de Icaza  <miguel@ximian.com>
17094
17095         * expression.cs (Unary::Emit): Remove some dead code.
17096         (Probe): Implement Resolve and Emit for `is'.
17097         (Expression::ConvertImplicitRequired): Attempt to do constant
17098         expression conversions here.  Maybe should be moved to
17099         ConvertImplicit, but I am not sure.
17100         (Expression::ImplicitLongConstantConversionPossible,
17101         Expression::ImplicitIntConstantConversionPossible): New functions
17102         that tell whether is it possible to apply an implicit constant
17103         expression conversion.
17104
17105         (ConvertNumericExplicit): Started work on explicit numeric
17106         conversions.
17107
17108         * cs-parser.jay: Update operator constants.
17109
17110         * parameter.cs (Parameters::GetParameterInfo): Hook up VerifyArgs
17111         (Parameters::GetSignature): Hook up VerifyArgs here.
17112         (Parameters::VerifyArgs): Verifies that no two arguments have the
17113         same name. 
17114
17115         * class.cs (Operator): Update the operator names to reflect the
17116         ones that the spec expects (as we are just stringizing the
17117         operator names).
17118
17119         * expression.cs (Unary::ResolveOperator): Fix bug: Use
17120         MethodInfo's ReturnType instead of LookupMethodByBuilder as the
17121         previous usage did only work for our methods.
17122         (Expression::ConvertImplicit): Handle decimal implicit numeric
17123         conversions as well.
17124         (Expression::InternalTypeConstructor): Used to invoke constructors
17125         on internal types for default promotions.
17126
17127         (Unary::Emit): Implement special handling for the pre/post
17128         increment/decrement for overloaded operators, as they need to have
17129         the same semantics as the other operators.
17130
17131         (Binary::ResolveOperator): ditto.
17132         (Invocation::ConversionExists): ditto.
17133         (UserImplicitCast::Resolve): ditto.
17134
17135 2001-09-26  Ravi Pratap  <ravi@ximian.com>
17136
17137         * expression.cs (Unary::Emit and Binary::Emit): If we have an overloaded
17138         operator, return after emitting body. Regression tests pass again !
17139
17140         * expression.cs (ConvertImplicit): Take TypeContainer as first argument
17141         (Unary::ForceConversion, Binary::ForceConversion): Ditto.
17142         (Invocation::OverloadResolve): Ditto.
17143         (Invocation::BetterFunction, BetterConversion, ConversionExists): Ditto.
17144
17145         * everywhere : update calls to the above methods accordingly.
17146
17147 2001-09-26  Miguel de Icaza  <miguel@ximian.com>
17148
17149         * assign.cs (Assign): Make it inherit from ExpressionStatement.
17150
17151         * expression.cs (ExpressionStatement): New base class used for
17152         expressions that can appear in statements, so that we can provide
17153         an alternate path to generate expression that do not leave a value
17154         on the stack.
17155
17156         (Expression::Emit, and all the derivatives): We no longer return
17157         whether a value is left on the stack or not.  Every expression
17158         after being emitted leaves a single value on the stack.
17159
17160         * codegen.cs (EmitContext::EmitStatementExpression): Use the
17161         facilties of ExpressionStatement if possible.
17162
17163         * cs-parser.jay: Update statement_expression.
17164
17165 2001-09-25  Miguel de Icaza  <miguel@ximian.com>
17166
17167         * driver.cs: Change the wording of message
17168
17169 2001-09-25  Ravi Pratap  <ravi@ximian.com>
17170
17171         * expression.cs (Binary::ResolveOperator): Had forgottten to set 
17172         the type of the expression to the return type of the method if
17173         we have an overloaded operator match ! The regression tests pass again !
17174         (Unary::ResolveOperator): Ditto.
17175
17176         * expression.cs (Invocation::ConversionExists): Correct the member lookup
17177         to find "op_Implicit", not "implicit" ;-)
17178         (UserImplicitCast): New class to take care of user-defined implicit conversions.
17179         (ConvertImplicit, ForceConversion): Take TypeContainer argument
17180
17181         * everywhere : Correct calls to the above accordingly.
17182
17183         * expression.cs (UserImplicitCast::Resolve, ::Emit): Implement.
17184         (ConvertImplicit): Do user-defined conversion if it exists.
17185
17186 2001-09-24  Miguel de Icaza  <miguel@ximian.com>
17187
17188         * assign.cs: track location.
17189         (Resolve): Use implicit conversions on assignment.
17190
17191         * literal.cs: Oops.  Not good, Emit of short access values should
17192         pass (Bytes) or the wrong argument will be selected.
17193
17194         * expression.cs (Unary::Emit): Emit code for -expr.
17195
17196         (Unary::ResolveOperator): Handle `Substract' for non-constants
17197         (substract from zero from the non-constants).
17198         Deal with Doubles as well. 
17199
17200         (Expression::ConvertImplicitRequired): New routine that reports an
17201         error if no implicit conversion exists. 
17202
17203         (Invocation::OverloadResolve): Store the converted implicit
17204         expressions if we make them
17205
17206 2001-09-24  Ravi Pratap  <ravi@ximian.com>
17207
17208         * class.cs (ConstructorInitializer): Take a Location argument.
17209         (ConstructorBaseInitializer): Same here.
17210         (ConstructorThisInitializer): Same here.
17211
17212         * cs-parser.jay : Update all calls accordingly.
17213
17214         * expression.cs (Unary, Binary, New): Take location argument.
17215         Update accordingly everywhere.
17216
17217         * cs-parser.jay : Update all calls to the above to take a location
17218         argument.
17219
17220         * class.cs : Ditto.
17221
17222 2001-09-24  Ravi Pratap  <ravi@ximian.com>
17223
17224         * expression.cs (Invocation::BetterFunction): Take TypeContainer argument
17225         (Invocation::BetterConversion): Same here
17226         (Invocation::ConversionExists): Ditto.
17227
17228         (Invocation::ConversionExists): Implement.
17229
17230 2001-09-22  Ravi Pratap  <ravi@ximian.com>
17231
17232         * expression.cs (OverloadResolve): Improve some more to catch errors 1502 and 1503
17233         Also take an additional TypeContainer argument.
17234
17235         * All over : Pass in TypeContainer as argument to OverloadResolve.
17236
17237         * typemanager.cs (CSharpName): Update to check for the string type and return
17238         that too.
17239
17240         * expression.cs (Invocation::FullMethodDesc): New static method to return a string fully describing
17241         a given method.
17242
17243 2001-09-21  Ravi Pratap  <ravi@ximian.com>
17244
17245         * expression.cs (Invocation::OverloadResolve): Re-write to conform more to the spec.
17246         (Invocation::BetterFunction): Implement.
17247         (Invocation::BetterConversion): Implement.
17248         (Invocation::ConversionExists): Skeleton, no implementation yet.
17249
17250         Okay, things work fine !
17251
17252 2001-09-21  Miguel de Icaza  <miguel@ximian.com>
17253
17254         * typemanager.cs: declare and load enum_type, delegate_type and
17255         void_type. 
17256
17257         * expression.cs (Expression::Emit): Now emit returns a value that
17258         tells whether a value is left on the stack or not.  This strategy
17259         might be reveted tomorrow with a mechanism that would address
17260         multiple assignments.
17261         (Expression::report118): Utility routine to report mismatches on
17262         the ExprClass.
17263
17264         (Unary::Report23): Report impossible type/operator combination
17265         utility function.
17266
17267         (Unary::IsIncrementableNumber): Whether the type can be
17268         incremented or decremented with add.
17269         (Unary::ResolveOperator): Also allow enumerations to be bitwise
17270         complemented. 
17271         (Unary::ResolveOperator): Implement ++, !, ~,
17272
17273         (Invocation::Emit): Deal with new Emit convetion.
17274
17275         * All Expression derivatives: Updated their Emit method to return
17276         whether they leave values on the stack or not.
17277
17278         * codegen.cs (CodeGen::EmitStatement): Pop values left on the
17279         stack for expressions that are statements. 
17280
17281 2001-09-20  Miguel de Icaza  <miguel@ximian.com>
17282
17283         * expression.cs (LValue): New interface.  Must be implemented by
17284         LValue objects.
17285         (LocalVariableReference, ParameterReference, FieldExpr): Implement
17286         LValue interface.
17287
17288         * assign.cs (Assign::Emit, Assign::Resolve): Use new LValue
17289         interface for generating code, simplifies the code.
17290
17291 2001-09-20  Ravi Pratap  <ravi@ximian.com>
17292
17293         * expression.cs (everywhere): Comment out return statements in ::Resolve
17294         methods to avoid the warnings.
17295
17296 2001-09-20  Miguel de Icaza  <miguel@ximian.com>
17297
17298         * driver.cs (parse): Report error 2001 if we can not open the
17299         source file.
17300
17301         * expression.cs (SimpleName::ResolveSimpleName): Error if we can
17302         not resolve it.
17303
17304         * cs-parser.jay (QualifierIdentifier): Pass location to SimpleName
17305         object. 
17306
17307         * statement.cs (Block::EmitMeta): Reuse the count across all the variables,
17308         otherwise nested blocks end up with the same index.
17309
17310         * codegen.cs (CodeGen::EmitTopBlock): Pass initial sequence
17311
17312         * expression.cs:  Instead of having FIXMEs in the Resolve
17313         functions, throw exceptions so it is obvious that we are facing a
17314         bug. 
17315
17316         * cs-parser.jay (invocation_expression): Pass Location information.
17317
17318         * codegen.cs (CodeGen::Save, CodeGen::CodeGen, CodeGen::Basename):
17319         Use a basename for those routines because .NET does not like paths
17320         on them. 
17321
17322         * class.cs (TypeContainer::AddMethod): Do not call DefineName if the name was
17323         already defined.
17324
17325 2001-09-19  Miguel de Icaza  <miguel@ximian.com>
17326
17327         * typemanager.cs (TypeManager::CoreLookupType): A function to make sure that we
17328         are loading the correct data types (throws an exception if not).
17329         (TypeManager::InitCoreTypes): Use CoreLookupType
17330
17331         * expression.cs (Unary::ResolveOperator): return the child
17332         expression for expressions which are just +expr.
17333         (Unary::ResolveOperator): Return negative literals for -LITERAL
17334         expressions (otherwise they are Unary {Literal}).
17335         (Invocation::Badness): Take into account `Implicit constant
17336         expression conversions'.
17337
17338         * literal.cs (LongLiteral): Implement long literal class.
17339         (IntLiteral): export the `Value' of the intliteral. 
17340
17341 2001-09-19  Ravi Pratap  <ravi@ximian.com>
17342
17343         * expression.cs (Binary::Emit): Finally get the emission right ! Woo!
17344
17345         * class.cs (Operator::Define): Change the methodname prefix to 'op_' 
17346         instead of 'Operator'
17347
17348         * expression.cs (Binary::ResolveOperator): Update accordingly.
17349         (Unary::Operator): Change names to 'Add' and 'Subtract' instead 'Plus'
17350         and 'Minus'
17351
17352         * cs-parser.jay (unary_expression): Update to use the new names.
17353
17354         * gen-treedump.cs (GetUnary): Same here.
17355
17356         * expression.cs (Unary::Resolve): Implement.
17357         (Binary::ResolveOperator): Re-write bits to quietly continue if no overloaded 
17358         operators are found instead of making noise ;-)
17359         (Unary::ResolveOperator): New method to do precisely the same thing which
17360         Binary::ResolveOperator does for Binary expressions.
17361         (Unary.method, .Arguments): Add.
17362         (Unary::OperName): Implement.   
17363         (Unary::ForceConversion): Copy and Paste !
17364
17365         * class.cs (Operator::Define): Fix a small bug for the case when we have 
17366         a unary operator.
17367
17368         * expression.cs (Unary::Emit): Implement. Need to find the right Opcodes
17369         for the inbuilt operators. Only overloading works for now ;-)
17370
17371 2001-09-18  Miguel de Icaza  <miguel@ximian.com>
17372
17373         * expression.cs (CheckedExpr::Resolve, CheckedExpr::Emit,
17374         UnCheckedExpr::Resolve, UnCheckedExpr::Emit): Implement.
17375
17376         * expression.cs (This::Emit): Implement. 
17377         (This::Resolve): Implement.
17378         (TypeOf:Resolve): Implement.
17379         (Expression::ResolveSimpleName): Add an implicit this to instance
17380         field references. 
17381         (MemberAccess::Resolve): Deal with Parameters and Fields. 
17382         Bind instance variable to Field expressions.
17383         (FieldExpr::Instance): New field used to track the expression that
17384         represents the object instance.
17385         (FieldExpr::Resolve): Track potential errors from MemberLookup not
17386         binding 
17387         (FieldExpr::Emit): Implement.
17388
17389         * codegen.cs (EmitIf, EmitStatement, EmitBlock): Propagate whether
17390         the last instruction contains a return opcode to avoid generating
17391         the last `ret' instruction (this generates correct code, and it is
17392         nice to pass the peverify output).
17393
17394         * class.cs (TypeContainer::EmitFieldInitializers): Implement field
17395         initializer for static and instance variables.
17396         (Constructor::Emit): Allow initializer to be null in the case of
17397         static constructors.  Only emit initializer for instance
17398         constructors. 
17399
17400         (TypeContainer::FindMembers): Return a null array if there are no
17401         matches.
17402
17403         Also fix the code for the MemberTypes.Method branch, as it was not
17404         scanning that for operators (or tried to access null variables before).
17405
17406         * assign.cs (Assign::Emit): Handle instance and static fields. 
17407
17408         * TODO: Updated.
17409
17410         * driver.cs: Stop compilation if there are parse errors.
17411
17412         * cs-parser.jay (constructor_declaration): Provide default base
17413         initializer for non-static constructors.
17414         (constructor_declarator): Do not provide a default base
17415         initializers if none was specified.
17416         Catch the fact that constructors should not have parameters.
17417
17418         * class.cs: Do not emit parent class initializers for static
17419         constructors, that should be flagged as an error.
17420
17421 2001-09-18  Ravi Pratap  <ravi@ximian.com>
17422
17423         * class.cs (RegisterMethodBuilder): Remove : it's unnecessary.
17424         Move back code into TypeContainer::Populate.
17425
17426 2001-09-18  Ravi Pratap  <ravi@ximian.com>
17427
17428         * class.cs (TypeContainer::AddConstructor): Fix the check to
17429         compare against Name, not Basename. 
17430         (Operator::OpType): Change Plus and Minus to Add and Subtract.
17431
17432         * cs-parser.jay : Update accordingly.
17433
17434         * class.cs (TypeContainer::FindMembers): For the case where we are searching
17435         for methods, don't forget to look into the operators too.
17436         (RegisterMethodBuilder): Helper method to take care of this for
17437         methods, constructors and operators.
17438         (Operator::Define): Completely revamp.
17439         (Operator.OperatorMethod, MethodName): New fields.
17440         (TypeContainer::Populate): Move the registering of builders into
17441         RegisterMethodBuilder.
17442         (Operator::Emit): Re-write.
17443
17444         * expression.cs (Binary::Emit): Comment out code path to emit method
17445         invocation stuff for the case when we have a user defined operator. I am
17446         just not able to get it right !
17447
17448 2001-09-17  Miguel de Icaza  <miguel@ximian.com>
17449
17450         * expression.cs (Expression::OverloadResolve): Drop TypeContainer
17451         argument. 
17452
17453         (Expression::MemberLookup): Provide a version that allows to
17454         specify the MemberTypes and BindingFlags. 
17455
17456         * statement.cs (Block::GetVariableInfo): Forgot to recurse here,
17457         so it was not fetching variable information from outer blocks.
17458
17459         * modifiers.cs: (Modifiers::TypeAttr): Invert condition on
17460         Beforefieldinit as it was buggy.
17461
17462         * rootcontext.cs (::LookupInterfaceOrClass): Removed an Error -200
17463         that Ravi put here.  
17464
17465         * class.cs (Constructor::Emit): Only emit if block is not null.
17466         (TypeContainer::EmitDefaultConstructor): Removed routine, now we
17467         deal with this by semantically definining it as if the user had
17468         done it.
17469
17470         (TypeContainer::FindMembers): Removed ad-hoc hack to deal with
17471         constructors as we now "emit" them at a higher level.
17472
17473         (TypeContainer::DefineDefaultConstructor): Used to define the
17474         default constructors if none was provided.
17475
17476         (ConstructorInitializer): Add methods Resolve and Emit. 
17477
17478         * expression.cs: Cast to ConstructorInfo instead of MethodInfo
17479
17480 2001-09-17  Ravi Pratap  <ravi@ximian.com>
17481
17482         * class.cs (TypeContainer::EmitDefaultConstructor): Register
17483         the default constructor builder with our hashtable for methodbuilders
17484         to methodcores.
17485
17486         * expression.cs (Invocation::OverloadResolve): Add a check for pd == null
17487         and argument_count is 0 in which case we have a match.
17488         (Binary::ResolveOperator): More null checking and miscellaneous coding
17489         style cleanup.
17490
17491 2001-09-17  Ravi Pratap  <ravi@ximian.com>
17492
17493         * rootcontext.cs (IsNameSpace): Compare against null.
17494
17495         * everywhere : Correct spelling to 'Greater' and to 'Subtract'
17496
17497         * class.cs (Operator::OpType): Change names to match the ones in Binary::Operator
17498         and Unary::Operator.
17499
17500         * cs-parser.jay (operator_declaration, CheckBinaryOperator, CheckUnaryOperator): Update
17501         accordingly.
17502
17503         * expression.cs (Binary::method): New member to hold the MethodBase for the case when
17504         we have overloaded operators.
17505         (Binary::ResolveOperator): Implement the part which does the operator overload
17506         resolution.
17507
17508         * class.cs (Operator::Emit): Implement.
17509         (TypeContainer::Emit): Emit the operators we have too.
17510
17511         * expression.cs (Binary::Emit): Update to emit the appropriate code for
17512         the case when we have a user-defined operator.
17513
17514 2001-09-17  Miguel de Icaza  <miguel@ximian.com>
17515
17516         * rootcontext.cs: Fix bug: tree.Namespaces might be null.
17517
17518 2001-09-16  Ravi Pratap  <ravi@ximian.com>
17519
17520         * class.cs (EmitStaticFieldInitializers, EmitFieldInitializers): Make public.
17521         (TypeContainer::EmitConstructor): Remove and move code into Contructor::Emit.
17522         (Constructor::Emit): Implement.
17523         (EmitStaticFieldInitializers, EmitFieldInitializers): Ensure we return immediately
17524         if we have no work to do. 
17525         (TypeContainer::Emit): Pass in TypeContainer as argument to the constructor's 
17526         Emit method.
17527
17528         * interface.cs (Interface::InterfaceAttr): Re-write to be more correct and complete.
17529         (Interface::IsTopLevel): Add. Same as TypeContainer::IsTopLevel.
17530
17531         * class.cs (TypeContainer::IsTopLevel): Modify to use parent.Parent instead
17532         of parent.parent.
17533
17534 2001-09-15  Ravi Pratap  <ravi@ximian.com>
17535
17536         * tree.cs (Tree::namespaces): New hashtable to keep track of namespaces
17537         in the source.
17538         (Tree::RecordNamespace): Method to do what the name says ;-)
17539         (Tree::Namespaces): Property to get at the namespaces hashtable.
17540
17541         * cs-parser.jay (namespace_declaration): Call RecordNamespace to 
17542         keep track.
17543
17544         * rootcontext.cs (IsNamespace): Fixed it :-)
17545
17546 2001-09-14  Miguel de Icaza  <miguel@ximian.com>
17547
17548         * class.cs (TypeContainer::FindMembers): Add support for
17549         constructors. 
17550         (MethodCore): New class that encapsulates both the shared aspects
17551         of a Constructor and a Method.  
17552         (Method, Constructor): Factored pieces into MethodCore.
17553
17554         * driver.cs: Added --fatal which makes errors throw exceptions.
17555         Load System assembly as well as part of the standard library.
17556
17557         * report.cs: Allow throwing exceptions on errors for debugging.
17558
17559         * modifiers.cs: Do not use `parent', instead use the real type
17560         container to evaluate permission settings.
17561
17562         * class.cs: Put Ravi's patch back in.  He is right, and we will
17563         have to cope with the
17564
17565 2001-09-14  Ravi Pratap  <ravi@ximian.com>
17566
17567         * modifiers.cs (TypeAttr, MethodAttr, FieldAttr): Map protected internal to
17568         FamORAssem, not FamANDAssem.
17569
17570 2001-09-14  Miguel de Icaza  <miguel@ximian.com>
17571
17572         * driver.cs: Added --parse option that only parses its input files
17573         and terminates.
17574
17575         * class.cs: Reverted last change from Ravi to IsTopLevel.  That is
17576         incorrect.  IsTopLevel is not used to tell whether an object is
17577         root_types or not (that can be achieved by testing this ==
17578         root_types).  But to see if this is a top-level *class* (not
17579         necessarly our "toplevel" container). 
17580
17581 2001-09-14  Ravi Pratap  <ravi@ximian.com>
17582
17583         * enum.cs (Enum::Define): Modify to call the Lookup method on the
17584         parent instead of a direct call to GetType.
17585
17586 2001-09-14  Ravi Pratap  <ravi@ximian.com>
17587
17588         * class.cs (TypeContainer::TypeAttr): Remove property code and move it into
17589         Modifiers.TypeAttr. This should just be a call to that method.
17590
17591         * modifiers.cs (TypeAttr): Re-write and take an extra argument, the TypeContainer
17592         object so that we can determine if we are top-level or not.
17593
17594         * delegate.cs (Delegate::Define): Update call to TypeAttr method to pass in the 
17595         TypeContainer too.
17596
17597         * enum.cs (Enum::Define): Ditto.
17598
17599         * modifiers.cs (FieldAttr): Re-write.
17600
17601         * class.cs (TypeContainer::IsTopLevel): Change accessibility to public.
17602         (TypeContainer::HaveStaticConstructor): New property to provide access
17603         to precisely that info.
17604
17605         * modifiers.cs (MethodAttr): Re-write.
17606         (EventAttr): Remove altogether as there seems to be no ostensible use for it.
17607
17608         * class.cs (TypeContainer::IsTopLevel): Re-write. root_types doesn't seem to be the parent
17609         of top-level types as claimed.
17610
17611 2001-09-13  Miguel de Icaza  <miguel@ximian.com>
17612
17613         * expression.cs (MemberLookup): Fruitless attempt to lookup
17614         constructors.  Maybe I need to emit default constructors?  That
17615         might be it (currently .NET emits this for me automatically).
17616         (Invocation::OverloadResolve): Cope with Arguments == null.
17617         (Invocation::EmitArguments): new function, shared by the new
17618         constructor and us.
17619         (Invocation::Emit): Handle static and instance methods.  Emit
17620         proper call instruction for virtual or non-virtual invocations.
17621         (New::Emit): Implement.
17622         (New::Resolve): Implement.
17623         (MemberAccess:Resolve): Implement.
17624         (MethodGroupExpr::InstanceExpression): used conforming to the spec
17625         to track instances.
17626         (FieldExpr::Resolve): Set type.
17627
17628         * support.cs: Handle empty arguments.
17629                 
17630         * cs-parser.jay (CompositeLookup, QualifierIdentifier,
17631         SimpleLookup): Auxiliary routines to help parse a qualifier
17632         identifier.  
17633
17634         Update qualifier_identifier rule.
17635
17636         * codegen.cs: Removed debugging messages.
17637
17638         * class.cs: Make this a global thing, this acts just as a "key" to
17639         objects that we might have around.
17640
17641         (Populate): Only initialize method_builders_to_methods once.
17642
17643         * expression.cs (PropertyExpr): Initialize type from the
17644         PropertyType. 
17645
17646         * codegen.cs (EmitContext::EmitBoolExpression): Use propper
17647         Resolve pattern.  Attempt to implicitly convert value to boolean.
17648         Emit code.
17649
17650         * expression.cs: Set the type for the int32/int32 argument case.
17651         (Binary::ResolveOperator): Set the return type to boolean for
17652         comparission operators
17653
17654         * typemanager.cs: Remove debugging print code.
17655
17656         (Invocation::Resolve): resolve type.
17657
17658         * class.cs: Allocate a MemberInfo of the correct size, as the code
17659         elsewhere depends on the test to reflect the correct contents.
17660
17661         (Method::) Keep track of parameters, due to System.Reflection holes
17662
17663         (TypeContainer::Populate): Keep track of MethodBuilders to Method
17664         mapping here.
17665
17666         (TypeContainer::FindMembers): Use ArrayList and then copy an array
17667         of the exact size and return that.
17668
17669         (Class::LookupMethodByBuilder): New function that maps
17670         MethodBuilders to its methods.  Required to locate the information
17671         on methods because System.Reflection bit us again.
17672
17673         * support.cs: New file, contains an interface ParameterData and
17674         two implementations: ReflectionParameters and InternalParameters
17675         used to access Parameter information.  We will need to grow this
17676         as required.
17677
17678         * expression.cs (Invocation::GetParameterData): implement a cache
17679         and a wrapper around the ParameterData creation for methods. 
17680         (Invocation::OverloadResolve): Use new code.
17681
17682 2001-09-13  Ravi Pratap  <ravi@ximian.com>
17683
17684         * class.cs (TypeContainer::EmitField): Remove and move into 
17685         (Field::Define): here and modify accordingly.
17686         (Field.FieldBuilder): New member.
17687         (TypeContainer::Populate): Update accordingly.
17688         (TypeContainer::FindMembers): Implement.
17689
17690 2001-09-13  Miguel de Icaza  <miguel@ximian.com>
17691
17692         * statement.cs: (VariableInfo::VariableType): New field to be
17693         initialized with the full type once it is resolved. 
17694
17695 2001-09-12  Miguel de Icaza  <miguel@ximian.com>
17696
17697         * parameter.cs (GetParameterInfo): Use a type cache to compute
17698         things only once, and to reuse this information
17699
17700         * expression.cs (LocalVariableReference::Emit): Implement.
17701         (OpcodeCast::Emit): fix.
17702
17703         (ParameterReference::Resolve): Implement.
17704         (ParameterReference::Emit): Implement.
17705
17706         * cs-parser.jay: Fix bug introduced by Ravi, variable initializers
17707         that are expressions need to stay as Expressions.
17708
17709         * typemanager.cs (CSharpName): Returns the C# name of a type if
17710         possible. 
17711
17712         * expression.cs (Expression::ConvertImplicit): New function that
17713         implements implicit type conversions.
17714
17715         (Expression::ImplicitReferenceConversion): Implements implicit
17716         reference conversions.
17717
17718         (EmptyCast): New type for transparent casts.
17719
17720         (OpcodeCast): New type for casts of types that are performed with
17721         a sequence of bytecodes.
17722
17723         (BoxedCast): New type used for casting value types into reference
17724         types.  Emits a box opcode.
17725
17726         (Binary::DoNumericPromotions): Implements numeric promotions of
17727         and computation of the Binary::Type.
17728
17729         (Binary::EmitBranchable): Optimization.
17730
17731         (Binary::Emit): Implement code emission for expressions.
17732
17733         * typemanager.cs (TypeManager): Added two new core types: sbyte
17734         and byte.
17735
17736 2001-09-12  Ravi Pratap  <ravi@ximian.com>
17737
17738         * class.cs (TypeContainer::FindMembers): Method which does exactly
17739         what Type.FindMembers does, only we don't have to use reflection. No
17740         implementation yet.
17741
17742         * typemanager.cs (typecontainers): New hashtable to hold the corresponding
17743         typecontainer objects as we need to get at them.
17744         (TypeManager::AddUserType): Overload to take an extra argument, the TypeContainer.
17745
17746         * rootcontext.cs : Correspondingly modify called to AddUserType to pass the
17747         typecontainer object.
17748
17749         * expression.cs (MemberLookup): Modify signature to take a RootContext object instead
17750         of just a Report object.
17751
17752 2001-09-11  Ravi Pratap  <ravi@ximian.com>
17753
17754         * class.cs (Event::Define): Go back to using the prefixes "add_" and
17755         "remove_"
17756         (TypeContainer::Populate): Now define the delegates of the type too.
17757         (TypeContainer.Delegates): Property to access the list of delegates defined
17758         in the type.
17759
17760         * delegates.cs (Delegate::Define): Implement partially.
17761
17762         * modifiers.cs (TypeAttr): Handle more flags.
17763
17764 2001-09-11  Ravi Pratap  <ravi@ximian.com>
17765
17766         * class.cs (Indexer::Define): Fix for loop iteration condition to be just <
17767         and not <=
17768         (Operator::Define): Re-write logic to get types by using the LookupType method
17769         instead of blindly doing a Type.GetType ! How stupid can I get ;-) ?
17770         (Indexer::Define): Ditto.
17771         (Event::Define): Ditto.
17772         (Property::Define): Ditto.
17773
17774 2001-09-10  Ravi Pratap  <ravi@ximian.com>
17775
17776         * class.cs (TypeContainer::Populate): Now define operators too. 
17777         (TypeContainer.Operators): New property to access the list of operators
17778         in a type.
17779         (Operator.OperatorMethodBuilder): New member to hold the method builder
17780         for the operator we are defining.
17781         (Operator::Define): Implement.
17782
17783 2001-09-10  Ravi Pratap  <ravi@ximian.com>
17784
17785         * class.cs (Event::Define): Make the prefixes of the accessor methods
17786         addOn_ and removeOn_ 
17787
17788         * genericparser.cs (GenericParser::error): Overloaded method to handle the case
17789         of the location being passed in too. Ideally, this should go later since all
17790         error reporting should be done through the Report object.
17791
17792         * class.cs (TypeContainer.Indexers): New property to access the list of indexers.
17793         (Populate): Iterate thru the indexers we have and define them too.
17794         (Indexer.GetMethodBuilder, .SetMethodBuilder): New members to hold the method builders
17795         for the get and set accessors.
17796         (Indexer::Define): Implement.
17797
17798 2001-09-09  Miguel de Icaza  <miguel@ximian.com>
17799
17800         * expression.cs (Binary::Resolve): Beginning of it.  I scratched
17801         my previous implementation, did not work.
17802
17803         * typemanager.cs: Add a couple of missing types (the longs).
17804
17805         * literal.cs: Use TypeManager.bool_type instead of getting it.
17806
17807         * expression.cs (EventExpr): New kind of expressions.
17808         (Expressio::ExprClassFromMemberInfo): finish
17809
17810 2001-09-08  Miguel de Icaza  <miguel@ximian.com>
17811
17812         * assign.cs: Emit stores to static fields differently.
17813
17814 2001-09-08  Ravi Pratap  <ravi@ximian.com>
17815
17816         * Merge in changes and adjust code to tackle conflicts. Backed out my
17817         code in Assign::Resolve ;-) 
17818
17819 2001-09-08  Ravi Pratap  <ravi@ximian.com>
17820
17821         * cs-parser.jay (CheckAttributeTarget): Modify call to error to use
17822         instead Report.Error and also pass in the location.
17823         (CSharpParser::Lexer): New readonly property to return the reference
17824         to the Tokenizer object.
17825         (declare_local_variables): Use Report.Error with location instead of plain 
17826         old error.
17827         (CheckDef): Ditto.
17828
17829         * class.cs (Operator::CheckUnaryOperator): Move into cs-parser.jay.
17830         (Operator.CheckBinaryOperator): Ditto.
17831
17832         * cs-parser.jay (operator_declarator): Update accordingly.
17833
17834         * cs-parser.jay (CheckUnaryOperator): Modify to use Report.Error
17835         (CheckBinaryOperator): Same here.
17836
17837         * rootcontext.cs (LookupType): Add an extra lookup which simply does a lookup
17838         on the name without any prefixes of namespace names etc. This is because we
17839         already might have something already fully qualified like 
17840         'System.Console.WriteLine'
17841
17842         * assign.cs (Resolve): Begin implementation. Stuck ;-)
17843
17844 2001-09-07  Ravi Pratap  <ravi@ximian.com>
17845
17846         * cs-tokenizer.cs (location): Return a string which also contains
17847         the file name.
17848
17849         * expression.cs (ElementAccess): New class for expressions of the
17850         type 'element access.'
17851         (BaseAccess): New class for expressions of the type 'base access.'
17852         (CheckedExpr, UnCheckedExpr): New classes for Checked and Unchecked expressions
17853         respectively.
17854
17855         * cs-parser.jay (element_access): Implement action.
17856         (base_access): Implement actions.
17857         (checked_expression, unchecked_expression): Implement.
17858
17859         * cs-parser.jay (local_variable_type): Correct and implement.
17860         (type_suffixes, type_suffix_list, type_suffix): Implement actions.
17861
17862         * cs-tokenizer.cs (real_type_suffix): Comment out the extra getchar.
17863
17864         * cs-parser.jay (rank_specifiers): Remove space while concatenating the type's
17865         name and the specifiers.
17866
17867         * interface.cs (InterfaceAttr): New property to return the corresponding TypeAttributes
17868
17869         * rootcontext.cs (CreateInterface): Use the InterfaceAttr property instead of 
17870         making them all public ;-)
17871
17872         * cs-parser.jay (error): Remove entirely as we have an implementation in the base
17873         class anyways.
17874
17875 2001-09-07  Miguel de Icaza  <miguel@ximian.com>
17876
17877         * expression.cs (ExprClassFromMemberInfo): Return FieldExpr and
17878         PropertyExprs.
17879         (FieldExpr, PropertyExprs): New resolved expressions.
17880         (SimpleName::MemberStaticCheck): Perform static checks for access
17881         to non-static fields on static methods. Maybe this should be
17882         generalized for MemberAccesses. 
17883         (SimpleName::ResolveSimpleName): More work on simple name
17884         resolution. 
17885
17886         * cs-parser.jay (primary_expression/qualified_identifier): track
17887         the parameter index.
17888
17889         * codegen.cs (CodeGen::Save): Catch save exception, report error.
17890         (EmitContext::EmitBoolExpression): Chain to expression generation
17891         instead of temporary hack.
17892         (::EmitStatementExpression): Put generic expression code generation.
17893
17894         * assign.cs (Assign::Emit): Implement variable assignments to
17895         local variables, parameters and fields.
17896
17897 2001-09-06  Miguel de Icaza  <miguel@ximian.com>
17898
17899         * statement.cs (Block::GetVariableInfo): New method, returns the
17900         VariableInfo for a variable name in a block.
17901         (Block::GetVariableType): Implement in terms of GetVariableInfo
17902
17903         * literal.cs (IntLiteral::Emit, FloatLiteral::Emit,
17904         DoubleLiteral::Emit, CharLiteral::Emit, BoolLiteral::Emit): Implement
17905
17906 2001-09-06  Ravi Pratap  <ravi@ximian.com>
17907
17908         * cs-parser.jay (operator_declaration): Continue on my quest : update
17909         to take attributes argument.
17910         (event_declaration): Ditto.
17911         (enum_declaration): Ditto.
17912         (indexer_declaration): Ditto.
17913
17914         * class.cs (Operator::Operator): Update constructor accordingly.
17915         (Event::Event): Ditto.
17916
17917         * delegate.cs (Delegate::Delegate): Same here.
17918
17919         * enum.cs (Enum::Enum): Same here.
17920
17921 2001-09-05  Ravi Pratap  <ravi@ximian.com>
17922
17923         * cs-parser.jay (CheckAttributeTarget): Update to use the right error number.
17924
17925         * ../tests/cs0658.cs : New file to demonstrate error 0658.
17926
17927         * attribute.cs (Attributes): New class to encapsulate all attributes which were
17928         being passed around as an arraylist.
17929         (Attributes::AddAttribute): Method to add attribute sections.
17930
17931         * cs-parser.jay (opt_attributes): Modify actions to use the new Attributes class.
17932         (struct_declaration): Update accordingly.
17933         (constant_declaration): Update.
17934         (field_declaration): Update.
17935         (method_header): Update.
17936         (fixed_parameter): Update.
17937         (parameter_array): Ditto.
17938         (property_declaration): Ditto.
17939         (destructor_declaration): Ditto.
17940
17941         * class.cs (Struct::Struct): Update constructors accordingly.
17942         (Class::Class): Ditto.
17943         (Field::Field): Ditto.
17944         (Method::Method): Ditto.
17945         (Property::Property): Ditto.
17946         (TypeContainer::OptAttribute): update property's return type.
17947
17948         * interface.cs (Interface.opt_attributes): New member.
17949         (Interface::Interface): Update to take the extra Attributes argument.
17950
17951         * parameter.cs (Parameter::Parameter): Ditto.
17952
17953         * constant.cs (Constant::Constant): Ditto.
17954
17955         * interface.cs (InterfaceMemberBase): New OptAttributes field.
17956         (InterfaceMemberBase::InterfaceMemberBase): Update constructor to take 
17957         the attributes as a parameter.
17958         (InterfaceProperty): Update constructor call.
17959         (InterfaceEvent): Ditto.
17960         (InterfaceMethod): Ditto.
17961         (InterfaceIndexer): Ditto.
17962
17963         * cs-parser.jay (interface_indexer_declaration): Update call to constructor to 
17964         pass the attributes too.
17965         (interface_event_declaration): Ditto.
17966         (interface_property_declaration): Ditto.
17967         (interface_method_declaration): Ditto.
17968         (interface_declaration): Ditto.
17969
17970 2001-09-05  Miguel de Icaza  <miguel@ximian.com>
17971
17972         * class.cs (Method::Define): Track the "static Main" definition to
17973         create an entry point. 
17974
17975         * rootcontext.cs (RootContext::EntryPoint): MethodInfo that holds the
17976         EntryPoint if we find it. 
17977
17978         * codegen.cs (EmitContext::EmitInvocation): Emit invocations.
17979         (EmitContext::ig): Make this variable public.
17980
17981         * driver.cs: Make the default output file be the first file name
17982         with the .exe extension.  
17983
17984         Detect empty compilations
17985
17986         Handle various kinds of output targets.  Handle --target and
17987         rename -t to --dumper.
17988
17989         * expression.cs, literal.cs, assign.cs, constant.cs: All `Resolve'
17990         methods inherited from Expression return now an Expression.  This
17991         will is used during the tree rewriting as we resolve them during
17992         semantic analysis.
17993
17994         (Expression::MemberLookup): Implements the MemberLookup (7.3) from
17995         the spec.  Missing entirely is the information about
17996         accessability of elements of it.
17997
17998         (Expression::ExprClassFromMemberInfo): New constructor for
17999         Expressions that creates a fully initialized Expression based on
18000         a MemberInfo that is one of Eventinfo, FieldINfo, PropertyInfo or
18001         a Type.
18002
18003         (Invocation::Resolve): Begin implementing resolution of invocations.
18004
18005         * literal.cs (StringLiteral):  Implement Emit.
18006
18007 2001-09-05  Ravi Pratap  <ravi@ximian.com>
18008
18009         * cs-parser.jay (error): Add new modifier because we are hiding an inherited
18010         member.
18011
18012 2001-09-04  Ravi Pratap  <ravi@ximian.com>
18013
18014         * cs-parser.jay (attribute_arguments): Implement actions.
18015         (attribute): Fix bug in production. Implement action.
18016         (attribute_list): Implement.
18017         (attribute_target): Implement.
18018         (attribute_target_specifier, opt_target_specifier): Implement
18019         (CheckAttributeTarget): New method to check if the attribute target
18020         is valid.
18021         (attribute_section): Implement.
18022         (opt_attributes): Implement.
18023
18024         * attribute.cs : New file to handle attributes.
18025         (Attribute): Class to hold attribute info.
18026
18027         * cs-parser.jay (opt_attribute_target_specifier): Remove production
18028         (attribute_section): Modify production to use 2 different rules to 
18029         achieve the same thing. 1 s/r conflict down !
18030         Clean out commented, useless, non-reducing dimension_separator rules.
18031
18032         * class.cs (TypeContainer.attributes): New member to hold list
18033         of attributes for a type.
18034         (Struct::Struct): Modify to take one more argument, the attribute list.
18035         (Class::Class): Ditto.
18036         (Field::Field): Ditto.
18037         (Method::Method): Ditto.
18038         (Property::Property): Ditto.
18039
18040         * cs-parser.jay (struct_declaration): Update constructor call to
18041         pass in the attributes too.
18042         (class_declaration): Ditto.
18043         (constant_declaration): Ditto.
18044         (field_declaration): Ditto.
18045         (method_header): Ditto.
18046         (fixed_parameter): Ditto.
18047         (parameter_array): Ditto.
18048         (property_declaration): Ditto.
18049
18050         * constant.cs (Constant::Constant): Update constructor similarly.
18051         Use System.Collections.
18052
18053         * parameter.cs (Parameter::Parameter): Update as above.
18054
18055 2001-09-02  Ravi Pratap  <ravi@ximian.com>
18056
18057         * class.cs (TypeContainer::AddDelegate): New method to add a delegate.
18058         (TypeContainer.delegates): New member to hold list of delegates.
18059
18060         * cs-parser.jay (delegate_declaration): Implement the action correctly 
18061         this time as I seem to be on crack ;-)
18062
18063 2001-09-02  Miguel de Icaza  <miguel@ximian.com>
18064
18065         * rootcontext.cs (RootContext::IsNamespace): new function, used to
18066         tell whether an identifier represents a namespace.
18067
18068         * expression.cs (NamespaceExpr): A namespace expression, used only
18069         temporarly during expression resolution.
18070         (Expression::ResolveSimpleName, ::ResolvePrimary, ::ResolveName):
18071         utility functions to resolve names on expressions.
18072
18073 2001-09-01  Miguel de Icaza  <miguel@ximian.com>
18074
18075         * codegen.cs: Add hook for StatementExpressions. 
18076
18077         * class.cs: Fix inverted test for static flag in methods.
18078
18079 2001-09-02  Ravi Pratap  <ravi@ximian.com>
18080
18081         * class.cs (Operator::CheckUnaryOperator): Correct error number used
18082         to make it coincide with MS' number.
18083         (Operator::CheckBinaryOperator): Ditto.
18084
18085         * ../errors/errors.txt : Remove error numbers added earlier.
18086
18087         * ../errors/cs1019.cs : Test case for error # 1019
18088
18089         * ../errros/cs1020.cs : Test case for error # 1020
18090
18091         * cs-parser.jay : Clean out commented cruft.
18092         (dimension_separators, dimension_separator): Comment out. Ostensibly not
18093         used anywhere - non-reducing rule.
18094         (namespace_declarations): Non-reducing rule - comment out.
18095
18096         * enum.cs (Enum::AddEnum): Rename to AddEnumMember as I was getting confused
18097         with TypeContainer::AddEnum.
18098
18099         * delegate.cs : New file for delegate handling classes.
18100         (Delegate): Class for declaring delegates.
18101
18102         * makefile : Update.
18103
18104         * cs-parser.jay (delegate_declaration): Implement.
18105
18106 2001-09-01  Ravi Pratap  <ravi@che.iitm.ac.in>
18107
18108         * class.cs (Event::Define): Implement.
18109         (Event.EventBuilder): New member.
18110
18111         * class.cs (TypeContainer::Populate): Update to define all enums and events
18112         we have.
18113         (Events): New property for the events arraylist we hold. Shouldn't we move to using
18114         readonly fields for all these cases ?
18115
18116 2001-08-31  Ravi Pratap  <ravi@che.iitm.ac.in>
18117
18118         * class.cs (Property): Revamp to use the convention of making fields readonly.
18119         Accordingly modify code elsewhere.
18120
18121         * class.cs : Apply patch from Mr. Mandar <go_mono@hotmail.com> for implementing
18122         the Define method of the Property class.
18123
18124         * class.cs : Clean up applied patch and update references to variables etc. Fix 
18125         trivial bug.
18126         (TypeContainer::Populate): Update to define all the properties we have. Also
18127         define all enumerations.
18128
18129         * enum.cs (Define): Implement.
18130
18131 2001-08-31  Ravi Pratap  <ravi@che.iitm.ac.in>
18132
18133         * cs-parser.jay (overloadable_operator): The semantic value is an
18134         enum of the Operator class.
18135         (operator_declarator): Implement actions.
18136         (operator_declaration): Implement.
18137
18138         * class.cs (Operator::CheckUnaryOperator): New static method to help in checking
18139         validity of definitions.
18140         (Operator::CheckBinaryOperator): Static method to check for binary operators
18141         (TypeContainer::AddOperator): New method to add an operator to a type.
18142
18143         * cs-parser.jay (indexer_declaration): Added line to actually call the
18144         AddIndexer method so it gets added ;-)
18145
18146         * ../errors/errors.txt : Update to include new error numbers. Are these numbers 
18147         already taken care of by the MS compiler ?  
18148
18149 2001-08-29  Ravi Pratap  <ravi@che.iitm.ac.in>
18150
18151         * class.cs (Operator): New class for operator declarations.
18152         (Operator::OpType): Enum for the various operators.
18153
18154 2001-08-29  Ravi Pratap  <ravi@che.iitm.ac.in>
18155
18156         * class.cs (TypeContainer::AddIndexer): Remove FIXME comment. We
18157         ostensibly handle this in semantic analysis.
18158
18159         * cs-parser.jay (general_catch_clause): Comment out
18160         (specific_catch_clauses, specific_catch_clause): Ditto.
18161         (opt_general_catch_clause, opt_specific_catch_clauses): Ditto
18162         (catch_args, opt_catch_args): New productions.
18163         (catch_clause): Rewrite to use the new productions above
18164         (catch_clauses): Modify accordingly.
18165         (opt_catch_clauses): New production to use in try_statement
18166         (try_statement): Revamp. Basically, we get rid of one unnecessary rule
18167         and re-write the code in the actions to extract the specific and
18168         general catch clauses by being a little smart ;-)
18169
18170         * ../tests/try.cs : Fix. It's not 'finalize' my friend, it's 'finally' !
18171         Hooray, try and catch statements parse fine !
18172
18173 2001-08-28  Ravi Pratap  <ravi@che.iitm.ac.in>
18174
18175         * statement.cs (Block::GetVariableType): Fix logic to extract the type
18176         string from the hashtable of variables.
18177
18178         * cs-parser.jay (event_accessor_declarations): Trivial fix. Man, how did
18179         I end up making that mistake ;-)
18180         (catch_clauses): Fixed gross error which made Key and Value of the 
18181         DictionaryEntry the same : $1 !!
18182
18183 2001-08-28  Ravi Pratap  <ravi@che.iitm.ac.in>
18184
18185         * cs-tokenizer.cs (initTokens): Add keywords 'add' and 'remove'
18186
18187         * cs-parser.jay (event_declaration): Correct to remove the semicolon
18188         when the add and remove accessors are specified. 
18189
18190 2001-08-28  Ravi Pratap  <ravi@che.iitm.ac.in>
18191
18192         * cs-parser.jay (IndexerDeclaration): New helper class to hold
18193         information about indexer_declarator.
18194         (indexer_declarator): Implement actions.
18195         (parsing_indexer): New local boolean used to keep track of whether
18196         we are parsing indexers or properties. This is necessary because 
18197         implicit_parameters come into picture even for the get accessor in the 
18198         case of an indexer.
18199         (get_accessor_declaration, set_accessor_declaration): Correspondingly modified.
18200
18201         * class.cs (Indexer): New class for indexer declarations.
18202         (TypeContainer::AddIndexer): New method to add an indexer to a type.
18203         (TypeContainer::indexers): New member to hold list of indexers for the
18204         type.
18205
18206 2001-08-27  Ravi Pratap  <ravi@che.iitm.ac.in>
18207
18208         * cs-parser.jay (add_accessor_declaration): Implement action.
18209         (remove_accessor_declaration): Implement action.
18210         (event_accessors_declaration): Implement
18211         (variable_declarators): swap statements for first rule - trivial.
18212
18213         * class.cs (Event): New class to hold information about event
18214         declarations.
18215         (TypeContainer::AddEvent): New method to add an event to a type
18216         (TypeContainer::events): New member to hold list of events.
18217
18218         * cs-parser.jay (event_declaration): Implement actions.
18219
18220 2001-08-27  Ravi Pratap  <ravi@che.iitm.ac.in>
18221
18222         * cs-parser.jay (dim_separators): Implement. Make it a string
18223         concatenating all the commas together, just as they appear.
18224         (opt_dim_separators): Modify accordingly
18225         (rank_specifiers): Update accordingly. Basically do the same
18226         thing - instead, collect the brackets here.
18227         (opt_rank_sepcifiers): Modify accordingly.
18228         (array_type): Modify to actually return the complete type string
18229         instead of ignoring the rank_specifiers.
18230         (expression_list): Implement to collect the expressions
18231         (variable_initializer): Implement. We make it a list of expressions
18232         essentially so that we can handle the array_initializer case neatly too.
18233         (variable_initializer_list): Implement.
18234         (array_initializer): Make it a list of variable_initializers
18235         (opt_array_initializer): Modify accordingly.
18236
18237         * expression.cs (New::NType): Add enumeration to help us
18238         keep track of whether we have an object/delegate creation
18239         or an array creation.
18240         (New:NewType, New::Rank, New::Indices, New::Initializers): New
18241         members to hold data about array creation.
18242         (New:New): Modify to update NewType
18243         (New:New): New Overloaded contructor for the array creation
18244         case.
18245
18246         * cs-parser.jay (array_creation_expression): Implement to call
18247         the overloaded New constructor.
18248
18249 2001-08-26  Ravi Pratap  <ravi@che.iitm.ac.in>
18250
18251         * class.cs (TypeContainer::Constructors): Return member
18252         constructors instead of returning null.
18253
18254 2001-08-26  Miguel de Icaza  <miguel@ximian.com>
18255
18256         * typemanager.cs (InitCoreTypes): Initialize the various core
18257         types after we have populated the type manager with the user
18258         defined types (this distinction will be important later while
18259         compiling corlib.dll)
18260
18261         * expression.cs, literal.cs, assign.cs, constant.cs: Started work
18262         on Expression Classification.  Now all expressions have a method
18263         `Resolve' and a method `Emit'.
18264
18265         * codegen.cs, cs-parser.jay: Fixed the bug that stopped code
18266         generation from working.     Also add some temporary debugging
18267         code. 
18268
18269 2001-08-24  Miguel de Icaza  <miguel@ximian.com>
18270
18271         * codegen.cs: Lots of code generation pieces.  This is only the
18272         beginning, will continue tomorrow with more touches of polish.  We
18273         handle the fundamentals of if, while, do, for, return.  Others are
18274         trickier and I need to start working on invocations soon.
18275
18276         * gen-treedump.cs: Bug fix, use s.Increment here instead of
18277         s.InitStatement. 
18278
18279         * codegen.cs (EmitContext): New struct, used during code
18280         emission to keep a context.   Most of the code generation will be
18281         here. 
18282
18283         * cs-parser.jay: Add embedded blocks to the list of statements of
18284         this block.  So code generation proceeds in a top down fashion.
18285
18286 2001-08-23  Miguel de Icaza  <miguel@ximian.com>
18287
18288         * statement.cs: Add support for multiple child blocks.
18289
18290 2001-08-22  Miguel de Icaza  <miguel@ximian.com>
18291
18292         * codegen.cs (EmitCode): New function, will emit the code for a
18293         Block of code given a TypeContainer and its ILGenerator. 
18294
18295         * statement.cs (Block): Standard public readonly optimization.
18296         (Block::Block constructors): Link children. 
18297         (Block::Child): Child Linker.
18298         (Block::EmitVariables): Emits IL variable declarations.
18299
18300         * class.cs: Drop support for MethodGroups here, delay until
18301         Semantic Analysis.
18302         (Method::): Applied the same simplification that I did before, and
18303         move from Properties to public readonly fields.
18304         (Method::ParameterTypes): Returns the parameter types for the
18305         function, and implements a cache that will be useful later when I
18306         do error checking and the semantic analysis on the methods is
18307         performed.
18308         (Constructor::GetCallingConvention): Renamed from CallingConvetion
18309         and made a method, optional argument tells whether this is a class
18310         or a structure to apply the `has-this' bit.
18311         (Method::GetCallingConvention): Implement, returns the calling
18312         convention. 
18313         (Method::Define): Defines the type, a second pass is performed
18314         later to populate the methods.
18315
18316         (Constructor::ParameterTypes): implement a cache similar to the
18317         one on Method::ParameterTypes, useful later when we do semantic
18318         analysis. 
18319
18320         (TypeContainer::EmitMethod):  New method.  Emits methods.
18321
18322         * expression.cs: Removed MethodGroup class from here.
18323
18324         * parameter.cs (Parameters::GetCallingConvention): new method.
18325
18326 2001-08-21  Miguel de Icaza  <miguel@ximian.com>
18327
18328         * class.cs (TypeContainer::Populate): Drop RootContext from the
18329         argument. 
18330
18331         (Constructor::CallingConvention): Returns the calling convention.
18332         (Constructor::ParameterTypes): Returns the constructor parameter
18333         types. 
18334
18335         (TypeContainer::AddConstructor): Keep track of default constructor
18336         and the default static constructor.
18337
18338         (Constructor::) Another class that starts using `public readonly'
18339         instead of properties. 
18340
18341         (Constructor::IsDefault): Whether this is a default constructor. 
18342
18343         (Field::) use readonly public fields instead of properties also.
18344
18345         (TypeContainer::TypeAttr, TypeContainer::AddConstructor): Keep
18346         track of static constructors;  If none is used, turn on
18347         BeforeFieldInit in the TypeAttributes. 
18348
18349         * cs-parser.jay (opt_argument_list): now the return can be null
18350         for the cases where there are no arguments. 
18351
18352         (constructor_declarator): If there is no implicit `base' or
18353         `this', then invoke the default parent constructor. 
18354
18355         * modifiers.cs (MethodAttr): New static function maps a set of
18356         modifiers flags into a MethodAttributes enum
18357         (FieldAttr): renamed from `Map'.  So now we have FieldAttr,
18358         MethodAttr, TypeAttr to represent the various mappings where the
18359         modifiers are used.
18360         (FieldAttr): Map also `readonly' to `FieldAttributes.InitOnly'  
18361
18362 2001-08-19  Miguel de Icaza  <miguel@ximian.com>
18363
18364         * parameter.cs (GetParameterInfo): Fix bug where there would be no
18365         method arguments.
18366
18367         * interface.cs (PopulateIndexer): Implemented the code generator
18368         for interface indexers.
18369
18370 2001-08-17  Miguel de Icaza  <miguel@ximian.com>
18371
18372         * interface.cs (InterfaceMemberBase): Now we track the new status
18373         here.  
18374
18375         (PopulateProperty): Implement property population.  Woohoo!  Got
18376         Methods and Properties going today. 
18377
18378         Removed all the properties for interfaces, and replaced them with
18379         `public readonly' fields. 
18380
18381 2001-08-16  Miguel de Icaza  <miguel@ximian.com>
18382
18383         * interface.cs (AddEvent, AddMethod, AddIndexer, AddProperty):
18384         initialize their hashtables/arraylists only when they are needed
18385         instead of doing this always.
18386
18387         * parameter.cs: Handle refs and out parameters.
18388
18389         * cs-parser.jay: Use an ArrayList to construct the arguments
18390         instead of the ParameterCollection, and then cast that to a
18391         Parameter[] array.
18392
18393         * parameter.cs: Drop the use of ParameterCollection and use
18394         instead arrays of Parameters.
18395
18396         (GetParameterInfo): Use the Type, not the Name when resolving
18397         types. 
18398
18399 2001-08-13  Miguel de Icaza  <miguel@ximian.com>
18400
18401         * parameter.cs: Eliminate the properties Name, Type and ModFlags,
18402         and instead use public readonly fields.
18403
18404         * class.cs: Put back walking code for type containers.
18405
18406 2001-08-11  Miguel de Icaza  <miguel@ximian.com>
18407
18408         * class.cs (MakeConstant): Code to define constants.
18409
18410         * rootcontext.cs (LookupType): New function.  Used to locate types 
18411
18412
18413 2001-08-08  Miguel de Icaza  <miguel@ximian.com>
18414
18415         * rootcontext.cs: OH MY!  My trick works!   It is amazing how nice
18416         this System.Reflection code is.  Kudos to Microsoft
18417
18418         * typemanager.cs: Implement a type cache and avoid loading all
18419         types at boot time.  Wrap in LookupType the internals.  This made
18420         the compiler so much faster.  Wow.  I rule!
18421
18422         * driver.cs: Make sure we always load mscorlib first (for
18423         debugging purposes, nothing really important).
18424
18425         * Renamespaced things that were on `CSC' to `CIR'.  Maybe I should
18426         have moved to `CSC' rather than `CIR'.  Oh man!  The confussion!  
18427
18428         * rootcontext.cs: Lookup types on their namespace;  Lookup types
18429         on namespaces that have been imported using the `using' keyword.
18430
18431         * class.cs (TypeContainer::TypeAttr): Virtualize.
18432         (Class::TypeAttr): Return attributes suitable for this bad boy.
18433         (Struct::TypeAttr): ditto.
18434         Handle nested classes.
18435         (TypeContainer::) Remove all the type visiting code, it is now
18436         replaced with the rootcontext.cs code
18437
18438         * rootcontext.cs (GetClassBases): Added support for structs. 
18439
18440 2001-08-06  Miguel de Icaza  <miguel@ximian.com>
18441
18442         * interface.cs, statement.cs, class.cs, parameter.cs,
18443         rootcontext.cs, gen-treedump.cs, enum.cs, cs-parse.jay:
18444         Drop use of TypeRefs, and use strings instead.
18445
18446 2001-08-04  Miguel de Icaza  <miguel@ximian.com>
18447
18448         * rootcontext.cs: 
18449
18450         * class.cs (Struct::Struct): set the SEALED flags after
18451         checking the modifiers.
18452         (TypeContainer::TypeAttr): new property, returns the
18453         TypeAttributes for a class.  
18454
18455         * cs-parser.jay (type_list): Oops, list production was creating a
18456         new list of base types.
18457
18458         * rootcontext.cs (StdLib): New property.
18459         (GetInterfaceTypeByName): returns an interface by type name, and
18460         encapsulates error handling here.
18461         (GetInterfaces): simplified.
18462         (ResolveTree): Encapsulated all the tree resolution here.
18463         (CreateClass, GetClassBases, GetInterfaceOrClass): Create class
18464         types. 
18465
18466         * driver.cs: Add support for --nostdlib, to avoid loading the
18467         default assemblies.
18468         (Main): Do not put tree resolution here. 
18469
18470         * rootcontext.cs: Beginning of the class resolution.
18471
18472 2001-08-03  Miguel de Icaza  <miguel@ximian.com>
18473
18474         * rootcontext.cs: Provide better error reporting. 
18475
18476         * cs-parser.jay (interface_base): set our $$ to be interfaces.
18477
18478         * rootcontext.cs (CreateInterface): Handle the case where there
18479         are no parent interfaces.
18480
18481         (CloseTypes): Routine to flush types at the end.
18482         (CreateInterface): Track types.
18483         (GetInterfaces): Returns an array of Types from the list of
18484         defined interfaces.
18485
18486         * typemanager.c (AddUserType): Mechanism to track user types (puts
18487         the type on the global type hash, and allows us to close it at the
18488         end). 
18489
18490 2001-08-02  Miguel de Icaza  <miguel@ximian.com>
18491
18492         * tree.cs: Removed RecordType, added RecordClass, RecordStruct and
18493         RecordInterface instead.
18494
18495         * cs-parser.jay: Updated to reflect changes above.
18496
18497         * decl.cs (Definition): Keep track of the TypeBuilder type that
18498         represents this type here.  Not sure we will use it in the long
18499         run, but wont hurt for now.
18500
18501         * driver.cs: Smaller changes to accomodate the new code.
18502
18503         Call ResolveInterfaceBases, Call ResolveClassBases, Save assembly
18504         when done. 
18505
18506         * rootcontext.cs (CreateInterface):  New method, used to create
18507         the System.TypeBuilder type for interfaces.
18508         (ResolveInterfaces): new entry point to resolve the interface
18509         hierarchy. 
18510         (CodeGen): Property, used to keep track of the code generator.
18511
18512 2001-07-26  Miguel de Icaza  <miguel@ximian.com>
18513
18514         * cs-parser.jay: Add a second production for delegate_declaration
18515         with `VOID'.
18516
18517         (enum_body): Put an opt_comma here instead of putting it on
18518         enum_body or enum_member_declarations so we can handle trailing
18519         commas on enumeration members.  Gets rid of a shift/reduce.
18520
18521         (type_list): Need a COMMA in the middle.
18522
18523         (indexer_declaration): Tell tokenizer to recognize get/set
18524
18525         * Remove old targets.
18526
18527         * Re-add the parser target.
18528
18529 2001-07-13  Simon Cozens <simon@simon-cozens.org>
18530
18531         * cs-parser.jay: Add precendence rules for a number of operators
18532         ot reduce the number of shift/reduce conflicts in the grammar.
18533
18534 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
18535
18536         * tree.cs: moved IGenerator interface and renamed it to ITreeDump
18537         and put it here.
18538
18539         Get rid of old crufty code.
18540
18541         * rootcontext.cs: Use this to keep track of the parsed
18542         representation and the defined types available to the program. 
18543
18544         * gen-treedump.cs: adjust for new convention.
18545
18546         * type.cs: Split out the type manager, and the assembly builder
18547         from here. 
18548
18549         * typemanager.cs: the type manager will live here now.
18550
18551         * cil-codegen.cs: And the code generator here. 
18552
18553 2001-07-14  Sean MacIsaac  <macisaac@ximian.com>
18554
18555         * makefile: Fixed up for easy making.
18556
18557 2001-07-13  Simon Cozens <simon@simon-cozens.org>
18558
18559         * cs-parser.jay (rank_specifier): Remove a conflict by reordering
18560         the 
18561
18562         (unary_expression): Expand pre_increment_expression and
18563         post_decrement_expression to reduce a shift/reduce.
18564
18565 2001-07-11  Simon Cozens
18566
18567         * cs-tokenizer.cs: Hex numbers should begin with a 0.
18568
18569         Improve allow_keyword_as_indent name.
18570
18571 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
18572
18573         * Adjustments for Beta2. 
18574
18575 2001-06-13  Miguel de Icaza  <miguel@ximian.com>
18576
18577         * decl.cs: Added `Define' abstract method.
18578         (InTransit): new property, used to catch recursive definitions. 
18579
18580         * interface.cs: Implement `Define'. 
18581
18582         * modifiers.cs: Map Modifiers.constants to
18583         System.Reflection.TypeAttribute flags.
18584
18585         * class.cs: Keep track of types and user-defined types.
18586         (BuilderInit): New method for creating an assembly
18587         (ResolveType): New function to launch the resolution process, only
18588         used by interfaces for now.
18589
18590         * cs-parser.jay: Keep track of Classes, Structs and Interfaces
18591         that are inserted into the name space. 
18592
18593 2001-06-08  Miguel de Icaza  <miguel@ximian.com>
18594
18595         * ARGH.  I have screwed up my tree so many times due to the use of
18596         rsync rather than using CVS.  Going to fix this at once. 
18597
18598         * driver.cs: Objetify driver.  Load assemblies, use assemblies to
18599         load types.
18600
18601 2001-06-07  Miguel de Icaza  <miguel@ximian.com>
18602
18603         * Experiment successful: Use System.Type rather that our own
18604         version of Type.  
18605
18606 2001-05-25  Miguel de Icaza  <miguel@ximian.com>
18607
18608         * cs-parser.jay: Removed nsAliases from here.
18609
18610         Use new namespaces, handle `using XXX;' 
18611
18612         * namespace.cs: Reimplemented namespace handling, use a recursive
18613         definition of the class.  Now we can keep track of using clauses
18614         and catch invalid using clauses.
18615
18616 2001-05-24  Miguel de Icaza  <miguel@ximian.com>
18617
18618         * gen-treedump.cs: Adapted for all the renaming.
18619
18620         * expression.cs (Expression): this class now has a Type property
18621         which returns an expression Type.
18622
18623         (Probe::, New::, TypeOf::, SizeOf::, Constant::): renamed from
18624         `Type', as this has a different meaning now in the base
18625
18626 2001-05-22  Miguel de Icaza  <miguel@ximian.com>
18627
18628         * interface.cs, class.cs: Removed from all the sources the
18629         references to signature computation, as we can not do method
18630         signature computation during the parsing time, as we are not
18631         trying to solve at that point distinguishing:
18632
18633         class X {
18634                 void a (Blah x) {}
18635                 void a (NS.Blah x) {}
18636         }
18637
18638         Which depending on the context might be valid or not, as we do not
18639         know if Blah is the same thing as NS.Blah at that point.
18640
18641         * Redid everything so the code uses TypeRefs now instead of
18642         Types.  TypeRefs are just temporary type placeholders, that need
18643         to be resolved.  They initially have a pointer to a string and the
18644         current scope in which they are used.  This is used later by the
18645         compiler to resolve the reference to an actual Type. 
18646
18647         * DeclSpace is no longer a CIR.Type, and neither are
18648         TypeContainers (Class and Struct) nor Interfaces nor Enums.  They
18649         are all DeclSpaces, but no Types. 
18650
18651         * type.cs (TypeRefManager): This implements the TypeRef manager,
18652         which keeps track of all the types that need to be resolved after
18653         the parsing has finished. 
18654
18655 2001-05-13  Miguel de Icaza  <miguel@ximian.com>
18656
18657         * ARGH.  We are going to have to store `foreach' as a class rather
18658         than resolving it, as we need to verify error 1579 after name
18659         resolution.   *OR* we could keep a flag that says `This request to
18660         IEnumerator comes from a foreach statement' which we can then use
18661         to generate the error.
18662
18663 2001-05-10  Miguel de Icaza  <miguel@ximian.com>
18664
18665         * class.cs (TypeContainer.AddMethod): we now add methods to the
18666         MethodGroup instead of the method hashtable.  
18667
18668         * expression.cs: Add MethodGroup abstraction, which gets us one
18669         step closer to the specification in the way we handle method
18670         declarations.  
18671
18672         * cs-parser.jay (primary_expression): qualified_identifier now
18673         tried to match up an identifier to a local variable reference or
18674         to a parameter reference.
18675
18676         current_local_parameters is now a parser global variable that
18677         points to the current parameters for the block, used during name
18678         lookup.
18679
18680         (property_declaration): Now creates an implicit `value' argument to
18681         the set accessor.
18682
18683 2001-05-09  Miguel de Icaza  <miguel@ximian.com>
18684
18685         * parameter.cs: Do not use `param' arguments as part of the
18686         signature, per the spec.
18687
18688 2001-05-08  Miguel de Icaza  <miguel@ximian.com>
18689
18690         * decl.cs: Base class for classes, structs and interfaces.  This
18691         is the "Declaration Space" 
18692
18693         * cs-parser.jay: Use CheckDef for checking declaration errors
18694         instead of having one on each function.
18695
18696         * class.cs: Factor out some code for handling error handling in
18697         accordance to the "Declarations" section in the "Basic Concepts"
18698         chapter in the ECMA C# spec.
18699
18700         * interface.cs: Make all interface member classes derive from
18701         InterfaceMemberBase.
18702
18703 2001-05-07  Miguel de Icaza  <miguel@ximian.com>
18704
18705         * Many things: all interfaces are parsed and generated in
18706         gen-treedump.  Support for member variables, constructors,
18707         destructors, properties, constants is there.
18708
18709         Beginning of the IL backend, but very little done, just there for
18710         testing purposes. 
18711
18712 2001-04-29  Miguel de Icaza  <miguel@ximian.com>
18713
18714         * cs-parser.jay: Fix labeled statement.
18715
18716         * cs-tokenizer.cs (escape): Escape " and ' always.
18717         ref_line, ref_name: keep track of the line/filename as instructed
18718         by #line by the compiler.
18719         Parse #line.
18720
18721 2001-04-27  Miguel de Icaza  <miguel@ximian.com>
18722
18723         * System.CodeDOM/CodeBinaryOperatorExpression.cs: Rearrange enum
18724         to match the values in System.CodeDOM.
18725
18726         Divid renamed to Divide.
18727
18728         * System.CodeDOM/CodeForLoopStatement.cs: Always have valid
18729         statements. 
18730         (Statements.set): remove.
18731
18732         * System.CodeDOM/CodeCatchClause.cs: always have a valid
18733         statements. 
18734
18735         * System.CodeDOM/CodeIfStatement.cs: trueStatements and
18736         falseStatements always have valid values. 
18737
18738         * cs-parser.jay: Use System.CodeDOM now.
18739