Home
last modified time | relevance | path

Searched refs:BinaryOpICState (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/ic/
Dic-state.cc25 STATIC_CONST_MEMBER_DEFINITION const int BinaryOpICState::FIRST_TOKEN;
29 STATIC_CONST_MEMBER_DEFINITION const int BinaryOpICState::LAST_TOKEN;
32 BinaryOpICState::BinaryOpICState(Isolate* isolate, ExtraICState extra_ic_state) in BinaryOpICState() function in v8::internal::BinaryOpICState
51 ExtraICState BinaryOpICState::GetExtraICState() const { in GetExtraICState()
67 void BinaryOpICState::GenerateAheadOfTime( in GenerateAheadOfTime()
68 Isolate* isolate, void (*Generate)(Isolate*, const BinaryOpICState&)) { in GenerateAheadOfTime() argument
75 BinaryOpICState state(isolate, op, Strength::WEAK); \ in GenerateAheadOfTime()
177 BinaryOpICState state(isolate, op, Strength::WEAK); \ in GenerateAheadOfTime()
194 Type* BinaryOpICState::GetResultType() const { in GetResultType()
208 std::ostream& operator<<(std::ostream& os, const BinaryOpICState& s) { in operator <<()
[all …]
Dic-state.h55 class BinaryOpICState final BASE_EMBEDDED {
57 BinaryOpICState(Isolate* isolate, ExtraICState extra_ic_state);
58 BinaryOpICState(Isolate* isolate, Token::Value op, Strength strength) in BinaryOpICState() function
87 const BinaryOpICState&));
132 friend std::ostream& operator<<(std::ostream& os, const BinaryOpICState& s);
166 std::ostream& operator<<(std::ostream& os, const BinaryOpICState& s);
Dic.cc2499 BinaryOpICState state(isolate(), target()->extra_ic_state()); in Transition()
2576 BinaryOpICState old_state(isolate(), target()->extra_ic_state()); in Transition()
/external/v8/src/
Dtype-info.cc236 DCHECK(op < BinaryOpICState::FIRST_TOKEN || in BinaryType()
237 op > BinaryOpICState::LAST_TOKEN); in BinaryType()
245 BinaryOpICState state(isolate(), code->extra_ic_state()); in BinaryType()
267 BinaryOpICState state(isolate(), code->extra_ic_state()); in CountType()
Dcode-stubs.cc278 BinaryOpICState::GenerateAheadOfTime(isolate, &GenerateAheadOfTime); in GenerateAheadOfTime()
289 const BinaryOpICState& state) { in GenerateAheadOfTime()
298 BinaryOpICState::GenerateAheadOfTime(isolate, &GenerateAheadOfTime); in GenerateAheadOfTime()
310 Isolate* isolate, const BinaryOpICState& state) { in GenerateAheadOfTime()
Dcode-stubs.h1450 BinaryOpICState state(isolate, op, strength); in BinaryOpICStub()
1454 BinaryOpICStub(Isolate* isolate, const BinaryOpICState& state) in BinaryOpICStub()
1469 BinaryOpICState state() const { in state()
1470 return BinaryOpICState(isolate(), GetExtraICState()); in state()
1481 const BinaryOpICState& state);
1493 const BinaryOpICState& state) in BinaryOpICWithAllocationSiteStub()
1517 BinaryOpICState state() const { in state()
1518 return BinaryOpICState(isolate(), static_cast<ExtraICState>(minor_key_)); in state()
1522 const BinaryOpICState& state);
1535 BinaryOpWithAllocationSiteStub(Isolate* isolate, const BinaryOpICState& state) in BinaryOpWithAllocationSiteStub()
Dcode-stubs-hydrogen.cc1443 BinaryOpICState state = casted_stub()->state(); in BuildCodeInitializedStub()
1522 BinaryOpICState state = casted_stub()->state(); in BuildCodeStub()
/external/v8/src/compiler/
Dtype-hint-analyzer.cc37 BinaryOpICState state(code->GetIsolate(), code->extra_ic_state()); in GetBinaryOperationHints()