From 43497e30e265958e28a0a5912134832a1f5a3ff6 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Fri, 7 Feb 2020 16:47:31 +0000 Subject: [PATCH] aco: add RegisterFile MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rhys Perry Reviewed-by: Daniel Schürmann Part-of: --- src/amd/compiler/aco_register_allocation.cpp | 39 +++++++++++++++++++--------- 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/src/amd/compiler/aco_register_allocation.cpp b/src/amd/compiler/aco_register_allocation.cpp index 06a887b..2b1ca4d 100644 --- a/src/amd/compiler/aco_register_allocation.cpp +++ b/src/amd/compiler/aco_register_allocation.cpp @@ -51,10 +51,25 @@ struct ra_ctx { ra_ctx(Program* program) : program(program) {} }; +class RegisterFile { +public: + RegisterFile() {regs.fill(0);} + + std::array regs; + + const uint32_t& operator [] (unsigned index) const { + return regs[index]; + } + + uint32_t& operator [] (unsigned index) { + return regs[index]; + } +}; + /* helper function for debugging */ #if 0 -void print_regs(ra_ctx& ctx, bool vgprs, std::array& reg_file) +void print_regs(ra_ctx& ctx, bool vgprs, RegisterFile& reg_file) { unsigned max = vgprs ? ctx.program->max_reg_demand.vgpr : ctx.program->max_reg_demand.sgpr; unsigned lb = vgprs ? 256 : 0; @@ -135,7 +150,7 @@ void adjust_max_used_regs(ra_ctx& ctx, RegClass rc, unsigned reg) } -void update_renames(ra_ctx& ctx, std::array& reg_file, +void update_renames(ra_ctx& ctx, RegisterFile& reg_file, std::vector>& parallelcopies, aco_ptr& instr) { @@ -181,7 +196,7 @@ void update_renames(ra_ctx& ctx, std::array& reg_file, } std::pair get_reg_simple(ra_ctx& ctx, - std::array& reg_file, + RegisterFile& reg_file, uint32_t lb, uint32_t ub, uint32_t size, uint32_t stride, RegClass rc) @@ -256,7 +271,7 @@ std::pair get_reg_simple(ra_ctx& ctx, } bool get_regs_for_copies(ra_ctx& ctx, - std::array& reg_file, + RegisterFile& reg_file, std::vector>& parallelcopies, std::set> vars, uint32_t lb, uint32_t ub, @@ -422,7 +437,7 @@ bool get_regs_for_copies(ra_ctx& ctx, std::pair get_reg_impl(ra_ctx& ctx, - std::array& reg_file, + RegisterFile& reg_file, std::vector>& parallelcopies, uint32_t lb, uint32_t ub, uint32_t size, uint32_t stride, @@ -541,7 +556,7 @@ std::pair get_reg_impl(ra_ctx& ctx, return {{}, false}; } - std::array register_file = reg_file; + RegisterFile register_file = reg_file; /* now, we figured the placement for our definition */ std::set> vars; @@ -630,7 +645,7 @@ std::pair get_reg_impl(ra_ctx& ctx, } PhysReg get_reg(ra_ctx& ctx, - std::array& reg_file, + RegisterFile& reg_file, RegClass rc, std::vector>& parallelcopies, aco_ptr& instr) @@ -693,7 +708,7 @@ PhysReg get_reg(ra_ctx& ctx, std::pair get_reg_vec(ra_ctx& ctx, - std::array& reg_file, + RegisterFile& reg_file, RegClass rc) { uint32_t size = rc.size(); @@ -715,7 +730,7 @@ std::pair get_reg_vec(ra_ctx& ctx, PhysReg get_reg_create_vector(ra_ctx& ctx, - std::array& reg_file, + RegisterFile& reg_file, RegClass rc, std::vector>& parallelcopies, aco_ptr& instr) @@ -832,7 +847,7 @@ PhysReg get_reg_create_vector(ra_ctx& ctx, } bool get_reg_specified(ra_ctx& ctx, - std::array& reg_file, + RegisterFile& reg_file, RegClass rc, std::vector>& parallelcopies, aco_ptr& instr, @@ -871,7 +886,7 @@ bool get_reg_specified(ra_ctx& ctx, } void handle_pseudo(ra_ctx& ctx, - const std::array& reg_file, + const RegisterFile& reg_file, Instruction* instr) { if (instr->format != Format::PSEUDO) @@ -1191,7 +1206,7 @@ void register_allocation(Program *program, std::vector> live_out_ std::set& live = live_out_per_block[block.index]; /* initialize register file */ assert(block.index != 0 || live.empty()); - std::array register_file = {0}; + RegisterFile register_file; ctx.war_hint.reset(); for (Temp t : live) { -- 2.7.4