Home
last modified time | relevance | path

Searched refs:kExpression_Kind (Results 1 – 11 of 11) sorted by relevance

/third_party/flutter/skia/src/sksl/
DSkSLCFGGenerator.cpp72 printf("Node %d (%p): %s\n", (int) j, &n, n.fKind == BasicBlock::Node::kExpression_Kind in dump()
92 if ((*iter)->fKind == BasicBlock::Node::kExpression_Kind) { in tryRemoveExpressionBefore()
100 } while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore()
103 while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore()
115 } while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore()
267 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression()
275 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression()
287 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression()
314 BasicBlock::Node::kExpression_Kind, in addExpression()
325 BasicBlock::Node::kExpression_Kind, in addExpression()
[all …]
DSkSLCFGGenerator.h26 kExpression_Kind enumerator
37 SkASSERT(fKind == kExpression_Kind); in expression()
42 SkASSERT(fKind == kExpression_Kind); in setExpression()
60 SkASSERT(fKind == kExpression_Kind); in description()
DSkSLCompiler.cpp321 case BasicBlock::Node::kExpression_Kind: { in addDefinitions()
590 if ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in delete_left()
623 if (((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in delete_right()
730 SkASSERT((*iter)->fKind == BasicBlock::Node::kExpression_Kind); in simplifyExpression()
1124 case Statement::kExpression_Kind: { in simplifyStatement()
1156 case BasicBlock::Node::kExpression_Kind: in scanCFG()
1183 if (iter->fKind == BasicBlock::Node::kExpression_Kind) { in scanCFG()
DSkSLMetalCodeGenerator.cpp1148 case Statement::kExpression_Kind: in writeStatement()
1605 case Statement::kExpression_Kind: in requirements()
DSkSLJIT.cpp1226 case Statement::kExpression_Kind: in compileStatement()
1645 case Statement::kExpression_Kind: in compileVectorStatement()
DSkSLGLSLCodeGenerator.cpp1294 case Statement::kExpression_Kind: in writeFunctionCall()
DSkSLByteCodeGenerator.cpp1502 case Statement::kExpression_Kind: in writeStatement()
DSkSLIRGenerator.cpp212 SkASSERT(result->fKind == Statement::kExpression_Kind); in convertStatement()
DSkSLSPIRVCodeGenerator.cpp2825 case Statement::kExpression_Kind: in writeStatement()
/third_party/flutter/skia/src/sksl/ir/
DSkSLExpressionStatement.h21 : INHERITED(expression->fOffset, kExpression_Kind) in ExpressionStatement()
DSkSLStatement.h26 kExpression_Kind, enumerator