Searched refs:AddWithOverflow (Results 1 – 7 of 7) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | lcr_opcodes.h | 40 … V(AddWithOverflow, ADD_WITH_OVERFLOW, GateFlags::NONE_FLAG, 0, 0, 2) \
|
| D | lcr_circuit_builder.cpp | 36 GateRef CircuitBuilder::AddWithOverflow(GateRef left, GateRef right) in AddWithOverflow() function in panda::ecmascript::kungfu::CircuitBuilder 38 …return GetCircuit()->NewGate(circuit_->AddWithOverflow(), MachineType::I64, {left, right}, GateTyp… in AddWithOverflow()
|
| D | ir_builder.h | 104 V(AddWithOverflow, (GateRef gate, GateRef e1, GateRef e2)) \
|
| D | lcr_circuit_builder.h | 340 return BinaryArithmetic(circuit_->AddWithOverflow(), Type, x, y); in BinaryOpWithOverflow()
|
| D | number_speculative_lowering.cpp | 686 res = builder_.AddWithOverflow(left, right); in CalculateInts()
|
| D | circuit_builder.h | 968 GateRef AddWithOverflow(GateRef left, GateRef right);
|
| /arkcompiler/ets_runtime/ecmascript/compiler/tests/ |
| D | instruction_combine_test.cpp | 851 auto add_overflow = b.AddWithOverflow(b.Int32(2147483647), b.Int32(1)); in HWTEST_F_L0() 860 auto add_overflow = b.AddWithOverflow(b.Int32(2147483646), b.Int32(1)); in HWTEST_F_L0() 872 auto add_overflow = b.AddWithOverflow(x, b.Int32(0)); in HWTEST_F_L0()
|