Lines Matching refs:thread_
47 receiver = thread_->GetEcmaVM()->GetGlobalEnv()->GetNumberFunction(); in UpdateLoadHandler()
60 handlerValue = LoadHandler::LoadElement(thread_, op); in UpdateLoadHandler()
65 handlerValue = LoadHandler::LoadProperty(thread_, op); in UpdateLoadHandler()
67 handlerValue = PrototypeHandler::LoadPrototype(thread_, op, hclass); in UpdateLoadHandler()
70 handlerValue = LoadHandler::LoadProperty(thread_, op); in UpdateLoadHandler()
76 handlerValue = PrototypeHandler::LoadPrototype(thread_, op, hclass); in UpdateLoadHandler()
98 JSHandle<JSTaggedValue> handlerValue = LoadHandler::LoadStringElement(thread_); in UpdateLoadStringHandler()
109 LoadHandler::LoadTypedArrayElement(thread_, JSHandle<JSTypedArray>(receiver)); in UpdateTypedArrayHandler()
128 JSHandle<JSHClass> hclass(thread_, JSHandle<JSObject>::Cast(receiver)->GetClass()); in UpdateStoreHandler()
129 handlerValue = TransWithProtoHandler::StoreTransition(thread_, op, hclass); in UpdateStoreHandler()
131 handlerValue = TransitionHandler::StoreTransition(thread_, op); in UpdateStoreHandler()
138 JSHandle<JSHClass> hclass(thread_, JSHandle<JSObject>::Cast(receiver)->GetClass()); in UpdateStoreHandler()
139 handlerValue = PrototypeHandler::StorePrototype(thread_, op, hclass); in UpdateStoreHandler()
141 handlerValue = StoreHandler::StoreProperty(thread_, op); in UpdateStoreHandler()
178 …JSTaggedValue::RequireObjectCoercible(thread_, receiver, "Cannot load property of null or undefine… in LoadValueMiss()
179 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread_); in LoadValueMiss()
183 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread_, key); in LoadValueMiss()
184 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread_); in LoadValueMiss()
185 return JSTaggedValue::GetProperty(thread_, receiver, propKey).GetValue().GetTaggedValue(); in LoadValueMiss()
191 auto result = JSHandle<JSTaggedValue>(thread_, JSObject::GetProperty(GetThread(), &op)); in LoadValueMiss()
227 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread_, key); in LoadMiss()
228 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread_); in LoadMiss()
229 return JSTaggedValue::GetProperty(thread_, receiver, propKey).GetValue().GetTaggedValue(); in LoadMiss()
235 JSTaggedValue box = SlowRuntimeStub::LdGlobalRecord(thread_, key.GetTaggedValue()); in LoadMiss()
239 icAccessor_.AddGlobalRecordHandler(JSHandle<JSTaggedValue>(thread_, box)); in LoadMiss()
246 auto result = JSHandle<JSTaggedValue>(thread_, JSObject::GetProperty(GetThread(), &op)); in LoadMiss()
247 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread_); in LoadMiss()
316 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread_); in StoreMiss()
325 JSTaggedValue box = SlowRuntimeStub::LdGlobalRecord(thread_, key.GetTaggedValue()); in StoreMiss()
328 … SlowRuntimeStub::TryUpdateGlobalRecord(thread_, key.GetTaggedValue(), value.GetTaggedValue()); in StoreMiss()
329 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread_); in StoreMiss()
331 icAccessor_.AddGlobalRecordHandler(JSHandle<JSTaggedValue>(thread_, box)); in StoreMiss()
347 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread_); in StoreMiss()