i965: Initialize all member variables of cfg_t on construction.
[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 #include "brw_fs.h"
29
30 class bblock_link : public exec_node {
31 public:
32 bblock_link(bblock_t *block)
33 : block(block)
34 {
35 }
36
37 bblock_t *block;
38 };
39
40 class bblock_t {
41 public:
42 DECLARE_RALLOC_CXX_OPERATORS(bblock_t)
43
44 bblock_link *make_list(void *mem_ctx);
45
46 bblock_t();
47
48 void add_successor(void *mem_ctx, bblock_t *successor);
49
50 backend_instruction *start;
51 backend_instruction *end;
52
53 int start_ip;
54 int end_ip;
55
56 exec_list parents;
57 exec_list children;
58 int block_num;
59 };
60
61 class cfg_t {
62 public:
63 DECLARE_RALLOC_CXX_OPERATORS(cfg_t)
64
65 cfg_t(backend_visitor *v);
66 cfg_t(void *mem_ctx, exec_list *instructions);
67 ~cfg_t();
68
69 void create(void *mem_ctx, exec_list *instructions);
70
71 bblock_t *new_block();
72 void set_next_block(bblock_t *block);
73 void make_block_array();
74
75 /** @{
76 *
77 * Used while generating the block list.
78 */
79 bblock_t *cur;
80 int ip;
81 /** @} */
82
83 void *mem_ctx;
84
85 /** Ordered list (by ip) of basic blocks */
86 exec_list block_list;
87 bblock_t **blocks;
88 int num_blocks;
89 };