diff options
author | Eric Anholt <[email protected]> | 2012-04-11 13:12:33 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-04-19 17:44:54 -0700 |
commit | 0d6c96a5c34de3ffdd6167282d7520dfd3c863cb (patch) | |
tree | 9245c57a52057e2db63e39e21d088469f340ce25 /src/mesa/drivers/dri/i965/brw_fs_live_variables.h | |
parent | 080b125c64b48447a515b1a169f779e62b3de13d (diff) |
i965: Add support for live variable analysis using dataflow analysis.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_live_variables.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_live_variables.h | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_live_variables.h b/src/mesa/drivers/dri/i965/brw_fs_live_variables.h new file mode 100644 index 00000000000..17e75531523 --- /dev/null +++ b/src/mesa/drivers/dri/i965/brw_fs_live_variables.h @@ -0,0 +1,86 @@ +/* + * Copyright © 2012 Intel Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + * + * Authors: + * Eric Anholt <[email protected]> + * + */ + +#include "brw_fs.h" + +namespace brw { + +struct block_data { + /** + * Which variables are defined before being used in the block. + * + * Note that for our purposes, "defined" means unconditionally, completely + * defined. + */ + bool *def; + + /** + * Which variables are used before being defined in the block. + */ + bool *use; + + /** Which defs reach the entry point of the block. */ + bool *livein; + + /** Which defs reach the exit point of the block. */ + bool *liveout; +}; + +class fs_live_variables { +public: + static void* operator new(size_t size, void *ctx) + { + void *node; + + node = rzalloc_size(ctx, size); + assert(node != NULL); + + return node; + } + + fs_live_variables(fs_visitor *v, fs_cfg *cfg); + ~fs_live_variables(); + + void setup_def_use(); + void compute_live_variables(); + + fs_visitor *v; + fs_cfg *cfg; + void *mem_ctx; + + struct var { + int blocknum; + int instnum; + fs_inst *inst; + } *vars; + int num_vars; + + /** Per-basic-block information on live variables */ + struct block_data *bd; +}; + +} /* namespace brw */ |