summaryrefslogtreecommitdiff
path: root/gcc/gimple-walker.c
blob: 2f4edf1c6e10584686174b04faec5ff269ac1813 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "backend.h"
#include "tree.h"
#include "gimple-expr.h"
#include "predict.h"
#include "alloc-pool.h"
#include "tree-pass.h"
#include "cgraph.h"
#include "diagnostic.h"
#include "fold-const.h"
#include "gimple-fold.h"
#include "symbol-summary.h"
#include "tree-vrp.h"
#include "ipa-prop.h"
#include "tree-pretty-print.h"
#include "tree-inline.h"
#include "ipa-fnsummary.h"
#include "ipa-utils.h"
#include "tree-ssa-ccp.h"
#include "stringpool.h"
#include "attribs.h"
#include "tree-ssa-alias.h"
#include "tree-ssanames.h"
#include "gimple.h"
#include "cfg.h"
#include "gimple-iterator.h"
#include "gimple-ssa.h"

#include "types-inlines.h"
#include <set>
#include <string>
#include <map>

#include "collect-types.h"
#include "type-stringifier.hpp"

#include "type-collector.hpp"
#include "expr-walker.hpp"
#include "expr-collector.hpp"
#include "gimple-walker.hpp"

void
GimpleWalker::walk(cgraph_node* cnode)
{
  gcc_assert(cnode);
  cnode->get_untransformed_body();
  const_tree decl = cnode->decl;
  gcc_assert(decl);
  function *func = DECL_STRUCT_FUNCTION(decl);
  gcc_assert(func);
  basic_block bb = NULL;
  push_cfun(func);
  FOR_EACH_BB_FN(bb, func)
  {
    walk(bb);
  }
  pop_cfun();
}

void
GimpleWalker::walk(basic_block bb)
{
  gcc_assert(bb);
  for (auto gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi))
  {
    gimple *stmt = gsi_stmt(gsi);
    walk(stmt);
  }
}

void
GimpleWalker::walk(gimple *stmt)
{
  _walk_pre(stmt);
  _walk(stmt);
  _walk_post(stmt);
}

void
GimpleWalker::_walk(gimple *stmt)
{
  gcc_assert(stmt);

#define GimpleWalkerWalk(type) \
  if (type *s = dyn_cast<type *>(stmt)) \
  { \
    _walk_pre(stmt); \
    walk(s); \
    _walk_post(stmt); \
    return; \
  }

  GimpleWalkerWalk(gassign);
  GimpleWalkerWalk(greturn);
  GimpleWalkerWalk(gcond);
  GimpleWalkerWalk(gcall);
  GimpleWalkerWalk(glabel);
  GimpleWalkerWalk(gswitch);


  const enum gimple_code code = gimple_code (stmt);
  switch (code)
  {
    case GIMPLE_PREDICT: return;
    default: break;
  }
  const char* name = gimple_code_name[code];
  log("gimple code name %s\n", name);
  gcc_unreachable();
}

#define GimpleWalkerFuncDef(type) \
void \
GimpleWalker::walk (type *e) \
{ \
  _walk_pre (e); \
  _walk (e); \
  _walk_post (e); \
} \
\
void \
GimpleWalker::_walk(type *e) \
{ \
} 

GimpleWalkerFuncDef(gassign);
GimpleWalkerFuncDef(greturn);
GimpleWalkerFuncDef(gcond);
GimpleWalkerFuncDef(gcall);
GimpleWalkerFuncDef(glabel);
GimpleWalkerFuncDef(gswitch);