Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_ir_builder.h357 V(MulWithOverflow, (GateRef gate, GateRef e1, GateRef e2)) \
Dnumber_speculative_lowering.cpp589 res = builder_.MulWithOverflow(left, right); in CalculateInts()
Dgate_meta_data.h215 … V(MulWithOverflow, MUL_WITH_OVERFLOW, GateFlags::NONE_FLAG, 0, 0, 2) \
Dcircuit_builder.cpp593 GateRef CircuitBuilder::MulWithOverflow(GateRef left, GateRef right) in MulWithOverflow() function in panda::ecmascript::kungfu::CircuitBuilder
595 …return GetCircuit()->NewGate(circuit_->MulWithOverflow(), MachineType::I64, {left, right}, GateTyp… in MulWithOverflow()
Dcircuit_builder.h280 GateRef MulWithOverflow(GateRef left, GateRef right);
Dcircuit_builder-inl.h243 return BinaryArithmetic(circuit_->MulWithOverflow(), Type, x, y); in BinaryOpWithOverflow()