• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
30 #include "elk_ir_analysis.h"
31 #include "elk_ir_fs.h"
32 #include "util/bitset.h"
33 
34 struct elk_cfg_t;
35 struct elk_backend_shader;
36 
37 namespace elk {
38 
39 class fs_live_variables {
40 public:
41    struct block_data {
42       /**
43        * Which variables are defined before being used in the block.
44        *
45        * Note that for our purposes, "defined" means unconditionally, completely
46        * defined.
47        */
48       BITSET_WORD *def;
49 
50       /**
51        * Which variables are used before being defined in the block.
52        */
53       BITSET_WORD *use;
54 
55       /** Which defs reach the entry point of the block. */
56       BITSET_WORD *livein;
57 
58       /** Which defs reach the exit point of the block. */
59       BITSET_WORD *liveout;
60 
61       /**
62        * Variables such that the entry point of the block may be reached from any
63        * of their definitions.
64        */
65       BITSET_WORD *defin;
66 
67       /**
68        * Variables such that the exit point of the block may be reached from any
69        * of their definitions.
70        */
71       BITSET_WORD *defout;
72 
73       BITSET_WORD flag_def[1];
74       BITSET_WORD flag_use[1];
75       BITSET_WORD flag_livein[1];
76       BITSET_WORD flag_liveout[1];
77    };
78 
79    fs_live_variables(const elk_backend_shader *s);
80    fs_live_variables(const fs_live_variables &) = delete;
81    ~fs_live_variables();
82    fs_live_variables & operator=(const fs_live_variables &) = delete;
83 
84    bool validate(const elk_backend_shader *s) const;
85 
86    analysis_dependency_class
dependency_class()87    dependency_class() const
88    {
89       return (DEPENDENCY_INSTRUCTION_IDENTITY |
90               DEPENDENCY_INSTRUCTION_DATA_FLOW |
91               DEPENDENCY_VARIABLES);
92    }
93 
94    bool vars_interfere(int a, int b) const;
95    bool vgrfs_interfere(int a, int b) const;
var_from_reg(const elk_fs_reg & reg)96    int var_from_reg(const elk_fs_reg &reg) const
97    {
98       return var_from_vgrf[reg.nr] + reg.offset / REG_SIZE;
99    }
100 
101    /** Map from virtual GRF number to index in block_data arrays. */
102    int *var_from_vgrf;
103 
104    /**
105     * Map from any index in block_data to the virtual GRF containing it.
106     *
107     * For alloc.sizes of [1, 2, 3], vgrf_from_var would contain
108     * [0, 1, 1, 2, 2, 2].
109     */
110    int *vgrf_from_var;
111 
112    int num_vars;
113    int num_vgrfs;
114    int bitset_words;
115 
116    /** @{
117     * Final computed live ranges for each var (each component of each virtual
118     * GRF).
119     */
120    int *start;
121    int *end;
122    /** @} */
123 
124    /** @{
125     * Final computed live ranges for each VGRF.
126     */
127    int *vgrf_start;
128    int *vgrf_end;
129    /** @} */
130 
131    /** Per-basic-block information on live variables */
132    struct block_data *block_data;
133 
134 protected:
135    void setup_def_use();
136    void setup_one_read(struct block_data *bd, int ip, const elk_fs_reg &reg);
137    void setup_one_write(struct block_data *bd, elk_fs_inst *inst, int ip,
138                         const elk_fs_reg &reg);
139    void compute_live_variables();
140    void compute_start_end();
141 
142    const struct intel_device_info *devinfo;
143    const elk_cfg_t *cfg;
144    void *mem_ctx;
145 };
146 
147 } /* namespace elk */
148