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

  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 555 int RHSC = (int)RHS->getZExtValue();
557 RHSC = -RHSC;
559 if (RHSC >= 0 && RHSC < 0x1000) { // 12 bits (unsigned)
566 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
585 int RHSC = (int)RHS->getZExtValue();
586 if (RHSC & 1) {
587 RHSC = RHSC & ~1
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstCombine.h 147 Constant *RHSC);
InstCombineAddSub.cpp     [all...]
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 205 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
211 if (!MaskedValueIsZero(BOp->getOperand(0), RHSC->getValue(), &TD))
217 Offset += RHSC->getValue();
222 Offset *= RHSC->getValue();
223 Scale *= RHSC->getValue();
228 Offset <<= RHSC->getValue().getLimitedValue();
229 Scale <<= RHSC->getValue().getLimitedValue();
    [all...]
ScalarEvolution.cpp     [all...]
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/MC/
MCExpr.cpp 92 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
93 if (RHSC->getValue() < 0) {
94 OS << RHSC->getValue();
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 808 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
809 if (RHSC->isNullValue() && LHS.hasOneUse() &&
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 398 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
402 // If the LHS already has zeros where RHSC does, this and is dead.
403 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
    [all...]
SelectionDAGBuilder.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 350 ConstantInt *RHSC;
356 m_And(m_Value(RHSVal), m_ConstantInt(RHSC)))) {
357 APInt Not = ~RHSC->getValue();
380 match(I->getOperand(0), m_Add(m_Value(RHSVal), m_ConstantInt(RHSC)));
382 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/llvm/lib/Target/X86/
X86FastISel.cpp 892 static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) {
902 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
    [all...]
X86ISelLowering.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 2282 milliseconds