OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PostDominatorTree
(Results
1 - 2
of
2
) sorted by null
/external/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
21
///
PostDominatorTree
Class - Concrete subclass of DominatorTree that is used to
24
struct
PostDominatorTree
: public FunctionPass {
28
PostDominatorTree
() : FunctionPass(ID) {
33
~
PostDominatorTree
();
91
template <> struct GraphTraits<
PostDominatorTree
*>
93
static NodeType *getEntryNode(
PostDominatorTree
*DT) {
97
static nodes_iterator nodes_begin(
PostDominatorTree
*N) {
104
static nodes_iterator nodes_end(
PostDominatorTree
*N) {
Completed in 30 milliseconds