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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6151 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0)); local
6153 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
6154 LD1->getAddressSpace() != LD2->getAddressSpace())
6156 EVT LD1VT = LD1->getValueType(0);
6162 !LD1->isVolatile() &&
6164 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
6165 unsigned Align = LD1->getAlignment();
6171 return DAG.getLoad(VT, SDLoc(N), LD1
[all...]

Completed in 150 milliseconds