Home
last modified time | relevance | path

Searched refs:N (Results 1 – 25 of 1779) sorted by relevance

12345678910>>...72

/freebsd-9-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
DLegalizeTypes.h81 bool IgnoreNodeResults(SDNode *N) const { in IgnoreNodeResults() argument
82 return N->getOpcode() == ISD::TargetConstant; in IgnoreNodeResults()
145 SDNode *AnalyzeNewNode(SDNode *N);
147 void ExpungeNode(SDNode *N);
149 void RemapValue(SDValue &N);
155 bool CustomLowerNode(SDNode *N, EVT VT, bool LegalizeResult);
156 bool CustomWidenLowerNode(SDNode *N, EVT VT);
161 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo);
165 SDValue LibCallify(RTLIB::Libcall LC, SDNode *N, bool isSigned);
218 void PromoteIntegerResult(SDNode *N, unsigned ResNo);
[all …]
DLegalizeFloatTypes.cpp47 void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) { in SoftenFloatResult() argument
48 DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG); in SoftenFloatResult()
52 switch (N->getOpcode()) { in SoftenFloatResult()
56 N->dump(&DAG); dbgs() << "\n"; in SoftenFloatResult()
60 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break; in SoftenFloatResult()
61 case ISD::BITCAST: R = SoftenFloatRes_BITCAST(N); break; in SoftenFloatResult()
62 case ISD::BUILD_PAIR: R = SoftenFloatRes_BUILD_PAIR(N); break; in SoftenFloatResult()
64 R = SoftenFloatRes_ConstantFP(cast<ConstantFPSDNode>(N)); in SoftenFloatResult()
67 R = SoftenFloatRes_EXTRACT_VECTOR_ELT(N); break; in SoftenFloatResult()
68 case ISD::FABS: R = SoftenFloatRes_FABS(N); break; in SoftenFloatResult()
[all …]
DLegalizeIntegerTypes.cpp35 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) { in PromoteIntegerResult() argument
36 DEBUG(dbgs() << "Promote integer result: "; N->dump(&DAG); dbgs() << "\n"); in PromoteIntegerResult()
40 if (CustomLowerNode(N, N->getValueType(ResNo), true)) in PromoteIntegerResult()
43 switch (N->getOpcode()) { in PromoteIntegerResult()
47 N->dump(&DAG); dbgs() << "\n"; in PromoteIntegerResult()
50 case ISD::MERGE_VALUES:Res = PromoteIntRes_MERGE_VALUES(N, ResNo); break; in PromoteIntegerResult()
51 case ISD::AssertSext: Res = PromoteIntRes_AssertSext(N); break; in PromoteIntegerResult()
52 case ISD::AssertZext: Res = PromoteIntRes_AssertZext(N); break; in PromoteIntegerResult()
53 case ISD::BITCAST: Res = PromoteIntRes_BITCAST(N); break; in PromoteIntegerResult()
54 case ISD::BSWAP: Res = PromoteIntRes_BSWAP(N); break; in PromoteIntegerResult()
[all …]
DLegalizeVectorTypes.cpp33 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) { in ScalarizeVectorResult() argument
35 N->dump(&DAG); in ScalarizeVectorResult()
39 switch (N->getOpcode()) { in ScalarizeVectorResult()
43 N->dump(&DAG); in ScalarizeVectorResult()
49 case ISD::MERGE_VALUES: R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break; in ScalarizeVectorResult()
50 case ISD::BITCAST: R = ScalarizeVecRes_BITCAST(N); break; in ScalarizeVectorResult()
51 case ISD::BUILD_VECTOR: R = ScalarizeVecRes_BUILD_VECTOR(N); break; in ScalarizeVectorResult()
52 case ISD::CONVERT_RNDSAT: R = ScalarizeVecRes_CONVERT_RNDSAT(N); break; in ScalarizeVectorResult()
53 case ISD::EXTRACT_SUBVECTOR: R = ScalarizeVecRes_EXTRACT_SUBVECTOR(N); break; in ScalarizeVectorResult()
54 case ISD::FP_ROUND: R = ScalarizeVecRes_FP_ROUND(N); break; in ScalarizeVectorResult()
[all …]
DLegalizeTypes.cpp169 SDNode *N = NewNodes[i]; in PerformExpensiveChecks() local
170 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); in PerformExpensiveChecks()
212 SDNode *N = Worklist.back(); in run() local
214 assert(N->getNodeId() == ReadyToProcess && in run()
217 if (IgnoreNodeResults(N)) in run()
222 for (unsigned i = 0, NumResults = N->getNumValues(); i < NumResults; ++i) { in run()
223 EVT ResultVT = N->getValueType(i); in run()
233 PromoteIntegerResult(N, i); in run()
237 ExpandIntegerResult(N, i); in run()
241 SoftenFloatResult(N, i); in run()
[all …]
DDAGCombiner.cpp105 void AddUsersToWorkList(SDNode *N) { in AddUsersToWorkList() argument
106 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); in AddUsersToWorkList()
113 SDValue visit(SDNode *N);
118 void AddToWorkList(SDNode *N) { in AddToWorkList() argument
119 WorkListContents.insert(N); in AddToWorkList()
120 WorkListOrder.push_back(N); in AddToWorkList()
125 void removeFromWorkList(SDNode *N) { in removeFromWorkList() argument
126 WorkListContents.erase(N); in removeFromWorkList()
129 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
132 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) { in CombineTo() argument
[all …]
DLegalizeTypesGeneric.cpp33 void DAGTypeLegalizer::ExpandRes_MERGE_VALUES(SDNode *N, unsigned ResNo, in ExpandRes_MERGE_VALUES() argument
35 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo); in ExpandRes_MERGE_VALUES()
39 void DAGTypeLegalizer::ExpandRes_BITCAST(SDNode *N, SDValue &Lo, SDValue &Hi) { in ExpandRes_BITCAST() argument
40 EVT OutVT = N->getValueType(0); in ExpandRes_BITCAST()
42 SDValue InOp = N->getOperand(0); in ExpandRes_BITCAST()
44 SDLoc dl(N); in ExpandRes_BITCAST()
181 void DAGTypeLegalizer::ExpandRes_BUILD_PAIR(SDNode *N, SDValue &Lo, in ExpandRes_BUILD_PAIR() argument
184 Lo = N->getOperand(0); in ExpandRes_BUILD_PAIR()
185 Hi = N->getOperand(1); in ExpandRes_BUILD_PAIR()
188 void DAGTypeLegalizer::ExpandRes_EXTRACT_ELEMENT(SDNode *N, SDValue &Lo, in ExpandRes_EXTRACT_ELEMENT() argument
[all …]
DScheduleDAGSDNodes.cpp68 SUnit *ScheduleDAGSDNodes::newSUnit(SDNode *N) { in newSUnit() argument
74 SUnits.push_back(SUnit(N, (unsigned)SUnits.size())); in newSUnit()
80 if (!N || in newSUnit()
81 (N->isMachineOpcode() && in newSUnit()
82 N->getMachineOpcode() == TargetOpcode::IMPLICIT_DEF)) in newSUnit()
85 SU->SchedulingPref = TLI.getSchedulingPreference(N); in newSUnit()
135 static void CloneNodeWithValues(SDNode *N, SelectionDAG *DAG, in CloneNodeWithValues() argument
139 for (unsigned I = 0, E = N->getNumOperands(); I != E; ++I) in CloneNodeWithValues()
140 Ops.push_back(N->getOperand(I)); in CloneNodeWithValues()
147 MachineSDNode *MN = dyn_cast<MachineSDNode>(N); in CloneNodeWithValues()
[all …]
/freebsd-9-stable/etc/
Dpf.os141 # N - NOP option
204 16384:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
205 16384:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
206 32768:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
207 32768:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
208 65535:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
209 65535:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
210 65535:64:0:64:M*,N,W1,N,N,T,N,N,S: AIX:5.3:ML1:AIX 5.3 ML1
223 S4:64:1:60:M1360,S,T,N,W0: Linux:google::Linux (Google crawlbot)
225 S2:64:1:60:M*,S,T,N,W0: Linux:2.4::Linux 2.4 (big boy)
[all …]
/freebsd-9-stable/tools/tools/tinybsd/conf/firewall/etc/
Dpf.os139 # N - NOP option
197 16384:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
198 16384:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
199 32768:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
200 32768:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
201 65535:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
202 65535:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
203 65535:64:0:64:M*,N,W1,N,N,T,N,N,S: AIX:5.3:ML1:AIX 5.3 ML1
215 S4:64:1:60:M1360,S,T,N,W0: Linux:google::Linux (Google crawlbot)
217 S2:64:1:60:M*,S,T,N,W0: Linux:2.4::Linux 2.4 (big boy)
[all …]
/freebsd-9-stable/tools/tools/tinybsd/conf/wireless/etc/
Dpf.os139 # N - NOP option
197 16384:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
198 16384:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
199 32768:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
200 32768:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
201 65535:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2
202 65535:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2
203 65535:64:0:64:M*,N,W1,N,N,T,N,N,S: AIX:5.3:ML1:AIX 5.3 ML1
215 S4:64:1:60:M1360,S,T,N,W0: Linux:google::Linux (Google crawlbot)
217 S2:64:1:60:M*,S,T,N,W0: Linux:2.4::Linux 2.4 (big boy)
[all …]
/freebsd-9-stable/tools/regression/usr.bin/make/
Dcommon.sh36 N=1
37 while [ ${N} -le ${TEST_N} ] ; do
38 if ! skip_test ${N} ; then
39 if [ ! -f ${OUTPUT_DIR}/status.${N} -o \
40 ! -f ${OUTPUT_DIR}/stdout.${N} -o \
41 ! -f ${OUTPUT_DIR}/stderr.${N} ] ; then
42 echo "Test ${SUBDIR}/${N} no yet run"
46 N=$((N + 1))
257 N=1
258 while [ ${N} -le ${TEST_N} ] ; do
[all …]
/freebsd-9-stable/contrib/libpcap/
Dscanner.l96 N ([0-9]+|(0X|0x)[0-9A-Fa-f]+)
154 V6604 {W}:{W}:{W}:{W}:{W}:{W}:{N}\.{N}\.{N}\.{N}
156 V6504 ::{W}:{W}:{W}:{W}:{W}:{N}\.{N}\.{N}\.{N}
157 V6514 {W}::{W}:{W}:{W}:{W}:{N}\.{N}\.{N}\.{N}
158 V6524 {W}:{W}::{W}:{W}:{W}:{N}\.{N}\.{N}\.{N}
159 V6534 {W}:{W}:{W}::{W}:{W}:{N}\.{N}\.{N}\.{N}
160 V6544 {W}:{W}:{W}:{W}::{W}:{N}\.{N}\.{N}\.{N}
161 V6554 {W}:{W}:{W}:{W}:{W}::{N}\.{N}\.{N}\.{N}
163 V6404 ::{W}:{W}:{W}:{W}:{N}\.{N}\.{N}\.{N}
164 V6414 {W}::{W}:{W}:{W}:{N}\.{N}\.{N}\.{N}
[all …]
/freebsd-9-stable/contrib/llvm/utils/TableGen/
DDAGISelMatcherGen.cpp113 void EmitMatchCode(const TreePatternNode *N, TreePatternNode *NodeNoTypes);
114 void EmitLeafMatchCode(const TreePatternNode *N);
115 void EmitOperatorMatchCode(const TreePatternNode *N,
128 const TreePatternNode *N);
130 void EmitResultOperand(const TreePatternNode *N,
132 void EmitResultOfNamedOperand(const TreePatternNode *N,
134 void EmitResultLeafAsOperand(const TreePatternNode *N,
136 void EmitResultInstructionAsOperand(const TreePatternNode *N,
138 void EmitResultSDNodeXFormAsOperand(const TreePatternNode *N,
198 void MatcherGen::EmitLeafMatchCode(const TreePatternNode *N) { in EmitLeafMatchCode() argument
[all …]
/freebsd-9-stable/contrib/llvm/lib/Target/ARM/
DARMISelDAGToDAG.cpp88 SDNode *Select(SDNode *N);
91 bool hasNoVMLxHazardUse(SDNode *N) const;
94 bool SelectRegShifterOperand(SDValue N, SDValue &A,
97 bool SelectImmShifterOperand(SDValue N, SDValue &A,
99 bool SelectShiftRegShifterOperand(SDValue N, SDValue &A, in SelectShiftRegShifterOperand() argument
102 return SelectRegShifterOperand(N, A, B, C, false); in SelectShiftRegShifterOperand()
104 bool SelectShiftImmShifterOperand(SDValue N, SDValue &A, in SelectShiftImmShifterOperand() argument
107 return SelectImmShifterOperand(N, A, B, false); in SelectShiftImmShifterOperand()
110 bool SelectAddrModeImm12(SDValue N, SDValue &Base, SDValue &OffImm);
111 bool SelectLdStSOReg(SDValue N, SDValue &Base, SDValue &Offset, SDValue &Opc);
[all …]
/freebsd-9-stable/contrib/binutils/bfd/
Dcpu-mips.c44 #define N(BITS_WORD, BITS_ADDR, NUMBER, PRINT, DEFAULT, NEXT) \ macro
96 N (32, 32, bfd_mach_mips3000, "mips:3000", FALSE, NN(I_mips3000)),
97 N (32, 32, bfd_mach_mips3900, "mips:3900", FALSE, NN(I_mips3900)),
98 N (64, 64, bfd_mach_mips4000, "mips:4000", FALSE, NN(I_mips4000)),
99 N (64, 64, bfd_mach_mips4010, "mips:4010", FALSE, NN(I_mips4010)),
100 N (64, 64, bfd_mach_mips4100, "mips:4100", FALSE, NN(I_mips4100)),
101 N (64, 64, bfd_mach_mips4111, "mips:4111", FALSE, NN(I_mips4111)),
102 N (64, 64, bfd_mach_mips4120, "mips:4120", FALSE, NN(I_mips4120)),
103 N (64, 64, bfd_mach_mips4300, "mips:4300", FALSE, NN(I_mips4300)),
104 N (64, 64, bfd_mach_mips4400, "mips:4400", FALSE, NN(I_mips4400)),
[all …]
/freebsd-9-stable/contrib/llvm/lib/Target/R600/
DAMDGPUISelDAGToDAG.cpp46 SDNode *Select(SDNode *N);
59 bool SelectADDR(SDValue N, SDValue &R1, SDValue &R2);
60 bool SelectADDR64(SDValue N, SDValue &R1, SDValue &R2);
67 static bool isGlobalStore(const StoreSDNode *N);
68 static bool isPrivateStore(const StoreSDNode *N);
69 static bool isLocalStore(const StoreSDNode *N);
70 static bool isRegionStore(const StoreSDNode *N);
72 bool isCPLoad(const LoadSDNode *N) const;
73 bool isConstantLoad(const LoadSDNode *N, int cbID) const;
74 bool isGlobalLoad(const LoadSDNode *N) const;
[all …]
/freebsd-9-stable/contrib/nvi/docs/internals/
Dautowrite12 ^Z Y N Suspend.
13 ^Z N * Suspend.
17 ^^ Y N Error.
18 ^^ N * Jump.
22 # force always set to N.
24 ^] Y N Error.
25 ^] N * Jump.
29 :! Y N Warn (if warn option) and execute.
30 :! N * Execute.
44 :next Y Y N Write changes and jump.
[all …]
/freebsd-9-stable/contrib/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h51 void checkForCycles(const SDNode *N);
67 bool isBuildVectorAllOnes(const SDNode *N);
71 bool isBuildVectorAllZeros(const SDNode *N);
76 bool isScalarToVector(const SDNode *N);
80 bool allOperandsUndef(const SDNode *N);
108 void setNode(SDNode *N) { Node = N; } in setNode() argument
127 bool isOperandOf(SDNode *N) const;
279 inline void setNode(SDNode *N);
514 bool isOnlyUserOf(SDNode *N) const;
518 bool isOperandOf(SDNode *N) const;
[all …]
/freebsd-9-stable/sys/dev/en/
Dmidwayreg.h73 #define MID_TXCHAN(N) (1 << ((N) + 9)) /* ack/status/enable xmit channel bit*/ argument
124 #define MIDX_PLACE(N) (0x40040+((N)*0x10)) /* xmit place */ argument
134 #define MIDX_READPTR(N) (0x40044 + ((N) * 0x10)) argument
136 #define MIDX_DESCSTART(N) (0x40048 + ((N) * 0x10)) argument
145 #define MID_VC(N) (MID_RAMOFF + ((N) * 0x10)) argument
163 #define MID_DST_RP(N) (MID_VC(N)|0x4) argument
169 #define MID_WP_ST_CNT(N) (MID_VC(N)|0x8) /* write pointer/state/count */ argument
178 #define MID_CRC(N) (MID_VC(N)|0xc) /* CRC */ argument
191 #define MID_DRQ_A2REG(N) (((N) - MID_DRQOFF) >> 3) argument
193 #define MID_DRQ_REG2A(N) (((N) << 3) + MID_DRQOFF) argument
[all …]
/freebsd-9-stable/contrib/llvm/lib/Target/PowerPC/
DPPCISelDAGToDAG.cpp98 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask,
107 SDNode *Select(SDNode *N);
109 SDNode *SelectBitfieldInsert(SDNode *N);
117 bool SelectAddrImm(SDValue N, SDValue &Disp, in SelectAddrImm() argument
119 return PPCLowering.SelectAddressRegImm(N, Disp, Base, *CurDAG, false); in SelectAddrImm()
125 bool SelectAddrImmOffs(SDValue N, SDValue &Out) const { in SelectAddrImmOffs() argument
126 if (N.getOpcode() == ISD::TargetConstant || in SelectAddrImmOffs()
127 N.getOpcode() == ISD::TargetGlobalAddress) { in SelectAddrImmOffs()
128 Out = N; in SelectAddrImmOffs()
138 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) { in SelectAddrIdx() argument
[all …]
/freebsd-9-stable/sys/net80211/
Dieee80211_action.c85 #define N(a) (sizeof(a) / sizeof(a[0])) in ieee80211_send_action_register() macro
88 if (act >= N(ba_send_action)) in ieee80211_send_action_register()
93 if (act >= N(ht_send_action)) in ieee80211_send_action_register()
98 if (act >= N(meshpl_send_action)) in ieee80211_send_action_register()
103 if (act >= N(meshlm_send_action)) in ieee80211_send_action_register()
108 if (act >= N(hwmp_send_action)) in ieee80211_send_action_register()
113 if (act >= N(vendor_send_action)) in ieee80211_send_action_register()
119 #undef N in ieee80211_send_action_register()
131 #define N(a) (sizeof(a) / sizeof(a[0])) in ieee80211_send_action() macro
136 if (act < N(ba_send_action)) in ieee80211_send_action()
[all …]
/freebsd-9-stable/contrib/gcc/
Dregs.h77 #define REG_N_REFS(N) (VEC_index (reg_info_p, reg_n_info, N)->refs) argument
81 #define REG_FREQ(N) (VEC_index (reg_info_p, reg_n_info, N)->freq) argument
105 #define REG_N_SETS(N) (VEC_index (reg_info_p, reg_n_info, N)->sets) argument
113 #define REG_N_DEATHS(N) (VEC_index (reg_info_p, reg_n_info, N)->deaths) argument
117 #define PSEUDO_REGNO_SIZE(N) \ argument
118 ((GET_MODE_SIZE (PSEUDO_REGNO_MODE (N)) + UNITS_PER_WORD - 1) \
123 #define PSEUDO_REGNO_BYTES(N) \ argument
124 GET_MODE_SIZE (PSEUDO_REGNO_MODE (N))
128 #define PSEUDO_REGNO_MODE(N) GET_MODE (regno_reg_rtx[N]) argument
132 #define REG_N_CALLS_CROSSED(N) \ argument
[all …]
/freebsd-9-stable/contrib/llvm/lib/Target/XCore/
DXCoreISelDAGToDAG.cpp47 SDNode *Select(SDNode *N);
48 SDNode *SelectBRIND(SDNode *N);
57 ConstantSDNode *N = cast<ConstantSDNode>(inN); in immMskBitp() local
58 uint32_t value = (uint32_t)N->getZExtValue(); in immMskBitp()
109 SDNode *XCoreDAGToDAGISel::Select(SDNode *N) { in Select() argument
110 SDLoc dl(N); in Select()
111 switch (N->getOpcode()) { in Select()
114 uint64_t Val = cast<ConstantSDNode>(N)->getZExtValue(); in Select()
115 if (immMskBitp(N)) { in Select()
139 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), in Select()
[all …]
/freebsd-9-stable/contrib/groff/font/devps/generate/
Dsymbol.sed3 /^C .*[ ;]N bracketlefttp[ ;]/bx
4 /^C .*[ ;]N bracketleftex[ ;]/bx
5 /^C .*[ ;]N bracketleftbt[ ;]/bx
6 /^C .*[ ;]N bracketrighttp[ ;]/bx
7 /^C .*[ ;]N bracketrightex[ ;]/bx
8 /^C .*[ ;]N bracketrightbt[ ;]/bx
9 /^C .*[ ;]N bracelefttp[ ;]/bx
10 /^C .*[ ;]N braceleftmid[ ;]/bx
11 /^C .*[ ;]N braceleftbt[ ;]/bx
12 /^C .*[ ;]N bracerighttp[ ;]/bx
[all …]

12345678910>>...72