1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1522
this.
Operand
= operand;
12 references to Operand
Microsoft.CodeAnalysis.CSharp (12)
BoundTree\Expression.cs (1)
111
protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.
Operand
);
CodeGen\EmitExpression.cs (3)
676
var temp = EmitAddress(expression.
Operand
, AddressKind.Writeable);
680
EmitSymbolToken(expression.
Operand
.Type, expression.
Operand
.Syntax);
CodeGen\Optimizer.cs (1)
1312
var rewrittenOperand = VisitExpression(node.
Operand
, ExprContext.Address);
FlowAnalysis\AbstractFlowPass.cs (1)
1264
VisitRvalue(node.
Operand
, isKnownToBeAnLvalue: true);
Generated\BoundNodes.xml.Generated.cs (5)
1533
if (operand != this.
Operand
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9924
this.Visit(node.
Operand
);
11030
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
12713
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
15293
new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.
Operand
, null) }),
Lowering\SpillSequenceSpiller.cs (1)
1229
var operand = VisitExpression(ref builder, node.
Operand
);