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

/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp1156 unsigned LHSC = LHS ? LHS->getZExtValue() : 0; local
1160 if (LHSC != 0 || RHSC != 0) return false;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1553 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(0)); local
1554 if (!LHSC) break;
1555 const APInt &LHSV = LHSC->getValue();
1564 LHSC);
1572 Builder->CreateOr(LHSI->getOperand(1), RHSV), LHSC);
1579 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(1)); local
1580 if (!LHSC) break;
1581 const APInt &LHSV = LHSC->getValue();
1611 ConstantExpr::getNeg(LHSC));
1620 ConstantExpr::getNeg(LHSC));
2535 ConstantInt *LHSC = nullptr; local
2580 ConstantInt *LHSC = nullptr; local
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp4519 const Type *LHSC = getCanonicalType(LHS).getTypePtr(); local
4523 if (const EnumType *ET = dyn_cast<EnumType>(LHSC))
4524 LHSC = getIntegerTypeForEnum(ET);
4528 if (LHSC == RHSC) return 0;
4530 bool LHSUnsigned = LHSC->isUnsignedIntegerType();
4533 unsigned LHSRank = getIntegerRank(LHSC);

Completed in 141 milliseconds