/arkcompiler/ets_runtime/ecmascript/ic/tests/ |
H A D | ic_compareop_test.cpp | 419 JSTaggedValue resInSlowPath1 = SlowRuntimeStub::GreaterEq(thread, arg1Handle.GetTaggedValue(), in HWTEST_F_L0() 421 JSTaggedValue resInSlowPath2 = SlowRuntimeStub::GreaterEq(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 423 JSTaggedValue resInSlowPath3 = SlowRuntimeStub::GreaterEq(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 425 JSTaggedValue resInSlowPath4 = SlowRuntimeStub::GreaterEq(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 427 JSTaggedValue resInSlowPath5 = SlowRuntimeStub::GreaterEq(thread, arg1Handle.GetTaggedValue(), in HWTEST_F_L0() 429 JSTaggedValue resInSlowPath9 = SlowRuntimeStub::GreaterEq(thread, JSTaggedValue::Undefined(), in HWTEST_F_L0() 431 JSTaggedValue resInSlowPath10 = SlowRuntimeStub::GreaterEq(thread, JSTaggedValue::Undefined(), in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | common_stub_csigns.h | 35 V(GreaterEq) \
|
H A D | operations_stub_builder.h | 44 GateRef GreaterEq(GateRef glue, GateRef left, GateRef right, ProfileOperation callback = ProfileOperation());
|
H A D | call_signature.h | 376 V(GreaterEq) \
|
H A D | operations_stub_builder.cpp | 477 GateRef OperationsStubBuilder::GreaterEq(GateRef glue, GateRef left, GateRef right, ProfileOperation callback) in GreaterEq() function in panda::ecmascript::kungfu::OperationsStubBuilder 575 result = CallRuntime(glue, RTSTUB_ID(GreaterEq), { left, right }); in GreaterEq()
|
H A D | call_signature.cpp | 113 DEF_CALL_SIGNATURE(GreaterEq) in DEF_CALL_SIGNATURE() 115 BINARY_CALL_SIGNATURE(GreaterEq) in DEF_CALL_SIGNATURE()
|
H A D | common_stubs.cpp | 222 Return(operationBuilder.GreaterEq(glue, x, y)); in GenerateCircuit()
|
H A D | slowpath_lowering.cpp | 1381 GateRef result = builder_.CallStub(glue_, gate, CommonStubCSigns::GreaterEq, in LowerGreaterEq()
|
H A D | interpreter_stub.cpp | 930 GateRef result = builder.GreaterEq(glue, left, acc, callback);
in DECLARE_ASM_HANDLER()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stub_list.h | 361 V(GreaterEq) \
|
H A D | runtime_stubs.cpp | 2235 DEF_RUNTIME_STUBS(GreaterEq) in DEF_RUNTIME_STUBS() 2237 RUNTIME_STUBS_HEADER(GreaterEq); in DEF_RUNTIME_STUBS()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | slow_runtime_stub.h | 50 static JSTaggedValue GreaterEq(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
|
H A D | slow_runtime_stub.cpp | 222 JSTaggedValue SlowRuntimeStub::GreaterEq(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in GreaterEq() function in panda::ecmascript::SlowRuntimeStub 224 INTERPRETER_TRACE(thread, GreaterEq); in GreaterEq()
|
H A D | interpreter-inl.cpp | 1964 JSTaggedValue res = SlowRuntimeStub::GreaterEq(thread, left, right); in RunInternal()
|
H A D | interpreter_assembly.cpp | 1266 JSTaggedValue res = SlowRuntimeStub::GreaterEq(thread, left, right);
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 51 V(GreaterEq) \
|
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
H A D | baseline_stubs.cpp | 1086 GateRef result = builder.GreaterEq(glue, left, acc, callback); in GenerateCircuit()
|