diff options
author | Eric Anholt <[email protected]> | 2010-08-26 12:02:26 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-08-26 14:55:44 -0700 |
commit | c1dfdcb93a8991788032d4906c5bf1a5b48cdc48 (patch) | |
tree | b0dcc4585a8a6dede61e8dcb8b46394b76fd7656 /src/mesa/drivers/dri/i965/Makefile | |
parent | 3a8ad33dde2f059b82ebf09f5cffa66c86f2e734 (diff) |
i965: Add new pass to split vectors into scalar variables
Combined with the previous pass, this lets other optimization passes
do their work thanks to ir_tree_grafting. Still have regression in
instruction count with INTEL_NEW_FS, but register count is even
better.
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile b/src/mesa/drivers/dri/i965/Makefile index 39acae9e434..bea48e13138 100644 --- a/src/mesa/drivers/dri/i965/Makefile +++ b/src/mesa/drivers/dri/i965/Makefile @@ -106,7 +106,8 @@ C_SOURCES = \ CXX_SOURCES = \ brw_fs.cpp \ - brw_fs_channel_expressions.cpp + brw_fs_channel_expressions.cpp \ + brw_fs_vector_splitting.cpp ASM_SOURCES = |