2020-12-30 13:26:30 +08:00
|
|
|
; RUN: llc -mtriple=x86_64 -relocation-model=static < %s | FileCheck --check-prefixes=CHECK,STATIC %s
|
|
|
|
; RUN: llc -mtriple=x86_64 -relocation-model=pic < %s | FileCheck --check-prefixes=CHECK,PIC %s
|
|
|
|
; RUN: llc -mtriple=x86_64 -code-model=medium -relocation-model=static < %s | FileCheck --check-prefixes=CHECK,MSTATIC %s
|
|
|
|
; RUN: llc -mtriple=x86_64 -code-model=medium -relocation-model=pic < %s | FileCheck --check-prefixes=CHECK,MPIC %s
|
2009-03-13 10:25:09 +08:00
|
|
|
|
2020-12-30 13:26:30 +08:00
|
|
|
@foo = internal global i32 0
|
2009-03-13 10:25:09 +08:00
|
|
|
|
2020-12-30 13:26:30 +08:00
|
|
|
define dso_local i64 @zero() #0 {
|
|
|
|
; CHECK-LABEL: zero:
|
|
|
|
; CHECK: # %bb.0:
|
|
|
|
; STATIC-NEXT: movl $foo, %eax
|
|
|
|
; STATIC-NEXT: retq
|
|
|
|
; PIC-NEXT: leaq foo(%rip), %rax
|
|
|
|
; PIC-NEXT: retq
|
|
|
|
; MSTATIC-NEXT: movabsq $foo, %rax
|
|
|
|
; MSTATIC-NEXT: retq
|
|
|
|
; MPIC-NEXT: leaq _GLOBAL_OFFSET_TABLE_(%rip), %rcx
|
|
|
|
; MPIC-NEXT: movabsq $foo@GOTOFF, %rax
|
|
|
|
; MPIC-NEXT: addq %rcx, %rax
|
|
|
|
entry:
|
|
|
|
ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
define dso_local i64 @one() #0 {
|
|
|
|
; CHECK-LABEL: one:
|
|
|
|
; CHECK: # %bb.0:
|
|
|
|
; STATIC-NEXT: movl $foo+1, %eax
|
|
|
|
; PIC-NEXT: leaq foo+1(%rip), %rax
|
|
|
|
; MSTATIC-NEXT: movabsq $foo, %rax
|
|
|
|
; MSTATIC-NEXT: incq %rax
|
|
|
|
; MPIC-NEXT: leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
|
|
|
|
; MPIC-NEXT: movabsq $foo@GOTOFF, %rcx
|
|
|
|
; MPIC-NEXT: leaq 1(%rax,%rcx), %rax
|
|
|
|
entry:
|
|
|
|
ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
;; Check we don't fold a large offset into leaq, otherwise
|
|
|
|
;; the large r_addend can easily cause a relocation overflow.
|
|
|
|
define dso_local i64 @large() #0 {
|
|
|
|
; CHECK-LABEL: large:
|
|
|
|
; CHECK: # %bb.0:
|
|
|
|
; STATIC-NEXT: movl $1701208431, %eax
|
|
|
|
; STATIC-NEXT: leaq foo(%rax), %rax
|
|
|
|
; PIC-NEXT: leaq foo(%rip), %rax
|
|
|
|
; PIC-NEXT: addq $1701208431, %rax
|
|
|
|
; MSTATIC-NEXT: movabsq $foo, %rax
|
|
|
|
; MSTATIC-NEXT: addq $1701208431, %rax
|
|
|
|
; MSTATIC-NEXT: retq
|
|
|
|
; MPIC-NEXT: leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
|
|
|
|
; MPIC-NEXT: movabsq $foo@GOTOFF, %rcx
|
|
|
|
; MPIC-NEXT: leaq 1701208431(%rax,%rcx), %rax
|
|
|
|
entry:
|
|
|
|
ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 1701208431)
|
|
|
|
}
|
2011-07-03 04:42:33 +08:00
|
|
|
|
[X86] Don't fold negative offset into 32-bit absolute address (e.g. movl $foo-1, %eax)
When building abseil-cpp `bin/absl_hash_test` with Clang in -fno-pic
mode, an instruction like `movl $foo-2147483648, $eax` may be produced
(subtracting a number from the address of a static variable). If foo's
address is smaller than 2147483648, GNU ld/gold/LLD will error because
R_X86_64_32 cannot represent a negative value.
```
using absl::Hash;
struct NoOp {
template < typename HashCode >
friend HashCode AbslHashValue(HashCode , NoOp );
};
template <typename> class HashIntTest : public testing::Test {};
TYPED_TEST_SUITE_P(HashIntTest);
TYPED_TEST_P(HashIntTest, BasicUsage) {
if (std::numeric_limits< TypeParam >::min )
EXPECT_NE(Hash< NoOp >()({}),
Hash< TypeParam >()(std::numeric_limits< TypeParam >::min()));
}
REGISTER_TYPED_TEST_CASE_P(HashIntTest, BasicUsage);
using IntTypes = testing::Types< int32_t>;
INSTANTIATE_TYPED_TEST_CASE_P(My, HashIntTest, IntTypes);
ld: error: hash_test.cc:(function (anonymous namespace)::gtest_suite_HashIntTest_::BasicUsage<int>::TestBody(): .text+0x4E472): relocation R_X86_64_32 out of range: 18446744071564237392 is not in [0, 4294967295]; references absl::hash_internal::HashState::kSeed
```
Actually any negative offset is not allowed because the symbol address
can be zero (e.g. set by `-Wl,--defsym=foo=0`). So disallow such folding.
Reviewed By: pengfei
Differential Revision: https://reviews.llvm.org/D93931
2020-12-31 10:47:26 +08:00
|
|
|
;; Test we don't emit movl foo-1, %eax. ELF R_X86_64_32 does not allow
|
|
|
|
;; a negative value.
|
2020-12-30 13:26:30 +08:00
|
|
|
define dso_local i64 @neg_1() #0 {
|
|
|
|
; CHECK-LABEL: neg_1:
|
|
|
|
; CHECK: # %bb.0:
|
[X86] Don't fold negative offset into 32-bit absolute address (e.g. movl $foo-1, %eax)
When building abseil-cpp `bin/absl_hash_test` with Clang in -fno-pic
mode, an instruction like `movl $foo-2147483648, $eax` may be produced
(subtracting a number from the address of a static variable). If foo's
address is smaller than 2147483648, GNU ld/gold/LLD will error because
R_X86_64_32 cannot represent a negative value.
```
using absl::Hash;
struct NoOp {
template < typename HashCode >
friend HashCode AbslHashValue(HashCode , NoOp );
};
template <typename> class HashIntTest : public testing::Test {};
TYPED_TEST_SUITE_P(HashIntTest);
TYPED_TEST_P(HashIntTest, BasicUsage) {
if (std::numeric_limits< TypeParam >::min )
EXPECT_NE(Hash< NoOp >()({}),
Hash< TypeParam >()(std::numeric_limits< TypeParam >::min()));
}
REGISTER_TYPED_TEST_CASE_P(HashIntTest, BasicUsage);
using IntTypes = testing::Types< int32_t>;
INSTANTIATE_TYPED_TEST_CASE_P(My, HashIntTest, IntTypes);
ld: error: hash_test.cc:(function (anonymous namespace)::gtest_suite_HashIntTest_::BasicUsage<int>::TestBody(): .text+0x4E472): relocation R_X86_64_32 out of range: 18446744071564237392 is not in [0, 4294967295]; references absl::hash_internal::HashState::kSeed
```
Actually any negative offset is not allowed because the symbol address
can be zero (e.g. set by `-Wl,--defsym=foo=0`). So disallow such folding.
Reviewed By: pengfei
Differential Revision: https://reviews.llvm.org/D93931
2020-12-31 10:47:26 +08:00
|
|
|
; STATIC-NEXT: leaq foo-1(%rip), %rax
|
2020-12-30 13:26:30 +08:00
|
|
|
; PIC-NEXT: leaq foo-1(%rip), %rax
|
|
|
|
; MSTATIC-NEXT: movabsq $foo, %rax
|
|
|
|
; MSTATIC-NEXT: decq %rax
|
|
|
|
; MPIC-NEXT: leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
|
|
|
|
; MPIC-NEXT: movabsq $foo@GOTOFF, %rcx
|
|
|
|
; MPIC-NEXT: leaq -1(%rax,%rcx), %rax
|
2009-03-13 10:25:09 +08:00
|
|
|
entry:
|
2020-12-30 13:26:30 +08:00
|
|
|
ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 -1)
|
2009-03-13 10:25:09 +08:00
|
|
|
}
|
2020-12-30 13:26:30 +08:00
|
|
|
|
[X86] Don't fold negative offset into 32-bit absolute address (e.g. movl $foo-1, %eax)
When building abseil-cpp `bin/absl_hash_test` with Clang in -fno-pic
mode, an instruction like `movl $foo-2147483648, $eax` may be produced
(subtracting a number from the address of a static variable). If foo's
address is smaller than 2147483648, GNU ld/gold/LLD will error because
R_X86_64_32 cannot represent a negative value.
```
using absl::Hash;
struct NoOp {
template < typename HashCode >
friend HashCode AbslHashValue(HashCode , NoOp );
};
template <typename> class HashIntTest : public testing::Test {};
TYPED_TEST_SUITE_P(HashIntTest);
TYPED_TEST_P(HashIntTest, BasicUsage) {
if (std::numeric_limits< TypeParam >::min )
EXPECT_NE(Hash< NoOp >()({}),
Hash< TypeParam >()(std::numeric_limits< TypeParam >::min()));
}
REGISTER_TYPED_TEST_CASE_P(HashIntTest, BasicUsage);
using IntTypes = testing::Types< int32_t>;
INSTANTIATE_TYPED_TEST_CASE_P(My, HashIntTest, IntTypes);
ld: error: hash_test.cc:(function (anonymous namespace)::gtest_suite_HashIntTest_::BasicUsage<int>::TestBody(): .text+0x4E472): relocation R_X86_64_32 out of range: 18446744071564237392 is not in [0, 4294967295]; references absl::hash_internal::HashState::kSeed
```
Actually any negative offset is not allowed because the symbol address
can be zero (e.g. set by `-Wl,--defsym=foo=0`). So disallow such folding.
Reviewed By: pengfei
Differential Revision: https://reviews.llvm.org/D93931
2020-12-31 10:47:26 +08:00
|
|
|
;; Test we don't emit movl foo-2147483648, %eax. ELF R_X86_64_32 does not allow
|
|
|
|
;; a negative value.
|
2020-12-30 13:26:30 +08:00
|
|
|
define dso_local i64 @neg_0x80000000() #0 {
|
|
|
|
; CHECK-LABEL: neg_0x80000000:
|
|
|
|
; CHECK: # %bb.0:
|
[X86] Don't fold negative offset into 32-bit absolute address (e.g. movl $foo-1, %eax)
When building abseil-cpp `bin/absl_hash_test` with Clang in -fno-pic
mode, an instruction like `movl $foo-2147483648, $eax` may be produced
(subtracting a number from the address of a static variable). If foo's
address is smaller than 2147483648, GNU ld/gold/LLD will error because
R_X86_64_32 cannot represent a negative value.
```
using absl::Hash;
struct NoOp {
template < typename HashCode >
friend HashCode AbslHashValue(HashCode , NoOp );
};
template <typename> class HashIntTest : public testing::Test {};
TYPED_TEST_SUITE_P(HashIntTest);
TYPED_TEST_P(HashIntTest, BasicUsage) {
if (std::numeric_limits< TypeParam >::min )
EXPECT_NE(Hash< NoOp >()({}),
Hash< TypeParam >()(std::numeric_limits< TypeParam >::min()));
}
REGISTER_TYPED_TEST_CASE_P(HashIntTest, BasicUsage);
using IntTypes = testing::Types< int32_t>;
INSTANTIATE_TYPED_TEST_CASE_P(My, HashIntTest, IntTypes);
ld: error: hash_test.cc:(function (anonymous namespace)::gtest_suite_HashIntTest_::BasicUsage<int>::TestBody(): .text+0x4E472): relocation R_X86_64_32 out of range: 18446744071564237392 is not in [0, 4294967295]; references absl::hash_internal::HashState::kSeed
```
Actually any negative offset is not allowed because the symbol address
can be zero (e.g. set by `-Wl,--defsym=foo=0`). So disallow such folding.
Reviewed By: pengfei
Differential Revision: https://reviews.llvm.org/D93931
2020-12-31 10:47:26 +08:00
|
|
|
; STATIC-NEXT: leaq foo-2147483648(%rip), %rax
|
2020-12-30 13:26:30 +08:00
|
|
|
; PIC-NEXT: leaq foo-2147483648(%rip), %rax
|
|
|
|
; MSTATIC-NEXT: movabsq $foo, %rax
|
|
|
|
; MSTATIC-NEXT: addq $-2147483648, %rax
|
|
|
|
; MPIC-NEXT: leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
|
|
|
|
; MPIC-NEXT: movabsq $foo@GOTOFF, %rcx
|
|
|
|
; MPIC-NEXT: leaq -2147483648(%rax,%rcx), %rax
|
|
|
|
entry:
|
|
|
|
ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 -2147483648)
|
|
|
|
}
|
|
|
|
|
|
|
|
define dso_local i64 @neg_0x80000001() #0 {
|
|
|
|
; CHECK-LABEL: neg_0x80000001:
|
|
|
|
; CHECK: # %bb.0:
|
|
|
|
; STATIC-NEXT: movabsq $-2147483649, %rax
|
|
|
|
; STATIC-NEXT: leaq foo(%rax), %rax
|
|
|
|
; PIC-NEXT: leaq foo(%rip), %rcx
|
|
|
|
; PIC-NEXT: movabsq $-2147483649, %rax
|
|
|
|
; PIC-NEXT: addq %rcx, %rax
|
|
|
|
; MSTATIC-NEXT: movabsq $-2147483649, %rcx
|
|
|
|
; MSTATIC-NEXT: movabsq $foo, %rax
|
|
|
|
; MSTATIC-NEXT: addq %rcx, %rax
|
|
|
|
; MPIC-NEXT: leaq _GLOBAL_OFFSET_TABLE_(%rip), %rax
|
|
|
|
; MPIC-NEXT: movabsq $foo@GOTOFF, %rcx
|
|
|
|
; MPIC-NEXT: addq %rax, %rcx
|
|
|
|
; MPIC-NEXT: movabsq $-2147483649, %rax
|
|
|
|
; MPIC-NEXT: addq %rcx, %rax
|
|
|
|
entry:
|
|
|
|
ret i64 add (i64 ptrtoint (i32* @foo to i64), i64 -2147483649)
|
|
|
|
}
|
|
|
|
|
|
|
|
attributes #0 = { nounwind }
|