diff options
| author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-12-11 20:07:15 +0000 |
|---|---|---|
| committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-12-11 20:07:15 +0000 |
| commit | 3336f681e3f548e082d363b848edaeb3e0fcb644 (patch) | |
| tree | 36736acde3a80e22994651d343fe2d3435179107 /llvm/test/CodeGen | |
| parent | 81ed3499cdf61dcf3cfb426de24f4f406bd04b0f (diff) | |
| download | bcm5719-llvm-3336f681e3f548e082d363b848edaeb3e0fcb644.tar.gz bcm5719-llvm-3336f681e3f548e082d363b848edaeb3e0fcb644.zip | |
[Verifier] Add verification for TBAA metadata
Summary:
This change adds some verification in the IR verifier around struct path
TBAA metadata.
Other than some basic sanity checks (e.g. we get constant integers where
we expect constant integers), this checks:
- That by the time an struct access tuple `(base-type, offset)` is
"reduced" to a scalar base type, the offset is `0`. For instance, in
C++ you can't start from, say `("struct-a", 16)`, and end up with
`("int", 4)` -- by the time the base type is `"int"`, the offset
better be zero. In particular, a variant of this invariant is needed
for `llvm::getMostGenericTBAA` to be correct.
- That there are no cycles in a struct path.
- That struct type nodes have their offsets listed in an ascending
order.
- That when generating the struct access path, you eventually reach the
access type listed in the tbaa tag node.
Reviewers: dexonsmith, chandlerc, reames, mehdi_amini, manmanren
Subscribers: mcrosier, llvm-commits
Differential Revision: https://reviews.llvm.org/D26438
llvm-svn: 289402
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/llvm.SI.load.dword.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/sgpr-copy.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/si-lod-bias.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/si-scheduler.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/si-sgpr-spill.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/split-smrd.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/vgpr-spill-emergency-stack-slot.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/AMDGPU/wait.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/ARM/2011-05-04-MultipleLandingPadSuccs.ll | 2 |
9 files changed, 17 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/llvm.SI.load.dword.ll b/llvm/test/CodeGen/AMDGPU/llvm.SI.load.dword.ll index d0cc00d81b4..ee0a41f2210 100644 --- a/llvm/test/CodeGen/AMDGPU/llvm.SI.load.dword.ll +++ b/llvm/test/CodeGen/AMDGPU/llvm.SI.load.dword.ll @@ -49,4 +49,5 @@ declare void @llvm.SI.export(i32, i32, i32, i32, i32, float, float, float, float attributes #0 = { nounwind readonly } -!0 = !{!"const", null, i32 1} +!0 = !{!"const", !1, i32 1} +!1 = !{!"tbaa root"} diff --git a/llvm/test/CodeGen/AMDGPU/sgpr-copy.ll b/llvm/test/CodeGen/AMDGPU/sgpr-copy.ll index e65f1e2da57..31ce4a68199 100644 --- a/llvm/test/CodeGen/AMDGPU/sgpr-copy.ll +++ b/llvm/test/CodeGen/AMDGPU/sgpr-copy.ll @@ -412,5 +412,6 @@ attributes #1 = { nounwind readnone } attributes #2 = { nounwind readonly } !0 = !{!1, !1, i64 0, i32 1} -!1 = !{!"const", null} +!1 = !{!"const", !3} !2 = !{!1, !1, i64 0} +!3 = !{!"tbaa root"} diff --git a/llvm/test/CodeGen/AMDGPU/si-lod-bias.ll b/llvm/test/CodeGen/AMDGPU/si-lod-bias.ll index 8df0a64a2b7..bca34af3e27 100644 --- a/llvm/test/CodeGen/AMDGPU/si-lod-bias.ll +++ b/llvm/test/CodeGen/AMDGPU/si-lod-bias.ll @@ -49,4 +49,5 @@ declare void @llvm.SI.export(i32, i32, i32, i32, i32, float, float, float, float attributes #1 = { nounwind readnone } !0 = !{!1, !1, i64 0, i32 1} -!1 = !{!"const", null} +!1 = !{!"const", !2} +!2 = !{!"tbaa root"} diff --git a/llvm/test/CodeGen/AMDGPU/si-scheduler.ll b/llvm/test/CodeGen/AMDGPU/si-scheduler.ll index 5520fe61d86..9374ef3cd90 100644 --- a/llvm/test/CodeGen/AMDGPU/si-scheduler.ll +++ b/llvm/test/CodeGen/AMDGPU/si-scheduler.ll @@ -57,4 +57,5 @@ declare void @llvm.SI.export(i32, i32, i32, i32, i32, float, float, float, float attributes #1 = { nounwind readnone } !0 = !{!1, !1, i64 0, i32 1} -!1 = !{!"const", null} +!1 = !{!"const", !2} +!2 = !{!"tbaa root"} diff --git a/llvm/test/CodeGen/AMDGPU/si-sgpr-spill.ll b/llvm/test/CodeGen/AMDGPU/si-sgpr-spill.ll index ac06c262e9e..f035da83d18 100644 --- a/llvm/test/CodeGen/AMDGPU/si-sgpr-spill.ll +++ b/llvm/test/CodeGen/AMDGPU/si-sgpr-spill.ll @@ -1619,4 +1619,5 @@ attributes #2 = { nounwind readnone } attributes #3 = { nounwind readonly } !0 = !{!1, !1, i64 0, i32 1} -!1 = !{!"const", null} +!1 = !{!"const", !2} +!2 = !{!"tbaa root"} diff --git a/llvm/test/CodeGen/AMDGPU/split-smrd.ll b/llvm/test/CodeGen/AMDGPU/split-smrd.ll index 237a62c1360..d07da103093 100644 --- a/llvm/test/CodeGen/AMDGPU/split-smrd.ll +++ b/llvm/test/CodeGen/AMDGPU/split-smrd.ll @@ -42,5 +42,6 @@ attributes #0 = { nounwind } attributes #1 = { nounwind readnone } !0 = !{!1, !1, i64 0, i32 1} -!1 = !{!"const", null} +!1 = !{!"const", !3} !2 = !{!1, !1, i64 0} +!3 = !{!"tbaa root"} diff --git a/llvm/test/CodeGen/AMDGPU/vgpr-spill-emergency-stack-slot.ll b/llvm/test/CodeGen/AMDGPU/vgpr-spill-emergency-stack-slot.ll index 35a014bf724..4de35b97aea 100644 --- a/llvm/test/CodeGen/AMDGPU/vgpr-spill-emergency-stack-slot.ll +++ b/llvm/test/CodeGen/AMDGPU/vgpr-spill-emergency-stack-slot.ll @@ -497,4 +497,5 @@ attributes #0 = { nounwind } attributes #1 = { nounwind readnone } !0 = !{!1, !1, i64 0, i32 1} -!1 = !{!"const", null} +!1 = !{!"const", !2} +!2 = !{!"tbaa root"} diff --git a/llvm/test/CodeGen/AMDGPU/wait.ll b/llvm/test/CodeGen/AMDGPU/wait.ll index 265774180a7..152a474cde7 100644 --- a/llvm/test/CodeGen/AMDGPU/wait.ll +++ b/llvm/test/CodeGen/AMDGPU/wait.ll @@ -82,4 +82,5 @@ attributes #1 = { convergent nounwind } attributes #2 = { nounwind readnone } !0 = !{!1, !1, i64 0, i32 1} -!1 = !{!"const", null} +!1 = !{!"const", !2} +!2 = !{!"tbaa root"} diff --git a/llvm/test/CodeGen/ARM/2011-05-04-MultipleLandingPadSuccs.ll b/llvm/test/CodeGen/ARM/2011-05-04-MultipleLandingPadSuccs.ll index 559b027fb11..bd96ada2ea6 100644 --- a/llvm/test/CodeGen/ARM/2011-05-04-MultipleLandingPadSuccs.ll +++ b/llvm/test/CodeGen/ARM/2011-05-04-MultipleLandingPadSuccs.ll @@ -83,6 +83,6 @@ declare void @_ZSt9terminatev() !0 = !{!"any pointer", !1} !1 = !{!"omnipotent char", !2} -!2 = !{!"Simple C/C++ TBAA", null} +!2 = !{!"Simple C/C++ TBAA"} !3 = !{!"bool", !1} !4 = !{!"int", !1} |

