Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dlcr_opcodes.h41 … V(SubWithOverflow, SUB_WITH_OVERFLOW, GateFlags::NONE_FLAG, 0, 0, 2) \
Dlcr_circuit_builder.cpp41 GateRef CircuitBuilder::SubWithOverflow(GateRef left, GateRef right) in SubWithOverflow() function in panda::ecmascript::kungfu::CircuitBuilder
43 …return GetCircuit()->NewGate(circuit_->SubWithOverflow(), MachineType::I64, {left, right}, GateTyp… in SubWithOverflow()
Dir_builder.h105 V(SubWithOverflow, (GateRef gate, GateRef e1, GateRef e2)) \
Dlcr_circuit_builder.h342 return BinaryArithmetic(circuit_->SubWithOverflow(), Type, x, y); in BinaryOpWithOverflow()
Dnumber_speculative_lowering.cpp693 res = builder_.SubWithOverflow(left, right); in CalculateInts()
Dcircuit_builder.h969 GateRef SubWithOverflow(GateRef left, GateRef right);
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dinstruction_combine_test.cpp896 auto sub_overflow = b.SubWithOverflow(b.Int32(-2147483648), b.Int32(1)); in HWTEST_F_L0()
905 auto sub_overflow = b.SubWithOverflow(b.Int32(2147483647), b.Int32(1)); in HWTEST_F_L0()
916 auto sub_overflow = b.SubWithOverflow(x, b.Int32(0)); in HWTEST_F_L0()