Searched refs:NewRoot (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineCombiner.cpp97 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
163 /// \returns Depth of last instruction in \InsInstrs ("NewRoot")
217 /// \param Root is a machine instruction that could be replaced by NewRoot.
218 /// It is used to compute a more accurate latency information for NewRoot in
220 /// \param NewRoot is the instruction for which the latency is computed
223 /// \returns Latency of \p NewRoot
224 unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot, argument
229 // Check each definition in NewRoot and compute the latency
232 for (const MachineOperand &MO : NewRoot->operands()) {
247 NewRoot, NewRoo
289 MachineInstr *NewRoot = InsInstrs.back(); local
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_function_call_trie.h372 auto *NewRoot = Nodes.AppendEmplace( variable
374 if (UNLIKELY(NewRoot == nullptr))
376 if (Roots.AppendEmplace(NewRoot) == nullptr) {
380 if (ShadowStack.AppendEmplace(TSC, NewRoot, CPU) == nullptr) {
497 auto NewRoot = O.Nodes.AppendEmplace( variable
502 if (UNLIKELY(NewRoot == nullptr))
505 if (UNLIKELY(O.Roots.Append(NewRoot) == nullptr))
510 if (DFSStack.AppendEmplace(Root, NewRoot) == nullptr)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp2206 SDValue NewRoot = Leaves.top().Value; local
2208 assert(NodeHeights.count(NewRoot));
2209 int Height = NodeHeights[NewRoot];
2212 if (NewRoot.getOpcode() == ISD::MUL) {
2213 ConstantSDNode *V1C = dyn_cast<ConstantSDNode>(NewRoot.getOperand(1));
2215 EVT VT = NewRoot.getValueType();
2216 SDValue V0 = NewRoot.getOperand(0);
2217 NewRoot = CurDAG->getNode(
2218 ISD::SHL, SDLoc(NewRoot), VT, V0,
2220 V1C->getAPIntValue().logBase2(), SDLoc(NewRoot),
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp9787 SDValue NewRoot = TLI->LowerFormalArguments( local
9791 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
9805 DAG.setRoot(NewRoot);
9828 NewRoot =
9829 SDB->DAG.getCopyToReg(NewRoot, SDB->getCurSDLoc(), SRetReg, ArgValue);
9830 DAG.setRoot(NewRoot);
9955 Chains.push_back(NewRoot);
9956 NewRoot = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
9959 DAG.setRoot(NewRoot);
[all...]

Completed in 138 milliseconds