{
bool progress = false;
bool *used = calloc(c->num_temps, sizeof(bool));
- bool sf_used = false;
list_for_each_entry_safe_rev(struct qinst, inst, &c->instructions,
link) {
continue;
}
- if (qir_depends_on_flags(inst))
- sf_used = true;
- if (inst->sf) {
- if (!sf_used) {
- if (debug) {
- fprintf(stderr, "Removing SF on: ");
- qir_dump_inst(c, inst);
- fprintf(stderr, "\n");
- }
-
- inst->sf = false;
- progress = true;
- }
- sf_used = false;
- }
-
for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
if (inst->src[i].file == QFILE_TEMP)
used[inst->src[i].index] = true;
--- /dev/null
+/*
+ * Copyright © 2016 Broadcom
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+/**
+ * @file vc4_opt_peephole_sf.c
+ *
+ * Quick optimization to eliminate unused SF updates.
+ */
+
+#include "vc4_qir.h"
+#include "util/u_math.h"
+
+static bool debug;
+
+static void
+dump_from(struct vc4_compile *c, struct qinst *inst)
+{
+ if (!debug)
+ return;
+
+ fprintf(stderr, "optimizing: ");
+ qir_dump_inst(c, inst);
+ fprintf(stderr, "\n");
+}
+
+static void
+dump_to(struct vc4_compile *c, struct qinst *inst)
+{
+ if (!debug)
+ return;
+
+ fprintf(stderr, "to: ");
+ qir_dump_inst(c, inst);
+ fprintf(stderr, "\n");
+}
+
+bool
+qir_opt_peephole_sf(struct vc4_compile *c)
+{
+ bool progress = false;
+ bool sf_live = false;
+
+ /* Walk the block from bottom to top, tracking if the SF is used, and
+ * removing unused ones.
+ */
+ list_for_each_entry_rev(struct qinst, inst, &c->instructions, link) {
+ if (inst->sf) {
+ if (!sf_live) {
+ dump_from(c, inst);
+ inst->sf = false;
+ dump_to(c, inst);
+ progress = true;
+ }
+ sf_live = false;
+ }
+
+ if (qir_depends_on_flags(inst))
+ sf_live = true;
+ }
+
+ return progress;
+}