Searched refs:objVal (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_array.cpp | 481 JSHandle<JSTaggedValue> objVal(obj); in TryFastCreateDataProperty() 482 if (!objVal->IsStableJSArray(thread)) { in TryFastCreateDataProperty()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | interpreter-inl.cpp | 5126 JSTaggedValue objVal = GET_ACC(); in RunInternal() local 5128 if (objVal.IsAsyncGeneratorObject()) { in RunInternal() 5129 JSAsyncGeneratorObject *obj = JSAsyncGeneratorObject::Cast(objVal.GetTaggedObject()); in RunInternal() 5132 JSGeneratorObject *obj = JSGeneratorObject::Cast(objVal.GetTaggedObject()); in RunInternal() 5143 JSTaggedValue objVal = GET_VREG_VALUE(vs); in RunInternal() local 5144 if (objVal.IsAsyncGeneratorObject()) { in RunInternal() 5145 JSAsyncGeneratorObject *obj = JSAsyncGeneratorObject::Cast(objVal.GetTaggedObject()); in RunInternal() 5148 JSGeneratorObject *obj = JSGeneratorObject::Cast(objVal.GetTaggedObject()); in RunInternal() 5155 JSTaggedValue objVal = GET_ACC(); in RunInternal() local 5157 if (objVal in RunInternal() 5169 JSTaggedValue objVal = GET_VREG_VALUE(vs); RunInternal() local 5311 JSTaggedValue objVal = GET_ACC(); RunInternal() local [all...] |
H A D | interpreter_assembly.cpp | 843 JSTaggedValue objVal = GET_ACC(); in HandleResumegenerator() local 844 if (objVal.IsAsyncGeneratorObject()) { in HandleResumegenerator() 845 JSAsyncGeneratorObject *obj = JSAsyncGeneratorObject::Cast(objVal.GetTaggedObject()); in HandleResumegenerator() 848 JSGeneratorObject *obj = JSGeneratorObject::Cast(objVal.GetTaggedObject()); in HandleResumegenerator() 859 JSTaggedValue objVal = GET_ACC(); in HandleGetresumemode() local 860 if (objVal.IsAsyncGeneratorObject()) { in HandleGetresumemode() 861 JSAsyncGeneratorObject *obj = JSAsyncGeneratorObject::Cast(objVal.GetTaggedObject()); in HandleGetresumemode() 864 JSGeneratorObject *obj = JSGeneratorObject::Cast(objVal.GetTaggedObject()); in HandleGetresumemode() 2807 JSTaggedValue objVal = GET_ACC(); 2811 SlowRuntimeStub::SetGeneratorState(thread, objVal, inde [all...] |
H A D | slow_runtime_stub.h | 64 static JSTaggedValue CreateObjectWithExcludedKeys(JSThread *thread, uint16_t numKeys, JSTaggedValue objVal,
|
H A D | slow_runtime_stub.cpp | 328 JSTaggedValue SlowRuntimeStub::CreateObjectWithExcludedKeys(JSThread *thread, uint16_t numKeys, JSTaggedValue objVal, in CreateObjectWithExcludedKeys() argument 334 JSHandle<JSTaggedValue> obj(thread, objVal); in CreateObjectWithExcludedKeys()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs-inl.h | 2370 const JSHandle<JSTaggedValue> &objVal, 2376 if (objVal->IsNull() || objVal->IsUndefined()) { 2379 JSHandle<JSObject> obj(JSTaggedValue::ToObject(thread, objVal)); 2411 const JSHandle<JSTaggedValue> &objVal = GetHArg<JSTaggedValue>(argv, argc, 0); // 0: means the objVal 2425 return CommonCreateObjectWithExcludedKeys(thread, objVal, numExcludedKeys, excludedKeys); 2429 const JSHandle<JSTaggedValue> &objVal, 2446 JSHandle<JSTaggedValue> finalVal = objVal;
|
H A D | runtime_stubs.h | 420 const JSHandle<JSTaggedValue> &objVal,
462 const JSHandle<JSTaggedValue> &objVal,
|
H A D | runtime_stubs.cpp | 2513 JSHandle<JSTaggedValue> objVal = GetHArg<JSTaggedValue>(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local 2515 return RuntimeCreateObjectWithExcludedKeys(thread, static_cast<uint16_t>(numKeys.GetInt()), objVal, in DEF_RUNTIME_STUBS()
|
Completed in 35 milliseconds