HomeSort by relevance Sort by last modified time
    Searched defs:PostDominatorTree (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Analysis/
PostDominators.cpp 27 // PostDominatorTree Implementation
30 char PostDominatorTree::ID = 0;
31 INITIALIZE_PASS(PostDominatorTree, "postdomtree",
34 bool PostDominatorTree::runOnFunction(Function &F) {
39 PostDominatorTree::~PostDominatorTree() {
43 void PostDominatorTree::print(raw_ostream &OS, const Module *) const {
49 return new PostDominatorTree();
  /external/llvm/include/llvm/Analysis/
PostDominators.h 22 /// PostDominatorTree Class - Concrete subclass of DominatorTree that is used to
25 struct PostDominatorTree : public DominatorTreeBase<BasicBlock> {
28 PostDominatorTree() : DominatorTreeBase<BasicBlock>(true) {}
30 PostDominatorTree(PostDominatorTree &&Arg)
33 PostDominatorTree &operator=(PostDominatorTree &&RHS) {
39 /// \brief Analysis pass which computes a \c PostDominatorTree.
47 typedef PostDominatorTree Result;
51 PostDominatorTree run(Function &F, FunctionAnalysisManager &)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
PostDominators.h 21 /// PostDominatorTree Class - Concrete subclass of DominatorTree that is used to
24 struct PostDominatorTree : public FunctionPass {
28 PostDominatorTree() : FunctionPass(ID) {
33 ~PostDominatorTree();
86 template <> struct GraphTraits<PostDominatorTree*>
88 static NodeType *getEntryNode(PostDominatorTree *DT) {
92 static nodes_iterator nodes_begin(PostDominatorTree *N) {
99 static nodes_iterator nodes_end(PostDominatorTree *N) {

Completed in 908 milliseconds