Home
last modified time | relevance | path

Searched refs:OPN (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_vertprog.c64 #define OPN(operator, ip) {#operator, OPCODE_##operator, ip} macro
71 OPN(ABS, 1),
72 OPN(ADD, 2),
73 OPN(ARL, 1|SCALAR_FLAG),
74 OPN(DP3, 2),
75 OPN(DP4, 2),
76 OPN(DPH, 2),
77 OPN(DST, 2),
78 OPN(EX2, 1|SCALAR_FLAG),
79 OPN(EXP, 1|SCALAR_FLAG),
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DCloneFunction.cpp417 const PHINode *OPN = PHIToResolve[phino]; in CloneAndPruneFunctionInto() local
418 unsigned NumPreds = OPN->getNumIncomingValues(); in CloneAndPruneFunctionInto()
419 const BasicBlock *OldBB = OPN->getParent(); in CloneAndPruneFunctionInto()
426 OPN = PHIToResolve[phino]; in CloneAndPruneFunctionInto()
427 PHINode *PN = cast<PHINode>(VMap[OPN]); in CloneAndPruneFunctionInto()
/external/llvm/lib/Transforms/Utils/
DCloneFunction.cpp470 const PHINode *OPN = PHIToResolve[phino]; in CloneAndPruneIntoFromInst() local
471 unsigned NumPreds = OPN->getNumIncomingValues(); in CloneAndPruneIntoFromInst()
472 const BasicBlock *OldBB = OPN->getParent(); in CloneAndPruneIntoFromInst()
479 OPN = PHIToResolve[phino]; in CloneAndPruneIntoFromInst()
480 PHINode *PN = cast<PHINode>(VMap[OPN]); in CloneAndPruneIntoFromInst()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineCasts.cpp207 PHINode *OPN = cast<PHINode>(I); in EvaluateInDifferentType() local
208 PHINode *NPN = PHINode::Create(Ty, OPN->getNumIncomingValues()); in EvaluateInDifferentType()
209 for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) { in EvaluateInDifferentType()
210 Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned); in EvaluateInDifferentType()
211 NPN->addIncoming(V, OPN->getIncomingBlock(i)); in EvaluateInDifferentType()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp211 PHINode *OPN = cast<PHINode>(I); in EvaluateInDifferentType() local
212 PHINode *NPN = PHINode::Create(Ty, OPN->getNumIncomingValues()); in EvaluateInDifferentType()
213 for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) { in EvaluateInDifferentType()
215 EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned); in EvaluateInDifferentType()
216 NPN->addIncoming(V, OPN->getIncomingBlock(i)); in EvaluateInDifferentType()