i965: Make it possible to create a cfg_t without a backend_visitor.

All we really need is a memory context and the instruction list; passing
a backend_visitor is just convenient at times.

This will be necessary two patches from now.

Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Paul Berry <stereotype441@gmail.com>
This commit is contained in:
Kenneth Graunke
2012-11-20 17:30:46 -08:00
parent 4d09fe938e
commit cd0acb1abe
2 changed files with 18 additions and 3 deletions
+14 -3
View File
@@ -68,7 +68,18 @@ bblock_t::make_list(void *mem_ctx)
cfg_t::cfg_t(backend_visitor *v)
{
mem_ctx = ralloc_context(v->mem_ctx);
create(v->mem_ctx, &v->instructions);
}
cfg_t::cfg_t(void *mem_ctx, exec_list *instructions)
{
create(mem_ctx, instructions);
}
void
cfg_t::create(void *parent_mem_ctx, exec_list *instructions)
{
mem_ctx = ralloc_context(parent_mem_ctx);
block_list.make_empty();
num_blocks = 0;
ip = 0;
@@ -82,9 +93,9 @@ cfg_t::cfg_t(backend_visitor *v)
set_next_block(entry);
entry->start = (backend_instruction *)v->instructions.get_head();
entry->start = (backend_instruction *) instructions->get_head();
foreach_list(node, &v->instructions) {
foreach_list(node, instructions) {
backend_instruction *inst = (backend_instruction *)node;
cur->end = inst;
+4
View File
@@ -79,7 +79,11 @@ public:
}
cfg_t(backend_visitor *v);
cfg_t(void *mem_ctx, exec_list *instructions);
~cfg_t();
void create(void *mem_ctx, exec_list *instructions);
bblock_t *new_block();
void set_next_block(bblock_t *block);
void make_block_array();