Lines Matching refs:GetThread
44 JSHandle<JSHClass> hclass(GetThread(), JSHandle<JSObject>::Cast(receiver)->GetClass()); in UpdateLoadHandler()
170 ObjectOperator op(GetThread(), receiver, key); in LoadMiss()
171 auto result = JSHandle<JSTaggedValue>(thread_, JSObject::GetProperty(GetThread(), &op)); in LoadMiss()
173 op = ObjectOperator(GetThread(), receiver, key); in LoadMiss()
176 … return SlowRuntimeStub::ThrowReferenceError(GetThread(), key.GetTaggedValue(), " is not defined"); in LoadMiss()
178 RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(GetThread()); in LoadMiss()
180 if (!GetThread()->GetEcmaVM()->ICEnabled()) { in LoadMiss()
200 bool success = JSTaggedValue::SetProperty(GetThread(), receiver, key, value, true); in StoreMiss()
219 ObjectOperator op(GetThread(), receiver, key); in StoreMiss()
225 … return SlowRuntimeStub::ThrowReferenceError(GetThread(), key.GetTaggedValue(), " is not defined"); in StoreMiss()
231 if (!GetThread()->GetEcmaVM()->ICEnabled()) { in StoreMiss()
242 …UpdateReceiverHClass(JSHandle<JSTaggedValue>(GetThread(), JSHandle<JSObject>::Cast(receiver)->GetC… in StoreMiss()