Home
last modified time | relevance | path

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

/external/skqp/src/sksl/
DSkSLCFGGenerator.cpp71 printf("Node %d (%p): %s\n", (int) j, &n, n.fKind == BasicBlock::Node::kExpression_Kind in dump()
91 if ((*iter)->fKind == BasicBlock::Node::kExpression_Kind) { in tryRemoveExpressionBefore()
99 } while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore()
102 while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore()
114 } while ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in tryRemoveExpressionBefore()
265 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression()
273 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression()
285 BasicBlock::Node node = { BasicBlock::Node::kExpression_Kind, true, expr, nullptr }; in tryInsertExpression()
312 BasicBlock::Node::kExpression_Kind, in addExpression()
323 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.cpp308 case BasicBlock::Node::kExpression_Kind: { in addDefinitions()
569 if ((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in delete_left()
602 if (((*iter)->fKind != BasicBlock::Node::kExpression_Kind || in delete_right()
709 SkASSERT((*iter)->fKind == BasicBlock::Node::kExpression_Kind); in simplifyExpression()
1103 case Statement::kExpression_Kind: { in simplifyStatement()
1135 case BasicBlock::Node::kExpression_Kind: in scanCFG()
1162 if (iter->fKind == BasicBlock::Node::kExpression_Kind) { in scanCFG()
DSkSLInterpreter.cpp107 case Statement::kExpression_Kind: in runStatement()
DSkSLMetalCodeGenerator.cpp998 case Statement::kExpression_Kind: in writeStatement()
1457 case Statement::kExpression_Kind: in requirements()
DSkSLJIT.cpp1226 case Statement::kExpression_Kind: in compileStatement()
1645 case Statement::kExpression_Kind: in compileVectorStatement()
DSkSLGLSLCodeGenerator.cpp1263 case Statement::kExpression_Kind: in writeFunctionCall()
DSkSLIRGenerator.cpp188 case ASTStatement::kExpression_Kind: { in convertStatement()
192 SkASSERT(result->fKind == Statement::kExpression_Kind); in convertStatement()
DSkSLSPIRVCodeGenerator.cpp2790 case Statement::kExpression_Kind: in writeStatement()
/external/skqp/src/sksl/ast/
DSkSLASTExpressionStatement.h20 : INHERITED(expression->fOffset, kExpression_Kind) in ASTExpressionStatement()
DSkSLASTStatement.h24 kExpression_Kind, enumerator
/external/skqp/src/sksl/ir/
DSkSLStatement.h26 kExpression_Kind, enumerator
DSkSLExpressionStatement.h21 : INHERITED(expression->fOffset, kExpression_Kind) in ExpressionStatement()