Searched refs:LN0 (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 2986 LoadSDNode *LN0 = HasAnyExt in visitAND() local 2989 if (LN0->getExtensionType() != ISD::SEXTLOAD && in visitAND() 2990 LN0->isUnindexed() && N0.hasOneUse() && SDValue(LN0, 0).hasOneUse()) { in visitAND() 2994 EVT LoadedVT = LN0->getMemoryVT(); in visitAND() 2995 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT; in visitAND() 3002 DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy, in visitAND() 3003 LN0->getChain(), LN0->getBasePtr(), ExtVT, in visitAND() 3004 LN0->getMemOperand()); in visitAND() 3006 CombineTo(LN0, NewLoad, NewLoad.getValue(1)); in visitAND() 3013 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() && in visitAND() [all …]
|
D | TargetLowering.cpp | 1318 } else if (LoadSDNode *LN0 = dyn_cast<LoadSDNode>(N0)) { in SimplifySetCC() local 1320 if (LN0->getExtensionType() == ISD::ZEXTLOAD) { in SimplifySetCC() 1321 MinBits = LN0->getMemoryVT().getSizeInBits(); in SimplifySetCC() 1323 } else if (LN0->getExtensionType() == ISD::SEXTLOAD) { in SimplifySetCC() 1325 MinBits = LN0->getMemoryVT().getSizeInBits(); in SimplifySetCC()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 7091 LoadSDNode *LN0 = cast<LoadSDNode>(N0); in performIntToFpCombine() local 7092 SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(), LN0->getBasePtr(), in performIntToFpCombine() 7093 LN0->getPointerInfo(), LN0->isVolatile(), in performIntToFpCombine() 7094 LN0->isNonTemporal(), LN0->isInvariant(), in performIntToFpCombine() 7095 LN0->getAlignment()); in performIntToFpCombine() 7099 DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), Load.getValue(1)); in performIntToFpCombine()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 20440 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode); in XFormVExtractWithShuffleIntoLoad() local 20442 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile()) in XFormVExtractWithShuffleIntoLoad() 20448 unsigned Align = LN0->getAlignment(); in XFormVExtractWithShuffleIntoLoad()
|