Searched defs:CmpLHS (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.cpp260 SDValue InFlag = Node->getOperand(2), CmpLHS; local
268 CmpLHS = InFlag.getValue(0);
271 CmpLHS = InFlag.getOperand(0);
275 SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
H A DMipsSEISelDAGToDAG.cpp231 SDValue CmpLHS, SDLoc DL,
245 SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
230 selectAddESubE(unsigned MOp, SDValue InFlag, SDValue CmpLHS, SDLoc DL, SDNode *Node) const argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp35 Value *CmpLHS = ICI->getOperand(0); local
40 LHS = CmpLHS;
44 if (TrueVal == CmpLHS && FalseVal == CmpRHS) {
59 if (TrueVal == CmpRHS && FalseVal == CmpLHS) {
74 if ((CmpLHS == TrueVal && match(FalseVal, m_Neg(m_Specific(CmpLHS)))) ||
75 (CmpLHS == FalseVal && match(TrueVal, m_Neg(m_Specific(CmpLHS))))) {
80 return (CmpLHS == TrueVal) ? SPF_ABS : SPF_NABS;
86 return (CmpLHS
455 Value *CmpLHS = ICI->getOperand(0); local
503 Value *CmpLHS = ICI->getOperand(0); local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h212 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
219 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
222 const Value *CmpLHS, *CmpMHS, *CmpRHS; member in struct:llvm::SelectionDAGBuilder::CaseBlock
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1357 const Value *CmpLHS = CI->getOperand(0); local
1367 CmpRHS = CmpLHS;
1399 std::swap(CmpLHS, CmpRHS);
1402 if (!X86FastEmitCompare(CmpLHS, CmpRHS, VT, CI->getDebugLoc()))
1782 const Value *CmpLHS = CI->getOperand(0); local
1785 std::swap(CmpLHS, CmpRHS);
1787 EVT CmpVT = TLI.getValueType(CmpLHS->getType());
1789 if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT, CI->getDebugLoc()))
1872 const Value *CmpLHS = CI->getOperand(0); local
1882 CmpRHS = CmpLHS;
1983 const Value *CmpLHS = CI->getOperand(0); local
[all...]

Completed in 208 milliseconds