Home | History | Annotate | Download | only in AArch64

Lines Matching refs:CN

59     const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
60 if (!CN || CN->getZExtValue() % MemSize != 0
61 || CN->getZExtValue() / MemSize > 0xfff)
64 UImm12 = CurDAG->getTargetConstant(CN->getZExtValue() / MemSize, MVT::i64);
103 const ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
104 if (!CN) return false;
118 CN->getValueAPF().convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact);
166 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
167 if (!CN) return false;
169 if (!A64Imms::isLogicalImm(RegWidth, CN->getZExtValue(), Bits))
305 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
306 if (!CN) return false;
308 uint64_t Val = CN->getZExtValue();
340 ConstantPoolSDNode *CN = cast<ConstantPoolSDNode>(Node);
341 const Constant *C = CN->getConstVal();
342 SDValue CP = CurDAG->getTargetConstantPool(C, CN->getValueType(0));