HomeSort by: relevance | last modified time | path
    Searched refs:NewRoot (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_function_call_trie.h 373 auto *NewRoot = Nodes.AppendEmplace(
375 if (UNLIKELY(NewRoot == nullptr))
377 if (Roots.AppendEmplace(NewRoot) == nullptr) {
381 if (ShadowStack.AppendEmplace(TSC, NewRoot, CPU) == nullptr) {
498 auto NewRoot = O.Nodes.AppendEmplace(
503 if (UNLIKELY(NewRoot == nullptr))
506 if (UNLIKELY(O.Roots.Append(NewRoot) == nullptr))
511 if (DFSStack.AppendEmplace(Root, NewRoot) == nullptr)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineCombiner.cpp 99 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
169 /// \returns Depth of last instruction in \InsInstrs ("NewRoot")
223 /// \param Root is a machine instruction that could be replaced by NewRoot.
224 /// It is used to compute a more accurate latency information for NewRoot in
226 /// \param NewRoot is the instruction for which the latency is computed
229 /// \returns Latency of \p NewRoot
230 unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot,
235 // Check each definition in NewRoot and compute the latency
238 for (const MachineOperand &MO : NewRoot->operands()) {
253 NewRoot, NewRoot->findRegisterDefOperandIdx(MO.getReg()), UseMO
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 2212 SDValue NewRoot = Leaves.top().Value;
2214 assert(NodeHeights.count(NewRoot));
2215 int Height = NodeHeights[NewRoot];
2218 if (NewRoot.getOpcode() == ISD::MUL) {
2219 ConstantSDNode *V1C = dyn_cast<ConstantSDNode>(NewRoot.getOperand(1));
2221 EVT VT = NewRoot.getValueType();
2222 SDValue V0 = NewRoot.getOperand(0);
2223 NewRoot = CurDAG->getNode(
2224 ISD::SHL, SDLoc(NewRoot), VT, V0,
2226 V1C->getAPIntValue().logBase2(), SDLoc(NewRoot),
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 10168 SDValue NewRoot = TLI->LowerFormalArguments(
10172 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
10186 DAG.setRoot(NewRoot);
10209 NewRoot =
10210 SDB->DAG.getCopyToReg(NewRoot, SDB->getCurSDLoc(), SRetReg, ArgValue);
10211 DAG.setRoot(NewRoot);
10336 Chains.push_back(NewRoot);
10337 NewRoot = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
10340 DAG.setRoot(NewRoot);
    [all...]

Completed in 42 milliseconds