Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_ir_builder.h355 V(AddWithOverflow, (GateRef gate, GateRef e1, GateRef e2)) \
Dnumber_speculative_lowering.cpp578 res = builder_.AddWithOverflow(left, right); in CalculateInts()
Dgate_meta_data.h213 … V(AddWithOverflow, ADD_WITH_OVERFLOW, GateFlags::NONE_FLAG, 0, 0, 2) \
Dcircuit_builder.cpp583 GateRef CircuitBuilder::AddWithOverflow(GateRef left, GateRef right) in AddWithOverflow() function in panda::ecmascript::kungfu::CircuitBuilder
585 …return GetCircuit()->NewGate(circuit_->AddWithOverflow(), MachineType::I64, {left, right}, GateTyp… in AddWithOverflow()
Dcircuit_builder.h278 GateRef AddWithOverflow(GateRef left, GateRef right);
Dcircuit_builder-inl.h239 return BinaryArithmetic(circuit_->AddWithOverflow(), Type, x, y); in BinaryOpWithOverflow()