OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getEntryNode
(Results
1 - 25
of
98
) sorted by relevancy
1
2
3
4
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
PostDominators.h
100
static NodeRef
getEntryNode
(PostDominatorTree *DT) {
105
if (
getEntryNode
(N))
106
return df_begin(
getEntryNode
(N));
108
return df_end(
getEntryNode
(N));
112
return df_end(
getEntryNode
(N));
RegionIterator.h
269
static NodeRef
getEntryNode
(NodeRef N) { return N; } \
281
static NodeRef
getEntryNode
(NodeRef N) { return N; } \
293
static NodeRef
getEntryNode
(RegionT *R) { \
297
return nodes_iterator::begin(
getEntryNode
(R)); \
300
return nodes_iterator::end(
getEntryNode
(R)); \
309
static NodeRef
getEntryNode
(RegionT *R) { \
313
return nodes_iterator::begin(
getEntryNode
(R)); \
316
return nodes_iterator::end(
getEntryNode
(R)); \
332
static NodeRef
getEntryNode
(RegionInfo *RI) {
333
return GraphTraits<FlatIt<Region*>>::
getEntryNode
(RI->getTopLevelRegion())
[
all
...]
Interval.h
120
static NodeRef
getEntryNode
(Interval *I) { return I; }
131
static NodeRef
getEntryNode
(Inverse<Interval *> G) { return G.Graph; }
CallGraph.h
424
static NodeRef
getEntryNode
(CallGraphNode *CGN) { return CGN; }
444
static NodeRef
getEntryNode
(const CallGraphNode *CGN) { return CGN; }
472
static NodeRef
getEntryNode
(CallGraph *CGN) {
499
static NodeRef
getEntryNode
(const CallGraph *CGN) {
DDG.h
510
static NodeRef
getEntryNode
(NodeRef N) { return N; }
527
static NodeRef
getEntryNode
(DataDependenceGraph *DG) {
550
static NodeRef
getEntryNode
(NodeRef N) { return N; }
568
static NodeRef
getEntryNode
(const DataDependenceGraph *DG) {
LoopIterator.h
74
static NodeRef
getEntryNode
(const Loop &G) { return {&G, G.getHeader()}; }
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineRegionInfo.h
142
static NodeRef
getEntryNode
(MachineRegionInfo *RI) {
143
return GraphTraits<FlatIt<MachineRegion *>>::
getEntryNode
(
148
return nodes_iterator::begin(
getEntryNode
(RI));
152
return nodes_iterator::end(
getEntryNode
(RI));
162
static NodeRef
getEntryNode
(MachineRegionInfoPass *RI) {
163
return GraphTraits<MachineRegionInfo *>::
getEntryNode
(&RI->getRegionInfo());
MachineLoopInfo.h
186
static NodeRef
getEntryNode
(const MachineLoop *L) { return L; }
195
static NodeRef
getEntryNode
(MachineLoop *L) { return L; }
MachineDominators.h
253
static NodeRef
getEntryNode
(NodeRef N) { return N; }
274
static NodeRef
getEntryNode
(MachineDominatorTree *DT) {
MachineBasicBlock.h
1137
static NodeRef
getEntryNode
(MachineBasicBlock *BB) { return BB; }
1146
static NodeRef
getEntryNode
(const MachineBasicBlock *BB) { return BB; }
1161
static NodeRef
getEntryNode
(Inverse<MachineBasicBlock *> G) {
1173
static NodeRef
getEntryNode
(Inverse<const MachineBasicBlock *> G) {
MachineFunction.h
1149
static NodeRef
getEntryNode
(MachineFunction *F) { return &F->front(); }
1166
static NodeRef
getEntryNode
(const MachineFunction *F) { return &F->front(); }
1191
static NodeRef
getEntryNode
(Inverse<MachineFunction *> G) {
1197
static NodeRef
getEntryNode
(Inverse<const MachineFunction *> G) {
/src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtGraphTraits.h
28
static NodeRef
getEntryNode
(clang::Stmt *S) { return S; }
54
static NodeRef
getEntryNode
(const clang::Stmt *S) { return S; }
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
ProfiledCallGraph.h
85
ProfiledCallGraphNode *
getEntryNode
() { return &Root; }
134
static NodeRef
getEntryNode
(NodeRef PCGN) { return PCGN; }
142
static NodeRef
getEntryNode
(ProfiledCallGraph *PCG) {
143
return PCG->
getEntryNode
();
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
Dominators.h
284
static NodeRef
getEntryNode
(NodeRef N) { return N; }
292
return nodes_iterator(df_begin(
getEntryNode
(N)));
296
return nodes_iterator(df_end(
getEntryNode
(N)));
302
static NodeRef
getEntryNode
(clang::CFGDomTree *DT) {
307
return nodes_iterator(df_begin(
getEntryNode
(N)));
311
return nodes_iterator(df_end(
getEntryNode
(N)));
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Dominators.h
217
static NodeRef
getEntryNode
(NodeRef N) { return N; }
222
return df_begin(
getEntryNode
(N));
225
static nodes_iterator nodes_end(NodeRef N) { return df_end(
getEntryNode
(N)); }
240
static NodeRef
getEntryNode
(DominatorTree *DT) { return DT->getRootNode(); }
243
return df_begin(
getEntryNode
(N));
247
return df_end(
getEntryNode
(N));
CFG.h
305
static NodeRef
getEntryNode
(BasicBlock *BB) { return BB; }
314
static NodeRef
getEntryNode
(const BasicBlock *BB) { return BB; }
329
static NodeRef
getEntryNode
(Inverse<BasicBlock *> G) { return G.Graph; }
338
static NodeRef
getEntryNode
(Inverse<const BasicBlock *> G) { return G.Graph; }
352
static NodeRef
getEntryNode
(Function *F) { return &F->getEntryBlock(); }
369
static NodeRef
getEntryNode
(const Function *F) { return &F->getEntryBlock(); }
392
static NodeRef
getEntryNode
(Inverse<Function *> G) {
398
static NodeRef
getEntryNode
(Inverse<const Function *> G) {
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CallGraph.h
248
static NodeType *
getEntryNode
(clang::CallGraphNode *CGN) { return CGN; }
258
static NodeType *
getEntryNode
(const clang::CallGraphNode *CGN) { return CGN; }
265
static NodeType *
getEntryNode
(clang::CallGraph *CGN) {
291
static NodeType *
getEntryNode
(const clang::CallGraph *CGN) {
CFG.h
1487
static NodeRef
getEntryNode
(::clang::CFGBlock *BB) { return BB; }
1499
static NodeRef
getEntryNode
(const clang::CFGBlock *BB) { return BB; }
1511
static NodeRef
getEntryNode
(Inverse<::clang::CFGBlock *> G) {
1526
static NodeRef
getEntryNode
(Inverse<const ::clang::CFGBlock *> G) {
1543
static NodeRef
getEntryNode
(::clang::CFG *F) { return &F->getEntry(); }
1553
static NodeRef
getEntryNode
(const ::clang::CFG *F) { return &F->getEntry(); }
1572
static NodeRef
getEntryNode
(::clang::CFG *F) { return &F->getExit(); }
1581
static NodeRef
getEntryNode
(const ::clang::CFG *F) { return &F->getExit(); }
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineRegionInfo.cpp
67
MachineBasicBlock *Entry = GraphTraits<MachineFunction*>::
getEntryNode
(&F);
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
BreadthFirstIterator.h
115
return bf_iterator(GT::
getEntryNode
(G));
DepthFirstIterator.h
153
return df_iterator(GT::
getEntryNode
(G));
159
return df_iterator(GT::
getEntryNode
(G), S);
PostOrderIterator.h
144
return po_iterator(GT::
getEntryNode
(G));
149
return po_iterator(GT::
getEntryNode
(G), S);
SCCIterator.h
102
return scc_iterator(GT::
getEntryNode
(G));
/src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiISelDAGToDAG.cpp
291
SDValue New = CurDAG->getCopyFromReg(CurDAG->
getEntryNode
(),
298
SDValue New = CurDAG->getCopyFromReg(CurDAG->
getEntryNode
(),
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlan.h
1654
// GraphTraints::
getEntryNode
. We should add a new template parameter to
1707
static NodeRef
getEntryNode
(NodeRef N) { return N; }
1722
static NodeRef
getEntryNode
(NodeRef N) { return N; }
1739
static NodeRef
getEntryNode
(Inverse<NodeRef> B) { return B.Graph; }
1762
static NodeRef
getEntryNode
(GraphRef N) { return N->getEntry(); }
1781
static NodeRef
getEntryNode
(GraphRef N) { return N->getEntry(); }
1800
static NodeRef
getEntryNode
(Inverse<GraphRef> N) {
1913
getEntryNode
(VPBlockRecursiveTraversalWrapper<VPBlockBase *> N) {
1932
getEntryNode
(VPBlockRecursiveTraversalWrapper<const VPBlockBase *> N) {
Completed in 51 milliseconds
1
2
3
4
Indexes created Tue Feb 24 08:35:24 UTC 2026