Home
last modified time | relevance | path

Searched refs:Mod2 (Results 1 – 14 of 14) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/tests/expression/
DoperationEqual.test.ts25 Mod2,
158 new Mod2(new Imm(2), lhs),
Dbinary.test.ts27 Mod2,
226 new Mod2(new Imm(0), lhs),
/arkcompiler/ets_runtime/ecmascript/ic/tests/
Dic_binaryop_test.cpp244 …JSTaggedValue resInSlowPath1 = SlowRuntimeStub::Mod2(thread, arg3.GetTaggedValue(), arg2.GetTagged… in HWTEST_F_L0()
250 …JSTaggedValue resInSlowPath2 = SlowRuntimeStub::Mod2(thread, arg2.GetTaggedValue(), arg3.GetTagged… in HWTEST_F_L0()
256 …JSTaggedValue resInSlowPath3 = SlowRuntimeStub::Mod2(thread, arg1.GetTaggedValue(), arg2.GetTagged… in HWTEST_F_L0()
263 …JSTaggedValue resInSlowPath4 = SlowRuntimeStub::Mod2(thread, arg2.GetTaggedValue(), JSTaggedValue:… in HWTEST_F_L0()
270 …JSTaggedValue resInSlowPath5 = SlowRuntimeStub::Mod2(thread, arg4.GetTaggedValue(), JSTaggedValue:… in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h44 static JSTaggedValue Mod2(JSThread *thread, JSTaggedValue left, JSTaggedValue right);
Dslow_runtime_stub.cpp187 JSTaggedValue SlowRuntimeStub::Mod2(JSThread *thread, JSTaggedValue left, JSTaggedValue right) in Mod2() function in panda::ecmascript::SlowRuntimeStub
189 INTERPRETER_TRACE(thread, Mod2); in Mod2()
Dinterpreter-inl.h1749 JSTaggedValue slowRes = SlowRuntimeStub::Mod2(thread, left, right); in RunInternal()
Dinterpreter_assembly.cpp1055 JSTaggedValue slowRes = SlowRuntimeStub::Mod2(thread, left, right); in HandleMod2Imm8V8()
/arkcompiler/ets_frontend/ts2panda/src/
Dpandagen.ts152 Mod2,
1026 this.add(node, new Mod2(new Imm(0), lhs));
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h244 V(Mod2) \
Druntime_stubs.cpp1503 DEF_RUNTIME_STUBS(Mod2) in DEF_RUNTIME_STUBS() argument
1505 RUNTIME_STUBS_HEADER(Mod2); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h45 V(Mod2) \
/arkcompiler/ets_runtime/ecmascript/compiler/
Doperations_stub_builder.cpp639 result = CallRuntime(glue, RTSTUB_ID(Mod2), { left, right }); in Mod()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp947 ra_.Emit<Mod2>(node, 0, lhs); in Binary()
/arkcompiler/runtime_core/compiler/tests/
Dir_builder_test.cpp2079 TEST_F(IrBuilderTest, Mod2) in TEST_F() argument