Home
last modified time | relevance | path

Searched refs:thenBlock (Results 1 – 22 of 22) sorted by relevance

/external/llvm-project/mlir/lib/Dialect/Affine/Utils/
DUtils.cpp102 auto *thenBlock = hoistedIfOp.getThenBlock(); in hoistAffineIfOp() local
103 thenBlock->getOperations().splice(thenBlock->begin(), in hoistAffineIfOp()
/external/llvm-project/mlir/lib/Dialect/GPU/Transforms/
DAllReduceLowering.cpp273 Block *thenBlock = rewriter.splitBlock(currentBlock, currentPoint); in createIf() local
274 Block *elseBlock = rewriter.splitBlock(thenBlock, thenBlock->begin()); in createIf()
278 create<CondBranchOp>(condition, thenBlock, in createIf()
282 rewriter.setInsertionPointToStart(thenBlock); in createIf()
/external/llvm-project/mlir/lib/Conversion/SCFToSPIRV/
DSCFToSPIRV.cpp230 auto *thenBlock = &thenRegion.front(); in matchAndRewrite() local
249 thenBlock, ArrayRef<Value>(), in matchAndRewrite()
/external/llvm-project/mlir/lib/Conversion/SCFToStandard/
DSCFToStandard.cpp370 auto *thenBlock = &thenRegion.front(); in matchAndRewrite() local
394 rewriter.create<CondBranchOp>(loc, ifOp.condition(), thenBlock, in matchAndRewrite()
/external/angle/src/compiler/translator/TranslatorMetalDirect/
DSeparateCompoundExpressions.cpp478 TIntermBlock *thenBlock = &buildBlockWithTailAssign(*var, *newThen); in visitTernaryPost() local
482 pushStmt(*new TIntermIfElse(newCond, thenBlock, elseBlock)); in visitTernaryPost()
/external/javaparser/javaparser-core-testing/src/test/test_sourcecode/com/github/javaparser/printer/
DPrettyPrintVisitor.java1024 final boolean thenBlock = n.getThenStmt() instanceof BlockStmt; in visit()
1025 if (thenBlock) // block statement should start on the same line in visit()
1032 if (!thenBlock) in visit()
1035 if (thenBlock) in visit()
/external/deqp-deps/glslang/SPIRV/
DSpvBuilder.cpp2593 thenBlock = new Block(builder.getUniqueId(), *function); in If()
2600 function->addBlock(thenBlock); in If()
2601 builder.setBuildPoint(thenBlock); in If()
2628 builder.createConditionalBranch(condition, thenBlock, elseBlock); in makeEndIf()
2630 builder.createConditionalBranch(condition, thenBlock, mergeBlock); in makeEndIf()
3176 void Builder::createConditionalBranch(Id condition, Block* thenBlock, Block* elseBlock) in createConditionalBranch() argument
3180 branch->addIdOperand(thenBlock->getId()); in createConditionalBranch()
3183 thenBlock->addPredecessor(buildPoint); in createConditionalBranch()
DSpvBuilder.h520 Block* thenBlock; variable
770 void createConditionalBranch(Id condition, Block* thenBlock, Block* elseBlock);
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/
DSpvBuilder.cpp2597 thenBlock = new Block(builder.getUniqueId(), *function); in If()
2604 function->addBlock(thenBlock); in If()
2605 builder.setBuildPoint(thenBlock); in If()
2632 builder.createConditionalBranch(condition, thenBlock, elseBlock); in makeEndIf()
2634 builder.createConditionalBranch(condition, thenBlock, mergeBlock); in makeEndIf()
3180 void Builder::createConditionalBranch(Id condition, Block* thenBlock, Block* elseBlock) in createConditionalBranch() argument
3184 branch->addIdOperand(thenBlock->getId()); in createConditionalBranch()
3187 thenBlock->addPredecessor(buildPoint); in createConditionalBranch()
DSpvBuilder.h520 Block* thenBlock; variable
770 void createConditionalBranch(Id condition, Block* thenBlock, Block* elseBlock);
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
DDumpVisitor.java1269 final boolean thenBlock = n.getThenStmt() instanceof BlockStmt; in visit()
1270 if (thenBlock) // block statement should start on the same line in visit()
1277 if (!thenBlock) in visit()
1280 if (thenBlock) in visit()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
DDumpVisitor.java1296 final boolean thenBlock = n.getThenStmt() instanceof BlockStmt; in visit()
1297 if (thenBlock) // block statement should start on the same line in visit()
1304 if (!thenBlock) in visit()
1307 if (thenBlock) in visit()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
DPrettyPrintVisitor.java1249 final boolean thenBlock = n.getThenStmt() instanceof BlockStmt; in visit()
1250 if (thenBlock) // block statement should start on the same line in visit()
1257 if (!thenBlock) in visit()
1260 if (thenBlock) in visit()
/external/javaparser/javaparser-core-testing/src/test/resources/com/github/javaparser/printer/
DPrettyPrintVisitor_prettyprinted972 final boolean thenBlock = n.getThenStmt() instanceof BlockStmt;
974 thenBlock)
981 if (!thenBlock)
984 if (thenBlock)
/external/llvm-project/mlir/lib/Dialect/SPIRV/
DSPIRVOps.cpp2740 Block *thenBlock = nullptr; in createIfThen() local
2745 thenBlock = builder.createBlock(mergeBlock); in createIfThen()
2753 builder.createBlock(thenBlock); in createIfThen()
2755 loc, condition, thenBlock, in createIfThen()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/expected_output/
Dcom_github_javaparser_ast_visitor_DumpVisitor.txt794 Line 1296) final boolean thenBlock = n.getThenStmt() instanceof BlockStmt ==> boolean
797 thenBlock ==> boolean
802 Line 1304) !thenBlock ==> boolean
805 Line 1307) thenBlock ==> boolean
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyTraverse.h852 printBlockLabel(SS, E->thenBlock(), -1); in printBranch()
DThreadSafetyTIL.h1440 const BasicBlock *thenBlock() const { return Branches[0]; } in thenBlock() function
1441 BasicBlock *thenBlock() { return Branches[0]; } in thenBlock() function
/external/llvm-project/clang/include/clang/Analysis/Analyses/
DThreadSafetyTraverse.h884 printBlockLabel(SS, E->thenBlock(), -1); in printBranch()
DThreadSafetyTIL.h1426 const BasicBlock *thenBlock() const { return Branches[0]; } in thenBlock() function
1427 BasicBlock *thenBlock() { return Branches[0]; } in thenBlock() function
/external/swiftshader/src/Reactor/
DLLVMReactor.cpp1107 auto thenBlock = llvm::BasicBlock::Create(*jit->context, "", jit->function); in createMaskedStore() local
1109 …jit->builder->CreateCondBr(jit->builder->CreateExtractElement(i1Mask, idx), thenBlock, mergeBlock); in createMaskedStore()
1110 jit->builder->SetInsertPoint(thenBlock); in createMaskedStore()
1226 auto thenBlock = llvm::BasicBlock::Create(*jit->context, "", jit->function); in createScatter() local
1228 …jit->builder->CreateCondBr(jit->builder->CreateExtractElement(i1Mask, idx), thenBlock, mergeBlock); in createScatter()
1229 jit->builder->SetInsertPoint(thenBlock); in createScatter()
/external/llvm-project/mlir/lib/Transforms/Utils/
DLoopUtils.cpp3100 Block *thenBlock = ifOp.getThenBlock(); in separateFullTiles() local
3102 thenBlock->getOperations().splice( in separateFullTiles()
3103 std::prev(thenBlock->end()), in separateFullTiles()