Searched refs:emitCmp (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.cpp | 730 …case EOpLessThan: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_LT, result, le… in visitBinary() 731 …case EOpGreaterThan: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_GT, result, le… in visitBinary() 732 …case EOpLessThanEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_LE, result, le… in visitBinary() 733 …case EOpGreaterThanEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_GE, result, le… in visitBinary() 1474 …case EOpLessThan: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_LT, result, arg[0], a… in visitAggregate() 1475 …case EOpGreaterThan: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_GT, result, arg[0], a… in visitAggregate() 1476 …case EOpLessThanEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_LE, result, arg[0], a… in visitAggregate() 1477 …case EOpGreaterThanEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_GE, result, arg[0], a… in visitAggregate() 1478 …case EOpVectorEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_EQ, result, arg[0], a… in visitAggregate() 1479 …case EOpVectorNotEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_NE, result, arg[0], a… in visitAggregate() [all …]
|
D | OutputASM.h | 271 …void emitCmp(sw::Shader::Control cmpOp, TIntermTyped *dst, TIntermNode *left, TIntermNode *right, …
|
/external/llvm/lib/Target/Mips/ |
D | MipsFastISel.cpp | 132 bool emitCmp(unsigned DestReg, const CmpInst *CI); 595 bool MipsFastISel::emitCmp(unsigned ResultReg, const CmpInst *CI) { in emitCmp() function in MipsFastISel 927 if (!emitCmp(CondReg, CI)) in selectBranch() 941 if (!emitCmp(ResultReg, CI)) in selectCmp()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64FastISel.cpp | 180 bool emitCmp(const Value *LHS, const Value *RHS, bool IsZExt); 1398 bool AArch64FastISel::emitCmp(const Value *LHS, const Value *RHS, bool IsZExt) { in emitCmp() function in AArch64FastISel 2326 if (!emitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned())) in selectBranch() 2467 if (!emitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned())) in selectCmp() 2654 if (!emitCmp(Cmp->getOperand(0), Cmp->getOperand(1), Cmp->isUnsigned())) in selectSelect()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 2146 static SDValue emitCmp(SelectionDAG &DAG, const SDLoc &DL, Comparison &C) { in emitCmp() function 2367 SDValue Glue = emitCmp(DAG, DL, C); in lowerSETCC() 2379 SDValue Glue = emitCmp(DAG, DL, C); in lowerBR_CC() 2432 SDValue Glue = emitCmp(DAG, DL, C); in lowerSELECT_CC()
|