Home
last modified time | relevance | path

Searched refs:MulWithOverflow (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dlcr_opcodes.h43 … V(MulWithOverflow, MUL_WITH_OVERFLOW, GateFlags::NONE_FLAG, 0, 0, 2) \
Dlcr_circuit_builder.cpp49 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()
Dir_builder.h103 V(MulWithOverflow, (GateRef gate, GateRef e1, GateRef e2)) \
Dlcr_circuit_builder.h314 return BinaryArithmetic(circuit_->MulWithOverflow(), Type, x, y); in BinaryOpWithOverflow()
Dnumber_speculative_lowering.cpp686 res = builder_.MulWithOverflow(left, right); in CalculateInts()
Dcircuit_builder.h837 GateRef MulWithOverflow(GateRef left, GateRef right);
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dinstruction_combine_test.cpp933 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()