-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaliasenv_simple.h
138 lines (112 loc) · 4.95 KB
/
aliasenv_simple.h
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
134
135
136
137
#ifndef aliasenv_SIMPLE_GUARD
#define aliasenv_SIMPLE_GUARD
#include "defines.h"
#include "writer.h"
#include "aliasenv_simple.h"
#include <map>
namespace ctb
{
/**
* This aliasenv is a deprecated one serving just for the purpose of having old unit tests and a simple example. For current version of this environment see aliasenv_simu.h
*
* for general aliasenv documentation see the aliasenv_generator.h
*
* This specific class relizes generation environment for a simple testing output. That is this class drives generation of a simple method test which somehow tests whether internal instruction generators work as expected without providing full input/output syntax of bobox. When writting this, bobox is still unavailable to the tester and thus it makes sense to have 'something' which can be compiled.
*
* Specifically we use internal aliases defined by aliasenv_generator and on top we define expansions for 'input' and 'output' aliases, which are output-environment dependent and thus are defined neither as part of instruction table nor part of the internal generator. Then we load into memory templates from file and direct their composition. During this process we use also an actual generator to generate actual 'isntruction code'.
*
* */
class aliasenv_simple : public aliasenv_generator
{
protected:
typedef map<string, string> aliastab_t;
static aliastab_t aliases;
static void init();
public:
typedef language_cpp language;
static string get_name();
static string alias(const string& a, bool* s = NULL);
template <class G> static writer<aliasenv_simple> generate(int m, G& generator, string name, stringlist args);
} ;
map<string, string> aliasenv_simple::aliases;
#define ADD(a,b) aliases.insert(aliastab_t::value_type(a,b))
string aliasenv_simple::get_name()
{
return "simple";
}
string aliasenv_simple::alias(const string& a, bool* s)
{
auto itr = aliases.find(a);
if(itr == aliases.end())
return aliasenv_generator::alias(a, s);
if(s != NULL)
*s = true;
return itr->second;
}
void aliasenv_simple::init()
{
static bool initialized = false;
if(initialized)
return;
aliasenv_generator::init();
ADD("input", "data_in_$ioindex[pos_in_$ioindex+j]");
ADD("output", "data_out_$ioindex[pos_out_$ioindex+j]");
ADD("fdeclin", writer<aliasenv_generator>::from_file(string().append(exec_path).append("templates/simple_decl_in.h")));
ADD("fdeclout", writer<aliasenv_generator>::from_file(string().append(exec_path).append("templates/simple_decl_out.h")));
ADD("fenvin", writer<aliasenv_generator>::from_file(string().append(exec_path).append("templates/simple_env_in.h")));
ADD("fenvout", writer<aliasenv_generator>::from_file(string().append(exec_path).append("templates/simple_env_out.h")));
ADD("fbox", writer<aliasenv_generator>::from_file(string().append(exec_path).append("templates/simple_box.h")));
initialized = true;
}
template <class G>
writer<aliasenv_simple> aliasenv_simple::generate(int granularity, G& generator, string name, stringlist args)
{
init();
typedef imp_contB<writer<aliasenv_simple>> wrt;
auto opts = generator.option_struct();
wrt ilist;
wrt olist;
wrt decl;
string type_string;
for( auto n : generator.graph.in)
{
n->data.op->get_type_string(1, type_string);
decl.print("$fdeclin", n->data.get_param("ioindex"), type_string);
}
for(auto n : generator.graph.out)
{
n->data.op->get_type_string(1, type_string);
decl.print("$fdeclout", n->data.get_param("ioindex"), type_string);
}
wrt envelopes;
for(auto n : generator.graph.in)
{
n->data.op->get_type_string(1, type_string);
envelopes.print("$fenvin", n->data.get_param("ioindex"), type_string);
}
for(auto n : generator.graph.out)
{
n->data.op->get_type_string(1, type_string);
envelopes.print("$fenvout", n->data.get_param("ioindex"), type_string);
}
wrt minlist;
minlist.print("std::numeric_limits<unsigned>::max()");
for(auto n : generator.graph.in)
minlist = wrt().print("std::min($2, size_in_$1 - pos_in_$1)", n->data.get_param("ioindex"), minlist);
for(auto n : generator.graph.out)
minlist = wrt().print("std::min($2, size_out_$1 - pos_out_$1)", n->data.get_param("ioindex"), minlist);
wrt code;
generator.generate(granularity, code, opts);
wrt code2;
generator.generate(1, code2, opts);
wrt inc;
for(auto n : generator.graph.in)
inc.print("pos_in_$1 += batch_size;", n->data.get_param("ioindex"));
for(auto n : generator.graph.out)
inc.print("pos_out_$1 += batch_size;", n->data.get_param("ioindex"));
wrt box;
box.print("$fbox", name, ilist, olist,decl, envelopes, minlist, code, code2, inc, granularity);
return box;
}
};
#endif