Home
last modified time | relevance | path

Searched refs:instOfHandler (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h70 JSTaggedValue instOfHandler);
Dslow_runtime_stub.cpp392 JSTaggedValue instOfHandler) in InstanceofByHandler() argument
399 JSHandle<JSTaggedValue> instOfHandle(thread, instOfHandler); in InstanceofByHandler()
Dinterpreter-inl.h2160 JSTaggedValue instOfHandler = JSTaggedValue::Hole(); in RunInternal() local
2164instOfHandler = ICRuntimeStub::TryLoadICByName(thread, target, firstValue, secondValue); in RunInternal()
2166 if (LIKELY(!instOfHandler.IsHole())) { in RunInternal()
2167 … res = SlowRuntimeStub::InstanceofByHandler(thread, target, object, instOfHandler); in RunInternal()
2175instOfHandler = ICRuntimeStub::LoadICByName(thread, profileTypeArray, target, key, slotId); in RunInternal()
2179 … res = SlowRuntimeStub::InstanceofByHandler(thread, target, object, instOfHandler); in RunInternal()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h130 JSHandle<JSTaggedValue> instOfHandler) in RuntimeInstanceofByHandler() argument
135 if (!instOfHandler->IsUndefined()) { in RuntimeInstanceofByHandler()
139 JSTaggedValue instOf = instOfHandler.GetTaggedValue(); in RuntimeInstanceofByHandler()
143 … EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, instOfHandler, target, in RuntimeInstanceofByHandler()
Druntime_stubs.h401 JSHandle<JSTaggedValue> instOfHandler);
/arkcompiler/ets_runtime/ecmascript/
Djs_object.cpp1754 …JSHandle<JSTaggedValue> instOfHandler = GetMethod(thread, target, vm->GetGlobalEnv()->GetHasInstan… in InstanceOf() local
1760 if (!instOfHandler->IsUndefined()) { in InstanceOf()
1764 EcmaInterpreter::NewRuntimeCallInfo(thread, instOfHandler, target, undefined, 1); in InstanceOf()