Searched refs:arith_types (Results 1 - 1 of 1) sorted by relevance

/gem5/src/arch/hsail/
H A Dgen.py665 arith_types = arith_int_types + arith_float_types variable
677 gen('Add', arith_types, 'src0 + src1')
678 gen('Sub', arith_types, 'src0 - src1')
679 gen('Mul', arith_types, 'src0 * src1')
680 gen('Div', arith_types, 'src0 / src1')
681 gen('Min', arith_types, 'std::min(src0, src1)')
682 gen('Max', arith_types, 'std::max(src0, src1)')
683 gen('Gcnmin', arith_types, 'std::min(src0, src1)')
715 gen('Abs', arith_types, 'std::abs(src0)')
716 gen('Neg', arith_types, '
[all...]

Completed in 6 milliseconds