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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef jit_ICState_h
#define jit_ICState_h
#include "jit/JitOptions.h"
namespace js {
namespace jit {
// ICState stores information about a Baseline or Ion IC.
class ICState {
public:
// When we attach the maximum number of stubs, we discard all stubs and
// transition the IC to Megamorphic to attach stubs that are more generic
// (handle more cases). If we again attach the maximum number of stubs, we
// transition to Generic and (depending on the IC) will either attach a
// single stub that handles everything or stop attaching new stubs.
//
// We also transition to Generic when we repeatedly fail to attach a stub,
// to avoid wasting time trying.
enum class Mode : uint8_t { Specialized = 0, Megamorphic, Generic };
private:
Mode mode_;
// Number of optimized stubs currently attached to this IC.
uint8_t numOptimizedStubs_;
// Number of times we failed to attach a stub.
uint8_t numFailures_;
static const size_t MaxOptimizedStubs = 6;
void transition(Mode mode) {
MOZ_ASSERT(mode > mode_);
mode_ = mode;
numFailures_ = 0;
}
MOZ_ALWAYS_INLINE size_t maxFailures() const {
// Allow more failures if we attached stubs.
static_assert(MaxOptimizedStubs == 6,
"numFailures_/maxFailures should fit in uint8_t");
size_t res = 5 + size_t(40) * numOptimizedStubs_;
MOZ_ASSERT(res <= UINT8_MAX, "numFailures_ should not overflow");
return res;
}
public:
ICState() { reset(); }
Mode mode() const { return mode_; }
size_t numOptimizedStubs() const { return numOptimizedStubs_; }
bool hasFailures() const { return (numFailures_ != 0); }
MOZ_ALWAYS_INLINE bool canAttachStub() const {
// Note: we cannot assert that numOptimizedStubs_ <= MaxOptimizedStubs
// because old-style baseline ICs may attach more stubs than
// MaxOptimizedStubs allows.
if (mode_ == Mode::Generic || JitOptions.disableCacheIR) {
return false;
}
return true;
}
// If this returns true, we transitioned to a new mode and the caller
// should discard all stubs.
MOZ_MUST_USE MOZ_ALWAYS_INLINE bool maybeTransition() {
// Note: we cannot assert that numOptimizedStubs_ <= MaxOptimizedStubs
// because old-style baseline ICs may attach more stubs than
// MaxOptimizedStubs allows.
if (mode_ == Mode::Generic) {
return false;
}
if (numOptimizedStubs_ < MaxOptimizedStubs &&
numFailures_ < maxFailures()) {
return false;
}
if (numFailures_ == maxFailures() || mode_ == Mode::Megamorphic) {
transition(Mode::Generic);
return true;
}
MOZ_ASSERT(mode_ == Mode::Specialized);
transition(Mode::Megamorphic);
return true;
}
void reset() {
mode_ = Mode::Specialized;
numOptimizedStubs_ = 0;
numFailures_ = 0;
}
void trackAttached() {
// We'd like to assert numOptimizedStubs_ < MaxOptimizedStubs, but
// since this code is also used for non-CacheIR Baseline stubs, assert
// < 16 for now. Note that we do have the stronger assert in other
// methods, because they are only used by CacheIR ICs.
MOZ_ASSERT(numOptimizedStubs_ < 16);
numOptimizedStubs_++;
// As a heuristic, reduce the failure count after each successful attach
// to delay hitting Generic mode. Reset to 1 instead of 0 so that
// BaselineInspector can distinguish no-failures from rare-failures.
numFailures_ = std::min(numFailures_, static_cast<uint8_t>(1));
}
void trackNotAttached() {
// Note: we can't assert numFailures_ < maxFailures() because
// maxFailures() depends on numOptimizedStubs_ and it's possible a
// GC discarded stubs before we got here.
numFailures_++;
MOZ_ASSERT(numFailures_ > 0, "numFailures_ should not overflow");
}
void trackUnlinkedStub() {
MOZ_ASSERT(numOptimizedStubs_ > 0);
numOptimizedStubs_--;
}
void trackUnlinkedAllStubs() { numOptimizedStubs_ = 0; }
};
} // namespace jit
} // namespace js
#endif /* jit_ICState_h */