3 instantiations of BoundConvertedStackAllocExpression
Microsoft.CodeAnalysis.CSharp (3)
Generated\BoundNodes.xml.Generated.cs (1)
7247
var result = new
BoundConvertedStackAllocExpression
(this.Syntax, elementType, count, initializerOpt, type, this.HasErrors);
Lowering\LocalRewriter\LocalRewriter_StackAlloc.cs (2)
48
return new
BoundConvertedStackAllocExpression
(stackAllocNode.Syntax, elementType, stackSize, initializerOpt, type);
57
stackAllocNode = new
BoundConvertedStackAllocExpression
(
17 references to BoundConvertedStackAllocExpression
Microsoft.CodeAnalysis.CSharp (17)
CodeGen\EmitExpression.cs (2)
119
EmitConvertedStackAllocExpression((
BoundConvertedStackAllocExpression
)expression, used);
2397
private void EmitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
expression, bool used)
CodeGen\Optimizer.cs (1)
1747
public override BoundNode VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
FlowAnalysis\AbstractFlowPass.cs (1)
3521
public override BoundNode VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
FlowAnalysis\NullableWalker.cs (1)
11930
public override BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
Generated\BoundNodes.xml.Generated.cs (10)
7243
public
BoundConvertedStackAllocExpression
Update(TypeSymbol elementType, BoundExpression count, BoundArrayInitialization? initializerOpt, TypeSymbol type)
7247
var
result = new BoundConvertedStackAllocExpression(this.Syntax, elementType, count, initializerOpt, type, this.HasErrors);
9211
return VisitConvertedStackAllocExpression((
BoundConvertedStackAllocExpression
)node, arg);
9493
public virtual R VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node, A arg) => this.DefaultVisit(node, arg);
9729
public virtual BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node) => this.DefaultVisit(node);
10589
public override BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
11920
public override BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
14393
public override BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
14398
BoundConvertedStackAllocExpression
updatedNode;
16691
public override TreeDumperNode VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node, object? arg) => new TreeDumperNode("convertedStackAllocExpression", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter_StackAlloc.cs (1)
15
public override BoundNode VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
stackAllocNode)
Lowering\SpillSequenceSpiller.cs (1)
833
public override BoundNode VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)