HomeSort by relevance Sort by last modified time
    Searched refs:extra_ic_state (Results 1 - 14 of 14) sorted by null

  /external/v8/src/ic/
ic-state.h 26 explicit CallICState(ExtraICState extra_ic_state)
27 : bit_field_(extra_ic_state) {}
62 BinaryOpICState(Isolate* isolate, ExtraICState extra_ic_state);
211 explicit LoadGlobalICState(ExtraICState extra_ic_state)
212 : state_(extra_ic_state) {}
229 explicit StoreICState(ExtraICState extra_ic_state) : state_(extra_ic_state) {}
ic-compiler.h 18 Handle<Map> receiver_map, ExtraICState extra_ic_state);
ic-state.cc 32 BinaryOpICState::BinaryOpICState(Isolate* isolate, ExtraICState extra_ic_state)
34 HasFixedRightArgField::decode(extra_ic_state)
35 ? Just(1 << FixedRightArgValueField::decode(extra_ic_state))
39 static_cast<Token::Value>(FIRST_TOKEN + OpField::decode(extra_ic_state));
40 left_kind_ = LeftKindField::decode(extra_ic_state);
43 : RightKindField::decode(extra_ic_state);
44 result_kind_ = ResultKindField::decode(extra_ic_state);
51 ExtraICState extra_ic_state = local
56 extra_ic_state = FixedRightArgValueField::update(
57 extra_ic_state, WhichPowerOf2(fixed_right_arg_.FromJust()))
    [all...]
ic-inl.h 69 // STORE_IC and KEYED_STORE_IC use Code::extra_ic_state() to mark
73 DCHECK(StoreICState::GetLanguageMode(old_target->extra_ic_state()) ==
74 StoreICState::GetLanguageMode(target->extra_ic_state()));
ic-compiler.cc 15 Handle<Map> receiver_map, ExtraICState extra_ic_state) {
16 // TODO(ishell): remove extra_ic_state
ic.h 171 ExtraICState extra_ic_state() const { return extra_ic_state_; } function in class:v8::internal::IC
280 LoadGlobalICState::GetTypeofMode(extra_ic_state()) ==
375 return StoreICState::GetLanguageMode(extra_ic_state());
ic.cc 182 extra_ic_state_ = target->extra_ic_state();
189 BinaryOpICState state(isolate, code->extra_ic_state());
193 CompareICStub stub(isolate, code->extra_ic_state());
197 ToBooleanICStub stub(isolate, code->extra_ic_state());
504 // TODO(ishell): remove extra_ic_state
833 // TODO(ishell): remove extra_ic_state
    [all...]
  /external/v8/src/compiler/
type-hint-analyzer.cc 63 BinaryOpICState state(code->GetIsolate(), code->extra_ic_state());
94 ToBooleanICStub stub(code->GetIsolate(), code->extra_ic_state());
  /external/v8/src/
type-info.cc 241 BinaryOpICState state(isolate(), code->extra_ic_state());
263 BinaryOpICState state(isolate(), code->extra_ic_state());
disassembler.cc 205 LoadGlobalICState::GetTypeofMode(code->extra_ic_state()) ==
code-stubs.h     [all...]
objects-inl.h     [all...]
objects.h     [all...]
objects.cc     [all...]

Completed in 206 milliseconds