Searched refs:numberBigInt (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | slow_runtime_stub.h | 183 static JSTaggedValue LdBigInt(JSThread *thread, JSTaggedValue numberBigInt);
|
H A D | slow_runtime_stub.cpp | 1183 JSTaggedValue SlowRuntimeStub::LdBigInt(JSThread *thread, JSTaggedValue numberBigInt) in LdBigInt() argument 1187 JSHandle<JSTaggedValue> bigint(thread, numberBigInt); in LdBigInt()
|
H A D | interpreter-inl.cpp | 3164 JSTaggedValue numberBigInt = GET_STR_FROM_CACHE(stringId); in RunInternal() local 3166 JSTaggedValue res = SlowRuntimeStub::LdBigInt(thread, numberBigInt); in RunInternal()
|
H A D | interpreter_assembly.cpp | 2868 JSTaggedValue numberBigInt = ConstantPool::Cast(constpool.GetTaggedObject())->GetObjectFromCache(stringId); 2870 JSTaggedValue res = SlowRuntimeStub::LdBigInt(thread, numberBigInt);
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs.h | 446 static inline JSTaggedValue RuntimeLdBigInt(JSThread *thread, const JSHandle<JSTaggedValue> &numberBigInt);
|
H A D | runtime_stubs-inl.h | 2670 JSTaggedValue RuntimeStubs::RuntimeLdBigInt(JSThread *thread, const JSHandle<JSTaggedValue> &numberBigInt) 2672 return JSTaggedValue::ToBigInt(thread, numberBigInt);
|
H A D | runtime_stubs.cpp | 2671 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 D | slowpath_lowering.cpp | 1677 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 D | interpreter_stub.cpp | 3278 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 D | baseline_stubs.cpp | 3309 GateRef numberBigInt = GetStringFromConstPool(glue, constpool, stringId); in GenerateCircuit() local 3310 GateRef res = CallRuntime(glue, RTSTUB_ID(LdBigInt), { numberBigInt }); in GenerateCircuit()
|
Completed in 70 milliseconds