HomeSort by relevance Sort by last modified time
    Searched refs:getEntryNode (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/llvm/include/llvm/Analysis/
PostDominators.h 88 static NodeType *getEntryNode(PostDominatorTree *DT) {
93 if (getEntryNode(N))
94 return df_begin(getEntryNode(N));
96 return df_end(getEntryNode(N));
100 return df_end(getEntryNode(N));
RegionIterator.h 269 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) {
330 return GraphTraits<FlatIt<Region*> >::getEntryNode(RI->getTopLevelRegion())
    [all...]
Interval.h 128 static NodeType *getEntryNode(Interval *I) { return I; }
142 static NodeType *getEntryNode(Inverse<Interval *> G) { return G.Graph; }
CallGraph.h 315 static NodeType *getEntryNode(CallGraphNode *CGN) { return CGN; }
336 static NodeType *getEntryNode(const CallGraphNode *CGN) { return CGN; }
342 static NodeType *getEntryNode(CallGraph *CGN) {
364 static NodeType *getEntryNode(const CallGraph *CGN) {
Dominators.h 656 NodeT *entry = TraitsTy::getEntryNode(&F);
881 static NodeType *getEntryNode(NodeType *N) {
894 return df_begin(getEntryNode(N));
898 return df_end(getEntryNode(N));
904 static NodeType *getEntryNode(DominatorTree *DT) {
909 return df_begin(getEntryNode(N));
913 return df_end(getEntryNode(N));
LoopInfo.h 686 static NodeType *getEntryNode(const Loop *L) { return L; }
699 static NodeType *getEntryNode(Loop *L) { return L; }
  /external/llvm/include/llvm/ADT/
GraphTraits.h 33 // static NodeType *getEntryNode(const GraphType &)
91 static NodeType *getEntryNode(Inverse<Inverse<T> > *G) {
92 return GraphTraits<T>::getEntryNode(G->Graph.Graph);
PostOrderIterator.h 136 static inline _Self begin(GraphT G) { return _Self(GT::getEntryNode(G)); }
140 return _Self(GT::getEntryNode(G), S);
269 Initialize(GT::getEntryNode(G));
DepthFirstIterator.h 135 return _Self(GT::getEntryNode(G));
141 return _Self(GT::getEntryNode(G), S);
SCCIterator.h 141 static inline _Self begin(const GraphT &G){return _Self(GT::getEntryNode(G));}
  /external/llvm/include/llvm/Support/
DataFlow.h 30 static NodeType *getEntryNode(const Value *G) {
47 static NodeType *getEntryNode(Value *G) {
64 static NodeType *getEntryNode(Inverse<const User*> G) {
85 static NodeType *getEntryNode(Inverse<User*> G) {
CFG.h 252 static NodeType *getEntryNode(BasicBlock *BB) { return BB; }
265 static NodeType *getEntryNode(const BasicBlock *BB) { return BB; }
283 static NodeType *getEntryNode(Inverse<BasicBlock *> G) { return G.Graph; }
295 static NodeType *getEntryNode(Inverse<const BasicBlock*> G) {
317 static NodeType *getEntryNode(Function *F) { return &F->getEntryBlock(); }
327 static NodeType *getEntryNode(const Function *F) {return &F->getEntryBlock();}
344 static NodeType *getEntryNode(Inverse<Function*> G) {
350 static NodeType *getEntryNode(Inverse<const Function *> G) {
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 174 static NodeType *getEntryNode(NodeType *N) {
187 return df_begin(getEntryNode(N));
191 return df_end(getEntryNode(N));
197 static NodeType *getEntryNode(::clang::DominatorTree *DT) {
202 return df_begin(getEntryNode(N));
206 return df_end(getEntryNode(N));
  /external/clang/include/clang/AST/
StmtGraphTraits.h 32 static NodeType* getEntryNode(clang::Stmt* S) { return S; }
59 static NodeType* getEntryNode(const clang::Stmt* S) { return S; }
  /external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 166 static NodeType *getEntryNode(const MachineLoop *L) { return L; }
179 static NodeType *getEntryNode(MachineLoop *L) { return L; }
MachineDominators.h 185 static NodeType *getEntryNode(NodeType *N) {
198 static NodeType *getEntryNode(MachineDominatorTree *DT) {
MachineFunction.h 474 static NodeType *getEntryNode(MachineFunction *F) {
486 static NodeType *getEntryNode(const MachineFunction *F) {
511 static NodeType *getEntryNode(Inverse<MachineFunction*> G) {
517 static NodeType *getEntryNode(Inverse<const MachineFunction *> G) {
MachineBasicBlock.h 672 static NodeType *getEntryNode(MachineBasicBlock *BB) { return BB; }
685 static NodeType *getEntryNode(const MachineBasicBlock *BB) { return BB; }
703 static NodeType *getEntryNode(Inverse<MachineBasicBlock *> G) {
717 static NodeType *getEntryNode(Inverse<const MachineBasicBlock*> G) {
  /external/clang/include/clang/Analysis/
CallGraph.h 178 static NodeType *getEntryNode(clang::CallGraphNode *CGN) { return CGN; }
194 static NodeType *getEntryNode(const clang::CallGraphNode *CGN) { return CGN; }
202 static NodeType *getEntryNode(clang::CallGraph *CGN) {
227 static NodeType *getEntryNode(const clang::CallGraph *CGN) {
CFG.h 864 static NodeType* getEntryNode(::clang::CFGBlock *BB)
878 static NodeType* getEntryNode(const clang::CFGBlock *BB)
892 static NodeType *getEntryNode(Inverse< ::clang::CFGBlock*> G)
906 static NodeType *getEntryNode(Inverse<const ::clang::CFGBlock*> G)
923 static NodeType *getEntryNode(::clang::CFG* F) { return &F->getEntry();
    [all...]
  /external/llvm/include/llvm/IR/
Type.h 448 static inline NodeType *getEntryNode(Type *T) { return T; }
461 static inline NodeType *getEntryNode(NodeType *T) { return T; }
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 268 return CurDAG->getExtLoad(Extension, DL, DestType, CurDAG->getEntryNode(),
294 return CurDAG->getLoad(DestType, DL, CurDAG->getEntryNode(), PoolAddr,
356 ResNode = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 266 ArgumentGraphNode *getEntryNode() { return &SyntheticRoot; }
321 static inline NodeType *getEntryNode(NodeType *A) { return A; }
331 static NodeType *getEntryNode(ArgumentGraph *AG) {
332 return AG->getEntryNode();
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 445 static inline NodeType* getEntryNode(NodeType* N) {
471 static inline NodeType* getEntryNode(NodeType* N) {
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 373 SDValue Zero = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), DL,
377 SDValue Zero = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), DL,
447 SDValue Chain = CurDAG->getCopyToReg(CurDAG->getEntryNode(), DL, DestReg,

Completed in 528 milliseconds

1 2 3