Searched defs:RPOT (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h663 /// Run a single post-order traversal and save it (in reverse) in RPOT.
665 /// to BlockNode (the index into RPOT) in Nodes.
791 std::vector<const BlockT *> RPOT; member in class:llvm::BlockFrequencyInfoImpl
796 rpot_iterator rpot_begin() const { return RPOT.begin(); }
797 rpot_iterator rpot_end() const { return RPOT.end(); }
807 assert(Node.Index < RPOT.size());
808 return RPOT[Node.Index];
937 RPOT.clear();
956 RPOT.reserve(F->size());
957 std::copy(po_begin(Entry), po_end(Entry), std::back_inserter(RPOT));
[all...]

Completed in 585 milliseconds