Searched refs:N2 (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DStringSwitch.h90 template<unsigned N0, unsigned N1, unsigned N2>
92 const char (&S2)[N2], const T& Value) {
96 template<unsigned N0, unsigned N1, unsigned N2, unsigned N3>
98 const char (&S2)[N2], const char (&S3)[N3],
103 template<unsigned N0, unsigned N1, unsigned N2, unsigned N3, unsigned N4>
105 const char (&S2)[N2], const char (&S3)[N3],
/macosx-10.9.5/llvmCore-3425.0.33/unittests/VMCore/
H A DMDBuilderTest.cpp87 MDNode *N2 = MDHelper.createTBAANode("Node", R, true); local
91 EXPECT_NE(N0, N2);
94 EXPECT_GE(N2->getNumOperands(), 3U);
97 EXPECT_TRUE(isa<MDString>(N2->getOperand(0)));
100 EXPECT_EQ(cast<MDString>(N2->getOperand(0))->getString(), "Node");
103 EXPECT_EQ(N2->getOperand(1), R);
104 EXPECT_TRUE(isa<ConstantInt>(N2->getOperand(2)));
105 EXPECT_EQ(cast<ConstantInt>(N2->getOperand(2))->getZExtValue(), 1U);
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1300 // commuteShuffle - swaps the values of N1 and N2, and swaps all indices in
1301 // the shuffle mask M that point at N1 to point at N2, and indices that point
1302 // N2 to point at N1.
1303 static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) { argument
1304 std::swap(N1, N2);
1315 SDValue N2, const int *Mask) {
1316 assert(N1.getValueType() == N2.getValueType() && "Invalid VECTOR_SHUFFLE");
1323 if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF)
1336 if (N1 == N2) {
1337 N2
1314 getVectorShuffle(EVT VT, DebugLoc dl, SDValue N1, SDValue N2, const int *Mask) argument
1569 FoldSetCC(EVT VT, SDValue N1, SDValue N2, ISD::CondCode Cond, DebugLoc dl) argument
2738 getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N1, SDValue N2) argument
3201 getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N1, SDValue N2, SDValue N3) argument
3291 getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N1, SDValue N2, SDValue N3, SDValue N4) argument
3298 getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N1, SDValue N2, SDValue N3, SDValue N4, SDValue N5) argument
4680 getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList, SDValue N1, SDValue N2) argument
4686 getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList, SDValue N1, SDValue N2, SDValue N3) argument
4692 getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList, SDValue N1, SDValue N2, SDValue N3, SDValue N4) argument
4699 getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList, SDValue N1, SDValue N2, SDValue N3, SDValue N4, SDValue N5) argument
[all...]
H A DDAGCombiner.cpp254 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
255 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
567 SDValue N0, N1, N2; local
568 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
4035 SDValue N2 = N->getOperand(2); local
4038 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
4043 if (N1 == N2)
4050 return N2;
4053 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4076 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
4120 SDValue N2 = N->getOperand(2); local
5995 SDValue N2 = N->getOperand(2); local
6530 SDValue N2 = N->getOperand(2); local
8919 SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2) argument
9062 SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2, SDValue N3, ISD::CondCode CC, bool NotExtCompare) argument
[all...]
H A DInstrEmitter.cpp518 SDValue N2 = Node->getOperand(2);
519 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
H A DLegalizeDAG.cpp90 SDValue N1, SDValue N2,
182 SDValue N1, SDValue N2,
191 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
205 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
181 ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl, SDValue N1, SDValue N2, ArrayRef<int> Mask) const argument
/macosx-10.9.5/CF-855.17/
H A DCFInternal.h196 /* In the following, N1 and N2 specify an inclusive range N2..N1 with N1 >= N2 */
197 #define __CFBitfieldMask(N1, N2) ((((UInt32)~0UL) << (31UL - (N1) + (N2))) >> (31UL - N1))
198 #define __CFBitfieldGetValue(V, N1, N2) (((V) & __CFBitfieldMask(N1, N2)) >> (N2))
199 #define __CFBitfieldSetValue(V, N1, N2, X) ((V) = ((V) & ~__CFBitfieldMask(N1, N2)) | (((
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp388 SDValue N2 = N->getOperand(2); local
395 if (SelectDirectAddr(N2, Addr)) {
425 SelectADDRsi64(N2.getNode(), N2, Base, Offset):
426 SelectADDRsi(N2.getNode(), N2, Base, Offset)) {
456 SelectADDRri64(N2.getNode(), N2, Base, Offset):
457 SelectADDRri(N2.getNode(), N2, Bas
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DSelectionDAG.h499 SDValue getVectorShuffle(EVT VT, DebugLoc dl, SDValue N1, SDValue N2,
560 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N1, SDValue N2);
562 SDValue N1, SDValue N2, SDValue N3);
564 SDValue N1, SDValue N2, SDValue N3, SDValue N4);
566 SDValue N1, SDValue N2, SDValue N3, SDValue N4,
582 SDValue N1, SDValue N2);
584 SDValue N1, SDValue N2, SDValue N3);
586 SDValue N1, SDValue N2, SDValue N3, SDValue N4);
588 SDValue N1, SDValue N2, SDValue N3, SDValue N4,
991 SDValue N2, IS
[all...]
H A DSelectionDAGNodes.h1118 ShuffleVectorSDNode(EVT VT, DebugLoc dl, SDValue N1, SDValue N2, argument
1121 InitOperands(Ops, N1, N2);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp120 SDNode *SelectIndexedBinOp(SDNode *Op, SDValue N1, SDValue N2,
354 SDValue N1, SDValue N2,
367 SDValue Ops0[] = { N2, LD->getBasePtr(), LD->getChain() };
353 SelectIndexedBinOp(SDNode *Op, SDValue N1, SDValue N2, unsigned Opc8, unsigned Opc16) argument
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/XCore/
H A DXCoreISelLowering.cpp1346 SDValue N2 = N->getOperand(2); local
1353 return DAG.getNode(XCoreISD::LADD, dl, DAG.getVTList(VT, VT), N1, N0, N2);
1358 SDValue Result = DAG.getNode(ISD::AND, dl, VT, N2,
1370 DAG.ComputeMaskedBits(N2, KnownZero, KnownOne);
1373 SDValue Result = DAG.getNode(ISD::ADD, dl, VT, N0, N2);
1383 SDValue N2 = N->getOperand(2); local
1393 DAG.ComputeMaskedBits(N2, KnownZero, KnownOne);
1395 SDValue Borrow = N2;
1397 DAG.getConstant(0, VT), N2);
1409 DAG.ComputeMaskedBits(N2, KnownZer
1422 SDValue N2 = N->getOperand(2); local
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/lib/DateTime/Locale/
H A Dhu_HU.pm255 N2
276 N2
H A Dhu.pm112 my $quarter_format_abbreviated = [ "N1", "N2", "N3", "N4" ];
433 N2
454 N2
/macosx-10.9.5/ntp-88/ntpd/
H A Drefclock_wwv.c439 #define N2 (N15 / 2) /* space (-1) */ macro
442 {N2, N2, 0, 0}, /* 0 */
443 {P2, N2, 0, 0}, /* 1 */
444 {N2, P2, 0, 0}, /* 2 */
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/tests/
H A Dio.sh392 typeset -a e o=(-n2 -N2)
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp836 SDValue N2 = N->getOperand(2); local
837 if (N000 == N2 &&
860 SDValue N2 = N->getOperand(2); local
861 if (N000 == N2 &&
/macosx-10.9.5/CPANInternal-140/Tree-DAG_Node/lib/Tree/
H A DDAG_Node.pm422 node N2 also means that N1's C<mother> attribute is "automatically" set
423 to N2; it also means that N1 stops being anything else's daughter as
424 it becomes N2's daughter.
431 If you try to make N1 a daughter of N2, but it's B<already> a daughter
432 of N2, then this is a no-operation -- it won't move such nodes to the
795 $N2 = ($N1->daughters)[0]; # first daughter of $N1;
797 $node->replace_with($N1, $N2, $N3);
799 As a side affect of attaching $N1 and $N2 to $node's mother, they're
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DARMISelLowering.cpp5035 SDValue N2; local
5047 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5051 N1, N2);
5052 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
5057 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
5078 SDValue N2, N3; local
5084 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5094 N2 = LowerSDIV_v4i8(N2, N
5113 SDValue N2, N3; local
7087 SDValue N2 = N->getOperand(2); local
[all...]
H A DARMISelDAGToDAG.cpp2589 SDValue N2 = N0.getOperand(1); local
2590 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2704 SDValue N2 = N->getOperand(2); local
2708 assert(N2.getOpcode() == ISD::Constant);
2712 cast<ConstantSDNode>(N2)->getZExtValue()),
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp2685 SDValue N2 = Node->getOperand(2); local
2701 SDValue Ops[] = { N0, N2, getI8Imm(Imm), InFlag };
2728 SDValue N2 = Node->getOperand(2); local
2731 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N2);
H A DX86ISelLowering.cpp7096 SDValue N2 = Op.getOperand(2); local
7102 isa<ConstantSDNode>(N2)) {
7115 if (N2.getValueType() != MVT::i32)
7116 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7117 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7120 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7129 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7132 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7150 SDValue N2 = Op.getOperand(2); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1959 TreePatternNode *N1 = Nodes[i], *N2 = Nodes[i+1]; local
1960 assert(N1->getNumTypes() == 1 && N2->getNumTypes() == 1 &&
1963 MadeChange |= N1->UpdateNodeType(0, N2->getExtType(0), *this);
1964 MadeChange |= N2->UpdateNodeType(0, N1->getExtType(0), *this);
/macosx-10.9.5/CPANInternal-140/Lingua-EN-Inflect/lib/Lingua/EN/
H A DInflect.pm1494 PL_ADJ("my",$N2), PL_N("saw",$N2), "\n";
1504 print NUM($N1,""), PL("I"), PL_V(" saw"), NUM($N2), PL_N(" saw");
1594 print inflect("PL(I,$N1) PL_V(saw,$N1) PL(a,$N2) PL_N(saw,$N2)");
1595 print inflect("NUM($N1,)PL(I) PL_V(saw) NUM($N2,)PL(a) PL_N(saw)");
/macosx-10.9.5/CPANInternal-140/Lingua-EN-Inflect-1.895/lib/Lingua/EN/
H A DInflect.pm1767 PL_ADJ("my",$N2), PL_N("saw",$N2), "\n";
1777 print NUM($N1,""), PL("I"), PL_V(" saw"), NUM($N2), PL_N(" saw");
1885 print inflect("PL(I,$N1) PL_V(saw,$N1) PL(a,$N2) PL_N(saw,$N2)");
1886 print inflect("NUM($N1,)PL(I) PL_V(saw) NUM($N2,)PL(a) PL_N(saw)");

Completed in 504 milliseconds

12