Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
DSeparateCompoundExpressions.cpp482 TIntermBlock *thenBlock = &buildBlockWithTailAssign(*var, *newThen); in visitTernaryPost() local
486 pushStmt(*new TIntermIfElse(newCond, thenBlock, elseBlock)); in visitTernaryPost()
/third_party/glslang/SPIRV/
DSpvBuilder.cpp2569 thenBlock = new Block(builder.getUniqueId(), *function); in If()
2576 function->addBlock(thenBlock); in If()
2577 builder.setBuildPoint(thenBlock); in If()
2604 builder.createConditionalBranch(condition, thenBlock, elseBlock); in makeEndIf()
2606 builder.createConditionalBranch(condition, thenBlock, mergeBlock); in makeEndIf()
3149 void Builder::createConditionalBranch(Id condition, Block* thenBlock, Block* elseBlock) in createConditionalBranch() argument
3153 branch->addIdOperand(thenBlock->getId()); in createConditionalBranch()
3156 thenBlock->addPredecessor(buildPoint); in createConditionalBranch()
DSpvBuilder.h518 Block* thenBlock; variable
763 void createConditionalBranch(Id condition, Block* thenBlock, Block* elseBlock);
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMReactor.cpp1127 auto thenBlock = llvm::BasicBlock::Create(*jit->context, "", jit->function); in createMaskedStore() local
1129 …jit->builder->CreateCondBr(jit->builder->CreateExtractElement(i1Mask, idx), thenBlock, mergeBlock); in createMaskedStore()
1130 jit->builder->SetInsertPoint(thenBlock); in createMaskedStore()
1246 auto thenBlock = llvm::BasicBlock::Create(*jit->context, "", jit->function); in createScatter() local
1248 …jit->builder->CreateCondBr(jit->builder->CreateExtractElement(i1Mask, idx), thenBlock, mergeBlock); in createScatter()
1249 jit->builder->SetInsertPoint(thenBlock); in createScatter()