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

/external/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp625 Value *NextInChain = distributeExtsAndCloneChain(ChainIndex - 1); local
629 NewBO = BinaryOperator::Create(BO->getOpcode(), NextInChain, TheOther,
632 NewBO = BinaryOperator::Create(BO->getOpcode(), TheOther, NextInChain,
652 Value *NextInChain = removeConstOffset(ChainIndex - 1); local
655 // If NextInChain is 0 and not the LHS of a sub, we can simplify the
657 if (ConstantInt *CI = dyn_cast<ConstantInt>(NextInChain)) {
682 NewBO = BinaryOperator::Create(NewOp, NextInChain, TheOther, "", IP);
684 NewBO = BinaryOperator::Create(NewOp, TheOther, NextInChain, "", IP);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp11448 SDNode *NextInChain = Index->getChain().getNode(); local
11450 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
11454 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
11462 NextInChain = Ldn->getChain().getNode();
14984 SDNode *NextInChain = Index->getChain().getNode(); local
14986 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
14995 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
14996 NextInChain = Ldn->getChain().getNode();

Completed in 109 milliseconds