Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dlcr_opcodes.h40 … V(AddWithOverflow, ADD_WITH_OVERFLOW, GateFlags::NONE_FLAG, 0, 0, 2) \
Dlcr_circuit_builder.cpp36 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()
Dir_builder.h104 V(AddWithOverflow, (GateRef gate, GateRef e1, GateRef e2)) \
Dlcr_circuit_builder.h340 return BinaryArithmetic(circuit_->AddWithOverflow(), Type, x, y); in BinaryOpWithOverflow()
Dnumber_speculative_lowering.cpp686 res = builder_.AddWithOverflow(left, right); in CalculateInts()
Dcircuit_builder.h968 GateRef AddWithOverflow(GateRef left, GateRef right);
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dinstruction_combine_test.cpp851 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()