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

  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 634 int RHSC = (int)RHS->getSExtValue();
636 RHSC = -RHSC;
638 if (RHSC > -0x1000 && RHSC < 0x1000) { // 12 bits
645 OffImm = CurDAG->getTargetConstant(RHSC, SDLoc(N), MVT::i32);
664 int RHSC = (int)RHS->getZExtValue();
665 if (RHSC & 1) {
666 RHSC = RHSC & ~1
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstCombineAddSub.cpp     [all...]
InstCombineInternal.h 263 Constant *RHSC);
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 641 int64_t RHSC = RHS->getSExtValue();
643 if ((RHSC & (Size - 1)) == 0 && RHSC >= -(0x40 << Scale) &&
644 RHSC < (0x40 << Scale)) {
650 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64);
700 int64_t RHSC = (int64_t)RHS->getZExtValue();
702 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 && RHSC < (0x1000 << Scale)) {
708 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64)
    [all...]
AArch64ISelLowering.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/Analysis/
BasicAliasAnalysis.cpp 206 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
211 APInt RHS = RHSC->getValue().zextOrSelf(Offset.getBitWidth());
223 if (!MaskedValueIsZero(BOp->getOperand(0), RHSC->getValue(), DL, 0, AC,
    [all...]
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 435 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
439 // If the LHS already has zeros where RHSC does, this and is dead.
440 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/IR/
ConstantFold.cpp 243 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS))
244 if (RHSC->isAllOnesValue())
245 return RHSC;
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 417 ConstantInt *RHSC;
424 m_And(m_Value(RHSVal), m_ConstantInt(RHSC)))) {
425 APInt Not = ~RHSC->getValue();
455 if(match(I->getOperand(0), m_Add(m_Value(RHSVal), m_ConstantInt(RHSC)))) {
456 Span = Span.subtract(RHSC->getValue());
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 669 milliseconds