Searched defs:N1C (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp2532 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
2533 if (!N1C)
2540 unsigned N1CVal = N1C->getZExtValue();
H A DARMISelLowering.cpp6906 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
6907 if (N1C) {
6908 unsigned Val = N1C->getZExtValue();
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp1335 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
1339 if (N0C && !N1C)
1343 if (N0C && N0C->isNullValue() && N1C && N1C->isNullValue()) {
1353 if (N1C && N1C->isNullValue() && N->hasNUsesOfValue(0, 0)) {
1372 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
1376 if (N0C && N0C->isNullValue() && N1C && N1C->isNullValue()) {
1392 if (N1C
1412 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1927 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
1928 const APInt &C1 = N1C->getAPIntValue();
2151 } else if ((N1C->isNullValue() || N1C->getAPIntValue() == 1) &&
2156 bool TrueWhenTrue = (Cond == ISD::SETEQ) ^ (N1C->getAPIntValue() != 1);
2194 } else if (N1C->getAPIntValue() == 1 &&
2229 unsigned OperandBitSize = N1C->getValueType(0).getSizeInBits();
3314 const APInt &N1C = cast<ConstantSDNode>(N->getOperand(1))->getAPIntValue(); local
3315 APInt::mu magics = N1C.magicu();
3321 if (magics.a != 0 && !N1C[
[all...]
H A DDAGCombiner.cpp1319 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
1334 if (N0C && N1C)
1335 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
1337 if (N0C && !N1C)
1340 if (N1C && N1C->isNullValue())
1344 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
1346 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
1348 (uint64_t)N1C->getSExtValue());
1350 if (N1C
1485 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
1529 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
1564 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); local
1652 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
1746 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); local
1833 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); local
1885 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
1927 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
1979 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
2017 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
2261 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
2733 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
3053 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
3243 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
3371 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
3516 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
3741 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
7441 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); local
[all...]
H A DSelectionDAG.cpp1508 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
1509 const APInt &C1 = N1C->getAPIntValue();
1526 if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1529 if (N1C->getValueType(0) == MVT::ppcf128)
1532 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
2677 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); local
2841 if (N1C) {
2842 APInt Val = N1C->getAPIntValue();
2953 if (N1C) {
2955 SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2
3112 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); local
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp8765 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8766 if (N1C && N1C->getAPIntValue() == 1) {
13039 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); local
13044 if (N1C && N0.getOpcode() == ISD::AND &&
13052 APInt ShAmt = N1C->getAPIntValue();

Completed in 260 milliseconds