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

/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp772 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
773 if (RHSC->isNullValue() && LHS.hasOneUse() &&
955 uint64_t RHSC = RHS->getZExtValue(); local
956 if ((VT == MVT::i16 && RHSC != 2) ||
957 (VT == MVT::i8 && RHSC != 1))
961 Offset = DAG.getConstant(RHSC, VT);
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp463 int RHSC = (int)RHS->getZExtValue(); local
465 RHSC = -RHSC;
467 if (RHSC >= 0 && RHSC < 0x1000) { // 12 bits (unsigned)
473 OffImm = CurDAG->getTargetConstant(RHSC, MVT::i32);
492 int RHSC = (int)RHS->getZExtValue(); local
493 if (RHSC & 1) {
494 RHSC = RHSC
519 int RHSC; local
590 int RHSC = (int)RHS->getZExtValue(); local
631 int RHSC; local
821 int RHSC; local
884 int RHSC; local
1006 int RHSC; local
1069 unsigned RHSC = RHS ? RHS->getZExtValue() : 0; local
1080 int RHSC; local
1126 int RHSC; local
1201 int RHSC = (int)RHS->getZExtValue(); local
1230 int RHSC = (int)RHS->getSExtValue(); local
1254 int RHSC; local
1274 int RHSC = (int)RHS->getZExtValue(); local
[all...]
H A DARMISelLowering.cpp2762 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
2763 unsigned C = RHSC->getZExtValue();
9310 int RHSC = (int)RHS->getZExtValue(); local
9311 if (RHSC < 0 && RHSC > -256) {
9314 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
9324 int RHSC = (int)RHS->getZExtValue(); local
9325 if (RHSC < 0 && RHSC > -0x1000) {
9328 Offset = DAG.getConstant(-RHSC, RH
9367 int RHSC = (int)RHS->getZExtValue(); local
[all...]
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp861 static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) { argument
871 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1558 if (Constant *RHSC = dyn_cast<Constant>(ICI.getOperand(1))) {
1559 RHSOp = ConstantExpr::getIntToPtr(RHSC, SrcTy);
1560 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) {
1561 RHSOp = RHSC->getOperand(0);
2203 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
2208 if (RHSC->isNullValue() &&
2227 Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2229 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2240 RHSC, I.getName());
2243 RHSC,
2646 FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI, Constant *RHSC) argument
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp4105 const Type *RHSC = getCanonicalType(RHS).getTypePtr(); local
4106 if (LHSC == RHSC) return 0;
4109 bool RHSUnsigned = RHSC->isUnsignedIntegerType();
4112 unsigned RHSRank = getIntegerRank(RHSC);

Completed in 472 milliseconds