Searched refs:SubWithOverflow (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | lcr_opcodes.h | 42 V(SubWithOverflow, SUB_WITH_OVERFLOW, GateFlags::NONE_FLAG, 0, 0, 2) \
|
H A D | lcr_circuit_builder.cpp | 44 GateRef CircuitBuilder::SubWithOverflow(GateRef left, GateRef right) in SubWithOverflow() function in panda::ecmascript::kungfu::CircuitBuilder 46 return GetCircuit()->NewGate(circuit_->SubWithOverflow(), MachineType::I64, {left, right}, GateType::AnyType()); in SubWithOverflow()
|
H A D | ir_builder.h | 102 V(SubWithOverflow, (GateRef gate, GateRef e1, GateRef e2)) \
|
H A D | lcr_circuit_builder.h | 312 return BinaryArithmetic(circuit_->SubWithOverflow(), Type, x, y); in BinaryOpWithOverflow()
|
H A D | number_speculative_lowering.cpp | 679 res = builder_.SubWithOverflow(left, right); in CalculateInts()
|
H A D | circuit_builder.h | 836 GateRef SubWithOverflow(GateRef left, GateRef right);
|
/arkcompiler/ets_runtime/ecmascript/compiler/tests/ |
H A D | instruction_combine_test.cpp | 889 auto sub_overflow = b.SubWithOverflow(b.Int32(-2147483648), b.Int32(1)); in HWTEST_F_L0() 898 auto sub_overflow = b.SubWithOverflow(b.Int32(2147483647), b.Int32(1)); in HWTEST_F_L0() 909 auto sub_overflow = b.SubWithOverflow(x, b.Int32(0)); in HWTEST_F_L0()
|
Completed in 7 milliseconds