forked from facebook/hhvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgvn.cpp
More file actions
524 lines (464 loc) · 13.2 KB
/
gvn.cpp
File metadata and controls
524 lines (464 loc) · 13.2 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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2016 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/opt.h"
#include "hphp/runtime/vm/jit/analysis.h"
#include "hphp/runtime/vm/jit/block.h"
#include "hphp/runtime/vm/jit/cfg.h"
#include "hphp/runtime/vm/jit/containers.h"
#include "hphp/runtime/vm/jit/ir-instruction.h"
#include "hphp/runtime/vm/jit/ssa-tmp.h"
#include "hphp/runtime/vm/jit/state-vector.h"
#include "hphp/runtime/vm/jit/pass-tracer.h"
#include <unordered_map>
namespace HPHP { namespace jit {
TRACE_SET_MOD(hhir_gvn);
//////////////////////////////////////////////////////////////////////
namespace {
struct ValueNumberMetadata {
SSATmp* key;
SSATmp* value;
};
using ValueNumberTable = StateVector<SSATmp, ValueNumberMetadata>;
using DstIndex = int32_t;
struct CongruenceHasher {
using KeyType = std::pair<IRInstruction*, DstIndex>;
explicit CongruenceHasher(const ValueNumberTable& globalTable)
: m_globalTable(globalTable)
{
}
size_t hashDefLabel(KeyType key) const {
auto inst = key.first;
auto idx = key.second;
// We use a set (instead of an unordered_set) because we want a fixed and
// well-defined iteration order while we're accumulating the hash below.
jit::set<SSATmp*> values;
for (auto& pred : inst->block()->preds()) {
auto fromBlock = pred.from();
auto& jmp = fromBlock->back();
auto src = canonical(jmp.src(idx));
assertx(m_globalTable[src].value);
values.emplace(m_globalTable[src].value);
}
auto result = static_cast<size_t>(inst->op());
for (auto value : values) {
result = folly::hash::hash_128_to_64(
result,
reinterpret_cast<size_t>(value)
);
}
return hashSharedImpl(inst, result);
}
size_t hashSharedImpl(IRInstruction* inst, size_t result) const {
if (inst->hasExtra()) {
result = folly::hash::hash_128_to_64(
result,
hashExtra(inst->op(), inst->rawExtra())
);
}
if (inst->hasTypeParam()) {
result = folly::hash::hash_128_to_64(result, inst->typeParam().hash());
}
return result;
}
size_t hashSrcs(KeyType key, size_t result) const {
auto inst = key.first;
for (uint32_t i = 0; i < inst->numSrcs(); ++i) {
auto src = canonical(inst->src(i));
assertx(m_globalTable[src].value);
result = folly::hash::hash_128_to_64(
result,
reinterpret_cast<size_t>(m_globalTable[src].value)
);
}
return result;
}
size_t operator()(KeyType key) const {
auto inst = key.first;
if (inst->is(DefLabel)) return hashDefLabel(key);
// Note: this doesn't take commutativity or associativity into account, but
// it might be nice to do so for the opcodes where it makes sense.
size_t result = static_cast<size_t>(inst->op());
result = hashSrcs(key, result);
return hashSharedImpl(inst, result);
}
private:
const ValueNumberTable& m_globalTable;
};
struct CongruenceComparator {
using KeyType = std::pair<IRInstruction*, DstIndex>;
explicit CongruenceComparator(const ValueNumberTable& globalTable)
: m_globalTable(globalTable)
{
}
bool compareDefLabelSrcs(KeyType keyA, KeyType keyB) const {
auto instA = keyA.first;
auto instB = keyB.first;
auto idxA = keyA.second;
auto idxB = keyB.second;
assert(instA->op() == instB->op());
assert(instA->is(DefLabel));
jit::hash_set<SSATmp*> valuesA;
jit::hash_set<SSATmp*> valuesB;
auto fillValueSet = [&](
IRInstruction* inst,
int32_t idx,
std::unordered_set<SSATmp*>& values
) {
for (auto& pred : inst->block()->preds()) {
auto fromBlock = pred.from();
auto& jmp = fromBlock->back();
auto src = canonical(jmp.src(idx));
assertx(m_globalTable[src].value);
values.emplace(m_globalTable[src].value);
}
};
fillValueSet(instA, idxA, valuesA);
fillValueSet(instB, idxB, valuesB);
return valuesA == valuesB;
}
bool compareSrcs(KeyType keyA, KeyType keyB) const {
auto instA = keyA.first;
auto instB = keyB.first;
for (uint32_t i = 0; i < instA->numSrcs(); ++i) {
auto srcA = canonical(instA->src(i));
auto srcB = canonical(instB->src(i));
assertx(m_globalTable[srcA].value);
assertx(m_globalTable[srcB].value);
if (m_globalTable[srcA].value != m_globalTable[srcB].value) return false;
}
return true;
}
bool operator()(KeyType keyA, KeyType keyB) const {
auto instA = keyA.first;
auto instB = keyB.first;
// Note: this doesn't take commutativity or associativity into account, but
// it might be nice to do so for the opcodes where it makes sense.
if (instA->op() != instB->op()) return false;
if (instA->numSrcs() != instB->numSrcs()) return false;
if (instA->hasTypeParam() != instB->hasTypeParam()) return false;
if (instA->hasTypeParam() && instA->typeParam() != instB->typeParam()) {
return false;
}
if (instA->hasExtra()) {
assertx(instB->hasExtra());
if (!equalsExtra(instA->op(), instA->rawExtra(), instB->rawExtra())) {
return false;
}
}
if (instA->is(DefLabel)) {
if (!compareDefLabelSrcs(keyA, keyB)) return false;
} else if (!compareSrcs(keyA, keyB)) {
return false;
}
return true;
}
private:
const ValueNumberTable& m_globalTable;
};
using NameTable = std::unordered_map<
std::pair<IRInstruction*, DstIndex>, SSATmp*,
CongruenceHasher,
CongruenceComparator
>;
struct GVNState {
ValueNumberTable* localTable{nullptr};
ValueNumberTable* globalTable{nullptr};
NameTable* nameTable{nullptr};
};
bool supportsGVN(const IRInstruction* inst) {
switch (inst->op()) {
case AssertType:
case AbsDbl:
case AddInt:
case SubInt:
case MulInt:
case AndInt:
case AddDbl:
case SubDbl:
case MulDbl:
case DivDbl:
case DivInt:
case Mod:
case Sqrt:
case OrInt:
case XorInt:
case Shl:
case Shr:
case Floor:
case Ceil:
case AddIntO:
case SubIntO:
case MulIntO:
case XorBool:
case ConvBoolToArr:
case ConvDblToArr:
case ConvIntToArr:
case ConvDblToBool:
case ConvIntToBool:
case ConvBoolToDbl:
case ConvIntToDbl:
case ConvBoolToInt:
case ConvDblToInt:
case ConvBoolToStr:
case ConvClsToCctx:
case GtInt:
case GteInt:
case LtInt:
case LteInt:
case EqInt:
case NeqInt:
case CmpInt:
case GtDbl:
case GteDbl:
case LtDbl:
case LteDbl:
case EqDbl:
case NeqDbl:
case CmpDbl:
case GtStr:
case GteStr:
case LtStr:
case LteStr:
case EqStr:
case NeqStr:
case SameStr:
case NSameStr:
case CmpStr:
case GtStrInt:
case GteStrInt:
case LtStrInt:
case LteStrInt:
case EqStrInt:
case NeqStrInt:
case CmpStrInt:
case GtBool:
case GteBool:
case LtBool:
case LteBool:
case EqBool:
case NeqBool:
case CmpBool:
case SameObj:
case NSameObj:
case SameArr:
case NSameArr:
case GtRes:
case GteRes:
case LtRes:
case LteRes:
case EqRes:
case NeqRes:
case CmpRes:
case EqCls:
case EqFunc:
case InstanceOf:
case InstanceOfIface:
case InstanceOfIfaceVtable:
case ExtendsClass:
case InstanceOfBitmask:
case NInstanceOfBitmask:
case InterfaceSupportsArr:
case InterfaceSupportsStr:
case InterfaceSupportsInt:
case InterfaceSupportsDbl:
case HasToString:
case IsType:
case IsNType:
case IsScalarType:
case IsWaitHandle:
case IsCol:
case LdRDSAddr:
case LdCtx:
case LdCctx:
case CastCtxThis:
case LdClsCtx:
case LdClsCctx:
case LdClsCtor:
case DefConst:
case LdCls:
case LdClsCached:
case LdClsInitData:
case LdFuncVecLen:
case LdClsMethod:
case LdIfaceMethod:
case LdPropAddr:
case LdClsPropAddrOrNull:
case LdClsPropAddrOrRaise:
case LdObjClass:
case LdClsName:
case LdARNumParams:
case Mov:
case LdContActRec:
case LdAFWHActRec:
case LdResumableArObj:
case LdPackedArrayElemAddr:
case OrdStr:
case CheckRange:
case CountArrayFast:
return true;
default:
return false;
}
}
void initWithInstruction(IRInstruction* inst, ValueNumberTable& table) {
// Each SSATmp starts out as the canonical name for itself.
for (auto dst : inst->dsts()) {
table[dst] = ValueNumberMetadata { dst, dst };
}
for (auto src : inst->srcs()) {
table[src] = ValueNumberMetadata { src, src };
}
}
bool visitInstruction(
GVNState& env,
IRInstruction* inst
) {
auto& globalTable = *env.globalTable;
auto& localTable = *env.localTable;
auto& nameTable = *env.nameTable;
if (isCallOp(inst->op())) nameTable.clear();
if (!supportsGVN(inst)) return false;
bool changed = false;
for (auto dstIdx = 0; dstIdx < inst->numDsts(); ++dstIdx) {
auto dst = inst->dst(dstIdx);
assertx(dst);
auto result = nameTable.emplace(std::make_pair(inst, dstIdx), dst);
SSATmp* temp = result.second ? dst : result.first->second;
assertx(temp);
assertx(globalTable[dst].value);
if (temp != globalTable[dst].value) {
localTable[dst] = ValueNumberMetadata { dst, temp };
FTRACE(1,
"instruction {}\n"
"updated value number for dst to dst of {}\n",
*inst,
*temp->inst()
);
changed = true;
}
}
return changed;
}
bool visitBlock(
GVNState& env,
Block* block
) {
bool changed = false;
for (auto& inst : *block) {
changed = visitInstruction(env, &inst) || changed;
}
return changed;
}
void applyLocalUpdates(ValueNumberTable& local, ValueNumberTable& global) {
for (auto metadata : local) {
if (!metadata.key) continue;
global[metadata.key] = metadata;
}
}
void runAnalysis(
GVNState& env,
const IRUnit& unit,
const BlockList& blocks
) {
for (auto block : blocks) {
for (auto& inst : *block) {
initWithInstruction(&inst, *env.globalTable);
}
}
bool changed = true;
while (changed) {
// We need a temporary table of updates which we apply after running this
// iteration of the fixed point. If we change the global ValueNumberTable
// during the pass, the hash values of the SSATmps will change which is
// apparently a no-no for unordered_map.
ValueNumberTable localTable(unit, ValueNumberMetadata{});
env.localTable = &localTable;
SCOPE_EXIT { env.localTable = nullptr; };
{
CongruenceHasher hash(*env.globalTable);
CongruenceComparator pred(*env.globalTable);
NameTable nameTable(0, hash, pred);
env.nameTable = &nameTable;
SCOPE_EXIT { env.nameTable = nullptr; };
changed = false;
for (auto block : blocks) {
changed = visitBlock(env, block) || changed;
}
}
applyLocalUpdates(localTable, *env.globalTable);
}
}
void tryReplaceInstruction(
IRUnit& unit,
const IdomVector& idoms,
IRInstruction* inst,
ValueNumberTable& table
) {
for (uint32_t i = 0; i < inst->numSrcs(); ++i) {
auto s = inst->src(i);
auto valueNumber = table[s].value;
auto valueInst = valueNumber->inst();
if (valueNumber == s) continue;
if (!valueNumber) continue;
if (!is_tmp_usable(idoms, valueNumber, inst->block())) continue;
FTRACE(1,
"instruction {}\n"
"replacing src {} with dst of {}\n",
*inst,
i,
*valueInst
);
inst->setSrc(i, valueNumber);
if (valueInst->producesReference()) {
auto block = valueInst->block();
auto iter = block->iteratorTo(valueInst);
block->insert(++iter, unit.gen(IncRef, valueInst->marker(), valueNumber));
}
}
}
void replaceRedundantComputations(
IRUnit& unit,
const IdomVector& idoms,
const BlockList& blocks,
ValueNumberTable& table
) {
for (auto block : blocks) {
for (auto& inst : *block) {
tryReplaceInstruction(unit, idoms, &inst, table);
}
}
}
} // namespace
/////////////////////////////////////////////////////////////////////////
void gvn(IRUnit& unit) {
PassTracer tracer{&unit, Trace::hhir_gvn, "gvn"};
GVNState state;
auto const rpoBlocks = rpoSortCfg(unit);
auto const idoms = findDominators(
unit,
rpoBlocks,
numberBlocks(unit, rpoBlocks)
);
ValueNumberTable globalTable(unit, ValueNumberMetadata{});
state.globalTable = &globalTable;
// This is an implementation of the RPO version of the global value numbering
// algorithm presented in the 1996 paper "SCC-based Value Numbering" by
// Cooper and Simpson.
runAnalysis(state, unit, rpoBlocks);
replaceRedundantComputations(unit, idoms, rpoBlocks, globalTable);
state.globalTable = nullptr;
}
}}