forked from facebook/hhvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathir-opcode.cpp
More file actions
477 lines (444 loc) · 13.1 KB
/
Copy pathir-opcode.cpp
File metadata and controls
477 lines (444 loc) · 13.1 KB
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2014 Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#include "hphp/runtime/vm/jit/ir-opcode.h"
#include <algorithm>
#include <cstring>
#include <forward_list>
#include <sstream>
#include <type_traits>
#include <folly/Format.h>
#include <folly/Traits.h>
#include "hphp/util/trace.h"
#include "hphp/runtime/base/string-data.h"
#include "hphp/runtime/vm/runtime.h"
#include "hphp/runtime/base/stats.h"
#include "hphp/runtime/vm/jit/cse.h"
#include "hphp/runtime/vm/jit/ir-instruction.h"
#include "hphp/runtime/vm/jit/ir-unit.h"
#include "hphp/runtime/vm/jit/print.h"
#include "hphp/runtime/vm/jit/cfg.h"
// Include last to localize effects to this file
#include "hphp/util/assert-throw.h"
namespace HPHP { namespace jit {
TRACE_SET_MOD(hhir);
#define NF 0
#define C CanCSE
#define E Essential
#define Er MayRaiseError
#define PRc ProducesRC
#define CRc ConsumesRC
#define T Terminal
#define B Branch
#define P Passthrough
#define K KillsSources
#define StkFlags(f) HasStackVersion|(f)
#define MProp MInstrProp
#define MElem MInstrElem
#define ND 0
#define D(n) HasDest
#define DofS(n) HasDest
#define DBox(n) HasDest
#define DRefineS(n) HasDest
#define DParamMayRelax HasDest
#define DParam HasDest
#define DParamPtr(k) HasDest
#define DUnboxPtr HasDest
#define DBoxPtr HasDest
#define DAllocObj HasDest
#define DArrElem HasDest
#define DArrPacked HasDest
#define DThis HasDest
#define DMulti NaryDest
#define DSetElem HasDest
#define DStk(x) ModifiesStack|(x)
#define DPtrToParam HasDest
#define DBuiltin HasDest
#define DSubtract(n,t) HasDest
#define DCns HasDest
OpInfo g_opInfo[] = {
#define O(name, dsts, srcs, flags) \
{ #name, \
(OpHasExtraData<name>::value ? HasExtra : 0) | \
dsts | (flags) \
},
IR_OPCODES
#undef O
{ 0 }
};
#undef NF
#undef C
#undef E
#undef PRc
#undef CRc
#undef Er
#undef T
#undef B
#undef P
#undef K
#undef StkFlags
#undef MProp
#undef MElem
#undef ND
#undef D
#undef DofS
#undef DBox
#undef DRefineS
#undef DParamMayRelax
#undef DParam
#undef DParamPtr
#undef DUnboxPtr
#undef DBoxPtr
#undef DArrElem
#undef DArrPacked
#undef DAllocObj
#undef DThis
#undef DMulti
#undef DSetElem
#undef DStk
#undef DPtrToParam
#undef DBuiltin
#undef DSubtract
#undef DCns
//////////////////////////////////////////////////////////////////////
Opcode getStackModifyingOpcode(Opcode opc) {
assert(opcodeHasFlags(opc, HasStackVersion));
opc = Opcode(uint64_t(opc) + 1);
assert(opcodeHasFlags(opc, ModifiesStack));
return opc;
}
const StringData* findClassName(SSATmp* cls) {
assert(cls->isA(Type::Cls));
if (cls->isConst()) {
return cls->clsVal()->preClass()->name();
}
// Try to get the class name from a LdCls
IRInstruction* clsInst = cls->inst();
if (clsInst->op() == LdCls || clsInst->op() == LdClsCached) {
SSATmp* clsName = clsInst->src(0);
assert(clsName->isA(Type::Str));
if (clsName->isConst()) {
return clsName->strVal();
}
}
return nullptr;
}
bool isGuardOp(Opcode opc) {
switch (opc) {
case GuardLoc:
case CheckLoc:
case GuardStk:
case CheckStk:
case CheckType:
return true;
default:
return false;
}
}
bool isQueryOp(Opcode opc) {
switch (opc) {
case Gt:
case Gte:
case Lt:
case Lte:
case Eq:
case Neq:
case GtInt:
case GteInt:
case LtInt:
case LteInt:
case EqInt:
case NeqInt:
case GtDbl:
case GteDbl:
case LtDbl:
case LteDbl:
case EqDbl:
case NeqDbl:
case Same:
case NSame:
case InstanceOfBitmask:
case NInstanceOfBitmask:
case IsType:
case IsNType:
return true;
default:
return false;
}
}
bool isIntQueryOp(Opcode opc) {
switch (opc) {
case GtInt:
case GteInt:
case LtInt:
case LteInt:
case EqInt:
case NeqInt:
return true;
default:
return false;
}
}
bool isDblQueryOp(Opcode opc) {
switch (opc) {
case GtDbl:
case GteDbl:
case LtDbl:
case LteDbl:
case EqDbl:
case NeqDbl:
return true;
default:
return false;
}
}
bool isFusableQueryOp(Opcode opc) {
return isQueryOp(opc) && !isDblQueryOp(opc) &&
opc != IsType && opc != IsNType;
}
bool isQueryJmpOp(Opcode opc) {
switch (opc) {
case JmpGt:
case JmpGte:
case JmpLt:
case JmpLte:
case JmpEq:
case JmpNeq:
case JmpGtInt:
case JmpGteInt:
case JmpLtInt:
case JmpLteInt:
case JmpEqInt:
case JmpNeqInt:
case JmpSame:
case JmpNSame:
case JmpInstanceOfBitmask:
case JmpNInstanceOfBitmask:
case JmpZero:
case JmpNZero:
return true;
default:
return false;
}
}
Opcode queryToJmpOp(Opcode opc) {
assert(isFusableQueryOp(opc));
switch (opc) {
case Gt: return JmpGt;
case Gte: return JmpGte;
case Lt: return JmpLt;
case Lte: return JmpLte;
case Eq: return JmpEq;
case Neq: return JmpNeq;
case GtInt: return JmpGtInt;
case GteInt: return JmpGteInt;
case LtInt: return JmpLtInt;
case LteInt: return JmpLteInt;
case EqInt: return JmpEqInt;
case NeqInt: return JmpNeqInt;
case Same: return JmpSame;
case NSame: return JmpNSame;
case InstanceOfBitmask: return JmpInstanceOfBitmask;
case NInstanceOfBitmask: return JmpNInstanceOfBitmask;
default: always_assert(0);
}
}
Opcode queryJmpToQueryOp(Opcode opc) {
assert(isQueryJmpOp(opc));
switch (opc) {
case JmpGt: return Gt;
case JmpGte: return Gte;
case JmpLt: return Lt;
case JmpLte: return Lte;
case JmpEq: return Eq;
case JmpNeq: return Neq;
case JmpGtInt: return GtInt;
case JmpGteInt: return GteInt;
case JmpLtInt: return LtInt;
case JmpLteInt: return LteInt;
case JmpEqInt: return EqInt;
case JmpNeqInt: return NeqInt;
case JmpSame: return Same;
case JmpNSame: return NSame;
case JmpInstanceOfBitmask: return InstanceOfBitmask;
case JmpNInstanceOfBitmask: return NInstanceOfBitmask;
default: always_assert(0);
}
}
Opcode jmpToSideExitJmp(Opcode opc) {
switch (opc) {
case JmpGt: return SideExitJmpGt;
case JmpGte: return SideExitJmpGte;
case JmpLt: return SideExitJmpLt;
case JmpLte: return SideExitJmpLte;
case JmpEq: return SideExitJmpEq;
case JmpNeq: return SideExitJmpNeq;
case JmpGtInt: return SideExitJmpGtInt;
case JmpGteInt: return SideExitJmpGteInt;
case JmpLtInt: return SideExitJmpLtInt;
case JmpLteInt: return SideExitJmpLteInt;
case JmpEqInt: return SideExitJmpEqInt;
case JmpNeqInt: return SideExitJmpNeqInt;
case JmpSame: return SideExitJmpSame;
case JmpNSame: return SideExitJmpNSame;
case JmpInstanceOfBitmask: return SideExitJmpInstanceOfBitmask;
case JmpNInstanceOfBitmask: return SideExitJmpNInstanceOfBitmask;
case JmpZero: return SideExitJmpZero;
case JmpNZero: return SideExitJmpNZero;
default: always_assert(0);
}
}
Opcode jmpToReqBindJmp(Opcode opc) {
switch (opc) {
case JmpGt: return ReqBindJmpGt;
case JmpGte: return ReqBindJmpGte;
case JmpLt: return ReqBindJmpLt;
case JmpLte: return ReqBindJmpLte;
case JmpEq: return ReqBindJmpEq;
case JmpNeq: return ReqBindJmpNeq;
case JmpGtInt: return ReqBindJmpGtInt;
case JmpGteInt: return ReqBindJmpGteInt;
case JmpLtInt: return ReqBindJmpLtInt;
case JmpLteInt: return ReqBindJmpLteInt;
case JmpEqInt: return ReqBindJmpEqInt;
case JmpNeqInt: return ReqBindJmpNeqInt;
case JmpSame: return ReqBindJmpSame;
case JmpNSame: return ReqBindJmpNSame;
case JmpInstanceOfBitmask: return ReqBindJmpInstanceOfBitmask;
case JmpNInstanceOfBitmask: return ReqBindJmpNInstanceOfBitmask;
case JmpZero: return ReqBindJmpZero;
case JmpNZero: return ReqBindJmpNZero;
default: always_assert(0);
}
}
Opcode negateQueryOp(Opcode opc) {
assert(isQueryOp(opc));
switch (opc) {
case Gt: return Lte;
case Gte: return Lt;
case Lt: return Gte;
case Lte: return Gt;
case Eq: return Neq;
case Neq: return Eq;
case GtInt: return LteInt;
case GteInt: return LtInt;
case LtInt: return GteInt;
case LteInt: return GtInt;
case EqInt: return NeqInt;
case NeqInt: return EqInt;
case EqDbl: return NeqDbl;
case NeqDbl: return EqDbl;
case Same: return NSame;
case NSame: return Same;
case InstanceOfBitmask: return NInstanceOfBitmask;
case NInstanceOfBitmask: return InstanceOfBitmask;
case IsType: return IsNType;
case IsNType: return IsType;
case GtDbl:
case GteDbl:
case LtDbl:
case LteDbl:
// Negating dbl relational ops probably isn't what you want:
// (X < Y) != !(X >= Y) -- when NaN gets involved
always_assert(false);
default: always_assert(0);
}
}
Opcode commuteQueryOp(Opcode opc) {
assert(isQueryOp(opc));
switch (opc) {
case Gt: return Lt;
case Gte: return Lte;
case Lt: return Gt;
case Lte: return Gte;
case Eq: return Eq;
case Neq: return Neq;
case GtInt: return LtInt;
case GteInt:return LteInt;
case LtInt: return GtInt;
case LteInt:return GteInt;
case EqInt: return EqInt;
case NeqInt:return NeqInt;
case GtDbl: return LtDbl;
case GteDbl:return LteDbl;
case LtDbl: return GtDbl;
case LteDbl:return GteDbl;
case EqDbl: return EqDbl;
case NeqDbl:return NeqDbl;
case Same: return Same;
case NSame: return NSame;
default: always_assert(0);
}
}
Opcode queryToIntQueryOp(Opcode opc) {
assert(isQueryOp(opc));
switch (opc) {
case Gt: return GtInt;
case Gte: return GteInt;
case Lt: return LtInt;
case Lte: return LteInt;
case Eq: return EqInt;
case Neq: return NeqInt;
case GtDbl: return GtInt;
case GteDbl:return GteInt;
case LtDbl: return LtInt;
case LteDbl:return LteInt;
case EqDbl: return EqInt;
case NeqDbl:return NeqInt;
case JmpGt: return JmpGtInt;
case JmpGte: return JmpGteInt;
case JmpLt: return JmpLtInt;
case JmpLte: return JmpLteInt;
case JmpEq: return JmpEqInt;
case JmpNeq: return JmpNeqInt;
case SideExitJmpGt: return SideExitJmpGtInt;
case SideExitJmpGte: return SideExitJmpGteInt;
case SideExitJmpLt: return SideExitJmpLtInt;
case SideExitJmpLte: return SideExitJmpLteInt;
case SideExitJmpEq: return SideExitJmpEqInt;
case SideExitJmpNeq: return SideExitJmpNeqInt;
case ReqBindJmpGt: return ReqBindJmpGtInt;
case ReqBindJmpGte: return ReqBindJmpGteInt;
case ReqBindJmpLt: return ReqBindJmpLtInt;
case ReqBindJmpLte: return ReqBindJmpLteInt;
case ReqBindJmpEq: return ReqBindJmpEqInt;
case ReqBindJmpNeq: return ReqBindJmpNeqInt;
default: always_assert(0);
}
}
Opcode queryToDblQueryOp(Opcode opc) {
assert(isQueryOp(opc));
switch (opc) {
case Gt: return GtDbl;
case Gte: return GteDbl;
case Lt: return LtDbl;
case Lte: return LteDbl;
case Eq: return EqDbl;
case Neq: return NeqDbl;
case GtInt: return GtDbl;
case GteInt:return GteDbl;
case LtInt: return LtDbl;
case LteInt:return LteDbl;
case EqInt: return EqDbl;
case NeqInt:return NeqDbl;
default: always_assert(0);
}
}
int32_t spillValueCells(const IRInstruction* spillStack) {
assert(spillStack->op() == SpillStack);
int32_t numSrcs = spillStack->numSrcs();
return numSrcs - 2;
}
}}