Searched refs:getEntryNode (Results 1 - 25 of 66) sorted by relevance

123

/external/llvm/include/llvm/Analysis/
H A DPostDominators.h99 static NodeType *getEntryNode(PostDominatorTree *DT) { function in struct:llvm::GraphTraits
104 if (getEntryNode(N))
105 return df_begin(getEntryNode(N));
107 return df_end(getEntryNode(N));
111 return df_end(getEntryNode(N));
H A DRegionIterator.h269 static NodeType *getEntryNode(NodeType* N) { return N; } \
280 static NodeType *getEntryNode(NodeType* N) { return N; } \
293 static NodeType *getEntryNode(RegionT* R) { \
297 return nodes_iterator::begin(getEntryNode(R)); \
300 return nodes_iterator::end(getEntryNode(R)); \
307 static NodeType *getEntryNode(RegionT* R) { \
311 return nodes_iterator::begin(getEntryNode(R)); \
314 return nodes_iterator::end(getEntryNode(R)); \
329 static NodeType *getEntryNode(RegionInfo *RI) { function in struct:llvm::GraphTraits
330 return GraphTraits<FlatIt<Region*> >::getEntryNode(R
[all...]
H A DInterval.h125 static NodeType *getEntryNode(Interval *I) { return I; } function in struct:llvm::GraphTraits
139 static NodeType *getEntryNode(Inverse<Interval *> G) { return G.Graph; } function in struct:llvm::GraphTraits
H A DCallGraph.h405 static NodeType *getEntryNode(CallGraphNode *CGN) { return CGN; } function in struct:GraphTraits
423 static NodeType *getEntryNode(const CallGraphNode *CGN) { return CGN; } function in struct:GraphTraits
432 static NodeType *getEntryNode(CallGraph *CGN) { function in struct:GraphTraits
453 static NodeType *getEntryNode(const CallGraph *CGN) { function in struct:GraphTraits
H A DLazyCallGraph.h519 static NodeType *getEntryNode(NodeType *N) { return N; } function in struct:llvm::GraphTraits
527 static NodeType *getEntryNode(NodeType *N) { return N; } function in struct:llvm::GraphTraits
/external/llvm/include/llvm/ADT/
H A DGraphTraits.h33 // static NodeType *getEntryNode(const GraphType &)
91 static NodeType *getEntryNode(Inverse<Inverse<T> > *G) { function in struct:llvm::GraphTraits
92 return GraphTraits<T>::getEntryNode(G->Graph.Graph);
H A DPostOrderIterator.h136 static inline _Self begin(GraphT G) { return _Self(GT::getEntryNode(G)); }
140 return _Self(GT::getEntryNode(G), S);
269 Initialize(GT::getEntryNode(G));
H A DDepthFirstIterator.h136 return _Self(GT::getEntryNode(G));
142 return _Self(GT::getEntryNode(G), S);
/external/clang/include/clang/Analysis/Analyses/
H A DDominators.h175 static NodeType *getEntryNode(NodeType *N) { function in struct:llvm::GraphTraits
188 return df_begin(getEntryNode(N));
192 return df_end(getEntryNode(N));
198 static NodeType *getEntryNode(::clang::DominatorTree *DT) { function in struct:llvm::GraphTraits
203 return df_begin(getEntryNode(N));
207 return df_end(getEntryNode(N));
/external/llvm/include/llvm/IR/
H A DDominators.h121 static NodeType *getEntryNode(NodeType *N) { function in struct:llvm::GraphTraits
134 return df_begin(getEntryNode(N));
138 return df_end(getEntryNode(N));
144 static NodeType *getEntryNode(DominatorTree *DT) { function in struct:llvm::GraphTraits
149 return df_begin(getEntryNode(N));
153 return df_end(getEntryNode(N));
H A DCFG.h278 static NodeType *getEntryNode(BasicBlock *BB) { return BB; } function in struct:llvm::GraphTraits
291 static NodeType *getEntryNode(const BasicBlock *BB) { return BB; } function in struct:llvm::GraphTraits
309 static NodeType *getEntryNode(Inverse<BasicBlock *> G) { return G.Graph; } function in struct:llvm::GraphTraits
321 static NodeType *getEntryNode(Inverse<const BasicBlock*> G) { function in struct:llvm::GraphTraits
343 static NodeType *getEntryNode(Function *F) { return &F->getEntryBlock(); } function in struct:llvm::GraphTraits
353 static NodeType *getEntryNode(const Function *F) {return &F->getEntryBlock();} function in struct:llvm::GraphTraits
370 static NodeType *getEntryNode(Inverse<Function*> G) { function in struct:llvm::GraphTraits
376 static NodeType *getEntryNode(Inverse<const Function *> G) { function in struct:llvm::GraphTraits
H A DType.h448 static inline NodeType *getEntryNode(Type *T) { return T; }
461 static inline NodeType *getEntryNode(NodeType *T) { return T; }
/external/clang/include/clang/AST/
H A DStmtGraphTraits.h32 static NodeType* getEntryNode(clang::Stmt* S) { return S; } function in struct:llvm::GraphTraits
59 static NodeType* getEntryNode(const clang::Stmt* S) { return S; } function in struct:llvm::GraphTraits
/external/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h167 static NodeType *getEntryNode(const MachineLoop *L) { return L; } function in struct:llvm::GraphTraits
180 static NodeType *getEntryNode(MachineLoop *L) { return L; } function in struct:llvm::GraphTraits
H A DMachineDominators.h185 static NodeType *getEntryNode(NodeType *N) { function in struct:llvm::GraphTraits
198 static NodeType *getEntryNode(MachineDominatorTree *DT) { function in struct:llvm::GraphTraits
H A DMachineFunction.h485 static NodeType *getEntryNode(MachineFunction *F) {
497 static NodeType *getEntryNode(const MachineFunction *F) { function in struct:llvm::GraphTraits
522 static NodeType *getEntryNode(Inverse<MachineFunction*> G) { function in struct:llvm::GraphTraits
528 static NodeType *getEntryNode(Inverse<const MachineFunction *> G) { function in struct:llvm::GraphTraits
H A DMachineBasicBlock.h707 static NodeType *getEntryNode(MachineBasicBlock *BB) { return BB; } function in struct:llvm::GraphTraits
720 static NodeType *getEntryNode(const MachineBasicBlock *BB) { return BB; } function in struct:llvm::GraphTraits
738 static NodeType *getEntryNode(Inverse<MachineBasicBlock *> G) { function in struct:llvm::GraphTraits
752 static NodeType *getEntryNode(Inverse<const MachineBasicBlock*> G) { function in struct:llvm::GraphTraits
/external/clang/include/clang/Analysis/
H A DCallGraph.h178 static NodeType *getEntryNode(clang::CallGraphNode *CGN) { return CGN; } function in struct:llvm::GraphTraits
194 static NodeType *getEntryNode(const clang::CallGraphNode *CGN) { return CGN; } function in struct:llvm::GraphTraits
202 static NodeType *getEntryNode(clang::CallGraph *CGN) { function in struct:llvm::GraphTraits
227 static NodeType *getEntryNode(const clang::CallGraph *CGN) { function in struct:llvm::GraphTraits
H A DCFG.h1006 static NodeType* getEntryNode(::clang::CFGBlock *BB) function in struct:clang::llvm::GraphTraits
1020 static NodeType* getEntryNode(const clang::CFGBlock *BB) function in struct:clang::llvm::GraphTraits
1034 static NodeType *getEntryNode(Inverse< ::clang::CFGBlock*> G) function in struct:clang::llvm::GraphTraits
1048 static NodeType *getEntryNode(Inverse<const ::clang::CFGBlock*> G) function in struct:clang::llvm::GraphTraits
1065 static NodeType *getEntryNode(::clang::CFG* F) { return &F->getEntry(); } function in struct:clang::llvm::GraphTraits
1076 static NodeType *getEntryNode( const ::clang::CFG* F) { function in struct:clang::llvm::GraphTraits
1095 static NodeType *getEntryNode( ::clang::CFG* F) { return &F->getExit(); } function in struct:clang::llvm::GraphTraits
1105 static NodeType *getEntryNode(const ::clang::CFG* F) { return &F->getExit(); } function in struct:clang::llvm::GraphTraits
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp57 static inline const NodeType *getEntryNode(const BlockFrequencyInfo *G) { function in struct:llvm::GraphTraits
/external/llvm/lib/CodeGen/
H A DMachineBlockFrequencyInfo.cpp59 const NodeType *getEntryNode(const MachineBlockFrequencyInfo *G) { function in struct:llvm::GraphTraits
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h449 static inline NodeType* getEntryNode(NodeType* N) { function in struct:llvm::GraphTraits
475 static inline NodeType* getEntryNode(NodeType* N) { function in struct:llvm::GraphTraits
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILISelDAGToDAG.cpp370 Base = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
371 CurDAG->getEntryNode().getDebugLoc(),
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelDAGToDAG.cpp370 Base = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
371 CurDAG->getEntryNode().getDebugLoc(),
/external/llvm/lib/Target/R600/
H A DSIISelLowering.cpp644 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 0, false);
646 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 4, false);
648 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 8, false);
650 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 12, false);
652 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 16, false);
654 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 20, false);
656 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 24, false);
658 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 28, false);
660 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(), 32, false);
1718 return DAG.getCopyFromReg(DAG.getEntryNode(), SDLo
[all...]

Completed in 725 milliseconds

123