Home
last modified time | relevance | path

Searched refs:numberBigInt (Results 1 - 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/interpreter/
H A Dslow_runtime_stub.h183 static JSTaggedValue LdBigInt(JSThread *thread, JSTaggedValue numberBigInt);
H A Dslow_runtime_stub.cpp1183 JSTaggedValue SlowRuntimeStub::LdBigInt(JSThread *thread, JSTaggedValue numberBigInt) in LdBigInt() argument
1187 JSHandle<JSTaggedValue> bigint(thread, numberBigInt); in LdBigInt()
H A Dinterpreter-inl.cpp3164 JSTaggedValue numberBigInt = GET_STR_FROM_CACHE(stringId); in RunInternal() local
3166 JSTaggedValue res = SlowRuntimeStub::LdBigInt(thread, numberBigInt); in RunInternal()
H A Dinterpreter_assembly.cpp2868 JSTaggedValue numberBigInt = ConstantPool::Cast(constpool.GetTaggedObject())->GetObjectFromCache(stringId);
2870 JSTaggedValue res = SlowRuntimeStub::LdBigInt(thread, numberBigInt);
/arkcompiler/ets_runtime/ecmascript/stubs/
H A Druntime_stubs.h446 static inline JSTaggedValue RuntimeLdBigInt(JSThread *thread, const JSHandle<JSTaggedValue> &numberBigInt);
H A Druntime_stubs-inl.h2670 JSTaggedValue RuntimeStubs::RuntimeLdBigInt(JSThread *thread, const JSHandle<JSTaggedValue> &numberBigInt)
2672 return JSTaggedValue::ToBigInt(thread, numberBigInt);
H A Druntime_stubs.cpp2671 JSHandle<JSTaggedValue> numberBigInt = GetHArg<JSTaggedValue>(argv, argc, 0); // 0: means the zeroth parameter in DEF_RUNTIME_STUBS() local
2672 return RuntimeLdBigInt(thread, numberBigInt).GetRawData(); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dslowpath_lowering.cpp1677 GateRef numberBigInt = builder_.GetObjectFromConstPool(glue_, gate, sharedConstPool, Circuit::NullGate(), module, in LowerLdBigInt() local
1679 GateRef result = LowerCallRuntime(gate, RTSTUB_ID(LdBigInt), {numberBigInt}, true); in LowerLdBigInt()
H A Dinterpreter_stub.cpp3278 GateRef numberBigInt = GetStringFromConstPool(glue, constpool, ZExtInt16ToInt32(stringId)); in DECLARE_ASM_HANDLER() local
3279 GateRef res = CallRuntime(glue, RTSTUB_ID(LdBigInt), { numberBigInt }); in DECLARE_ASM_HANDLER()
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/
H A Dbaseline_stubs.cpp3309 GateRef numberBigInt = GetStringFromConstPool(glue, constpool, stringId); in GenerateCircuit() local
3310 GateRef res = CallRuntime(glue, RTSTUB_ID(LdBigInt), { numberBigInt }); in GenerateCircuit()

Completed in 70 milliseconds