diff options
author | Rob Clark <[email protected]> | 2015-04-30 10:10:14 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2015-06-21 07:52:58 -0400 |
commit | 67d994c6761e09205dbc9a0515c510fc9dde02c7 (patch) | |
tree | 72046247513b7af7010eb034999277ab7fc49f63 /src/gallium/drivers/freedreno/ir3/ir3.h | |
parent | 5c8c2e2f97394436effbdd3e0f61eec4590accb2 (diff) |
freedreno/ir3: drop dot graph dumping
At least for now.. right now the instruction and instruction list
printing should suffice, and the re-working of ir3_block would require
a lot of changes in that code.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/ir3/ir3.h')
-rw-r--r-- | src/gallium/drivers/freedreno/ir3/ir3.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/gallium/drivers/freedreno/ir3/ir3.h b/src/gallium/drivers/freedreno/ir3/ir3.h index a7fd1814ff5..f37dfab3341 100644 --- a/src/gallium/drivers/freedreno/ir3/ir3.h +++ b/src/gallium/drivers/freedreno/ir3/ir3.h @@ -747,12 +747,8 @@ static inline struct ir3_instruction * __ssa_src_n(struct ir3_instruction *instr /* dump: */ -#include <stdio.h> -void ir3_dump(struct ir3 *shader, const char *name, - struct ir3_block *block /* XXX maybe 'block' ptr should move to ir3? */, - FILE *f); -void ir3_dump_instr_single(struct ir3_instruction *instr); -void ir3_dump_instr_list(struct ir3_instruction *instr); +void ir3_print(struct ir3 *ir); +void ir3_print_instr(struct ir3_instruction *instr); /* flatten if/else: */ int ir3_block_flatten(struct ir3_block *block); @@ -765,7 +761,7 @@ void ir3_block_depth(struct ir3_block *block); /* copy-propagate: */ void ir3_block_cp(struct ir3_block *block); -/* group neightbors and insert mov's to resolve conflicts: */ +/* group neighbors and insert mov's to resolve conflicts: */ void ir3_block_group(struct ir3_block *block); /* scheduling: */ |