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

  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 545 int RHSC = (int)RHS->getZExtValue();
547 RHSC = -RHSC;
549 if (RHSC >= 0 && RHSC < 0x1000) { // 12 bits (unsigned)
556 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
575 int RHSC = (int)RHS->getZExtValue();
576 if (RHSC & 1) {
577 RHSC = RHSC & ~1
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstCombineAddSub.cpp     [all...]
InstCombine.h 162 Constant *RHSC);
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 219 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
225 if (!MaskedValueIsZero(BOp->getOperand(0), RHSC->getValue(), &DL))
231 Offset += RHSC->getValue();
236 Offset *= RHSC->getValue();
237 Scale *= RHSC->getValue();
242 Offset <<= RHSC->getValue().getLimitedValue();
243 Scale <<= RHSC->getValue().getLimitedValue();
    [all...]
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/llvm/lib/MC/
MCExpr.cpp 87 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
88 if (RHSC->getValue() < 0) {
89 OS << RHSC->getValue();
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 606 int64_t RHSC = (int64_t)RHS->getZExtValue();
608 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 && RHSC < (0x1000 << Scale)) {
614 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, MVT::i64);
645 int64_t RHSC = RHS->getSExtValue();
647 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 &&
648 RHSC < (0x1000 << Log2_32(Size)))
650 if (RHSC >= -256 && RHSC < 256)
    [all...]
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 419 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
423 // If the LHS already has zeros where RHSC does, this and is dead.
424 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
    [all...]
SelectionDAGBuilder.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 358 ConstantInt *RHSC;
364 m_And(m_Value(RHSVal), m_ConstantInt(RHSC)))) {
365 APInt Not = ~RHSC->getValue();
388 match(I->getOperand(0), m_Add(m_Value(RHSVal), m_ConstantInt(RHSC)));
390 Span = Span.subtract(RHSC->getValue());
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 229 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS))
230 if (RHSC->isAllOnesValue())
231 return RHSC;
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 663 milliseconds