Home
last modified time | relevance | path

Searched refs:NewNodes (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCallGraphSCCPass.h95 void initialize(ArrayRef<CallGraphNode *> NewNodes) { in initialize() argument
96 Nodes.assign(NewNodes.begin(), NewNodes.end()); in initialize()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp230 SmallVector<SDNode*, 2> NewNodes; in CopyAndMoveSuccessors() local
231 if (!TII->unfoldMemoryOperand(*DAG, N, NewNodes)) in CopyAndMoveSuccessors()
235 assert(NewNodes.size() == 2 && "Expected a load folding node!"); in CopyAndMoveSuccessors()
237 N = NewNodes[1]; in CopyAndMoveSuccessors()
238 SDNode *LoadNode = NewNodes[0]; in CopyAndMoveSuccessors()
H A DLegalizeTypes.cpp73 SmallVector<SDNode*, 16> NewNodes; in PerformExpensiveChecks() local
77 NewNodes.push_back(&Node); in PerformExpensiveChecks()
191 for (SDNode *N : NewNodes) { in PerformExpensiveChecks()
H A DScheduleDAGRRList.cpp985 SmallVector<SDNode *, 2> NewNodes; in TryUnfoldSU() local
986 if (!TII->unfoldMemoryOperand(*DAG, N, NewNodes)) in TryUnfoldSU()
989 assert(NewNodes.size() == 2 && "Expected a load folding node!"); in TryUnfoldSU()
991 N = NewNodes[1]; in TryUnfoldSU()
992 SDNode *LoadNode = NewNodes[0]; in TryUnfoldSU()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.h470 SmallVectorImpl<SDNode *> &NewNodes) const override;
H A DX86InstrInfo.cpp8500 SelectionDAG &DAG, SDNode *N, SmallVectorImpl<SDNode *> &NewNodes) const { in unfoldMemoryOperand()
8555 NewNodes.push_back(Load); in unfoldMemoryOperand()
8605 NewNodes.push_back(NewNode); in unfoldMemoryOperand()
8624 NewNodes.push_back(Store); in unfoldMemoryOperand()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h1424 SmallVectorImpl<SDNode *> &NewNodes) const { in unfoldMemoryOperand() argument