summaryrefslogtreecommitdiffstats
path: root/src/intel/tools
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2018-06-19 15:55:26 +0100
committerEric Engestrom <[email protected]>2018-06-20 15:17:26 +0100
commit7f3cb7db08e4c172072a29b69cb33be4d9b8f562 (patch)
treeb90454692423df4ed97618e03d059fb1032cd897 /src/intel/tools
parent65b3fed03795c2099eadeeb502a6a2ee838005e1 (diff)
intel/aubinator: drop unused functions
Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/tools')
-rw-r--r--src/intel/tools/aubinator.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c
index c8d79ae377d..77676e9c670 100644
--- a/src/intel/tools/aubinator.c
+++ b/src/intel/tools/aubinator.c
@@ -78,24 +78,8 @@ uint64_t instruction_bound;
FILE *outfile;
-static inline uint32_t
-field(uint32_t value, int start, int end)
-{
- uint32_t mask;
-
- mask = ~0U >> (31 - end + start);
-
- return (value >> start) & mask;
-}
-
struct brw_instruction;
-static inline int
-valid_offset(uint32_t offset)
-{
- return offset < gtt_end;
-}
-
#define GEN_ENGINE_RENDER 1
#define GEN_ENGINE_BLITTER 2