Searched defs:LHSC (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1782 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(0)); local
1783 if (!LHSC) break;
1784 const APInt &LHSV = LHSC->getValue();
1793 LHSC);
1801 Builder->CreateOr(LHSI->getOperand(1), RHSV), LHSC);
1808 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(1)); local
1809 if (!LHSC) break;
1810 const APInt &LHSV = LHSC->getValue();
1840 ConstantExpr::getNeg(LHSC));
1849 ConstantExpr::getNeg(LHSC));
2987 ConstantInt *LHSC = nullptr; local
3031 ConstantInt *LHSC = nullptr; local
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp4786 const Type *LHSC = getCanonicalType(LHS).getTypePtr(); local
4790 if (const EnumType *ET = dyn_cast<EnumType>(LHSC))
4791 LHSC = getIntegerTypeForEnum(ET);
4795 if (LHSC == RHSC) return 0;
4797 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
4800 unsigned LHSRank = getIntegerRank(LHSC);

Completed in 136 milliseconds