1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1383
this.
Operand
= operand;
13 references to Operand
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder.ValueChecks.cs (2)
593
expr = pointerIndirection.Update(pointerIndirection.
Operand
, refersToLocation: true, pointerIndirection.Type);
5301
var operandExpression = ((BoundPointerIndirectionOperator)expr).
Operand
;
BoundTree\Statement.cs (1)
35
protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.
Operand
);
CodeGen\EmitAddress.cs (1)
103
BoundExpression operand = ((BoundPointerIndirectionOperator)expression).
Operand
;
CodeGen\EmitExpression.cs (2)
768
EmitExpression(expression.
Operand
, used: true);
2908
EmitExpression(left.
Operand
, used: true);
FlowAnalysis\AbstractFlowPass.cs (1)
3493
VisitRvalue(node.
Operand
);
Generated\BoundNodes.xml.Generated.cs (5)
1396
if (operand != this.
Operand
|| refersToLocation != this.RefersToLocation || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9865
this.Visit(node.
Operand
);
10967
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
12605
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
15216
new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.
Operand
, null) }),
Lowering\SpillSequenceSpiller.cs (1)
1444
var operand = VisitExpression(ref builder, node.
Operand
);