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

/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp805 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
806 if (RHSC->isNullValue() && LHS.hasOneUse() &&
1004 uint64_t RHSC = RHS->getZExtValue(); local
1005 if ((VT == MVT::i16 && RHSC != 2) ||
1006 (VT == MVT::i8 && RHSC != 1))
1010 Offset = DAG.getConstant(RHSC, VT);
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp881 static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) { argument
891 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1588 if (Constant *RHSC = dyn_cast<Constant>(ICI.getOperand(1))) {
1589 RHSOp = ConstantExpr::getIntToPtr(RHSC, SrcTy);
1590 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) {
1591 RHSOp = RHSC->getOperand(0);
2233 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
2238 if (RHSC->isNullValue() &&
2257 Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2259 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2270 RHSC, I.getName());
2273 RHSC,
2693 FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI, Constant *RHSC) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp552 int RHSC = (int)RHS->getZExtValue(); local
554 RHSC = -RHSC;
556 if (RHSC >= 0 && RHSC < 0x1000) { // 12 bits (unsigned)
562 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
581 int RHSC = (int)RHS->getZExtValue(); local
582 if (RHSC & 1) {
583 RHSC = RHSC
608 int RHSC; local
680 int RHSC = (int)RHS->getZExtValue(); local
721 int RHSC; local
912 int RHSC; local
975 int RHSC; local
1097 int RHSC; local
1160 unsigned RHSC = RHS ? RHS->getZExtValue() : 0; local
1171 int RHSC; local
1217 int RHSC; local
1292 int RHSC = (int)RHS->getZExtValue(); local
1321 int RHSC = (int)RHS->getSExtValue(); local
1345 int RHSC; local
1365 int RHSC = (int)RHS->getZExtValue(); local
[all...]
H A DARMISelLowering.cpp2847 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
2848 unsigned C = RHSC->getZExtValue();
9785 int RHSC = (int)RHS->getZExtValue(); local
9786 if (RHSC < 0 && RHSC > -256) {
9789 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
9799 int RHSC = (int)RHS->getZExtValue(); local
9800 if (RHSC < 0 && RHSC > -0x1000) {
9803 Offset = DAG.getConstant(-RHSC, RH
9842 int RHSC = (int)RHS->getZExtValue(); local
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp4286 const Type *RHSC = getCanonicalType(RHS).getTypePtr(); local
4287 if (LHSC == RHSC) return 0;
4290 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
4293 unsigned RHSRank = getIntegerRank(RHSC);

Completed in 235 milliseconds