Commit Graph

1250 Commits

Author SHA1 Message Date
khyperia
16338fb079 remove duplicate extensions 2020-10-01 12:46:02 +02:00
khyperia
b0c9965cfb Implement dead code elimination in the linker 2020-10-01 12:43:52 +02:00
khyperia
4f10b5ffe8 Import rspirv types in linker
This makes the linker match the import style of rustc_codegen_spirv
2020-10-01 12:18:19 +02:00
khyperia
8854fa575b Zombie primitives if their capabilities aren't there 2020-10-01 11:59:47 +02:00
khyperia
28c0885b40 Take annotations into account when merging types 2020-10-01 11:08:12 +02:00
khyperia
2c1b73ab9a Zombie branches before structurizer is done 2020-09-30 16:02:40 +02:00
khyperia
127cc1bb99 really_unsafe_ignore_bitcasts 2020-09-30 15:50:38 +02:00
khyperia
98dfc0cf5e The max_bound pass isn't needed. 2020-09-30 15:50:38 +02:00
Jake Shadle
13c7530a1a
Add basic CI (#40) 2020-09-29 18:00:57 +02:00
khyperia
c464caf088 Add -C target-feature=+shader support
Eventually shaders will be the default and -C target-feature=+kernel
will be a thing, but, not right now due to shaders being borked
2020-09-29 15:35:08 +02:00
khyperia
eaf350d2a8 Optimize a little bit of kill_linkage_instructions that I forgot, which reduces time by another 2-3x
Also add various other timers, and use the helpful timer() function
2020-09-29 13:04:55 +02:00
khyperia
9bd7db20df Significantly refactor import_export_link to improve its speed by 12x 2020-09-28 16:29:26 +02:00
khyperia
8f1d69848f Add timers to compiler and linker 2020-09-28 14:51:04 +02:00
khyperia
df3da15f0b -C codegen-units isn't needed anymore 2020-09-28 13:48:33 +02:00
khyperia
c77224cecb Add CI 2020-09-28 13:34:39 +02:00
khyperia
3f3672eaa9 Add build_libcore_test to cargo test
Also delete extremely outdated test/lib.rs file.
2020-09-28 13:09:38 +02:00
khyperia
8e35a22248 Add some docs, and remove sort_globals which isn't needed anymore. 2020-09-28 11:12:26 +02:00
khyperia
7e7055ab1a Move finalizing_passes.rs to linker 2020-09-28 10:40:56 +02:00
khyperia
a91fd92778 Replace complex kill_with with a simple Vec::retain
kill_with was also reordering instructions, which in general, should
preferably never be done - declaration order in spir-v is important
enough to try to adhere to that rule.
2020-09-28 10:31:16 +02:00
khyperia
8f800c5755 Split linker into lots of files 2020-09-28 10:02:21 +02:00
khyperia
c8712a9047 Add in some capability stuff
Also make env var checks runtime, not compiletime.
2020-09-26 15:32:18 +02:00
khyperia
46c2b2bda2 Clean up run_libcore_test and try to get it to work 2020-09-25 13:42:44 +02:00
khyperia
4e79b4e824 intel-compute-runtime doesn't support i8 or i16 atomics 2020-09-25 11:35:13 +02:00
khyperia
01a831e508 intel-compute-runtime doesn't like OpLogicalNot 2020-09-25 11:22:55 +02:00
khyperia
7b45f88052 OpAccessChain on structs should take u32 2020-09-24 18:31:19 +02:00
khyperia
3821aa2060 Add support for spirv v1.3 2020-09-24 18:20:46 +02:00
khyperia
3e569e3a32 Add run_libcore_test 2020-09-24 13:12:34 +02:00
khyperia
90e539fc26 declared_values isn't needed now that the DeclareMethods trait is gone 2020-09-23 10:48:41 +02:00
khyperia
01845cf930 use bimaps, they're neat! 2020-09-23 10:39:51 +02:00
khyperia
1921ecc4a1 Fix up constants accidentally being emitted inside functions 2020-09-23 10:16:18 +02:00
khyperia
336f040299 Remove forgotten println statements 2020-09-23 10:11:17 +02:00
khyperia
9f6ee7a217 Properly rewrite memory semantics and scopes in the deduplicator 2020-09-23 10:08:19 +02:00
khyperia
66e0730648 Fix remove_duplicate_ext_inst_imports to rewrite OpExtInsts too 2020-09-22 21:12:13 +02:00
khyperia
0546f521d8 Fix up zombie export with temp hack
This is to get ID rewrite passes to understand zombie exports (e.g. the
ID offsetter)
2020-09-22 20:24:54 +02:00
khyperia
f9d57a01b6 Fix various linker typos and bugs 2020-09-22 19:06:43 +02:00
khyperia
d4c4834fd6 (badly) implement OpTypeForwardPointer deduplication 2020-09-22 18:25:48 +02:00
khyperia
206af9d2a1 Refactor remove_duplicate_types to be a lil cleaner 2020-09-22 18:19:33 +02:00
khyperia
abdfa35cce Document the remove_duplicate_types functioin 2020-09-22 17:41:57 +02:00
khyperia
a3f859afa5 Simplify remove_duplicate_types 2020-09-22 17:26:17 +02:00
khyperia
31e8d95898 RPO alg already deletes dead blocks 2020-09-22 16:02:36 +02:00
khyperia
cc916c784e Documentation, code shuffling, and RPO block sorting 2020-09-22 15:51:30 +02:00
khyperia
1b3e5230da Disable opaque type naming for now 2020-09-22 13:53:58 +02:00
khyperia
0b5a02def0 Print full types to figure out errors better 2020-09-22 13:35:43 +02:00
khyperia
ec49140058 Move zombie pass to linker 2020-09-22 12:59:23 +02:00
khyperia
82b596cb97 rustup update 2020-09-22 09:15:08 +02:00
Jasper Bekkers
7e1e753c59
Fix clippy warnings 2020-09-22 09:11:02 +02:00
Jasper Bekkers
3eaa45cc52
Fmt 2020-09-22 09:00:14 +02:00
khyperia
4140589ca7 Link globals 2020-09-21 15:38:20 +02:00
khyperia
11fcf56935 Re-add things that shouldn't have been removed 2020-09-21 15:38:06 +02:00
khyperia
ebff8a8f39 Write some docs 2020-09-21 14:49:05 +02:00