]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
c++: ir_block::m_exits
authorWolfgang Bumiller <wry.git@bumiller.com>
Sat, 3 Dec 2016 19:34:42 +0000 (20:34 +0100)
committerWolfgang Bumiller <wry.git@bumiller.com>
Sat, 3 Dec 2016 19:34:42 +0000 (20:34 +0100)
ir.cpp
ir.h

diff --git a/ir.cpp b/ir.cpp
index 5f2ef7e3801037ee504702ee9aca50cd5b935ea5..17bd997cc83faf03d30cb84e6924c8bfa8b0b4de 100644 (file)
--- a/ir.cpp
+++ b/ir.cpp
@@ -745,7 +745,6 @@ ir_block::~ir_block()
     for (size_t i = 0; i != vec_size(m_instr); ++i)
         delete m_instr[i];
     vec_free(m_instr);
-    vec_free(m_exits);
 }
 
 static void ir_block_delete_quick(ir_block* self)
@@ -1379,8 +1378,8 @@ bool ir_block_create_if(ir_block *self, lex_ctx_t ctx, ir_value *v,
 
     vec_push(self->m_instr, in);
 
-    vec_push(self->m_exits, ontrue);
-    vec_push(self->m_exits, onfalse);
+    self->m_exits.push_back(ontrue);
+    self->m_exits.push_back(onfalse);
     ontrue->m_entries.push_back(self);
     onfalse->m_entries.push_back(self);
     return true;
@@ -1399,7 +1398,7 @@ bool ir_block_create_jump(ir_block *self, lex_ctx_t ctx, ir_block *to)
     in->m_bops[0] = to;
     vec_push(self->m_instr, in);
 
-    vec_push(self->m_exits, to);
+    self->m_exits.push_back(to);
     to->m_entries.push_back(self);
     return true;
 }
@@ -2145,15 +2144,13 @@ static bool ir_block_life_propagate(ir_block *self, bool *changed)
 {
     ir_instr *instr;
     ir_value *value;
-    size_t i, o, p, mem;
+    size_t i, o, mem;
     // bitmasks which operands are read from or written to
     size_t read, write;
 
     self->m_living.clear();
 
-    p = vec_size(self->m_exits);
-    for (i = 0; i < p; ++i) {
-        ir_block *prev = self->m_exits[i];
+    for (auto &prev : self->m_exits) {
         for (auto &it : prev->m_living)
             if (!vec_ir_value_find(self->m_living, it, nullptr))
                 self->m_living.push_back(it);
diff --git a/ir.h b/ir.h
index 3b063b604cb2a7d0b890192438f03f9a9a41e1c3..e3b4fbdea62b30dd84809105fb40272f82125da2 100644 (file)
--- a/ir.h
+++ b/ir.h
@@ -150,7 +150,7 @@ struct ir_block {
 
     ir_instr **m_instr = nullptr;
     std::vector<ir_block *> m_entries;
-    ir_block **m_exits = nullptr;
+    std::vector<ir_block *> m_exits;
     std::vector<ir_value *> m_living;
 
     /* For the temp-allocation */