Searched defs:RHSC (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp920 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
921 if (RHSC->isNullValue() && LHS.hasOneUse() &&
1130 uint64_t RHSC = RHS->getZExtValue(); local
1131 if ((VT == MVT::i16 && RHSC != 2) ||
1132 (VT == MVT::i8 && RHSC != 1))
1136 Offset = DAG.getConstant(RHSC, VT);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp606 int64_t RHSC = (int64_t)RHS->getZExtValue(); local
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(); local
647 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 &&
648 RHSC < (0x1000 << Log2_32(Size)))
650 if (RHSC >
[all...]
H A DAArch64ISelLowering.cpp1022 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
1024 uint64_t C = RHSC->getZExtValue();
2886 const ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS); local
2887 if (RHSC && RHSC->getZExtValue() == 0) {
7836 int64_t RHSC = (int64_t)RHS->getZExtValue(); local
7837 if (RHSC >= 256 || RHSC <= -256)
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp545 int RHSC = (int)RHS->getZExtValue(); local
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(); local
576 if (RHSC & 1) {
577 RHSC = RHSC
602 int RHSC; local
674 int RHSC = (int)RHS->getZExtValue(); local
715 int RHSC; local
908 int RHSC; local
972 int RHSC; local
1095 int RHSC; local
1157 unsigned RHSC = RHS ? RHS->getZExtValue() : 0; local
1168 int RHSC; local
1215 int RHSC; local
1291 int RHSC = (int)RHS->getZExtValue(); local
1321 int RHSC = (int)RHS->getSExtValue(); local
1346 int RHSC; local
1366 int RHSC = (int)RHS->getZExtValue(); local
[all...]
H A DARMISelLowering.cpp3143 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
3144 unsigned C = RHSC->getZExtValue();
10030 int RHSC = (int)RHS->getZExtValue(); local
10031 if (RHSC < 0 && RHSC > -256) {
10034 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10044 int RHSC = (int)RHS->getZExtValue(); local
10045 if (RHSC < 0 && RHSC > -0x1000) {
10048 Offset = DAG.getConstant(-RHSC, RH
10087 int RHSC = (int)RHS->getZExtValue(); local
[all...]
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1135 static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) { argument
1145 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
1226 const auto *RHSC = dyn_cast<ConstantFP>(RHS); local
1227 if (RHSC && RHSC->isNullValue())
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1802 if (Constant *RHSC = dyn_cast<Constant>(ICI.getOperand(1))) {
1803 RHSOp = ConstantExpr::getIntToPtr(RHSC, SrcTy);
1804 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) {
1805 RHSOp = RHSC->getOperand(0);
2741 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
2746 if (RHSC->isNullValue() &&
2765 Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2767 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2778 RHSC, I.getName());
2781 RHSC,
3291 FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI, Constant *RHSC) argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp358 ConstantInt *RHSC; local
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());
/external/clang/lib/AST/
H A DASTContext.cpp4520 const Type *RHSC = getCanonicalType(RHS).getTypePtr(); local
4525 if (const EnumType *ET = dyn_cast<EnumType>(RHSC))
4526 RHSC = getIntegerTypeForEnum(ET);
4528 if (LHSC == RHSC) return 0;
4531 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
4534 unsigned RHSRank = getIntegerRank(RHSC);

Completed in 260 milliseconds