Searched refs:MulWithOverflow (Results 1 – 7 of 7) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | lcr_opcodes.h | 43 … V(MulWithOverflow, MUL_WITH_OVERFLOW, GateFlags::NONE_FLAG, 0, 0, 2) \
|
| D | lcr_circuit_builder.cpp | 49 GateRef CircuitBuilder::MulWithOverflow(GateRef left, GateRef right) in MulWithOverflow() function in panda::ecmascript::kungfu::CircuitBuilder 51 …return GetCircuit()->NewGate(circuit_->MulWithOverflow(), MachineType::I64, {left, right}, GateTyp… in MulWithOverflow()
|
| D | ir_builder.h | 103 V(MulWithOverflow, (GateRef gate, GateRef e1, GateRef e2)) \
|
| D | lcr_circuit_builder.h | 314 return BinaryArithmetic(circuit_->MulWithOverflow(), Type, x, y); in BinaryOpWithOverflow()
|
| D | number_speculative_lowering.cpp | 686 res = builder_.MulWithOverflow(left, right); in CalculateInts()
|
| D | circuit_builder.h | 837 GateRef MulWithOverflow(GateRef left, GateRef right);
|
| /arkcompiler/ets_runtime/ecmascript/compiler/tests/ |
| D | instruction_combine_test.cpp | 933 auto mul_overflow = b.MulWithOverflow(b.Int32(2147483647), b.Int32(2)); in HWTEST_F_L0() 943 auto mul_overflow = b.MulWithOverflow(b.Int32(1000), b.Int32(2)); in HWTEST_F_L0() 954 auto mul_overflow = b.MulWithOverflow(x, b.Int32(1)); in HWTEST_F_L0() 965 auto mul_overflow = b.MulWithOverflow(x, b.Int32(0)); in HWTEST_F_L0()
|