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/
H A DSeparateCompoundExpressions.cpp482 TIntermBlock *thenBlock = &buildBlockWithTailAssign(*var, *newThen); variable
486 pushStmt(*new TIntermIfElse(newCond, thenBlock, elseBlock));
/third_party/glslang/SPIRV/
H A DSpvBuilder.cpp3476 thenBlock = new Block(builder.getUniqueId(), *function); in If()
3483 function->addBlock(thenBlock); in If()
3484 builder.setBuildPoint(thenBlock); in If()
3511 builder.createConditionalBranch(condition, thenBlock, elseBlock); in makeEndIf()
3513 builder.createConditionalBranch(condition, thenBlock, mergeBlock); in makeEndIf()
4090 void Builder::createConditionalBranch(Id condition, Block* thenBlock, Block* elseBlock) in createConditionalBranch() argument
4094 branch->addIdOperand(thenBlock->getId()); in createConditionalBranch()
4097 thenBlock->addPredecessor(buildPoint); in createConditionalBranch()
H A DSpvBuilder.h608 Block* thenBlock; member in spv::Builder::If
850 void createConditionalBranch(Id condition, Block* thenBlock, Block* elseBlock);
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A 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()

Completed in 17 milliseconds