Home
last modified time | relevance | path

Searched refs:is_fma (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/panfrost/bifrost/
Dgen_disasm.py54 def decode_op(instructions, is_fma): argument
56 options = [n for n in instructions.keys() if (n[0] == '*') == is_fma]
59 MAX_MASK = (1 << (23 if is_fma else 20)) - 1
89 return Template(template).render(options = mapped, unit = "fma" if is_fma else "add")
296 is_fma = mnemonic[0] == '*'
323 body += ' bi_disasm_dest_{}(fp, next_regs, last);\n'.format('fma' if is_fma else 'add')
329 …BITS(bits, {}, 3), *srcs, branch_offset, consts, {});\n'.format(pos, "true" if is_fma else "false")
Dbi_packer.c.py39 def pack_sources(sources, body, pack_exprs, offset, is_fma): argument
43 expected = 0xFB if (is_fma and i < 2) else 0xFF