nv50: add assertions missed in earlier nv50 commit
authorBrian Paul <brianp@vmware.com>
Wed, 1 Feb 2012 15:20:05 +0000 (08:20 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 1 Feb 2012 15:22:16 +0000 (08:22 -0700)
src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp
src/gallium/drivers/nv50/nv50_pc_regalloc.c

index fb4041f0b88769c89990288bc1077e1959feb5ed..43d6b21a3f63f7b73a8fe6f241910aaa454cadc8 100644 (file)
@@ -1478,6 +1478,7 @@ MemoryOpt::replaceStFromSt(Instruction *restrict st, Record *rec)
       // get non-replaced sources after values covered by st
       for (; offR < endR; offR += ri->getSrc(s)->reg.size, ++s)
          vals[k++] = ri->getSrc(s);
+      assert(k <= Elements(vals));
       for (s = 0; s < k; ++s)
          st->setSrc(s + 1, vals[s]);
       st->setSrc(0, ri->getSrc(0));
index e79fd594cea7e956b6e537db8be769fea240a300..72922cb0388bf65e71889a5b383dde4058b036f8 100644 (file)
@@ -421,6 +421,7 @@ phi_opnd_for_bb(struct nv_instruction *phi, struct nv_basic_block *b,
    int i, j;
 
    for (j = -1, i = 0; i < 6 && phi->src[i]; ++i) {
+      assert(i < Elements(phi->src[i]));
       srci = phi->src[i];
       /* if already replaced, check with original source first */
       if (srci->flags & NV_REF_FLAG_REGALLOC_PRIV)