2 // assign.cs: Assignments.
5 // Miguel de Icaza (miguel@ximian.com)
6 // Martin Baulig (martin@ximian.com)
7 // Marek Safar (marek.safar@gmail.com)
9 // Dual licensed under the terms of the MIT X11 or GNU GPL
11 // Copyright 2001, 2002, 2003 Ximian, Inc.
12 // Copyright 2004-2008 Novell, Inc
15 using System
.Reflection
;
16 using System
.Reflection
.Emit
;
17 using System
.Collections
;
19 namespace Mono
.CSharp
{
22 /// This interface is implemented by expressions that can be assigned to.
25 /// This interface is implemented by Expressions whose values can not
26 /// store the result on the top of the stack.
28 /// Expressions implementing this (Properties, Indexers and Arrays) would
29 /// perform an assignment of the Expression "source" into its final
32 /// No values on the top of the stack are expected to be left by
33 /// invoking this method.
35 public interface IAssignMethod
{
37 // This is an extra version of Emit. If leave_copy is `true'
38 // A copy of the expression will be left on the stack at the
39 // end of the code generated for EmitAssign
41 void Emit (EmitContext ec
, bool leave_copy
);
44 // This method does the assignment
45 // `source' will be stored into the location specified by `this'
46 // if `leave_copy' is true, a copy of `source' will be left on the stack
47 // if `prepare_for_load' is true, when `source' is emitted, there will
48 // be data on the stack that it can use to compuatate its value. This is
49 // for expressions like a [f ()] ++, where you can't call `f ()' twice.
51 void EmitAssign (EmitContext ec
, Expression source
, bool leave_copy
, bool prepare_for_load
);
54 For simple assignments, this interface is very simple, EmitAssign is called with source
55 as the source expression and leave_copy and prepare_for_load false.
57 For compound assignments it gets complicated.
59 EmitAssign will be called as before, however, prepare_for_load will be
60 true. The @source expression will contain an expression
61 which calls Emit. So, the calls look like:
63 this.EmitAssign (ec, source, false, true) ->
66 this.Emit (ec, false); ->
67 end this.Emit (ec, false); ->
70 end this.EmitAssign (ec, source, false, true)
73 When prepare_for_load is true, EmitAssign emits a `token' on the stack that
74 Emit will use for its state.
76 Let's take FieldExpr as an example. assume we are emitting f ().y += 1;
78 Here is the call tree again. This time, each call is annotated with the IL
81 this.EmitAssign (ec, source, false, true)
86 this.Emit (ec, false);
88 end this.Emit (ec, false);
98 end this.EmitAssign (ec, source, false, true)
101 1) EmitAssign left a token on the stack. It was the result of f ().
102 2) This token was used by Emit
104 leave_copy (in both EmitAssign and Emit) tells the compiler to leave a copy
105 of the expression at that point in evaluation. This is used for pre/post inc/dec
106 and for a = x += y. Let's do the above example with leave_copy true in EmitAssign
108 this.EmitAssign (ec, source, true, true)
113 this.Emit (ec, false);
115 end this.Emit (ec, false);
128 end this.EmitAssign (ec, source, true, true)
130 And with it true in Emit
132 this.EmitAssign (ec, source, false, true)
137 this.Emit (ec, true);
141 end this.Emit (ec, true);
152 end this.EmitAssign (ec, source, false, true)
154 Note that these two examples are what happens for ++x and x++, respectively.
159 /// An Expression to hold a temporary value.
162 /// The LocalTemporary class is used to hold temporary values of a given
163 /// type to "simulate" the expression semantics on property and indexer
164 /// access whose return values are void.
166 /// The local temporary is used to alter the normal flow of code generation
167 /// basically it creates a local variable, and its emit instruction generates
168 /// code to access this value, return its address or save its value.
170 /// If `is_address' is true, then the value that we store is the address to the
171 /// real value, and not the value itself.
173 /// This is needed for a value type, because otherwise you just end up making a
174 /// copy of the value on the stack and modifying it. You really need a pointer
175 /// to the origional value so that you can modify it in that location. This
176 /// Does not happen with a class because a class is a pointer -- so you always
177 /// get the indirection.
179 /// The `is_address' stuff is really just a hack. We need to come up with a better
180 /// way to handle it.
182 public class LocalTemporary
: Expression
, IMemoryLocation
, IAssignMethod
{
183 LocalBuilder builder
;
186 public LocalTemporary (Type t
) : this (t
, false) {}
188 public LocalTemporary (Type t
, bool is_address
)
191 eclass
= ExprClass
.Value
;
192 this.is_address
= is_address
;
195 public LocalTemporary (LocalBuilder b
, Type t
)
198 eclass
= ExprClass
.Value
;
203 public void Release (EmitContext ec
)
205 ec
.FreeTemporaryLocal (builder
, type
);
209 public override Expression
CreateExpressionTree (ResolveContext ec
)
211 Arguments args
= new Arguments (1);
212 args
.Add (new Argument (this));
213 return CreateExpressionFactoryCall (ec
, "Constant", args
);
216 public override Expression
DoResolve (ResolveContext ec
)
221 public override Expression
DoResolveLValue (ResolveContext ec
, Expression right_side
)
226 public override void Emit (EmitContext ec
)
228 ILGenerator ig
= ec
.ig
;
231 throw new InternalErrorException ("Emit without Store, or after Release");
233 ig
.Emit (OpCodes
.Ldloc
, builder
);
234 // we need to copy from the pointer
236 LoadFromPtr (ig
, type
);
239 #region IAssignMethod Members
241 public void Emit (EmitContext ec
, bool leave_copy
)
249 public void EmitAssign (EmitContext ec
, Expression source
, bool leave_copy
, bool prepare_for_load
)
251 if (prepare_for_load
)
252 throw new NotImplementedException ();
264 public LocalBuilder Builder
{
265 get { return builder; }
268 // NB: if you have `is_address' on the stack there must
269 // be a managed pointer. Otherwise, it is the type from
271 public void Store (EmitContext ec
)
273 ILGenerator ig
= ec
.ig
;
275 builder
= ec
.GetTemporaryLocal (is_address
? TypeManager
.GetReferenceType (type
): type
);
277 ig
.Emit (OpCodes
.Stloc
, builder
);
280 public void AddressOf (EmitContext ec
, AddressOp mode
)
283 builder
= ec
.GetTemporaryLocal (is_address
? TypeManager
.GetReferenceType (type
): type
);
285 // if is_address, than this is just the address anyways,
286 // so we just return this.
287 ILGenerator ig
= ec
.ig
;
290 ig
.Emit (OpCodes
.Ldloc
, builder
);
292 ig
.Emit (OpCodes
.Ldloca
, builder
);
295 public override void MutateHoistedGenericType (AnonymousMethodStorey storey
)
297 type
= storey
.MutateType (type
);
300 public bool PointsToAddress
{
308 /// The Assign node takes care of assigning the value of source into
309 /// the expression represented by target.
311 public abstract class Assign
: ExpressionStatement
{
312 protected Expression target
, source
;
314 protected Assign (Expression target
, Expression source
, Location loc
)
316 this.target
= target
;
317 this.source
= source
;
321 public override Expression
CreateExpressionTree (ResolveContext ec
)
323 ec
.Report
.Error (832, loc
, "An expression tree cannot contain an assignment operator");
327 public Expression Target
{
328 get { return target; }
331 public Expression Source
{
332 get { return source; }
335 public override Expression
DoResolve (ResolveContext ec
)
338 source
= source
.Resolve (ec
);
340 if (source
== null) {
342 source
= EmptyExpression
.Null
;
345 target
= target
.ResolveLValue (ec
, source
);
347 if (target
== null || !ok
)
350 Type target_type
= target
.Type
;
351 Type source_type
= source
.Type
;
353 eclass
= ExprClass
.Value
;
356 if (!(target
is IAssignMethod
)) {
357 Error_ValueAssignment (ec
, loc
);
361 if ((RootContext
.Version
== LanguageVersion
.ISO_1
) &&
362 (source
is MethodGroupExpr
)){
363 ((MethodGroupExpr
) source
).ReportUsageError (ec
);
367 if (!TypeManager
.IsEqual (target_type
, source_type
)) {
368 Expression resolved
= ResolveConversions (ec
);
370 if (resolved
!= this)
378 public override System
.Linq
.Expressions
.Expression
MakeExpression (BuilderContext ctx
)
380 var tassign
= target
as IDynamicAssign
;
382 throw new InternalErrorException (target
.GetType () + " does not support dynamic assignment");
384 var target_object
= tassign
.MakeAssignExpression (ctx
);
387 // Some hacking is needed as DLR does not support void type and requires
388 // always have object convertible return type to support caching and chaining
390 // We do this by introducing an explicit block which returns RHS value when
393 if (target_object
.NodeType
== System
.Linq
.Expressions
.ExpressionType
.Block
)
394 return target_object
;
396 var source_object
= System
.Linq
.Expressions
.Expression
.Convert (source
.MakeExpression (ctx
), target_object
.Type
);
397 return System
.Linq
.Expressions
.Expression
.Assign (target_object
, source_object
);
401 public override void MutateHoistedGenericType (AnonymousMethodStorey storey
)
403 source
.MutateHoistedGenericType (storey
);
404 target
.MutateHoistedGenericType (storey
);
405 type
= storey
.MutateType (type
);
408 protected virtual Expression
ResolveConversions (ResolveContext ec
)
410 source
= Convert
.ImplicitConversionRequired (ec
, source
, target
.Type
, loc
);
417 void Emit (EmitContext ec
, bool is_statement
)
419 IAssignMethod t
= (IAssignMethod
) target
;
420 t
.EmitAssign (ec
, source
, !is_statement
, this is CompoundAssign
);
423 public override void Emit (EmitContext ec
)
428 public override void EmitStatement (EmitContext ec
)
433 protected override void CloneTo (CloneContext clonectx
, Expression t
)
435 Assign _target
= (Assign
) t
;
437 _target
.target
= target
.Clone (clonectx
);
438 _target
.source
= source
.Clone (clonectx
);
442 public class SimpleAssign
: Assign
{
443 public SimpleAssign (Expression target
, Expression source
)
444 : this (target
, source
, target
.Location
)
448 public SimpleAssign (Expression target
, Expression source
, Location loc
)
449 : base (target
, source
, loc
)
453 bool CheckEqualAssign (Expression t
)
455 if (source
is Assign
) {
456 Assign a
= (Assign
) source
;
457 if (t
.Equals (a
.Target
))
459 return a
is SimpleAssign
&& ((SimpleAssign
) a
).CheckEqualAssign (t
);
461 return t
.Equals (source
);
464 public override Expression
DoResolve (ResolveContext ec
)
466 Expression e
= base.DoResolve (ec
);
467 if (e
== null || e
!= this)
470 if (CheckEqualAssign (target
))
471 ec
.Report
.Warning (1717, 3, loc
, "Assignment made to same variable; did you mean to assign something else?");
477 // This class implements fields and events class initializers
478 public class FieldInitializer
: Assign
481 // Keep resolved value because field initializers have their own rules
483 ExpressionStatement resolved
;
486 public FieldInitializer (FieldBuilder field
, Expression expression
, IMemberContext rc
)
487 : base (new FieldExpr (field
, expression
.Location
), expression
, expression
.Location
)
491 ((FieldExpr
)target
).InstanceExpression
= CompilerGeneratedThis
.Instance
;
494 public override Expression
DoResolve (ResolveContext ec
)
496 // Field initializer can be resolved (fail) many times
500 if (resolved
== null) {
502 // Field initializers are tricky for partial classes. They have to
503 // share same constructor (block) but they have they own resolve scope.
506 IMemberContext old
= ec
.MemberContext
;
507 ec
.MemberContext
= rc
;
509 using (ec
.Set (ResolveContext
.Options
.FieldInitializerScope
)) {
510 resolved
= base.DoResolve (ec
) as ExpressionStatement
;
513 ec
.MemberContext
= old
;
519 public override void EmitStatement (EmitContext ec
)
521 if (resolved
== null)
524 if (resolved
!= this)
525 resolved
.EmitStatement (ec
);
527 base.EmitStatement (ec
);
530 public bool IsComplexInitializer
{
531 get { return !(source is Constant); }
534 public bool IsDefaultInitializer
{
536 Constant c
= source
as Constant
;
540 FieldExpr fe
= (FieldExpr
)target
;
541 return c
.IsDefaultInitializer (fe
.Type
);
546 class EventAddOrRemove
: ExpressionStatement
{
551 public EventAddOrRemove (Expression target
, Binary
.Operator op
, Expression source
, Location loc
)
553 this.target
= target
as EventExpr
;
555 this.source
= source
;
559 public override Expression
CreateExpressionTree (ResolveContext ec
)
561 return new SimpleAssign (target
, source
).CreateExpressionTree (ec
);
564 public override Expression
DoResolve (ResolveContext ec
)
566 if (op
!= Binary
.Operator
.Addition
&& op
!= Binary
.Operator
.Subtraction
)
567 target
.Error_AssignmentEventOnly (ec
);
569 source
= source
.Resolve (ec
);
573 source
= Convert
.ImplicitConversionRequired (ec
, source
, target
.Type
, loc
);
577 eclass
= ExprClass
.Value
;
578 type
= TypeManager
.void_type
;
582 public override void Emit (EmitContext ec
)
584 if (RootContext
.EvalMode
)
587 throw new InternalErrorException ("don't know what to emit");
590 public override void EmitStatement (EmitContext ec
)
592 target
.EmitAddOrRemove (ec
, op
== Binary
.Operator
.Addition
, source
);
597 // This class is used for compound assignments.
599 public class CompoundAssign
: Assign
601 // This is just a hack implemented for arrays only
602 public sealed class TargetExpression
: Expression
605 public TargetExpression (Expression child
)
608 this.loc
= child
.Location
;
611 public override Expression
CreateExpressionTree (ResolveContext ec
)
613 throw new NotSupportedException ("ET");
616 public override Expression
DoResolve (ResolveContext ec
)
619 eclass
= ExprClass
.Value
;
623 public override void Emit (EmitContext ec
)
629 // Used for underlying binary operator
630 readonly Binary
.Operator op
;
634 public CompoundAssign (Binary
.Operator op
, Expression target
, Expression source
)
635 : base (target
, source
, target
.Location
)
641 public CompoundAssign (Binary
.Operator op
, Expression target
, Expression source
, Expression left
)
642 : this (op
, target
, source
)
647 public override Expression
DoResolve (ResolveContext ec
)
649 right
= right
.Resolve (ec
);
653 MemberAccess ma
= target
as MemberAccess
;
654 using (ec
.Set (ResolveContext
.Options
.CompoundAssignmentScope
)) {
655 target
= target
.Resolve (ec
);
661 if (target
is MethodGroupExpr
){
662 ec
.Report
.Error (1656, loc
,
663 "Cannot assign to `{0}' because it is a `{1}'",
664 ((MethodGroupExpr
)target
).Name
, target
.ExprClassName
);
668 if (target
is EventExpr
)
669 return new EventAddOrRemove (target
, op
, right
, loc
).DoResolve (ec
);
672 // Only now we can decouple the original source/target
673 // into a tree, to guarantee that we do not have side
677 left
= new TargetExpression (target
);
679 source
= new Binary (op
, left
, right
, true);
681 if (target
is DynamicMemberBinder
) {
682 Arguments targs
= ((DynamicMemberBinder
) target
).Arguments
;
683 source
= source
.Resolve (ec
);
685 Arguments args
= new Arguments (2);
686 args
.AddRange (targs
);
687 args
.Add (new Argument (source
));
688 source
= new DynamicMemberBinder (ma
.Name
, args
, loc
).ResolveLValue (ec
, right
);
690 // Handles possible event addition/subtraction
691 if (op
== Binary
.Operator
.Addition
|| op
== Binary
.Operator
.Subtraction
) {
692 args
= new Arguments (2);
693 args
.AddRange (targs
);
694 args
.Add (new Argument (right
));
695 string method_prefix
= op
== Binary
.Operator
.Addition
?
696 Event
.AEventAccessor
.AddPrefix
: Event
.AEventAccessor
.RemovePrefix
;
698 var invoke
= DynamicInvocation
.CreateSpecialNameInvoke (
699 new MemberAccess (right
, method_prefix
+ ma
.Name
, loc
), args
, loc
).Resolve (ec
);
701 args
= new Arguments (1);
702 args
.AddRange (targs
);
703 source
= new DynamicEventCompoundAssign (ma
.Name
, args
,
704 (ExpressionStatement
) source
, (ExpressionStatement
) invoke
, loc
).Resolve (ec
);
710 return base.DoResolve (ec
);
713 protected override Expression
ResolveConversions (ResolveContext ec
)
715 Type target_type
= target
.Type
;
718 // 1. the return type is implicitly convertible to the type of target
720 if (Convert
.ImplicitConversionExists (ec
, source
, target_type
)) {
721 source
= Convert
.ImplicitConversion (ec
, source
, target_type
, loc
);
726 // Otherwise, if the selected operator is a predefined operator
728 Binary b
= source
as Binary
;
731 // 2a. the operator is a shift operator
733 // 2b. the return type is explicitly convertible to the type of x, and
734 // y is implicitly convertible to the type of x
736 if ((b
.Oper
& Binary
.Operator
.ShiftMask
) != 0 ||
737 Convert
.ImplicitConversionExists (ec
, right
, target_type
)) {
738 source
= Convert
.ExplicitConversion (ec
, source
, target_type
, loc
);
743 if (TypeManager
.IsDynamicType (source
.Type
)) {
744 Arguments arg
= new Arguments (1);
745 arg
.Add (new Argument (source
));
746 return new SimpleAssign (target
, new DynamicConversion (target_type
, CSharpBinderFlags
.ConvertExplicit
, arg
, loc
), loc
).Resolve (ec
);
749 right
.Error_ValueCannotBeConverted (ec
, loc
, target_type
, false);
753 protected override void CloneTo (CloneContext clonectx
, Expression t
)
755 CompoundAssign ctarget
= (CompoundAssign
) t
;
757 ctarget
.right
= ctarget
.source
= source
.Clone (clonectx
);
758 ctarget
.target
= target
.Clone (clonectx
);