HomeSort by relevance Sort by last modified time
    Searched refs:RHSC (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 463 int RHSC = (int)RHS->getZExtValue();
465 RHSC = -RHSC;
467 if (RHSC >= 0 && RHSC < 0x1000) { // 12 bits (unsigned)
473 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
492 int RHSC = (int)RHS->getZExtValue();
493 if (RHSC & 1) {
494 RHSC = RHSC & ~1
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstCombineAddSub.cpp 303 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
305 ConstantExpr::getTrunc(RHSC, LHSConv->getOperand(0)->getType());
307 ConstantExpr::getSExt(CI, I.getType()) == RHSC &&
354 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
356 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
InstCombine.h 141 Constant *RHSC);
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 165 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
171 if (!MaskedValueIsZero(BOp->getOperand(0), RHSC->getValue(), &TD))
177 Offset += RHSC->getValue();
182 Offset *= RHSC->getValue();
183 Scale *= RHSC->getValue();
188 Offset <<= RHSC->getValue().getLimitedValue();
189 Scale <<= RHSC->getValue().getLimitedValue();
    [all...]
ScalarEvolution.cpp     [all...]
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/MC/
MCExpr.cpp 98 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
99 if (RHSC->getValue() < 0) {
100 OS << RHSC->getValue();
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 772 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
773 if (RHSC->isNullValue() && LHS.hasOneUse() &&
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 861 static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) {
871 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 224 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS))
225 if (RHSC->isAllOnesValue())
226 return RHSC;
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 695 milliseconds