summaryrefslogtreecommitdiff
path: root/lib/Object
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2011-10-25 18:48:41 +0000
committerOwen Anderson <resistor@mac.com>2011-10-25 18:48:41 +0000
commit013d756310a92fd358a9aab2a63cce52c107f777 (patch)
treeffc8abafca0117ad8bf23307e66cbcebe2892bd1 /lib/Object
parent3507d24547ce668c9a50c72b6748c0a303e295c1 (diff)
downloadllvm-013d756310a92fd358a9aab2a63cce52c107f777.tar.gz
llvm-013d756310a92fd358a9aab2a63cce52c107f777.tar.bz2
llvm-013d756310a92fd358a9aab2a63cce52c107f777.tar.xz
Teach the MachO relocation pretty-printer to interpret ARM half-relocations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142938 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Object')
-rw-r--r--lib/Object/MachOObjectFile.cpp146
1 files changed, 104 insertions, 42 deletions
diff --git a/lib/Object/MachOObjectFile.cpp b/lib/Object/MachOObjectFile.cpp
index 09500206b5..96db34f411 100644
--- a/lib/Object/MachOObjectFile.cpp
+++ b/lib/Object/MachOObjectFile.cpp
@@ -793,98 +793,160 @@ error_code MachOObjectFile::getRelocationValueString(DataRefImpl Rel,
InMemoryStruct<macho::RelocationEntry> RE;
getRelocation(Rel, RE);
- std::string addend;
- raw_string_ostream addend_fmt(addend);
-
bool isPCRel = (RE->Word1 >> 25) & 1;
unsigned Type = (RE->Word1 >> 28) & 0xF;
+ std::string fmtbuf;
+ raw_string_ostream fmt(fmtbuf);
+
// Determine any addends that should be displayed with the relocation.
// These require decoding the relocation type, which is triple-specific.
unsigned Arch = getArch();
// X86_64 has entirely custom relocation types.
if (Arch == Triple::x86_64) {
+ StringRef Name;
+ if (error_code ec = getRelocationTargetName(RE->Word1, Name))
+ report_fatal_error(ec.message());
+
switch (Type) {
case 5: { // X86_64_RELOC_SUBTRACTOR
- RelocationRef NextReloc;
- if (error_code ec = getRelocationNext(Rel, NextReloc))
- report_fatal_error(ec.message());
-
- uint32_t SucessorType;
- if (error_code ec = NextReloc.getType(SucessorType))
- report_fatal_error(ec.message());
+ InMemoryStruct<macho::RelocationEntry> RENext;
+ DataRefImpl RelNext = Rel;
+ RelNext.d.a++;
+ getRelocation(RelNext, RENext);
// X86_64_SUBTRACTOR must be followed by a relocation of type
// X86_64_RELOC_UNSIGNED.
- unsigned RType = (SucessorType >> 28) & 0xF;
+ unsigned RType = (RENext->Word1 >> 28) & 0xF;
if (RType != 0)
report_fatal_error("Expected X86_64_RELOC_UNSIGNED after "
"X86_64_RELOC_SUBTRACTOR.");
- StringRef Name;
- if (error_code ec = getRelocationTargetName(SucessorType, Name))
+ StringRef SucName;
+ if (error_code ec = getRelocationTargetName(RENext->Word1, SucName))
report_fatal_error(ec.message());
- addend_fmt << "-" << Name;
+ fmt << Name << "-" << SucName;
+ if (isPCRel) fmt << "-PC";
}
case 6: // X86_64_RELOC_SIGNED1
- addend_fmt << "-1";
+ fmt << Name << "-1";
break;
case 7: // X86_64_RELOC_SIGNED2
- addend_fmt << "-2";
+ fmt << Name << "-2";
break;
case 8: // X86_64_RELOC_SIGNED4
- addend_fmt << "-4";
+ fmt << Name << "-4";
+ break;
+ default:
+ fmt << Name;
break;
}
- }
-
// X86 and ARM share some relocation types in common.
- if (Arch == Triple::x86 || Arch == Triple::arm) {
+ } else if (Arch == Triple::x86 || Arch == Triple::arm) {
+ // Generic relocation types...
switch (Type) {
case 1: // GENERIC_RELOC_PAIR - prints no info
return object_error::success;
case 2: // GENERIC_RELOC_SECTDIFF
case 4: { // GENERIC_RELOC_LOCAL_SECTDIFF
- RelocationRef NextReloc;
- if (error_code ec = getRelocationNext(Rel, NextReloc))
- report_fatal_error(ec.message());
-
- uint32_t SucessorType;
- if (error_code ec = NextReloc.getType(SucessorType))
- report_fatal_error(ec.message());
+ InMemoryStruct<macho::RelocationEntry> RENext;
+ DataRefImpl RelNext = Rel;
+ RelNext.d.a++;
+ getRelocation(RelNext, RENext);
// X86 sect diff's must be followed by a relocation of type
// GENERIC_RELOC_PAIR.
- unsigned RType = (SucessorType >> 28) & 0xF;
+ unsigned RType = (RENext->Word1 >> 28) & 0xF;
if (RType != 1)
report_fatal_error("Expected GENERIC_RELOC_PAIR after "
"GENERIC_RELOC_SECTDIFF or "
"GENERIC_RELOC_LOCAL_SECTDIFF.");
+ StringRef SucName;
+ if (error_code ec = getRelocationTargetName(RENext->Word1, SucName))
+ report_fatal_error(ec.message());
+
StringRef Name;
- if (error_code ec = getRelocationTargetName(SucessorType, Name))
+ if (error_code ec = getRelocationTargetName(RE->Word1, Name))
report_fatal_error(ec.message());
- addend_fmt << "-" << Name;
+ fmt << Name << "-" << SucName;
+ break;
+ }
+ }
+ if (Arch == Triple::x86 && Type != 1) {
+ // All X86 relocations that need special printing were already
+ // handled in the generic code.
+ StringRef Name;
+ if (error_code ec = getRelocationTargetName(RE->Word1, Name))
+ report_fatal_error(ec.message());
+ fmt << Name;
+ } else { // ARM-specific relocations
+ switch (Type) {
+ case 8: // ARM_RELOC_HALF
+ case 9: { // ARM_RELOC_HALF_SECTDIFF
+ StringRef Name;
+ if (error_code ec = getRelocationTargetName(RE->Word1, Name))
+ report_fatal_error(ec.message());
+
+ // Half relocations steal a bit from the length field to encode
+ // whether this is an upper16 or a lower16 relocation.
+ bool isUpper = (RE->Word1 >> 25) & 1;
+ if (isUpper)
+ fmt << ":upper16:(" << Name;
+ else
+ fmt << ":lower16:(" << Name;
+
+ InMemoryStruct<macho::RelocationEntry> RENext;
+ DataRefImpl RelNext = Rel;
+ RelNext.d.a++;
+ getRelocation(RelNext, RENext);
+
+ // ARM half relocs must be followed by a relocation of type
+ // ARM_RELOC_PAIR.
+ unsigned RType = (RENext->Word1 >> 28) & 0xF;
+ if (RType != 1)
+ report_fatal_error("Expected ARM_RELOC_PAIR after "
+ "GENERIC_RELOC_HALF");
+
+ // A constant addend for the relocation is stored in the address
+ // field of the follow-on relocation. If this is a lower16 relocation
+ // we need to shift it left by 16 before using it.
+ int32_t Addend = RENext->Word0;
+ if (!isUpper) Addend <<= 16;
+
+ // ARM_RELOC_HALF_SECTDIFF encodes the second section in the
+ // symbol/section pointer of the follow-on relocation.
+ StringRef SucName;
+ if (Type == 9) { // ARM_RELOC_HALF_SECTDIFF
+ if (error_code ec = getRelocationTargetName(RENext->Word1, SucName))
+ report_fatal_error(ec.message());
+ }
+
+ if (SucName.size()) fmt << "-" << SucName;
+ if (Addend > 0) fmt << "+" << Addend;
+ else if (Addend < 0) fmt << Addend;
+ fmt << ")";
+ break;
+ }
+ default: {
+ StringRef Name;
+ if (error_code ec = getRelocationTargetName(RE->Word1, Name))
+ report_fatal_error(ec.message());
+ fmt << Name;
+ }
}
}
+ } else {
+ StringRef Name;
+ if (error_code ec = getRelocationTargetName(RE->Word1, Name))
+ report_fatal_error(ec.message());
+ fmt << Name;
}
- addend_fmt.flush();
-
- std::string fmtbuf;
- raw_string_ostream fmt(fmtbuf);
-
- StringRef Name;
- if (error_code ec = getRelocationTargetName(RE->Word1, Name))
- report_fatal_error(ec.message());
-
- fmt << Name << addend;
- if (isPCRel) fmt << "-P";
-
fmt.flush();
Result.append(fmtbuf.begin(), fmtbuf.end());
return object_error::success;