summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/Writer.h
blob: a3539a865c13fd34e9e2648123275ffa60bd95d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//===-- llvm/Analysis/Writer.h - Printer for Analysis routines ---*- C++ -*--=//
//
// This library provides routines to print out various analysis results to 
// an output stream.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_ANALYSIS_WRITER_H
#define LLVM_ANALYSIS_WRITER_H

#include "llvm/Assembly/Writer.h"

namespace cfg {

  // This library provides support for printing out Intervals.
  class Interval;
  class IntervalPartition;

  void WriteToOutput(const Interval *I, std::ostream &o);
  inline std::ostream &operator <<(std::ostream &o, const Interval *I) {
    WriteToOutput(I, o); return o;
  }

  void WriteToOutput(const IntervalPartition &IP, std::ostream &o);
  inline std::ostream &operator <<(std::ostream &o,
                                   const IntervalPartition &IP) {
    WriteToOutput(IP, o); return o;
  }

  // Stuff for printing out Dominator data structures...
  class DominatorSet;
  class ImmediateDominators;
  class DominatorTree;
  class DominanceFrontier;

  void WriteToOutput(const DominatorSet &, std::ostream &o);
  inline std::ostream &operator <<(std::ostream &o, const DominatorSet &DS) {
    WriteToOutput(DS, o); return o;
  }

  void WriteToOutput(const ImmediateDominators &, std::ostream &o);
  inline std::ostream &operator <<(std::ostream &o,
                                   const ImmediateDominators &ID) {
    WriteToOutput(ID, o); return o;
  }

  void WriteToOutput(const DominatorTree &, std::ostream &o);
  inline std::ostream &operator <<(std::ostream &o, const DominatorTree &DT) {
    WriteToOutput(DT, o); return o;
  }

  void WriteToOutput(const DominanceFrontier &, std::ostream &o);
  inline std::ostream &operator <<(std::ostream &o,
                                   const DominanceFrontier &DF) {
    WriteToOutput(DF, o); return o;
  }

  // Stuff for printing out Loop information
  class Loop;
  class LoopInfo;

  void WriteToOutput(const LoopInfo &, std::ostream &o);
  inline std::ostream &operator <<(std::ostream &o, const LoopInfo &LI) {
    WriteToOutput(LI, o); return o;
  }
  
  void WriteToOutput(const Loop *, std::ostream &o);
  inline std::ostream &operator <<(std::ostream &o, const Loop *L) {
    WriteToOutput(L, o); return o;
  }
  
}  // End namespace CFG

class InductionVariable;
void WriteToOutput(const InductionVariable &, std::ostream &o);
inline std::ostream &operator <<(std::ostream &o, const InductionVariable &IV) {
  WriteToOutput(IV, o); return o;
}

// Stuff for printing out a callgraph...
class CallGraph;
class CallGraphNode;

void WriteToOutput(const CallGraph &, std::ostream &o);
inline std::ostream &operator <<(std::ostream &o, const CallGraph &CG) {
  WriteToOutput(CG, o); return o;
}
  
void WriteToOutput(const CallGraphNode *, std::ostream &o);
inline std::ostream &operator <<(std::ostream &o, const CallGraphNode *CGN) {
  WriteToOutput(CGN, o); return o;
}

#endif