/arkcompiler/runtime_core/docs/ |
D | PBC2IR.md | 82 | fmod2 | f32 Mod | 83 | fmod2.64 | f64 Mod | 86 | mod2 | i32 Mod | 87 | mod2.64 | i64 Mod | 91 | modu2.64 | u64 Mod | 102 | modi | i64 Constant, i32 Mod | 113 | mod | i32 Mod |
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | common_stubs.h | 28 V(Mod) \
|
D | operations_stub_builder.h | 49 …GateRef Mod(GateRef glue, GateRef left, GateRef right, ProfileOperation callback = ProfileOperatio…
|
D | call_signature.h | 326 V(Mod) \
|
D | llvm_ir_builder.h | 350 V(Mod, (GateRef gate, GateRef e1, GateRef e2)) \
|
D | call_signature.cpp | 72 DEF_CALL_SIGNATURE(Mod) in DEF_CALL_SIGNATURE() argument 74 BINARY_CALL_SIGNATURE(Mod) in DEF_CALL_SIGNATURE()
|
D | common_stubs.cpp | 75 Return(operationBuilder.Mod(glue, x, y)); in GenerateCircuit()
|
D | operations_stub_builder.cpp | 627 GateRef OperationsStubBuilder::Mod(GateRef glue, GateRef left, GateRef right, ProfileOperation call… in Mod() function in panda::ecmascript::kungfu::OperationsStubBuilder
|
D | slowpath_lowering.cpp | 1209 GateRef result = builder_.CallStub(glue_, gate, CommonStubCSigns::Mod, in LowerMod2()
|
D | interpreter_stub.cpp | 510 GateRef result = builder.Mod(glue, left, acc, callback); in DECLARE_ASM_HANDLER()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_date.cpp | 36 …(*date)[HOUR] = Mod(timeMs, MS_PER_DAY); // ms from hour, minutes,… in TransferTimeToDate() 44 (*date)[WEEKDAY] = Mod(((*date)[DAYS] + LEAP_NUMBER[0]), DAY_PER_WEEK); // weekday in TransferTimeToDate() 123 int64_t DateUtils::Mod(int64_t a, int b) in Mod() function in panda::ecmascript::DateUtils 893 int64_t month = DateUtils::Mod((*date)[MONTH], MONTH_PER_YEAR); in SetDateValues() 915 int64_t m = DateUtils::Mod(month, MONTH_PER_YEAR); in SetDateValues()
|
D | js_date.h | 69 static int64_t Mod(int64_t a, int b);
|
/arkcompiler/runtime_core/compiler/tests/ |
D | inst_generator.h | 166 {Opcode::Mod, numeric_types_},
|
D | ir_builder_test.cpp | 1521 INST(2, Opcode::Mod).f32().Inputs(0, 1); in TEST_F() 1547 INST(2, Opcode::Mod).f64().Inputs(0, 1); in TEST_F() 2099 INST(4, Opcode::Mod).s32().Inputs(0, 3); in TEST_F() 2127 INST(4, Opcode::Mod).s64().Inputs(0, 3); in TEST_F() 2211 INST(4, Opcode::Mod).u32().Inputs(0, 3); in TEST_F() 2239 INST(4, Opcode::Mod).u64().Inputs(0, 3); in TEST_F() 2499 TEST_F(IrBuilderTest, Mod) in TEST_F() argument 2518 INST(4, Opcode::Mod).s32().Inputs(0, 3); in TEST_F() 2808 INST(4, Opcode::Mod).s32().Inputs(0, 3); in TEST_F()
|
D | inst_test.cpp | 360 INST(5, Opcode::Mod).u64().Inputs(1, 3); in TEST_F()
|