i965/cfg: Add a foreach_block_and_inst_safe macro.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_cfg.h
1 /*
2 * Copyright © 2012 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28 #pragma once
29 #ifndef BRW_CFG_H
30 #define BRW_CFG_H
31
32 #include "brw_shader.h"
33
34 struct bblock_t;
35
36 struct bblock_link {
37 #ifdef __cplusplus
38 DECLARE_RALLOC_CXX_OPERATORS(bblock_link)
39
40 bblock_link(bblock_t *block)
41 : block(block)
42 {
43 }
44 #endif
45
46 struct exec_node link;
47 struct bblock_t *block;
48 };
49
50 #ifndef __cplusplus
51 struct backend_instruction;
52 #endif
53
54 struct bblock_t {
55 #ifdef __cplusplus
56 DECLARE_RALLOC_CXX_OPERATORS(bblock_t)
57
58 bblock_t();
59
60 void add_successor(void *mem_ctx, bblock_t *successor);
61 void dump(backend_visitor *v);
62 #endif
63
64 struct exec_node link;
65
66 struct backend_instruction *start;
67 struct backend_instruction *end;
68
69 int start_ip;
70 int end_ip;
71
72 struct exec_list parents;
73 struct exec_list children;
74 int num;
75
76 /* If the current basic block ends in an IF, ELSE, or ENDIF instruction,
77 * these pointers will hold the locations of the other associated control
78 * flow instructions.
79 *
80 * Otherwise they are NULL.
81 */
82 struct backend_instruction *if_inst;
83 struct backend_instruction *else_inst;
84 struct backend_instruction *endif_inst;
85 };
86
87 struct cfg_t {
88 #ifdef __cplusplus
89 DECLARE_RALLOC_CXX_OPERATORS(cfg_t)
90
91 cfg_t(exec_list *instructions);
92 ~cfg_t();
93
94 bblock_t *new_block();
95 void set_next_block(bblock_t **cur, bblock_t *block, int ip);
96 void make_block_array();
97
98 void dump(backend_visitor *v);
99 #endif
100 void *mem_ctx;
101
102 /** Ordered list (by ip) of basic blocks */
103 struct exec_list block_list;
104 struct bblock_t **blocks;
105 int num_blocks;
106 };
107
108 #define foreach_block_and_inst(__block, __type, __inst, __cfg) \
109 foreach_block (__block, __cfg) \
110 foreach_inst_in_block (__type, __inst, __block)
111
112 #define foreach_block_and_inst_safe(__block, __type, __inst, __cfg) \
113 foreach_block_safe (__block, __cfg) \
114 foreach_inst_in_block_safe (__type, __inst, __block)
115
116 #define foreach_block(__block, __cfg) \
117 foreach_list_typed (bblock_t, __block, link, &(__cfg)->block_list)
118
119 #define foreach_block_safe(__block, __cfg) \
120 foreach_list_typed_safe (bblock_t, __block, link, &(__cfg)->block_list)
121
122 #define foreach_inst_in_block(__type, __inst, __block) \
123 for (__type *__inst = (__type *)__block->start; \
124 __inst != __block->end->next; \
125 __inst = (__type *)__inst->next)
126
127 #define foreach_inst_in_block_safe(__type, __inst, __block) \
128 for (__type *__inst = (__type *)__block->start, \
129 *__next = (__type *)__inst->next, \
130 *__end = (__type *)__block->end->next->next; \
131 __next != __end; \
132 __inst = __next, \
133 __next = (__type *)__next->next)
134
135 #define foreach_inst_in_block_reverse(__type, __inst, __block) \
136 for (__type *__inst = (__type *)__block->end; \
137 __inst != __block->start->prev; \
138 __inst = (__type *)__inst->prev)
139
140 #endif /* BRW_CFG_H */