Searched refs:OtherVal (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2026 /// \param OtherVal The other argument of compare instruction.
2030 Value *OtherVal, InstCombiner &IC) {
2037 assert(I.getOperand(0) == OtherVal || I.getOperand(1) == OtherVal);
2095 if (ZExtInst *Zext = dyn_cast<ZExtInst>(OtherVal))
2108 if (match(OtherVal, m_And(m_Value(ValToMask), m_ConstantInt(CI)))) {
2124 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
2136 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
2147 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
2159 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
2029 ProcessUMulZExtIdiom(ICmpInst &I, Value *MulVal, Value *OtherVal, InstCombiner &IC) argument
3161 Value *OtherVal = A == Op1 ? B : A; local
3187 Value *OtherVal = A == Op0 ? B : A; local
[all...]
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1598 /// two values ever stored into GV are its initializer and OtherVal. See if we
1601 static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) { argument
1639 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal))
1646 bool StoringOther = SI->getOperand(0) == OtherVal;
1684 NSI = SelectInst::Create(NLI, OtherVal, InitVal, "", LI);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp21892 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
21895 DL, OtherVal.getValueType(), OtherVal,
21896 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
21898 DL, OtherVal.getValueType(), OtherVal,
21899 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);

Completed in 206 milliseconds