diff options
author | Eric Anholt <[email protected]> | 2017-02-03 10:24:14 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-10-10 11:42:04 -0700 |
commit | ade416d02369cc0942d53ad3cce601d66344f9c3 (patch) | |
tree | f9824bfb74dc9ef33b78dc67295768fdd07a513a /src/broadcom/Makefile.sources | |
parent | f71364f29787d0f822474ed970c5f28bede49abb (diff) |
broadcom: Add VC5 NIR compiler.
This is a pretty straightforward fork of VC4's NIR compiler to VC5. The
condition codes, registers, and I/O have all changed, making the backend
hard to share, though their heritage is still recognizable.
v2: Move to src/broadcom/compiler to match intel's layout, rename more
"vc5" to "v3d", rename QIR to VIR ("V3D IR") to avoid symbol conflicts
with vc4, use new v3d_debug header, add compiler init/free functions,
do texture swizzling in NIR to allow optimization.
Diffstat (limited to 'src/broadcom/Makefile.sources')
-rw-r--r-- | src/broadcom/Makefile.sources | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/broadcom/Makefile.sources b/src/broadcom/Makefile.sources index 626290b8000..b60d2bcaa5d 100644 --- a/src/broadcom/Makefile.sources +++ b/src/broadcom/Makefile.sources @@ -16,6 +16,19 @@ BROADCOM_FILES = \ clif/clif_dump.c \ clif/clif_dump.h \ common/v3d_device_info.h \ + compiler/nir_to_vir.c \ + compiler/vir.c \ + compiler/vir_dump.c \ + compiler/vir_live_variables.c \ + compiler/vir_lower_uniforms.c \ + compiler/vir_opt_copy_propagate.c \ + compiler/vir_opt_dead_code.c \ + compiler/vir_register_allocate.c \ + compiler/vir_to_qpu.c \ + compiler/qpu_schedule.c \ + compiler/qpu_validate.c \ + compiler/v3d_compiler.h \ + compiler/v3d_nir_lower_io.c \ qpu/qpu_disasm.c \ qpu/qpu_disasm.h \ qpu/qpu_instr.c \ |