summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/panfrost/midgard/disassemble.c
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-05-19 23:20:34 +0000
committerAlyssa Rosenzweig <[email protected]>2019-05-19 23:37:45 +0000
commit1155446c198f43fcfc7afcb01917f5b3517081c2 (patch)
treed45a72c703ea5ea5b5af4d4ffcf4728d45ab63ec /src/gallium/drivers/panfrost/midgard/disassemble.c
parent9cd8cd26de8c15750dff0268ae5085e5077216b1 (diff)
panfrost/midgard: Split up midgard_compile.c (RA)
This commit moves the register allocator out of midgard_compile.c and into its own midgard_ra.c file. In doing so, a number of dependencies are identified and moved into their own files in turn. midgard_compile.c is still fairly monolithic, but this should help. Code churn, but no functional changes should be introduced by this commit. Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/midgard/disassemble.c')
-rw-r--r--src/gallium/drivers/panfrost/midgard/disassemble.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/panfrost/midgard/disassemble.c b/src/gallium/drivers/panfrost/midgard/disassemble.c
index a9e443fa67c..c467e94fc29 100644
--- a/src/gallium/drivers/panfrost/midgard/disassemble.c
+++ b/src/gallium/drivers/panfrost/midgard/disassemble.c
@@ -31,6 +31,7 @@
#include <string.h>
#include "midgard.h"
#include "midgard-parse.h"
+#include "midgard_ops.h"
#include "disassemble.h"
#include "helpers.h"
#include "util/half_float.h"