Home
last modified time | relevance | path

Searched refs:ToNumeric (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/ets_frontend/es2panda/ir/expressions/
DupdateExpression.cpp52 pg->ToNumeric(this, operandReg); in Compile()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h49 JSHandle<JSTaggedValue> inputVal = JSTaggedValue::ToNumeric(thread, value); in RuntimeInc()
61 JSHandle<JSTaggedValue> inputVal = JSTaggedValue::ToNumeric(thread, value); in RuntimeDec()
75 JSHandle<JSTaggedValue> valBase = JSTaggedValue::ToNumeric(thread, baseTag); in RuntimeExp()
77 JSHandle<JSTaggedValue> valExponent = JSTaggedValue::ToNumeric(thread, exponentTag); in RuntimeExp()
721 JSHandle<JSTaggedValue> inputVal = JSTaggedValue::ToNumeric(thread, value); in RuntimeNeg()
747 JSHandle<JSTaggedValue> inputVal = JSTaggedValue::ToNumeric(thread, value); in RuntimeNot()
1379 return JSTaggedValue::ToNumeric(thread, value).GetTaggedValue(); in RuntimeToNumeric()
1495 JSHandle<JSTaggedValue> valLeft = JSTaggedValue::ToNumeric(thread, primitiveA0); in RuntimeAdd2()
1497 JSHandle<JSTaggedValue> valRight = JSTaggedValue::ToNumeric(thread, primitiveA1); in RuntimeAdd2()
1516 JSHandle<JSTaggedValue> leftValue = JSTaggedValue::ToNumeric(thread, left); in RuntimeShl2()
[all …]
Druntime_stubs.h271 V(ToNumeric) \
Druntime_stubs.cpp1812 DEF_RUNTIME_STUBS(ToNumeric) in DEF_RUNTIME_STUBS() argument
1814 RUNTIME_STUBS_HEADER(ToNumeric); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_number_format.cpp154 JSHandle<JSTaggedValue> x = JSTaggedValue::ToNumeric(thread, value); in FormatToParts()
209 JSHandle<JSTaggedValue> x = JSTaggedValue::ToNumeric(thread, value); in NumberFormatInternalFormatNumber()
Dbuiltins_math.cpp584 JSHandle<JSTaggedValue> baseVale = JSTaggedValue::ToNumeric(thread, msgX); in Pow()
586 JSHandle<JSTaggedValue> exponentValue = JSTaggedValue::ToNumeric(thread, msgY); in Pow()
Dbuiltins_number.cpp53 JSHandle<JSTaggedValue> numericVal = JSTaggedValue::ToNumeric(thread, value); in NumberConstructor()
Dbuiltins_dataview.cpp427 JSHandle<JSTaggedValue> numValueHandle = JSTaggedValue::ToNumeric(thread, value); in SetViewValue()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h33 static JSTaggedValue ToNumeric(JSThread *thread, JSTaggedValue value);
Dslow_runtime_stub.cpp86 JSTaggedValue SlowRuntimeStub::ToNumeric(JSThread *thread, JSTaggedValue value) in ToNumeric() function in panda::ecmascript::SlowRuntimeStub
Dinterpreter-inl.h4588 JSTaggedValue res = SlowRuntimeStub::ToNumeric(thread, value); in RunInternal()
4605 JSTaggedValue res = SlowRuntimeStub::ToNumeric(thread, value); in RunInternal()
Dinterpreter_assembly.cpp2853 JSTaggedValue res = SlowRuntimeStub::ToNumeric(thread, value); in HandleTonumericImm8()
4697 JSTaggedValue res = SlowRuntimeStub::ToNumeric(thread, value); in HandleDeprecatedTonumericPrefV8()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value.h417 static JSHandle<JSTaggedValue> ToNumeric(JSThread *thread, JSHandle<JSTaggedValue> tagged);
Djs_tagged_value.cpp1206 JSHandle<JSTaggedValue> JSTaggedValue::ToNumeric(JSThread *thread, JSHandle<JSTaggedValue> tagged) in ToNumeric() function in panda::ecmascript::JSTaggedValue
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h381 void ToNumeric(const ir::AstNode *node, VReg arg);
Dpandagen.cpp1373 void PandaGen::ToNumeric(const ir::AstNode *node, VReg arg) in ToNumeric() function in panda::es2panda::compiler::PandaGen
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.cpp2768 GateRef res = CallRuntime(glue, RTSTUB_ID(ToNumeric), { value }); in DECLARE_ASM_HANDLER()
2788 GateRef res = CallRuntime(glue, RTSTUB_ID(ToNumeric), { value }); in DECLARE_ASM_HANDLER()
Dslowpath_lowering.cpp1548 result = LowerCallRuntime(gate, RTSTUB_ID(ToNumeric), { value }, true); in LowerToNumeric()