Lines Matching defs:to
4 * Permission is hereby granted, free of charge, to any person obtaining a
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
44 * The forwards pass would propagate the fabs to the fround (since we can
46 * the backwards pass would propagate the fsat back to the fround (since when
50 * We are careful to update the tracked state whenever we modify an instruction
51 * to ensure the passes are linear-time and converge in a single iteration.
60 * if we move it up to the fadd, we get FP16 for two instructions, whereas if
68 * This time if we move f2f32 up to the fadd, we get FP32 for two, but if we
69 * move it down to the fround, we get FP16 to too. So f2f32 is backwards.
82 agx_compose_float_src(agx_index to, agx_index from)
84 if (to.abs)
87 from.abs |= to.abs;
88 from.neg |= to.neg;
210 /* Destination has a single use, try to propagate */