Searched refs:LHSC (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2127 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(0)); local
2128 if (!LHSC) break;
2129 const APInt &LHSV = LHSC->getValue();
2138 LHSC);
2146 Builder->CreateOr(LHSI->getOperand(1), RHSV), LHSC);
2153 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(1)); local
2154 if (!LHSC) break;
2155 const APInt &LHSV = LHSC->getValue();
2185 ConstantExpr::getNeg(LHSC));
2194 ConstantExpr::getNeg(LHSC));
3425 ConstantInt *LHSC = nullptr; local
3469 ConstantInt *LHSC = nullptr; local
[all...]
H A DInstCombineAndOrXor.cpp1128 if (ConstantFP *LHSC = dyn_cast<ConstantFP>(LHS->getOperand(1)))
1132 if (LHSC->getValueAPF().isNaN() || RHSC->getValueAPF().isNaN())
2037 if (ConstantFP *LHSC = dyn_cast<ConstantFP>(LHS->getOperand(1)))
2041 if (LHSC->getValueAPF().isNaN() || RHSC->getValueAPF().isNaN())
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DScalarEvolution.cpp1479 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
1484 Ops[0] = getConstant(LHSC->getValue()->getValue() +
1488 LHSC = cast<SCEVConstant>(Ops[0]);
1492 if (LHSC->getValue()->isZero()) {
1882 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
1889 return getAddExpr(getMulExpr(LHSC, Add->getOperand(0)),
1890 getMulExpr(LHSC, Add->getOperand(1)));
1896 LHSC->getValue()->getValue() *
1901 LHSC = cast<SCEVConstant>(Ops[0]);
2203 if (const SCEVConstant *LHSC
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1334 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(1)); local
1335 if (!LHSC) break;
1336 const APInt &LHSV = LHSC->getValue();
1960 ConstantInt *LHSC = 0; local
1961 if (!match(Op0, m_And(m_Value(LHS), m_ConstantInt(LHSC))) ||
1962 LHSC->getValue() != Op0KnownZeroInverted)
1997 ConstantInt *LHSC = 0; local
1998 if (!match(Op0, m_And(m_Value(LHS), m_ConstantInt(LHSC))) ||
1999 LHSC->getValue() != Op0KnownZeroInverted)
H A DInstCombineAndOrXor.cpp966 if (ConstantFP *LHSC = dyn_cast<ConstantFP>(LHS->getOperand(1)))
970 if (LHSC->getValueAPF().isNaN() || RHSC->getValueAPF().isNaN())
1671 if (ConstantFP *LHSC = dyn_cast<ConstantFP>(LHS->getOperand(1)))
1675 if (LHSC->getValueAPF().isNaN() || RHSC->getValueAPF().isNaN())
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp2042 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
2047 Ops[0] = getConstant(LHSC->getAPInt() + RHSC->getAPInt());
2050 LHSC = cast<SCEVConstant>(Ops[0]);
2054 if (LHSC->getValue()->isZero()) {
2453 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
2462 return getAddExpr(getMulExpr(LHSC, Add->getOperand(0)),
2463 getMulExpr(LHSC, Add->getOperand(1)));
2469 ConstantInt::get(getContext(), LHSC->getAPInt() * RHSC->getAPInt());
2473 LHSC = cast<SCEVConstant>(Ops[0]);
2769 if (const SCEVConstant *LHSC
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp4843 const Type *LHSC = getCanonicalType(LHS).getTypePtr(); local
4847 if (const EnumType *ET = dyn_cast<EnumType>(LHSC))
4848 LHSC = getIntegerTypeForEnum(ET);
4852 if (LHSC == RHSC) return 0;
4854 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
4857 unsigned LHSRank = getIntegerRank(LHSC);
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp1075 unsigned LHSC = LHS ? LHS->getZExtValue() : 0; local
1079 if (LHSC != 0 || RHSC != 0) return false;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4575 if (ConstantFPSDNode *LHSC = dyn_cast<ConstantFPSDNode>(LHS)) {
4577 IsExp10 = LHSC->isExactlyValue(Ten);

Completed in 676 milliseconds