summaryrefslogtreecommitdiffstats
path: root/lld/lib/ReaderWriter/ELF/HexagonReference.cpp
blob: 42758c5b97d45261e8871380ceb87ee1b784f114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
//===- lib/ReaderWriter/ELF/HexagonReference.cpp ----------------------------===//
//
//                             The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//


#include "ReferenceKinds.h"

#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/StringSwitch.h"

#include "llvm/Support/Endian.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/ELF.h"

namespace lld {
namespace elf {

//===----------------------------------------------------------------------===//
//  KindHandler_hexagon
//  TODO: more to do here
//===----------------------------------------------------------------------===//

KindHandler_hexagon::~KindHandler_hexagon() {
}

/// \brief The following relocation routines are derived from the
/// Hexagon ABI specification, Section 11.6: Relocation
/// Symbols used:
///  A: Added used to compute the value, r_addend
///  P: Place address of the field being relocated, r_offset
///  S: Value of the symbol whose index resides in the relocation entry.

namespace hexagon {
int reloc_NONE(uint8_t *location, uint64_t P, uint64_t S, uint64_t A) {
  return KindHandler_hexagon::NoError;
}

/// \brief Word32_B22: 0x01ff3ffe : (S + A - P) >> 2 : Verify
int reloc_B22_PCREL(uint8_t *location, uint64_t P, uint64_t S, uint64_t A) {
  int32_t result = (uint32_t)(((S + A) - P)>>2);
  if ((result < 0x200000) && (result > -0x200000)) {
    result = ((result<<1) & 0x3ffe) | ((result<<3) & 0x01ff0000);
    *reinterpret_cast<llvm::support::ulittle32_t *>(location) = result |
                     *reinterpret_cast<llvm::support::ulittle32_t *>(location);
    return KindHandler_hexagon::NoError;
  }
  return KindHandler_hexagon::Overflow;
}

/// \brief Word32_B15: 0x00df20fe : (S + A - P) >> 2 : Verify
int reloc_B15_PCREL(uint8_t *location, uint64_t P, uint64_t S, uint64_t A) {
  int32_t result = (uint32_t)(((S + A) - P)>>2);
  if ((result < 0x8000) && (result > -0x8000)) {
    result = ((result<<1) & 0x20fe) | ((result<<7) & 0x00df0000);
    *reinterpret_cast<llvm::support::ulittle32_t *>(location) = result |
                      *reinterpret_cast<llvm::support::ulittle32_t *>(location);
    return KindHandler_hexagon::NoError;
  }
  return KindHandler_hexagon::Overflow;
}

/// \brief Word32_LO: 0x00c03fff : (S + A) : Truncate
int reloc_LO16(uint8_t *location, uint64_t P, uint64_t S, uint64_t A) {
  uint32_t result = (uint32_t)(S + A);
  result = ((result & 0x3fff) | ((result << 2) & 0x00c00000));
  *reinterpret_cast<llvm::support::ulittle32_t *>(location) = result |
                    *reinterpret_cast<llvm::support::ulittle32_t *>(location);
  return KindHandler_hexagon::NoError;
}

/// \brief Word32_LO: 0x00c03fff : (S + A) >> 16 : Truncate
int reloc_HI16(uint8_t *location, uint64_t P, uint64_t S, uint64_t A) {
  uint32_t result = (uint32_t)((S + A)>>16);
  result = ((result & 0x3fff) | ((result << 2) & 0x00c00000));
  *reinterpret_cast<llvm::support::ulittle32_t *>(location) = result |
                    *reinterpret_cast<llvm::support::ulittle32_t *>(location);
  return KindHandler_hexagon::NoError;
}

/// \brief Word32: 0xffffffff : (S + A) : Truncate
int reloc_32(uint8_t *location, uint64_t P, uint64_t S, uint64_t A) {
  uint32_t result = (uint32_t)(S + A);
  *reinterpret_cast<llvm::support::ulittle32_t *>(location) = result |
                    *reinterpret_cast<llvm::support::ulittle32_t *>(location);
  return KindHandler_hexagon::NoError;
}
} // namespace hexagon

KindHandler_hexagon::KindHandler_hexagon(){
  _fixupHandler[llvm::ELF::R_HEX_B22_PCREL] = hexagon::reloc_B22_PCREL;
  _fixupHandler[llvm::ELF::R_HEX_B15_PCREL] = hexagon::reloc_B15_PCREL;
  _fixupHandler[llvm::ELF::R_HEX_LO16]      = hexagon::reloc_LO16;
  _fixupHandler[llvm::ELF::R_HEX_HI16]      = hexagon::reloc_HI16;
  _fixupHandler[llvm::ELF::R_HEX_32]        = hexagon::reloc_32;
}

Reference::Kind KindHandler_hexagon::stringToKind(StringRef str) {
  return llvm::StringSwitch<Reference::Kind>(str)
    .Case("none",                  none)
    .Case("R_HEX_B22_PCREL", llvm::ELF::R_HEX_B22_PCREL)
    .Case("R_HEX_B15_PCREL", llvm::ELF::R_HEX_B15_PCREL)
    .Case("R_HEX_LO16",      llvm::ELF::R_HEX_LO16)
    .Case("R_HEX_HI16",      llvm::ELF::R_HEX_HI16)
    .Case("R_HEX_32",        llvm::ELF::R_HEX_32)
    .Default(invalid);
}

StringRef KindHandler_hexagon::kindToString(Reference::Kind kind) {
  switch (static_cast<int32_t>(kind)) {
  case llvm::ELF::R_HEX_B22_PCREL:
    return "R_HEX_B22_PCREL";
  case llvm::ELF::R_HEX_B15_PCREL:
    return "R_HEX_B15_PCREL";
  case llvm::ELF::R_HEX_LO16:
    return "R_HEX_LO16";
  case llvm::ELF::R_HEX_HI16:
    return "R_HEX_HI16";
  case llvm::ELF::R_HEX_32:
    return "R_HEX_32";
  default:
    return "none";
  }
}

bool KindHandler_hexagon::isCallSite(Kind kind) {
  llvm_unreachable("Unimplemented: KindHandler_hexagon::isCallSite");
  return false;
}

bool KindHandler_hexagon::isPointer(Kind kind) {
  llvm_unreachable("Unimplemented: KindHandler_hexagon::isPointer");
  return false;
}

bool KindHandler_hexagon::isLazyImmediate(Kind kind) {
  llvm_unreachable("Unimplemented: KindHandler_hexagon::isLazyImmediate");
  return false;
}

bool KindHandler_hexagon::isLazyTarget(Kind kind) {
  llvm_unreachable("Unimplemented: KindHandler_hexagon::isLazyTarget");
  return false;
}

void KindHandler_hexagon::applyFixup(int32_t reloc, uint64_t addend,
                                     uint8_t *location, uint64_t fixupAddress,
                                     uint64_t targetAddress) {
  int error;
  if (_fixupHandler[reloc])
  {
    error = (*_fixupHandler[reloc])(location,
                                    fixupAddress, targetAddress, addend);

    switch ((RelocationError)error) {
    case NoError:
      return;
    case Overflow:
      llvm::report_fatal_error("applyFixup relocation overflow");
      return;
    }
  }
}


} // namespace elf
} // namespace lld
OpenPOWER on IntegriCloud