Searched refs:tied (Results 1 - 10 of 10) sorted by relevance
| /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/ |
| H A D | ir3_validate.c | 87 if (reg->tied) { 88 validate_assert(ctx, reg->tied->tied == reg); 91 if (dst == reg->tied) { 97 found && "tied register not in the same instruction"); 133 if (reg->tied) { 134 validate_assert(ctx, reg->tied->tied == reg); 135 validate_assert(ctx, reg_class_flags(reg->tied) == reg_class_flags(reg)); 136 validate_assert(ctx, reg->tied [all...] |
| H A D | ir3_array_to_ssa.c | 245 if ((reg->flags & IR3_REG_ARRAY) && !reg->tied) { 287 if (!reg->tied) {
|
| H A D | ir3_ra.c | 1111 * sources. This must be used for tied registers, because we're actually 1112 * allocating the destination and the tied source at the same time. 1258 struct ir3_register *tied = dst->tied; local in function:allocate_dst 1259 if (tied) { 1260 struct ra_interval *tied_interval = &ctx->intervals[tied->def->name]; 1299 struct ir3_register *tied = src->tied; local in function:assign_src 1301 if (tied) { 1302 struct ra_interval *tied_interval = &ctx->intervals[tied [all...] |
| H A D | ir3_ra_validate.c | 144 if (dst->tied) 145 validate_assert(ctx, ra_reg_get_num(dst) == ra_reg_get_num(dst->tied));
|
| H A D | ir3.h | 204 * physical register. Each destination can be tied with one source, and 205 * they must have "tied" pointing to each other. 207 struct ir3_register *tied; member in struct:ir3_register 670 assert(!dst->tied && !src->tied); 671 dst->tied = src; 672 src->tied = dst;
|
| H A D | ir3_print.c | 247 /* Right now all instructions that use tied registers only have one 248 * destination register, so we can just print (tied) as if it's a flag, 251 if (reg->tied) 252 mesa_log_stream_printf(stream, "(tied)");
|
| H A D | ir3_spill.c | 959 /* Handle tied destinations. If a destination is tied to a source and that 966 struct ir3_register *tied_src = dst->tied;
|
| /xsrc/external/mit/ctwm/dist/ |
| H A D | CHANGES.md | 215 `doc/devman/`. This isn't tied into the main build, and there's no
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 21.1.0.rst | 625 - pan/bi: Allow @rNULL with tied operands
|
| H A D | 21.2.0.rst | 1468 - ir3: Make tied sources/destinations part of the IR
|
Completed in 27 milliseconds