/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | IntermTraverse.cpp | 199 if (trueBlock) in traverse() 200 trueBlock->traverse(it); in traverse() 204 if (trueBlock) in traverse() 205 trueBlock->traverse(it); in traverse()
|
D | Intermediate.cpp | 2286 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped… in addSelection() argument 2290 if (trueBlock->getBasicType() == EbtVoid && falseBlock->getBasicType() == EbtVoid) { in addSelection() 2291 TIntermNodePair pair = { trueBlock, falseBlock }; in addSelection() 2302 auto children = addConversion(EOpSequence, trueBlock, falseBlock); in addSelection() 2303 trueBlock = std::get<0>(children); in addSelection() 2306 if (trueBlock == nullptr || falseBlock == nullptr) in addSelection() 2311 TType targetVectorType(trueBlock->getType().getBasicType(), EvqTemporary, in addSelection() 2314 trueBlock = addUniShapeConversion(EOpMix, targetVectorType, trueBlock); in addSelection() 2318 if (falseBlock->getType() != trueBlock->getType()) in addSelection() 2324 mix = growAggregate(mix, trueBlock); in addSelection() [all …]
|
D | localintermediate.h | 478 …TIntermTyped* addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, …
|
/external/swiftshader/src/OpenGL/compiler/ |
D | IntermTraverse.cpp | 205 if (trueBlock) in traverse() 206 trueBlock->traverse(it); in traverse() 210 if (trueBlock) in traverse() 211 trueBlock->traverse(it); in traverse()
|
D | intermediate.h | 613 …TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) … in TIntermSelection() 615 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB) in TIntermSelection() 624 TIntermNode* getTrueBlock() const { return trueBlock; } in getTrueBlock() 630 TIntermNode* trueBlock; variable
|
D | localintermediate.h | 43 …TIntermTyped* addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, …
|
D | OutputASM.cpp | 1745 TIntermNode *trueBlock = node->getTrueBlock(); in visitSelection() local 1759 trueBlock->traverse(this); in visitSelection() 1760 copy(node, trueBlock); in visitSelection() 1770 trueBlock->traverse(this); in visitSelection() 1772 emit(sw::Shader::OPCODE_SELECT, node, condition, trueBlock, falseBlock); in visitSelection() 1778 if(trueBlock) in visitSelection() 1780 trueBlock->traverse(this); in visitSelection() 1781 copy(node, trueBlock); in visitSelection() 1802 if(trueBlock) in visitSelection() 1804 trueBlock->traverse(this); in visitSelection() [all …]
|
D | Intermediate.cpp | 661 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped… in addSelection() argument 663 if (trueBlock->getType() != falseBlock->getType()) in addSelection() 672 …if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnio… in addSelection() 674 return trueBlock; in addSelection() 682 TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType()); in addSelection()
|
D | ParseHelper.cpp | 3709 TIntermTyped *TParseContext::addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TInte… in addTernarySelection() argument 3714 if(trueBlock->getType() != falseBlock->getType()) in addTernarySelection() 3716 binaryOpError(loc, ":", trueBlock->getCompleteString(), falseBlock->getCompleteString()); in addTernarySelection() 3723 if(trueBlock->isArray() || trueBlock->getBasicType() == EbtStruct) in addTernarySelection() 3729 return intermediate.addSelection(cond, trueBlock, falseBlock, loc); in addTernarySelection()
|
D | ParseHelper.h | 240 …TIntermTyped *addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TIntermTyped *false…
|
/external/skia/src/sksl/ |
D | SkSLJIT.cpp | 328 LLVMBasicBlockRef trueBlock = LLVMAppendBasicBlockInContext( in getLValue() local 339 LLVMBuildCondBr(builder, fTest, trueBlock, falseBlock); in getLValue() 340 fJIT.setBlock(builder, trueBlock); in getLValue() 350 LLVMBasicBlockRef incomingBlocks[2] = { trueBlock, falseBlock }; in getLValue() 356 LLVMBasicBlockRef trueBlock = LLVMAppendBasicBlockInContext( in getLValue() local 367 LLVMBuildCondBr(builder, fTest, trueBlock, falseBlock); in getLValue() 368 fJIT.setBlock(builder, trueBlock); in getLValue() 1000 LLVMBasicBlockRef trueBlock = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileTernary() local 1006 LLVMBuildCondBr(builder, test, trueBlock, falseBlock); in compileTernary() 1007 this->setBlock(builder, trueBlock); in compileTernary() [all …]
|
/external/skqp/src/sksl/ |
D | SkSLJIT.cpp | 328 LLVMBasicBlockRef trueBlock = LLVMAppendBasicBlockInContext( in getLValue() local 339 LLVMBuildCondBr(builder, fTest, trueBlock, falseBlock); in getLValue() 340 fJIT.setBlock(builder, trueBlock); in getLValue() 350 LLVMBasicBlockRef incomingBlocks[2] = { trueBlock, falseBlock }; in getLValue() 356 LLVMBasicBlockRef trueBlock = LLVMAppendBasicBlockInContext( in getLValue() local 367 LLVMBuildCondBr(builder, fTest, trueBlock, falseBlock); in getLValue() 368 fJIT.setBlock(builder, trueBlock); in getLValue() 1000 LLVMBasicBlockRef trueBlock = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileTernary() local 1006 LLVMBuildCondBr(builder, test, trueBlock, falseBlock); in compileTernary() 1007 this->setBlock(builder, trueBlock); in compileTernary() [all …]
|
/external/deqp-deps/glslang/glslang/Include/ |
D | intermediate.h | 1571 TIntermTyped(EbtVoid), condition(cond), trueBlock(trueB), falseBlock(falseB), in TIntermSelection() 1575 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB), in TIntermSelection() 1580 virtual TIntermNode* getTrueBlock() const { return trueBlock; } in getTrueBlock() 1595 TIntermNode* trueBlock; variable
|
/external/swiftshader/src/Pipeline/ |
D | VertexProgram.cpp | 1251 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local 1254 branch(condition, trueBlock, falseBlock); in IFb() 1300 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local 1305 branch(notAllFalse, trueBlock, falseBlock); in IF()
|
D | PixelProgram.cpp | 1599 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local 1602 branch(condition, trueBlock, falseBlock); in IFb() 1648 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local 1653 branch(notAllFalse, trueBlock, falseBlock); in IF()
|
/external/swiftshader/src/Shader/ |
D | VertexProgram.cpp | 1335 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local 1338 branch(condition, trueBlock, falseBlock); in IFb() 1384 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local 1389 branch(notAllFalse, trueBlock, falseBlock); in IF()
|
D | PixelProgram.cpp | 1630 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local 1633 branch(condition, trueBlock, falseBlock); in IFb() 1679 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local 1684 branch(notAllFalse, trueBlock, falseBlock); in IF()
|