Home
last modified time | relevance | path

Searched refs:trueBlock (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DIntermTraverse.cpp205 if (trueBlock) in traverse()
206 trueBlock->traverse(it); in traverse()
210 if (trueBlock) in traverse()
211 trueBlock->traverse(it); in traverse()
Dintermediate.h613 …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
Dlocalintermediate.h43 …TIntermTyped* addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, …
DOutputASM.cpp1548 TIntermNode *trueBlock = node->getTrueBlock(); in visitSelection() local
1562 trueBlock->traverse(this); in visitSelection()
1563 copy(node, trueBlock); in visitSelection()
1573 trueBlock->traverse(this); in visitSelection()
1575 emit(sw::Shader::OPCODE_SELECT, node, condition, trueBlock, falseBlock); in visitSelection()
1581 if(trueBlock) in visitSelection()
1583 trueBlock->traverse(this); in visitSelection()
1584 copy(node, trueBlock); in visitSelection()
1605 if(trueBlock) in visitSelection()
1607 trueBlock->traverse(this); in visitSelection()
[all …]
DIntermediate.cpp658 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped… in addSelection() argument
660 if (trueBlock->getType() != falseBlock->getType()) in addSelection()
669 …if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnio… in addSelection()
671 return trueBlock; in addSelection()
679 TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType()); in addSelection()
DParseHelper.cpp3766 TIntermTyped *TParseContext::addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TInte… in addTernarySelection() argument
3771 if(trueBlock->getType() != falseBlock->getType()) in addTernarySelection()
3773 binaryOpError(loc, ":", trueBlock->getCompleteString(), falseBlock->getCompleteString()); in addTernarySelection()
3780 if(trueBlock->isArray() || trueBlock->getBasicType() == EbtStruct) in addTernarySelection()
3786 return intermediate.addSelection(cond, trueBlock, falseBlock, loc); in addTernarySelection()
DParseHelper.h239 …TIntermTyped *addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TIntermTyped *false…
/external/swiftshader/src/Shader/
DVertexProgram.cpp1336 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local
1339 branch(condition, trueBlock, falseBlock); in IFb()
1385 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local
1390 branch(notAllFalse, trueBlock, falseBlock); in IF()
DPixelProgram.cpp1542 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local
1545 branch(condition, trueBlock, falseBlock); in IFb()
1591 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local
1596 branch(notAllFalse, trueBlock, falseBlock); in IF()