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

/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h676 /// Run a single post-order traversal and save it (in reverse) in RPOT.
678 /// to BlockNode (the index into RPOT) in Nodes.
807 std::vector<const BlockT *> RPOT; member in class:llvm::BlockFrequencyInfoImpl
812 rpot_iterator rpot_begin() const { return RPOT.begin(); }
813 rpot_iterator rpot_end() const { return RPOT.end(); }
823 assert(Node.Index < RPOT.size());
824 return RPOT[Node.Index];
954 RPOT.clear();
988 RPOT.reserve(F->size());
989 std::copy(po_begin(Entry), po_end(Entry), std::back_inserter(RPOT));
[all...]

Completed in 29 milliseconds