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

/external/llvm/lib/CodeGen/
H A DMachineCombiner.cpp68 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
123 /// \returns Depth of last instruction in \InsInstrs ("NewRoot")
177 /// \param Root is a machine instruction that could be replaced by NewRoot.
178 /// It is used to compute a more accurate latency information for NewRoot in
180 /// \param NewRoot is the instruction for which the latency is computed
183 /// \returns Latency of \p NewRoot
184 unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot, argument
189 // Check each definition in NewRoot and compute the latency
192 for (const MachineOperand &MO : NewRoot->operands()) {
205 NewRoot, NewRoo
251 MachineInstr *NewRoot = InsInstrs[NewRootIdx]; local
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tree.Tests.pas253 OldRoot, NewRoot: ICommonTree;
257 NewRoot := TCommonTree.Create(TCommonToken.Create(5));
263 Adaptor.BecomeRoot(NewRoot, OldRoot);
264 NewRoot.SanityCheckParentAndChildIndexes;
269 OldRoot, NewRoot: ICommonTree;
273 NewRoot := TCommonTree.Create(TCommonToken.Create(5));
278 Adaptor.BecomeRoot(NewRoot, OldRoot);
279 NewRoot.SanityCheckParentAndChildIndexes;
284 OldRoot, NewRoot: ICommonTree;
288 NewRoot
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas162 function BecomeRoot(const NewRoot, OldRoot: IANTLRInterface): IANTLRInterface; overload;
209 function BecomeRoot(const NewRoot: IToken; const OldRoot: IANTLRInterface): IANTLRInterface; overload;
1278 function BecomeRoot(const NewRoot, OldRoot: IANTLRInterface): IANTLRInterface; overload; virtual;
1281 function BecomeRoot(const NewRoot: IToken; const OldRoot: IANTLRInterface): IANTLRInterface; overload; virtual;
2684 function TBaseTreeAdaptor.BecomeRoot(const NewRoot,
2690 NewRootTree := NewRoot as ITree;
2693 Result := NewRoot
2714 function TBaseTreeAdaptor.BecomeRoot(const NewRoot: IToken;
2717 Result := BecomeRoot(CreateNode(NewRoot), OldRoot);
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6618 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(), local
6623 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
6637 DAG.setRoot(NewRoot);
6657 NewRoot = SDB->DAG.getCopyToReg(NewRoot, SDB->getCurDebugLoc(),
6659 DAG.setRoot(NewRoot);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp7942 SDValue NewRoot = TLI->LowerFormalArguments(
7946 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
7960 DAG.setRoot(NewRoot);
7981 NewRoot =
7982 SDB->DAG.getCopyToReg(NewRoot, SDB->getCurSDLoc(), SRetReg, ArgValue);
7983 DAG.setRoot(NewRoot);

Completed in 302 milliseconds