Searched refs:NewNodes (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | CallGraphSCCPass.h | 95 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 D | ScheduleDAGFast.cpp | 230 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 D | LegalizeTypes.cpp | 73 SmallVector<SDNode*, 16> NewNodes; in PerformExpensiveChecks() local 77 NewNodes.push_back(&Node); in PerformExpensiveChecks() 191 for (SDNode *N : NewNodes) { in PerformExpensiveChecks()
|
H A D | ScheduleDAGRRList.cpp | 985 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 D | X86InstrInfo.h | 470 SmallVectorImpl<SDNode *> &NewNodes) const override;
|
H A D | X86InstrInfo.cpp | 8500 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 D | TargetInstrInfo.h | 1424 SmallVectorImpl<SDNode *> &NewNodes) const { in unfoldMemoryOperand() argument
|