[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / X86 / getelementptr.ll
blob11d534e0560f554287c77960bd7f3b2cee2a05e7
1 ; RUN: llc < %s -O0 -mtriple=i686--
2 ; RUN: llc < %s -O0 -mtriple=x86_64--
3 ; RUN: llc < %s -O2 -mtriple=i686--
4 ; RUN: llc < %s -O2 -mtriple=x86_64--
7 ; Test big index trunc to pointer size:
9 define i8* @test_trunc65(i8* %ptr) nounwind {
10 ; CHECK-LABEL: test_trunc65
11 ; CHECK: 3
12   %d = getelementptr i8, i8* %ptr, i65 18446744073709551619 ; 2^64 + 3
13   ret i8* %d
16 define i8* @test_trunc128(i8* %ptr) nounwind {
17 ; CHECK-LABEL: test_trunc128
18 ; CHECK: 5
19   %d = getelementptr i8, i8* %ptr, i128 18446744073709551621 ; 2^64 + 5
20   ret i8* %d
23 define i8* @test_trunc160(i8* %ptr) nounwind {
24 ; CHECK-LABEL: test_trunc160
25 ; CHECK: 8
26   %d = getelementptr i8, i8* %ptr, i160 18446744073709551624 ; 2^64 + 8
27   ret i8* %d
30 define i8* @test_trunc256(i8* %ptr) nounwind {
31 ; CHECK-LABEL: test_trunc256
32 ; CHECK: 13
33   %d = getelementptr i8, i8* %ptr, i256 18446744073709551629 ; 2^64 + 13
34   ret i8* %d
37 define i8* @test_trunc2048(i8* %ptr) nounwind {
38 ; CHECK-LABEL: test_trunc2048
39 ; CHECK: 21
40   %d = getelementptr i8, i8* %ptr, i2048 18446744073709551637 ; 2^64 + 21
41   ret i8* %d
45 ; Test small index sext to pointer size
47 define i8* @test_sext3(i8* %ptr) nounwind {
48 ; CHECK-LABEL: test_sext3
49 ; CHECK: -3
50   %d = getelementptr i8, i8* %ptr, i3 -3
51   ret i8* %d
54 define i8* @test_sext5(i8* %ptr) nounwind {
55 ; CHECK-LABEL: test_sext5
56 ; CHECK: -5
57   %d = getelementptr i8, i8* %ptr, i5 -5
58   ret i8* %d
61 define i8* @test_sext8(i8* %ptr) nounwind {
62 ; CHECK-LABEL: test_sext8
63 ; CHECK: -8
64   %d = getelementptr i8, i8* %ptr, i8 -8
65   ret i8* %d
68 define i8* @test_sext13(i8* %ptr) nounwind {
69 ; CHECK-LABEL: test_sext13
70 ; CHECK: -13
71   %d = getelementptr i8, i8* %ptr, i8 -13
72   ret i8* %d
75 define i8* @test_sext16(i8* %ptr) nounwind {
76 ; CHECK-LABEL: test_sext16
77 ; CHECK: -21
78   %d = getelementptr i8, i8* %ptr, i8 -21
79   ret i8* %d
83 ; Test out of int64_t range indices
85 ; OSS-Fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7173
86 define void @test_outofrange(i96* %ptr) nounwind {
87 ; CHECK-LABEL: test_outofrange
88   %d = getelementptr i96, i96* %ptr, i96 39614081257132168796771975167
89   %ld = load i96, i96* %d, align 1
90   unreachable