Searched refs:extra_ic_state (Results 1 – 14 of 14) sorted by relevance
/external/v8/src/ic/ |
D | ic-state.h | 26 explicit CallICState(ExtraICState extra_ic_state) in CallICState() argument 27 : bit_field_(extra_ic_state) {} in CallICState() 62 BinaryOpICState(Isolate* isolate, ExtraICState extra_ic_state); 211 explicit LoadGlobalICState(ExtraICState extra_ic_state) in LoadGlobalICState() argument 212 : state_(extra_ic_state) {} in LoadGlobalICState() 229 explicit StoreICState(ExtraICState extra_ic_state) : state_(extra_ic_state) {} in StoreICState() argument
|
D | ic-state.cc | 32 BinaryOpICState::BinaryOpICState(Isolate* isolate, ExtraICState extra_ic_state) in BinaryOpICState() argument 34 HasFixedRightArgField::decode(extra_ic_state) in BinaryOpICState() 35 ? Just(1 << FixedRightArgValueField::decode(extra_ic_state)) in BinaryOpICState() 39 static_cast<Token::Value>(FIRST_TOKEN + OpField::decode(extra_ic_state)); in BinaryOpICState() 40 left_kind_ = LeftKindField::decode(extra_ic_state); in BinaryOpICState() 43 : RightKindField::decode(extra_ic_state); in BinaryOpICState() 44 result_kind_ = ResultKindField::decode(extra_ic_state); in BinaryOpICState() 51 ExtraICState extra_ic_state = in GetExtraICState() local 56 extra_ic_state = FixedRightArgValueField::update( in GetExtraICState() 57 extra_ic_state, WhichPowerOf2(fixed_right_arg_.FromJust())); in GetExtraICState() [all …]
|
D | ic-inl.h | 73 DCHECK(StoreICState::GetLanguageMode(old_target->extra_ic_state()) == in SetTargetAtAddress() 74 StoreICState::GetLanguageMode(target->extra_ic_state())); in SetTargetAtAddress()
|
D | ic-compiler.h | 18 Handle<Map> receiver_map, ExtraICState extra_ic_state);
|
D | ic.h | 171 ExtraICState extra_ic_state() const { return extra_ic_state_; } in extra_ic_state() function 280 LoadGlobalICState::GetTypeofMode(extra_ic_state()) == in ShouldThrowReferenceError() 375 return StoreICState::GetLanguageMode(extra_ic_state()); in language_mode()
|
D | ic-compiler.cc | 15 Handle<Map> receiver_map, ExtraICState extra_ic_state) { in ComputeKeyedLoadMonomorphicHandler() argument
|
D | ic.cc | 182 extra_ic_state_ = target->extra_ic_state(); in IC() 189 BinaryOpICState state(isolate, code->extra_ic_state()); in StateFromCode() 193 CompareICStub stub(isolate, code->extra_ic_state()); in StateFromCode() 197 ToBooleanICStub stub(isolate, code->extra_ic_state()); in StateFromCode() 1323 receiver_map, extra_ic_state()); in UpdateLoadElement() 1353 receiver_map, extra_ic_state()); in UpdateLoadElement() 2584 BinaryOpICState state(isolate(), extra_ic_state()); in Transition() 2649 BinaryOpICState old_state(isolate(), target()->extra_ic_state()); in Transition() 2802 ToBooleanICStub stub(isolate(), extra_ic_state()); in ToBoolean()
|
/external/v8/src/compiler/ |
D | type-hint-analyzer.cc | 63 BinaryOpICState state(code->GetIsolate(), code->extra_ic_state()); in GetBinaryOperationHints() 94 ToBooleanICStub stub(code->GetIsolate(), code->extra_ic_state()); in GetToBooleanHints()
|
/external/v8/src/ |
D | type-info.cc | 241 BinaryOpICState state(isolate(), code->extra_ic_state()); in BinaryType() 263 BinaryOpICState state(isolate(), code->extra_ic_state()); in CountType()
|
D | disassembler.cc | 205 LoadGlobalICState::GetTypeofMode(code->extra_ic_state()) == in DecodeIt()
|
D | code-stubs.h | 1972 CompareICStub(Isolate* isolate, ExtraICState extra_ic_state) in CompareICStub() argument 1974 minor_key_ = extra_ic_state; in CompareICStub()
|
D | objects-inl.h | 4860 ExtraICState Code::extra_ic_state() { in extra_ic_state() function 5078 uint16_t Code::to_boolean_state() { return extra_ic_state(); } in to_boolean_state() 5138 Code::Flags Code::ComputeFlags(Kind kind, ExtraICState extra_ic_state, in ComputeFlags() argument 5144 ExtraICStateField::encode(extra_ic_state) | in ComputeFlags()
|
D | objects.h | 4988 inline ExtraICState extra_ic_state(); // Only valid for IC stubs. 5122 Kind kind, ExtraICState extra_ic_state = kNoExtraICState,
|
D | objects.cc | 14282 PrintExtraICState(os, kind(), extra_ic_state()); in Disassemble()
|