Searched refs:CN (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiISelDAGToDAG.cpp94 bool canBeRepresentedAsSls(const ConstantSDNode &CN) { argument
96 return isInt<21>(CN.getSExtValue()) && ((CN.getSExtValue() & 0x3) == 0);
104 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr)) {
107 if (canBeRepresentedAsSls(*CN)) {
108 int32_t Imm = CN->getSExtValue();
109 Offset = CurDAG->getTargetConstant(Imm, DL, CN->getValueType(0));
126 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr)) {
129 if (isInt<16>(CN->getSExtValue())) {
130 int16_t Imm = CN
[all...]
H A DLanaiTargetObjectFile.h37 bool isConstantInSmallSection(const DataLayout &DL, const Constant *CN) const;
H A DLanaiTargetObjectFile.cpp116 const Constant *CN) const {
117 return isInSmallSection(DL.getTypeAllocSize(CN->getType()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelDAGToDAG.cpp52 const ConstantSDNode *CN = cast<ConstantSDNode>(N); local
53 Pred = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(N), MVT::i32);
155 ConstantSDNode *CN = nullptr; local
157 (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) &&
158 (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
162 CurDAG->getTargetConstant(CN->getSExtValue(), SDLoc(Addr), MVT::i32);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.h38 bool IsConstantInSmallSection(const DataLayout &DL, const Constant *CN,
H A DMips16ISelDAGToDAG.cpp124 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
125 if (isInt<16>(CN->getSExtValue())) {
131 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
137 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
H A DMipsTargetObjectFile.cpp169 const DataLayout &DL, const Constant *CN, const TargetMachine &TM) const {
173 LocalSData && IsInSmallSection(DL.getTypeAllocSize(CN->getType())));
168 IsConstantInSmallSection( const DataLayout &DL, const Constant *CN, const TargetMachine &TM) const argument
H A DMipsSEISelDAGToDAG.cpp285 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
286 if (isIntN(OffsetBits + ShiftAmount, CN->getSExtValue())) {
298 if (!isAligned(Alignment, CN->getZExtValue()))
302 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(Addr),
445 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Offset)) {
446 unsigned CnstOff = CN->getZExtValue();
770 auto *CN = cast<ConstantFPSDNode>(Node); local
771 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
794 auto *CN = cast<ConstantSDNode>(Node); local
795 int64_t Imm = CN
[all...]
H A DMipsISelLowering.cpp796 ConstantSDNode *CN; local
801 if (!(CN = dyn_cast<ConstantSDNode>(Mask)) ||
802 !isShiftedMask(CN->getZExtValue(), SMPos, SMSize))
811 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1))))
814 Pos = CN->getZExtValue();
831 if (!(CN = dyn_cast<ConstantSDNode>(FirstOperand.getOperand(1))))
834 Pos = CN->getZExtValue();
850 if (CN->getZExtValue() <= 0xffff)
877 ConstantSDNode *CN, *CN1; local
883 if (!(CN
1120 ConstantSDNode *CN; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetObjectFile.h35 bool isConstantInSmallSection(const DataLayout &DL, const Constant *CN) const;
H A DRISCVTargetObjectFile.cpp102 const DataLayout &DL, const Constant *CN) const {
103 return isInSmallSection(DL.getTypeAllocSize(CN->getType()));
/freebsd-11-stable/bin/mv/tests/
H A Dlegacy_test.sh41 CN=`basename $1`
42 echo "$CN-$CN" >$1
76 CN=`basename $1`
77 mkdir -p $1/"$CN-$CN"
/freebsd-11-stable/tools/test/iconv/
H A DMakefile9 PT154 SHIFT_JIS EUC-CN EUC-JP EUC-KR
18 HZ ISO-2022-CN ISO-2022-CN-EXT ISO-2022-JP ISO-2022-JP-1 \
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGCDAntipatternChecker.cpp84 StringRef CN(ContainerName);
85 if (CN.contains_lower("test") || CN.contains_lower("mock"))
/freebsd-11-stable/share/i18n/csmapper/ISO646/
H A DMakefile12 ISO646-CN%UCS.646 ISO646-CU%UCS.646 ISO646-DE%UCS.646 \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelDAGToDAG.cpp96 ConstantSDNode *CN = nullptr; local
98 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
99 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
102 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), SDLoc(Addr),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelDAGToDAG.cpp89 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
90 if (isInt<13>(CN->getSExtValue())) {
99 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(Addr),
128 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
129 if (isInt<13>(CN->getSExtValue()))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFISelDAGToDAG.cpp115 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
116 if (isInt<16>(CN->getSExtValue())) {
125 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), DL, MVT::i64);
144 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
145 if (isInt<16>(CN->getSExtValue())) {
153 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), DL, MVT::i64);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCallGraph.cpp107 for (CallGraphNode *CN : Nodes)
108 CN->print(OS);
/freebsd-11-stable/usr.sbin/newsyslog/tests/
H A Dlegacy_test.sh44 CN=`basename $1`
45 echo "$CN-$CN" >$1
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp221 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
223 uint64_t Offset = CN->getSExtValue();
229 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h244 explicit iterator(PointerRec *CN = nullptr) : CurNode(CN) {}
/freebsd-11-stable/etc/rc.d/
H A Dsendmail111 CN = $cnname
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp790 GepNode *CN = *I; local
791 NodeToValueMap::iterator LF = Loc.find(CN);
1223 GepNode *CN = *I; local
1224 CN->Flags &= ~GepNode::Internal;
1225 CN->Flags |= GepNode::Root;
1226 CN->BaseVal = NewInst;
1227 Roots.push_back(CN);
H A DHexagonISelDAGToDAG.cpp701 auto *CN = cast<ConstantFPSDNode>(N); local
702 APInt A = CN->getValueAPF().bitcastToAPInt();
1049 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(C.getNode()); local
1050 if (CN == nullptr)
1052 unsigned CV = CN->getZExtValue();
1593 if (const ConstantSDNode *CN = dyn_cast<const ConstantSDNode>(N)) {
1594 int64_t V = CN->getSExtValue();

Completed in 240 milliseconds

12