forked from plabus/qphix-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinst_scalar.cc
427 lines (365 loc) · 10.2 KB
/
inst_scalar.cc
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#include <stdlib.h>
#include <stdio.h>
#include "instructions.h"
#if VECLEN == 1
#if PRECISION == 1
#pragma message "Using Scalar Single Precision"
#define FVECTYPE "float"
#define ZERO "0.0f"
#else
#pragma message "Using Scalar Double Precision"
#define FVECTYPE "double"
#define ZERO "0.0"
#endif
const string fullIntMask("0x1");
const string fullMask("0x1");
FVec::FVec(const string& name_) : name(name_), type(FVECTYPE) {}
string DeclareFVec::serialize() const
{
#if 0
return v.getType()+" "+v.getName()+ ";";
#else
return v.getType()+" "+v.getName()+ " = " ZERO ";";
#endif
}
string InitFVec::serialize() const
{
#if 1
return "";
#else
return v.getName()+ " = " ZERO ";";
#endif
}
string DeclareMask::serialize() const
{
ostringstream outbuf;
if(value.empty()) {
outbuf << "int " << name << ";" << endl;
}
else {
outbuf << "int " << name << " = " << value << ";" << endl;
}
return outbuf.str();
}
string IntToMask::serialize() const
{
ostringstream outbuf;
outbuf << mask << " = " << value << ";" << endl;
return outbuf.str();
}
string DeclareOffsets::serialize() const
{
ostringstream outbuf;
outbuf << "int " << vname << " = (*(" << pname << "));" << endl;
return outbuf.str();
}
string IfAllOneCond::serialize() const
{
return " if ((" + condition + " & " + fullIntMask + ") == " + fullIntMask + ") { ";
}
string LoadFVec::serialize() const
{
std::ostringstream buf;
if(mask.empty()) {
if(!a->isHalfType()) {
buf << v.getName() << " = *(" << a->serialize() << ");" <<endl;
}
else {
printf("Error: Half type not supported for SSE\n");
exit(1);
}
}
else {
if(!a->isHalfType()) {
printf("Error: Masked load not supported for SSE\n");
exit(1);
}
else {
printf("Error: Half type not supported for SSE\n");
exit(1);
}
}
return buf.str();
}
string StoreFVec::serialize() const
{
ostringstream buf;
int streaming = isStreaming;
if(streaming) {
if(!a->isHalfType()) {
buf << "*(" << a->serialize() << ") = " << v.getName() << ";" <<endl;
}
else {
printf("Error: Half type not supported for SSE\n");
exit(1);
}
}
else {
if(!a->isHalfType()) {
buf << "*(" << a->serialize() << ") = " << v.getName() << ";" <<endl;
}
else {
printf("Error: Half type not supported for SSE\n");
exit(1);
}
}
return buf.str();
}
string GatherFVec::serialize() const
{
std::ostringstream buf;
printf("Error: Gather not supported for SSE\n");
exit(1);
return buf.str();
}
string ScatterFVec::serialize() const
{
std::ostringstream buf;
printf("Error: Scatter not supported for SSE\n");
exit(1);
return buf.str();
}
string LoadBroadcast::serialize() const
{
std::ostringstream buf;
if(!a->isHalfType()) {
buf << v.getName() << " = (*" << a->serialize() << ");" << endl;
}
else {
printf("Error: Half type not supported for SSE\n");
exit(1);
}
return buf.str();
}
PrefetchL1::PrefetchL1( const Address* a_, int type) : a(a_)
{
// Type: 0 - none, 1 - NT, 2 - Ex, 3 - NT+Ex
switch (type) {
case 0:
hint = "_MM_HINT_T0";
break;
case 1:
hint = "_MM_HINT_NTA";
break;
case 2:
hint = "_MM_HINT_T0";
break;
case 3:
hint = "_MM_HINT_NTA";
break;
}
}
PrefetchL2::PrefetchL2( const Address* a_, int type) : a(a_)
{
// Type: 0 - none, 1 - NT, 2 - Ex, 3 - NT+Ex
switch(type) {
case 0:
hint = "_MM_HINT_T1";
break;
case 1:
hint = "_MM_HINT_T2";
break;
case 2:
hint = "_MM_HINT_T1";
break;
case 3:
hint = "_MM_HINT_T2";
break;
}
}
GatherPrefetchL1::GatherPrefetchL1( const GatherAddress* a_, int type) : a(a_)
{
// Type: 0 - none, 1 - NT, 2 - Ex, 3 - NT+Ex
switch (type) {
case 0:
hint = "_MM_HINT_T0";
break;
case 1:
hint = "_MM_HINT_NTA";
break;
// case 2: hint = "_MM_HINT_ET0"; break;
// case 3: hint = "_MM_HINT_ENTA"; break;
}
}
string GatherPrefetchL1::serialize() const
{
std::ostringstream buf;
buf << "#error \"Gather Prefetch is not supported in SSE\"" <<endl;
printf("Gather Prefetch is not supported in SSE\n");
exit(1);
return buf.str();
}
GatherPrefetchL2::GatherPrefetchL2( const GatherAddress* a_, int type) : a(a_)
{
// Type: 0 - none, 1 - NT, 2 - Ex, 3 - NT+Ex
switch(type) {
case 0:
hint = "_MM_HINT_T1";
break;
case 1:
hint = "_MM_HINT_T2";
break;
// case 2: hint = "_MM_HINT_ET1"; break;
// case 3: hint = "_MM_HINT_ET2"; break;
}
}
string GatherPrefetchL2::serialize() const
{
std::ostringstream buf;
buf << "#error \"Gather Prefetch is not supported in SSE\"" <<endl;
printf("Gather Prefetch is not supported in SSE\n");
exit(1);
return buf.str();
}
string SetZero::serialize() const
{
return ret.getName()+" = " ZERO ";";
}
string Mul::serialize() const
{
if(mask.empty()) {
return ret.getName()+" = "+a.getName()+" * "+b.getName()+";" ;
}
else {
return ret.getName()+ " = _mm_blendv_ps(" + ret.getName() + ", _mm_mul_ps( "+a.getName()+" , "+b.getName()+"), " + mask + ");" ;
}
}
string FnMAdd::serialize() const
{
if(mask.empty()) {
return ret.getName()+" = "+c.getName()+" - ("+a.getName()+" * "+b.getName()+");" ;
}
else {
return ret.getName()+" = _mm_blendv_ps(" + ret.getName() + ", _mm_sub_ps("+c.getName()+", _mm_mul_ps("+a.getName()+" , "+b.getName()+")), " + mask + ");" ;
}
}
string FMAdd::serialize() const
{
if(mask.empty()) {
return ret.getName()+" = (("+a.getName()+" * "+b.getName()+") + "+c.getName()+");" ;
}
else {
return ret.getName()+" = _mm_blendv_ps(" + ret.getName() + ", _mm_add_ps(_mm_mul_ps("+a.getName()+", "+b.getName()+"), "+c.getName()+"), " + mask + ");" ;
}
}
string Add::serialize() const
{
if(mask.empty()) {
return ret.getName()+" = ("+a.getName()+" + "+b.getName()+");" ;
}
else {
return ret.getName()+" = _mm_blendv_ps(" + ret.getName() + ", _mm_add_ps( "+a.getName()+" , "+b.getName()+"), " + mask + ");" ;
}
}
string Sub::serialize() const
{
if(mask.empty()) {
return ret.getName()+" = ("+a.getName()+" - "+b.getName()+");" ;
}
else {
return ret.getName()+" = _mm_blendv_ps(" + ret.getName() + ", _mm_sub_ps( "+a.getName()+" , "+b.getName()+"), " + mask + ");" ;
}
}
string MovFVec::serialize() const
{
if(mask.empty()) {
return ret.getName()+" = " + a.getName()+";" ;
}
else {
return ret.getName()+" = _mm_blendv_ps(" + ret.getName() + ", "+a.getName()+", " + mask + ");" ;
}
}
class LoadSplitSOAFVec : public MemRefInstruction
{
public:
LoadSplitSOAFVec( const FVec& v_, const Address* a1_, const Address* a2_, const int soanum_, const int soalen_, int forward_) : v(v_), a1(a1_), a2(a2_), soanum(soanum_), soalen(soalen_), forward(forward_) {}
string serialize() const
{
std::ostringstream buf;
if(!a1->isHalfType()) {
buf << v.getName() << " = (*(" << a1->serialize() << "));" << endl;
}
else {
printf("Error: Half type not supported for SSE\n");
exit(1);
}
return buf.str();
}
const Address* getAddress() const
{
return a1;
}
MemRefType getType() const
{
return LOAD_MASKED_VEC;
}
private:
const FVec v;
const Address* a1;
const Address* a2;
const int soalen, soanum;
const int forward;
};
void loadSOAFVec(InstVector& ivector, const FVec& ret, const Address *a, int soanum, int soalen, string mask)
{
if(soalen == 1) {
ivector.push_back( new LoadFVec(ret, a, string("")));
}
else {
printf("SOALEN = %d not supported\n", soalen);
exit(1);
}
}
void storeSOAFVec(InstVector& ivector, const FVec& ret, const Address *a, int soanum, int soalen)
{
if(soalen == 1) {
ivector.push_back( new StoreFVec(ret, a, 0));
}
else {
printf("SOALEN = %d not supported\n", soalen);
exit(1);
}
}
void loadSplitSOAFVec(InstVector& ivector, const FVec& ret, const Address *a1, const Address *a2, int soanum, int soalen, int forward, string mask)
{
ivector.push_back( new LoadFVec(ret, a1, string("")));
}
void unpackFVec(InstVector& ivector, const FVec& ret, Address *a, string mask, int possibleMask)
{
ivector.push_back( new LoadFVec(ret, a, string("")));
}
void packFVec(InstVector& ivector, const FVec& ret, Address *a, string mask, int possibleMask)
{
ivector.push_back( new StoreFVec(ret, a, 0));
}
void gatherFVec(InstVector& ivector, const FVec& ret, GatherAddress *a, string mask)
{
ivector.push_back( new GatherFVec(ret, a, mask));
}
void scatterFVec(InstVector& ivector, const FVec& ret, GatherAddress *a)
{
ivector.push_back( new ScatterFVec(ret, a));
}
void gatherPrefetchL1(InstVector& ivector, GatherAddress *a, int type)
{
ivector.push_back( new GatherPrefetchL1(a, type));
}
void gatherPrefetchL2(InstVector& ivector, GatherAddress *a, int type)
{
ivector.push_back( new GatherPrefetchL2(a, type));
}
void transpose1x1(InstVector& ivector, const FVec r[1], const FVec f[1])
{
movFVec(ivector, r[0], f[0], string(""));
}
void transpose(InstVector& ivector, const FVec r[], const FVec f[], int soalen)
{
switch (soalen) {
case 1:
transpose1x1(ivector, r, f);
break;
default:
printf("SOALEN = %d Not Supported (only SOALEN = 1 supported)\n", soalen);
}
}
#endif // PRECISION == 1