From 942d51a25f6e7b4fdb9515b5388aaab41ab75bcb Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Fri, 10 Apr 2015 22:05:11 +0000 Subject: [PATCH] Replace a macro with an inline function. llvm-svn: 234650 --- .../ReaderWriter/ELF/AArch64/AArch64RelocationHandler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lld/lib/ReaderWriter/ELF/AArch64/AArch64RelocationHandler.cpp b/lld/lib/ReaderWriter/ELF/AArch64/AArch64RelocationHandler.cpp index d77566bb82fa..5dd4e2f8a078 100644 --- a/lld/lib/ReaderWriter/ELF/AArch64/AArch64RelocationHandler.cpp +++ b/lld/lib/ReaderWriter/ELF/AArch64/AArch64RelocationHandler.cpp @@ -20,7 +20,7 @@ using namespace lld::elf; using namespace llvm; using namespace llvm::support::endian; -#define PAGE(X) ((X) & ~0x0FFFL) +static int64_t page(int64_t v) { return v & ~int64_t(0xFFF); } /// \brief Check X is in the interval (-2^(bits-1), 2^bits] static bool withinSignedUnsignedRange(int64_t X, int bits) { @@ -64,7 +64,7 @@ static std::error_code relocR_AARCH64_ABS32(uint8_t *location, uint64_t P, /// \brief R_AARCH64_ADR_PREL_PG_HI21 - Page(S+A) - Page(P) static void relocR_AARCH64_ADR_PREL_PG_HI21(uint8_t *location, uint64_t P, uint64_t S, int64_t A) { - uint64_t result = (PAGE(S + A) - PAGE(P)); + uint64_t result = (page(S + A) - page(P)); result = result >> 12; uint32_t immlo = result & 0x3; uint32_t immhi = result & 0x1FFFFC; @@ -210,7 +210,7 @@ static void relocR_AARCH64_LDST128_ABS_LO12_NC(uint8_t *location, uint64_t P, static void relocR_AARCH64_ADR_GOT_PAGE(uint8_t *location, uint64_t P, uint64_t S, int64_t A) { - uint64_t result = PAGE(S + A) - PAGE(P); + uint64_t result = page(S + A) - page(P); result >>= 12; uint32_t immlo = result & 0x3; uint32_t immhi = result & 0x1FFFFC; @@ -258,7 +258,7 @@ static void relocADD_AARCH64_GOTRELINDEX(uint8_t *location, uint64_t P, static void relocR_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21(uint8_t *location, uint64_t P, uint64_t S, int64_t A) { - int64_t result = PAGE(S + A) - PAGE(P); + int64_t result = page(S + A) - page(P); result >>= 12; uint32_t immlo = result & 0x3; uint32_t immhi = result & 0x1FFFFC;