Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_eu.c424 { .name = "dim", .nsrc = 1, .ndst = 1, .gens = GEN75 },
425 { .name = "smov", .nsrc = 0, .ndst = 0, .gens = GEN_GE(GEN8) },
429 { .name = "iff", .nsrc = 0, .ndst = 0, .gens = GEN_LE(GEN5) },
430 { .name = "brc", .nsrc = 0, .ndst = 0, .gens = GEN_GE(GEN7) },
434 { .name = "do", .nsrc = 0, .ndst = 0, .gens = GEN_LE(GEN5) },
435 { .name = "case", .nsrc = 0, .ndst = 0, .gens = GEN6 },
439 { .name = "msave", .nsrc = 0, .ndst = 0, .gens = GEN_LE(GEN5) },
440 { .name = "call", .nsrc = 0, .ndst = 0, .gens = GEN_GE(GEN6) },
444 { .name = "mrest", .nsrc = 0, .ndst = 0, .gens = GEN_LE(GEN5) },
445 { .name = "ret", .nsrc = 0, .ndst = 0, .gens = GEN_GE(GEN6) },
[all …]
Dbrw_eu.h583 int ndst; member
Dbrw_disasm.c1344 if (desc->ndst > 0) { in brw_disassemble_inst()
1623 desc && desc->ndst > 0 && in brw_disassemble_inst()
/external/mesa3d/src/compiler/nir/
Dnir_clone.c244 nir_dest *ndst, const nir_dest *dst) in __clone_dst() argument
246 ndst->is_ssa = dst->is_ssa; in __clone_dst()
248 nir_ssa_dest_init(ninstr, ndst, dst->ssa.num_components, in __clone_dst()
250 add_remap(state, &ndst->ssa, &dst->ssa); in __clone_dst()
252 ndst->reg.reg = remap_reg(state, dst->reg.reg); in __clone_dst()
254 ndst->reg.indirect = ralloc(ninstr, nir_src); in __clone_dst()
255 __clone_src(state, ninstr, ndst->reg.indirect, dst->reg.indirect); in __clone_dst()
257 ndst->reg.base_offset = dst->reg.base_offset; in __clone_dst()
/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_ra_init.cpp784 vvec sv, tv, ndst = n->dst; in split_vector_inst() local
786 split_vec(ndst, tv, sv, true); in split_vector_inst()
789 n->dst = ndst; in split_vector_inst()
/external/mesa3d/src/gallium/state_trackers/nine/
Dnine_shader.c360 unsigned ndst; member
373 BYTE ndst; member
415 for (i = 0; i < insn->ndst && i < ARRAY_SIZE(insn->dst); ++i) { in sm1_dump_instruction()
1346 if (!tx->insn.ndst || !tx->insn.dst[0].shift || tx->insn.opcode == D3DSIO_TEXKILL) in tx_apply_dst0_modifiers()
3038 for (i = 0; i < tx->insn.ndst && i < ARRAY_SIZE(dst); ++i) in NineTranslateInstruction_Generic()
3044 dst, tx->insn.ndst, in NineTranslateInstruction_Generic()
3299 insn->ndst = info->ndst; in sm1_parse_instruction()
3316 for (i = 0; i < insn->ndst; ++i) in sm1_parse_instruction()
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_qir.c32 uint8_t ndst, nsrc; member