4 instantiations of BoundConvertedStackAllocExpression
Microsoft.CodeAnalysis.CSharp (4)
Binder\Binder_Conversions.cs (1)
2418
var convertedNode = new
BoundConvertedStackAllocExpression
(syntax, elementType, boundStackAlloc.Count, boundStackAlloc.InitializerOpt, stackAllocType, boundStackAlloc.HasErrors);
Generated\BoundNodes.xml.Generated.cs (1)
7251
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
(
18 references to BoundConvertedStackAllocExpression
Microsoft.CodeAnalysis.CSharp (18)
Binder\Binder_Conversions.cs (1)
2418
var
convertedNode = new BoundConvertedStackAllocExpression(syntax, elementType, boundStackAlloc.Count, boundStackAlloc.InitializerOpt, stackAllocType, boundStackAlloc.HasErrors);
CodeGen\EmitExpression.cs (2)
119
EmitConvertedStackAllocExpression((
BoundConvertedStackAllocExpression
)expression, used);
2424
private void EmitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
expression, bool used)
CodeGen\Optimizer.cs (1)
1756
public override BoundNode VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
FlowAnalysis\AbstractFlowPass.cs (1)
3558
public override BoundNode VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
FlowAnalysis\NullableWalker.cs (1)
12891
public override BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
Generated\BoundNodes.xml.Generated.cs (10)
7247
public
BoundConvertedStackAllocExpression
Update(TypeSymbol elementType, BoundExpression count, BoundArrayInitialization? initializerOpt, TypeSymbol type)
7251
var
result = new BoundConvertedStackAllocExpression(this.Syntax, elementType, count, initializerOpt, type, this.HasErrors);
9251
return VisitConvertedStackAllocExpression((
BoundConvertedStackAllocExpression
)node, arg);
9533
public virtual R VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node, A arg) => this.DefaultVisit(node, arg);
9769
public virtual BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node) => this.DefaultVisit(node);
10631
public override BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
12088
public override BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
14572
public override BoundNode? VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)
14577
BoundConvertedStackAllocExpression
updatedNode;
16873
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)
844
public override BoundNode VisitConvertedStackAllocExpression(
BoundConvertedStackAllocExpression
node)