Jim Grosbach | e0934be | 2012-01-16 23:50:58 +0000 | [diff] [blame] | 1 | //===-- RuntimeDyldELF.cpp - Run-time dynamic linker for MC-JIT -*- C++ -*-===// |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Implementation of ELF support for the MC-JIT runtime dynamic linker. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "dyld" |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 15 | #include "RuntimeDyldELF.h" |
| 16 | #include "JITRegistrar.h" |
| 17 | #include "ObjectImageCommon.h" |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/IntervalMap.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/OwningPtr.h" |
| 20 | #include "llvm/ADT/STLExtras.h" |
| 21 | #include "llvm/ADT/StringRef.h" |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Triple.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 23 | #include "llvm/ExecutionEngine/ObjectBuffer.h" |
| 24 | #include "llvm/ExecutionEngine/ObjectImage.h" |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 25 | #include "llvm/Object/ELF.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 26 | #include "llvm/Object/ObjectFile.h" |
| 27 | #include "llvm/Support/ELF.h" |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | using namespace llvm::object; |
| 30 | |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 31 | namespace { |
| 32 | |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 33 | static inline |
| 34 | error_code check(error_code Err) { |
| 35 | if (Err) { |
| 36 | report_fatal_error(Err.message()); |
| 37 | } |
| 38 | return Err; |
| 39 | } |
| 40 | |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 41 | template<class ELFT> |
Michael J. Spencer | 4d9c539 | 2013-01-04 20:36:28 +0000 | [diff] [blame] | 42 | class DyldELFObject |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 43 | : public ELFObjectFile<ELFT> { |
Rafael Espindola | 4323907 | 2013-04-17 21:20:55 +0000 | [diff] [blame] | 44 | LLVM_ELF_IMPORT_TYPES_ELFT(ELFT) |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 45 | |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 46 | typedef Elf_Shdr_Impl<ELFT> Elf_Shdr; |
| 47 | typedef Elf_Sym_Impl<ELFT> Elf_Sym; |
Michael J. Spencer | 4d9c539 | 2013-01-04 20:36:28 +0000 | [diff] [blame] | 48 | typedef |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 49 | Elf_Rel_Impl<ELFT, false> Elf_Rel; |
Michael J. Spencer | 4d9c539 | 2013-01-04 20:36:28 +0000 | [diff] [blame] | 50 | typedef |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 51 | Elf_Rel_Impl<ELFT, true> Elf_Rela; |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 52 | |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 53 | typedef Elf_Ehdr_Impl<ELFT> Elf_Ehdr; |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 54 | |
| 55 | typedef typename ELFDataTypeTypedefHelper< |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 56 | ELFT>::value_type addr_type; |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 57 | |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 58 | public: |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 59 | DyldELFObject(MemoryBuffer *Wrapper, error_code &ec); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 60 | |
| 61 | void updateSectionAddress(const SectionRef &Sec, uint64_t Addr); |
| 62 | void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr); |
| 63 | |
Andrew Kaylor | 2e31987 | 2012-07-27 17:52:42 +0000 | [diff] [blame] | 64 | // Methods for type inquiry through isa, cast and dyn_cast |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 65 | static inline bool classof(const Binary *v) { |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 66 | return (isa<ELFObjectFile<ELFT> >(v) |
Michael J. Spencer | 4d9c539 | 2013-01-04 20:36:28 +0000 | [diff] [blame] | 67 | && classof(cast<ELFObjectFile |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 68 | <ELFT> >(v))); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 69 | } |
| 70 | static inline bool classof( |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 71 | const ELFObjectFile<ELFT> *v) { |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 72 | return v->isDyldType(); |
| 73 | } |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 74 | }; |
| 75 | |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 76 | template<class ELFT> |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 77 | class ELFObjectImage : public ObjectImageCommon { |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 78 | protected: |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 79 | DyldELFObject<ELFT> *DyldObj; |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 80 | bool Registered; |
| 81 | |
| 82 | public: |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 83 | ELFObjectImage(ObjectBuffer *Input, |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 84 | DyldELFObject<ELFT> *Obj) |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 85 | : ObjectImageCommon(Input, Obj), |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 86 | DyldObj(Obj), |
| 87 | Registered(false) {} |
| 88 | |
| 89 | virtual ~ELFObjectImage() { |
| 90 | if (Registered) |
| 91 | deregisterWithDebugger(); |
| 92 | } |
| 93 | |
| 94 | // Subclasses can override these methods to update the image with loaded |
| 95 | // addresses for sections and common symbols |
| 96 | virtual void updateSectionAddress(const SectionRef &Sec, uint64_t Addr) |
| 97 | { |
| 98 | DyldObj->updateSectionAddress(Sec, Addr); |
| 99 | } |
| 100 | |
| 101 | virtual void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr) |
| 102 | { |
| 103 | DyldObj->updateSymbolAddress(Sym, Addr); |
| 104 | } |
| 105 | |
| 106 | virtual void registerWithDebugger() |
| 107 | { |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 108 | JITRegistrar::getGDBRegistrar().registerObject(*Buffer); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 109 | Registered = true; |
| 110 | } |
| 111 | virtual void deregisterWithDebugger() |
| 112 | { |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 113 | JITRegistrar::getGDBRegistrar().deregisterObject(*Buffer); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 114 | } |
| 115 | }; |
| 116 | |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 117 | // The MemoryBuffer passed into this constructor is just a wrapper around the |
| 118 | // actual memory. Ultimately, the Binary parent class will take ownership of |
| 119 | // this MemoryBuffer object but not the underlying memory. |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 120 | template<class ELFT> |
| 121 | DyldELFObject<ELFT>::DyldELFObject(MemoryBuffer *Wrapper, error_code &ec) |
| 122 | : ELFObjectFile<ELFT>(Wrapper, ec) { |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 123 | this->isDyldELFObject = true; |
| 124 | } |
| 125 | |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 126 | template<class ELFT> |
| 127 | void DyldELFObject<ELFT>::updateSectionAddress(const SectionRef &Sec, |
| 128 | uint64_t Addr) { |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 129 | DataRefImpl ShdrRef = Sec.getRawDataRefImpl(); |
| 130 | Elf_Shdr *shdr = const_cast<Elf_Shdr*>( |
| 131 | reinterpret_cast<const Elf_Shdr *>(ShdrRef.p)); |
| 132 | |
| 133 | // This assumes the address passed in matches the target address bitness |
| 134 | // The template-based type cast handles everything else. |
| 135 | shdr->sh_addr = static_cast<addr_type>(Addr); |
| 136 | } |
| 137 | |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 138 | template<class ELFT> |
| 139 | void DyldELFObject<ELFT>::updateSymbolAddress(const SymbolRef &SymRef, |
| 140 | uint64_t Addr) { |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 141 | |
| 142 | Elf_Sym *sym = const_cast<Elf_Sym*>( |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 143 | ELFObjectFile<ELFT>::getSymbol(SymRef.getRawDataRefImpl())); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 144 | |
| 145 | // This assumes the address passed in matches the target address bitness |
| 146 | // The template-based type cast handles everything else. |
| 147 | sym->st_value = static_cast<addr_type>(Addr); |
| 148 | } |
| 149 | |
| 150 | } // namespace |
| 151 | |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 152 | namespace llvm { |
| 153 | |
Rafael Espindola | a2e40fb | 2013-05-05 20:43:10 +0000 | [diff] [blame] | 154 | StringRef RuntimeDyldELF::getEHFrameSection() { |
| 155 | for (int i = 0, e = Sections.size(); i != e; ++i) { |
| 156 | if (Sections[i].Name == ".eh_frame") |
| 157 | return StringRef((const char*)Sections[i].Address, Sections[i].Size); |
| 158 | } |
| 159 | return StringRef(); |
| 160 | } |
| 161 | |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 162 | ObjectImage *RuntimeDyldELF::createObjectImage(ObjectBuffer *Buffer) { |
| 163 | if (Buffer->getBufferSize() < ELF::EI_NIDENT) |
| 164 | llvm_unreachable("Unexpected ELF object size"); |
| 165 | std::pair<unsigned char, unsigned char> Ident = std::make_pair( |
| 166 | (uint8_t)Buffer->getBufferStart()[ELF::EI_CLASS], |
| 167 | (uint8_t)Buffer->getBufferStart()[ELF::EI_DATA]); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 168 | error_code ec; |
| 169 | |
| 170 | if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB) { |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 171 | DyldELFObject<ELFType<support::little, 4, false> > *Obj = |
| 172 | new DyldELFObject<ELFType<support::little, 4, false> >( |
| 173 | Buffer->getMemBuffer(), ec); |
| 174 | return new ELFObjectImage<ELFType<support::little, 4, false> >(Buffer, Obj); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 175 | } |
| 176 | else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB) { |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 177 | DyldELFObject<ELFType<support::big, 4, false> > *Obj = |
| 178 | new DyldELFObject<ELFType<support::big, 4, false> >( |
| 179 | Buffer->getMemBuffer(), ec); |
| 180 | return new ELFObjectImage<ELFType<support::big, 4, false> >(Buffer, Obj); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 181 | } |
| 182 | else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB) { |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 183 | DyldELFObject<ELFType<support::big, 8, true> > *Obj = |
| 184 | new DyldELFObject<ELFType<support::big, 8, true> >( |
| 185 | Buffer->getMemBuffer(), ec); |
| 186 | return new ELFObjectImage<ELFType<support::big, 8, true> >(Buffer, Obj); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 187 | } |
| 188 | else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) { |
Michael J. Spencer | ac97f5c | 2013-01-15 07:44:25 +0000 | [diff] [blame] | 189 | DyldELFObject<ELFType<support::little, 8, true> > *Obj = |
| 190 | new DyldELFObject<ELFType<support::little, 8, true> >( |
| 191 | Buffer->getMemBuffer(), ec); |
| 192 | return new ELFObjectImage<ELFType<support::little, 8, true> >(Buffer, Obj); |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 193 | } |
| 194 | else |
| 195 | llvm_unreachable("Unexpected ELF format"); |
| 196 | } |
| 197 | |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 198 | RuntimeDyldELF::~RuntimeDyldELF() { |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 199 | } |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 200 | |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 201 | void RuntimeDyldELF::resolveX86_64Relocation(const SectionEntry &Section, |
| 202 | uint64_t Offset, |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 203 | uint64_t Value, |
| 204 | uint32_t Type, |
| 205 | int64_t Addend) { |
| 206 | switch (Type) { |
| 207 | default: |
| 208 | llvm_unreachable("Relocation type not implemented yet!"); |
| 209 | break; |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 210 | case ELF::R_X86_64_64: { |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 211 | uint64_t *Target = reinterpret_cast<uint64_t*>(Section.Address + Offset); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 212 | *Target = Value + Addend; |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 213 | DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend)) |
| 214 | << " at " << format("%p\n",Target)); |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 215 | break; |
| 216 | } |
| 217 | case ELF::R_X86_64_32: |
| 218 | case ELF::R_X86_64_32S: { |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 219 | Value += Addend; |
Andrew Kaylor | d83a547 | 2012-07-27 20:30:12 +0000 | [diff] [blame] | 220 | assert((Type == ELF::R_X86_64_32 && (Value <= UINT32_MAX)) || |
Michael J. Spencer | 4d9c539 | 2013-01-04 20:36:28 +0000 | [diff] [blame] | 221 | (Type == ELF::R_X86_64_32S && |
Andrew Kaylor | d83a547 | 2012-07-27 20:30:12 +0000 | [diff] [blame] | 222 | ((int64_t)Value <= INT32_MAX && (int64_t)Value >= INT32_MIN))); |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 223 | uint32_t TruncatedAddr = (Value & 0xFFFFFFFF); |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 224 | uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset); |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 225 | *Target = TruncatedAddr; |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 226 | DEBUG(dbgs() << "Writing " << format("%p", TruncatedAddr) |
| 227 | << " at " << format("%p\n",Target)); |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 228 | break; |
| 229 | } |
| 230 | case ELF::R_X86_64_PC32: { |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 231 | // Get the placeholder value from the generated object since |
| 232 | // a previous relocation attempt may have overwritten the loaded version |
| 233 | uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress |
| 234 | + Offset); |
| 235 | uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset); |
| 236 | uint64_t FinalAddress = Section.LoadAddress + Offset; |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 237 | int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress; |
Andrew Kaylor | d83a547 | 2012-07-27 20:30:12 +0000 | [diff] [blame] | 238 | assert(RealOffset <= INT32_MAX && RealOffset >= INT32_MIN); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 239 | int32_t TruncOffset = (RealOffset & 0xFFFFFFFF); |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 240 | *Target = TruncOffset; |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 241 | break; |
| 242 | } |
| 243 | } |
| 244 | } |
| 245 | |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 246 | void RuntimeDyldELF::resolveX86Relocation(const SectionEntry &Section, |
| 247 | uint64_t Offset, |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 248 | uint32_t Value, |
| 249 | uint32_t Type, |
| 250 | int32_t Addend) { |
| 251 | switch (Type) { |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 252 | case ELF::R_386_32: { |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 253 | // Get the placeholder value from the generated object since |
| 254 | // a previous relocation attempt may have overwritten the loaded version |
| 255 | uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress |
| 256 | + Offset); |
| 257 | uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset); |
| 258 | *Target = *Placeholder + Value + Addend; |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 259 | break; |
| 260 | } |
| 261 | case ELF::R_386_PC32: { |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 262 | // Get the placeholder value from the generated object since |
| 263 | // a previous relocation attempt may have overwritten the loaded version |
| 264 | uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress |
| 265 | + Offset); |
| 266 | uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset); |
| 267 | uint32_t FinalAddress = ((Section.LoadAddress + Offset) & 0xFFFFFFFF); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 268 | uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress; |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 269 | *Target = RealOffset; |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 270 | break; |
| 271 | } |
| 272 | default: |
| 273 | // There are other relocation types, but it appears these are the |
Andrew Kaylor | e2e73bd | 2012-07-27 18:39:47 +0000 | [diff] [blame] | 274 | // only ones currently used by the LLVM ELF object writer |
Craig Topper | 8581438 | 2012-02-07 05:05:23 +0000 | [diff] [blame] | 275 | llvm_unreachable("Relocation type not implemented yet!"); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 276 | break; |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | |
Tim Northover | 85829bb | 2013-05-04 20:13:59 +0000 | [diff] [blame] | 280 | void RuntimeDyldELF::resolveAArch64Relocation(const SectionEntry &Section, |
| 281 | uint64_t Offset, |
| 282 | uint64_t Value, |
| 283 | uint32_t Type, |
| 284 | int64_t Addend) { |
| 285 | uint32_t *TargetPtr = reinterpret_cast<uint32_t*>(Section.Address + Offset); |
| 286 | uint64_t FinalAddress = Section.LoadAddress + Offset; |
| 287 | |
| 288 | DEBUG(dbgs() << "resolveAArch64Relocation, LocalAddress: 0x" |
| 289 | << format("%llx", Section.Address + Offset) |
| 290 | << " FinalAddress: 0x" << format("%llx",FinalAddress) |
| 291 | << " Value: 0x" << format("%llx",Value) |
| 292 | << " Type: 0x" << format("%x",Type) |
| 293 | << " Addend: 0x" << format("%llx",Addend) |
| 294 | << "\n"); |
| 295 | |
| 296 | switch (Type) { |
| 297 | default: |
| 298 | llvm_unreachable("Relocation type not implemented yet!"); |
| 299 | break; |
Tim Northover | d52eaae | 2013-05-04 20:14:14 +0000 | [diff] [blame] | 300 | case ELF::R_AARCH64_ABS64: { |
| 301 | uint64_t *TargetPtr = reinterpret_cast<uint64_t*>(Section.Address + Offset); |
| 302 | *TargetPtr = Value + Addend; |
| 303 | break; |
| 304 | } |
Tim Northover | 675b9e9 | 2013-05-19 15:39:03 +0000 | [diff] [blame^] | 305 | case ELF::R_AARCH64_PREL32: { |
Tim Northover | 85829bb | 2013-05-04 20:13:59 +0000 | [diff] [blame] | 306 | uint64_t Result = Value + Addend - FinalAddress; |
| 307 | assert(static_cast<int64_t>(Result) >= INT32_MIN && |
| 308 | static_cast<int64_t>(Result) <= UINT32_MAX); |
| 309 | *TargetPtr = static_cast<uint32_t>(Result & 0xffffffffU); |
| 310 | break; |
| 311 | } |
Tim Northover | 4a9b6b7 | 2013-05-04 20:14:09 +0000 | [diff] [blame] | 312 | case ELF::R_AARCH64_CALL26: // fallthrough |
| 313 | case ELF::R_AARCH64_JUMP26: { |
| 314 | // Operation: S+A-P. Set Call or B immediate value to bits fff_fffc of the |
| 315 | // calculation. |
| 316 | uint64_t BranchImm = Value + Addend - FinalAddress; |
| 317 | |
| 318 | // "Check that -2^27 <= result < 2^27". |
| 319 | assert(-(1LL << 27) <= static_cast<int64_t>(BranchImm) && |
| 320 | static_cast<int64_t>(BranchImm) < (1LL << 27)); |
Tim Northover | 675b9e9 | 2013-05-19 15:39:03 +0000 | [diff] [blame^] | 321 | |
| 322 | // AArch64 code is emitted with .rela relocations. The data already in any |
| 323 | // bits affected by the relocation on entry is garbage. |
| 324 | *TargetPtr &= 0xfc000000U; |
Tim Northover | 4a9b6b7 | 2013-05-04 20:14:09 +0000 | [diff] [blame] | 325 | // Immediate goes in bits 25:0 of B and BL. |
| 326 | *TargetPtr |= static_cast<uint32_t>(BranchImm & 0xffffffcU) >> 2; |
| 327 | break; |
| 328 | } |
Tim Northover | 654c2d6 | 2013-05-04 20:14:04 +0000 | [diff] [blame] | 329 | case ELF::R_AARCH64_MOVW_UABS_G3: { |
| 330 | uint64_t Result = Value + Addend; |
Tim Northover | 675b9e9 | 2013-05-19 15:39:03 +0000 | [diff] [blame^] | 331 | |
| 332 | // AArch64 code is emitted with .rela relocations. The data already in any |
| 333 | // bits affected by the relocation on entry is garbage. |
| 334 | *TargetPtr &= 0xff80001fU; |
Tim Northover | 654c2d6 | 2013-05-04 20:14:04 +0000 | [diff] [blame] | 335 | // Immediate goes in bits 20:5 of MOVZ/MOVK instruction |
| 336 | *TargetPtr |= Result >> (48 - 5); |
| 337 | // Shift is "lsl #48", in bits 22:21 |
| 338 | *TargetPtr |= 3 << 21; |
| 339 | break; |
| 340 | } |
| 341 | case ELF::R_AARCH64_MOVW_UABS_G2_NC: { |
| 342 | uint64_t Result = Value + Addend; |
Tim Northover | 675b9e9 | 2013-05-19 15:39:03 +0000 | [diff] [blame^] | 343 | |
| 344 | |
| 345 | // AArch64 code is emitted with .rela relocations. The data already in any |
| 346 | // bits affected by the relocation on entry is garbage. |
| 347 | *TargetPtr &= 0xff80001fU; |
Tim Northover | 654c2d6 | 2013-05-04 20:14:04 +0000 | [diff] [blame] | 348 | // Immediate goes in bits 20:5 of MOVZ/MOVK instruction |
| 349 | *TargetPtr |= ((Result & 0xffff00000000ULL) >> (32 - 5)); |
| 350 | // Shift is "lsl #32", in bits 22:21 |
| 351 | *TargetPtr |= 2 << 21; |
| 352 | break; |
| 353 | } |
| 354 | case ELF::R_AARCH64_MOVW_UABS_G1_NC: { |
| 355 | uint64_t Result = Value + Addend; |
Tim Northover | 675b9e9 | 2013-05-19 15:39:03 +0000 | [diff] [blame^] | 356 | |
| 357 | // AArch64 code is emitted with .rela relocations. The data already in any |
| 358 | // bits affected by the relocation on entry is garbage. |
| 359 | *TargetPtr &= 0xff80001fU; |
Tim Northover | 654c2d6 | 2013-05-04 20:14:04 +0000 | [diff] [blame] | 360 | // Immediate goes in bits 20:5 of MOVZ/MOVK instruction |
| 361 | *TargetPtr |= ((Result & 0xffff0000U) >> (16 - 5)); |
| 362 | // Shift is "lsl #16", in bits 22:21 |
| 363 | *TargetPtr |= 1 << 21; |
| 364 | break; |
| 365 | } |
| 366 | case ELF::R_AARCH64_MOVW_UABS_G0_NC: { |
| 367 | uint64_t Result = Value + Addend; |
Tim Northover | 675b9e9 | 2013-05-19 15:39:03 +0000 | [diff] [blame^] | 368 | |
| 369 | // AArch64 code is emitted with .rela relocations. The data already in any |
| 370 | // bits affected by the relocation on entry is garbage. |
| 371 | *TargetPtr &= 0xff80001fU; |
Tim Northover | 654c2d6 | 2013-05-04 20:14:04 +0000 | [diff] [blame] | 372 | // Immediate goes in bits 20:5 of MOVZ/MOVK instruction |
| 373 | *TargetPtr |= ((Result & 0xffffU) << 5); |
| 374 | // Shift is "lsl #0", in bits 22:21. No action needed. |
| 375 | break; |
| 376 | } |
Tim Northover | 85829bb | 2013-05-04 20:13:59 +0000 | [diff] [blame] | 377 | } |
| 378 | } |
| 379 | |
David Tweed | 91c623d | 2013-05-17 14:31:59 +0000 | [diff] [blame] | 380 | // FIXME: PR16013: this routine needs modification to handle repeated relocations. |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 381 | void RuntimeDyldELF::resolveARMRelocation(const SectionEntry &Section, |
| 382 | uint64_t Offset, |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 383 | uint32_t Value, |
| 384 | uint32_t Type, |
| 385 | int32_t Addend) { |
| 386 | // TODO: Add Thumb relocations. |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 387 | uint32_t* TargetPtr = (uint32_t*)(Section.Address + Offset); |
| 388 | uint32_t FinalAddress = ((Section.LoadAddress + Offset) & 0xFFFFFFFF); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 389 | Value += Addend; |
| 390 | |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 391 | DEBUG(dbgs() << "resolveARMRelocation, LocalAddress: " |
| 392 | << Section.Address + Offset |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 393 | << " FinalAddress: " << format("%p",FinalAddress) |
| 394 | << " Value: " << format("%x",Value) |
| 395 | << " Type: " << format("%x",Type) |
| 396 | << " Addend: " << format("%x",Addend) |
| 397 | << "\n"); |
| 398 | |
| 399 | switch(Type) { |
| 400 | default: |
| 401 | llvm_unreachable("Not implemented relocation type!"); |
| 402 | |
Michael J. Spencer | 4d9c539 | 2013-01-04 20:36:28 +0000 | [diff] [blame] | 403 | // Write a 32bit value to relocation address, taking into account the |
Tim Northover | 565ebde | 2012-10-03 16:29:42 +0000 | [diff] [blame] | 404 | // implicit addend encoded in the target. |
Amara Emerson | 098d6d5 | 2012-11-16 11:11:59 +0000 | [diff] [blame] | 405 | case ELF::R_ARM_TARGET1 : |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 406 | case ELF::R_ARM_ABS32 : |
Tim Northover | 565ebde | 2012-10-03 16:29:42 +0000 | [diff] [blame] | 407 | *TargetPtr += Value; |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 408 | break; |
| 409 | |
| 410 | // Write first 16 bit of 32 bit value to the mov instruction. |
| 411 | // Last 4 bit should be shifted. |
| 412 | case ELF::R_ARM_MOVW_ABS_NC : |
Tim Northover | 565ebde | 2012-10-03 16:29:42 +0000 | [diff] [blame] | 413 | // We are not expecting any other addend in the relocation address. |
Michael J. Spencer | 4d9c539 | 2013-01-04 20:36:28 +0000 | [diff] [blame] | 414 | // Using 0x000F0FFF because MOVW has its 16 bit immediate split into 2 |
Tim Northover | 565ebde | 2012-10-03 16:29:42 +0000 | [diff] [blame] | 415 | // non-contiguous fields. |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 416 | Value = Value & 0xFFFF; |
David Tweed | 91c623d | 2013-05-17 14:31:59 +0000 | [diff] [blame] | 417 | *TargetPtr &= ~0x000F0FFF; // Not really right; see FIXME at top. |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 418 | *TargetPtr |= Value & 0xFFF; |
| 419 | *TargetPtr |= ((Value >> 12) & 0xF) << 16; |
| 420 | break; |
| 421 | |
| 422 | // Write last 16 bit of 32 bit value to the mov instruction. |
| 423 | // Last 4 bit should be shifted. |
| 424 | case ELF::R_ARM_MOVT_ABS : |
Tim Northover | 565ebde | 2012-10-03 16:29:42 +0000 | [diff] [blame] | 425 | // We are not expecting any other addend in the relocation address. |
| 426 | // Use 0x000F0FFF for the same reason as R_ARM_MOVW_ABS_NC. |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 427 | Value = (Value >> 16) & 0xFFFF; |
David Tweed | 91c623d | 2013-05-17 14:31:59 +0000 | [diff] [blame] | 428 | *TargetPtr &= ~0x000F0FFF; // Not really right; see FIXME at top. |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 429 | *TargetPtr |= Value & 0xFFF; |
| 430 | *TargetPtr |= ((Value >> 12) & 0xF) << 16; |
| 431 | break; |
| 432 | |
| 433 | // Write 24 bit relative value to the branch instruction. |
| 434 | case ELF::R_ARM_PC24 : // Fall through. |
| 435 | case ELF::R_ARM_CALL : // Fall through. |
| 436 | case ELF::R_ARM_JUMP24 : |
| 437 | int32_t RelValue = static_cast<int32_t>(Value - FinalAddress - 8); |
| 438 | RelValue = (RelValue & 0x03FFFFFC) >> 2; |
| 439 | *TargetPtr &= 0xFF000000; |
| 440 | *TargetPtr |= RelValue; |
| 441 | break; |
| 442 | } |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 443 | } |
| 444 | |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 445 | void RuntimeDyldELF::resolveMIPSRelocation(const SectionEntry &Section, |
| 446 | uint64_t Offset, |
Akira Hatanaka | b862f09 | 2012-08-20 17:53:24 +0000 | [diff] [blame] | 447 | uint32_t Value, |
| 448 | uint32_t Type, |
| 449 | int32_t Addend) { |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 450 | uint32_t* TargetPtr = (uint32_t*)(Section.Address + Offset); |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 451 | Value += Addend; |
| 452 | |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 453 | DEBUG(dbgs() << "resolveMipselocation, LocalAddress: " |
| 454 | << Section.Address + Offset |
| 455 | << " FinalAddress: " |
| 456 | << format("%p",Section.LoadAddress + Offset) |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 457 | << " Value: " << format("%x",Value) |
| 458 | << " Type: " << format("%x",Type) |
| 459 | << " Addend: " << format("%x",Addend) |
| 460 | << "\n"); |
| 461 | |
| 462 | switch(Type) { |
| 463 | default: |
| 464 | llvm_unreachable("Not implemented relocation type!"); |
| 465 | break; |
| 466 | case ELF::R_MIPS_32: |
| 467 | *TargetPtr = Value + (*TargetPtr); |
| 468 | break; |
| 469 | case ELF::R_MIPS_26: |
| 470 | *TargetPtr = ((*TargetPtr) & 0xfc000000) | (( Value & 0x0fffffff) >> 2); |
| 471 | break; |
| 472 | case ELF::R_MIPS_HI16: |
| 473 | // Get the higher 16-bits. Also add 1 if bit 15 is 1. |
| 474 | Value += ((*TargetPtr) & 0x0000ffff) << 16; |
| 475 | *TargetPtr = ((*TargetPtr) & 0xffff0000) | |
| 476 | (((Value + 0x8000) >> 16) & 0xffff); |
| 477 | break; |
| 478 | case ELF::R_MIPS_LO16: |
| 479 | Value += ((*TargetPtr) & 0x0000ffff); |
| 480 | *TargetPtr = ((*TargetPtr) & 0xffff0000) | (Value & 0xffff); |
| 481 | break; |
| 482 | } |
| 483 | } |
| 484 | |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 485 | // Return the .TOC. section address to R_PPC64_TOC relocations. |
| 486 | uint64_t RuntimeDyldELF::findPPC64TOC() const { |
| 487 | // The TOC consists of sections .got, .toc, .tocbss, .plt in that |
| 488 | // order. The TOC starts where the first of these sections starts. |
| 489 | SectionList::const_iterator it = Sections.begin(); |
| 490 | SectionList::const_iterator ite = Sections.end(); |
| 491 | for (; it != ite; ++it) { |
| 492 | if (it->Name == ".got" || |
| 493 | it->Name == ".toc" || |
| 494 | it->Name == ".tocbss" || |
| 495 | it->Name == ".plt") |
| 496 | break; |
| 497 | } |
| 498 | if (it == ite) { |
| 499 | // This may happen for |
| 500 | // * references to TOC base base (sym@toc, .odp relocation) without |
| 501 | // a .toc directive. |
| 502 | // In this case just use the first section (which is usually |
| 503 | // the .odp) since the code won't reference the .toc base |
| 504 | // directly. |
| 505 | it = Sections.begin(); |
| 506 | } |
| 507 | assert (it != ite); |
| 508 | // Per the ppc64-elf-linux ABI, The TOC base is TOC value plus 0x8000 |
| 509 | // thus permitting a full 64 Kbytes segment. |
| 510 | return it->LoadAddress + 0x8000; |
| 511 | } |
| 512 | |
| 513 | // Returns the sections and offset associated with the ODP entry referenced |
| 514 | // by Symbol. |
| 515 | void RuntimeDyldELF::findOPDEntrySection(ObjectImage &Obj, |
| 516 | ObjSectionToIDMap &LocalSections, |
| 517 | RelocationValueRef &Rel) { |
| 518 | // Get the ELF symbol value (st_value) to compare with Relocation offset in |
| 519 | // .opd entries |
| 520 | |
| 521 | error_code err; |
| 522 | for (section_iterator si = Obj.begin_sections(), |
| 523 | se = Obj.end_sections(); si != se; si.increment(err)) { |
| 524 | StringRef SectionName; |
| 525 | check(si->getName(SectionName)); |
| 526 | if (SectionName != ".opd") |
| 527 | continue; |
| 528 | |
| 529 | for (relocation_iterator i = si->begin_relocations(), |
| 530 | e = si->end_relocations(); i != e;) { |
| 531 | check(err); |
| 532 | |
| 533 | // The R_PPC64_ADDR64 relocation indicates the first field |
| 534 | // of a .opd entry |
| 535 | uint64_t TypeFunc; |
| 536 | check(i->getType(TypeFunc)); |
| 537 | if (TypeFunc != ELF::R_PPC64_ADDR64) { |
| 538 | i.increment(err); |
| 539 | continue; |
| 540 | } |
| 541 | |
| 542 | SymbolRef TargetSymbol; |
| 543 | uint64_t TargetSymbolOffset; |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 544 | check(i->getSymbol(TargetSymbol)); |
| 545 | check(i->getOffset(TargetSymbolOffset)); |
Rafael Espindola | 167957f | 2013-05-09 03:39:05 +0000 | [diff] [blame] | 546 | int64_t Addend; |
| 547 | check(getELFRelocationAddend(*i, Addend)); |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 548 | |
| 549 | i = i.increment(err); |
| 550 | if (i == e) |
| 551 | break; |
| 552 | check(err); |
| 553 | |
| 554 | // Just check if following relocation is a R_PPC64_TOC |
| 555 | uint64_t TypeTOC; |
| 556 | check(i->getType(TypeTOC)); |
| 557 | if (TypeTOC != ELF::R_PPC64_TOC) |
| 558 | continue; |
| 559 | |
| 560 | // Finally compares the Symbol value and the target symbol offset |
| 561 | // to check if this .opd entry refers to the symbol the relocation |
| 562 | // points to. |
| 563 | if (Rel.Addend != (intptr_t)TargetSymbolOffset) |
| 564 | continue; |
| 565 | |
| 566 | section_iterator tsi(Obj.end_sections()); |
| 567 | check(TargetSymbol.getSection(tsi)); |
| 568 | Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections); |
Rafael Espindola | 167957f | 2013-05-09 03:39:05 +0000 | [diff] [blame] | 569 | Rel.Addend = (intptr_t)Addend; |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 570 | return; |
| 571 | } |
| 572 | } |
| 573 | llvm_unreachable("Attempting to get address of ODP entry!"); |
| 574 | } |
| 575 | |
| 576 | // Relocation masks following the #lo(value), #hi(value), #higher(value), |
| 577 | // and #highest(value) macros defined in section 4.5.1. Relocation Types |
| 578 | // in PPC-elf64abi document. |
| 579 | // |
| 580 | static inline |
| 581 | uint16_t applyPPClo (uint64_t value) |
| 582 | { |
| 583 | return value & 0xffff; |
| 584 | } |
| 585 | |
| 586 | static inline |
| 587 | uint16_t applyPPChi (uint64_t value) |
| 588 | { |
| 589 | return (value >> 16) & 0xffff; |
| 590 | } |
| 591 | |
| 592 | static inline |
| 593 | uint16_t applyPPChigher (uint64_t value) |
| 594 | { |
| 595 | return (value >> 32) & 0xffff; |
| 596 | } |
| 597 | |
| 598 | static inline |
| 599 | uint16_t applyPPChighest (uint64_t value) |
| 600 | { |
| 601 | return (value >> 48) & 0xffff; |
| 602 | } |
| 603 | |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 604 | void RuntimeDyldELF::resolvePPC64Relocation(const SectionEntry &Section, |
| 605 | uint64_t Offset, |
| 606 | uint64_t Value, |
| 607 | uint32_t Type, |
| 608 | int64_t Addend) { |
| 609 | uint8_t* LocalAddress = Section.Address + Offset; |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 610 | switch (Type) { |
| 611 | default: |
| 612 | llvm_unreachable("Relocation type not implemented yet!"); |
| 613 | break; |
| 614 | case ELF::R_PPC64_ADDR16_LO : |
| 615 | writeInt16BE(LocalAddress, applyPPClo (Value + Addend)); |
| 616 | break; |
| 617 | case ELF::R_PPC64_ADDR16_HI : |
| 618 | writeInt16BE(LocalAddress, applyPPChi (Value + Addend)); |
| 619 | break; |
| 620 | case ELF::R_PPC64_ADDR16_HIGHER : |
| 621 | writeInt16BE(LocalAddress, applyPPChigher (Value + Addend)); |
| 622 | break; |
| 623 | case ELF::R_PPC64_ADDR16_HIGHEST : |
| 624 | writeInt16BE(LocalAddress, applyPPChighest (Value + Addend)); |
| 625 | break; |
| 626 | case ELF::R_PPC64_ADDR14 : { |
| 627 | assert(((Value + Addend) & 3) == 0); |
| 628 | // Preserve the AA/LK bits in the branch instruction |
| 629 | uint8_t aalk = *(LocalAddress+3); |
| 630 | writeInt16BE(LocalAddress + 2, (aalk & 3) | ((Value + Addend) & 0xfffc)); |
| 631 | } break; |
Adhemerval Zanella | 7b44988 | 2013-01-04 19:08:13 +0000 | [diff] [blame] | 632 | case ELF::R_PPC64_ADDR32 : { |
| 633 | int32_t Result = static_cast<int32_t>(Value + Addend); |
| 634 | if (SignExtend32<32>(Result) != Result) |
Adhemerval Zanella | a1db5de | 2013-01-09 17:08:15 +0000 | [diff] [blame] | 635 | llvm_unreachable("Relocation R_PPC64_ADDR32 overflow"); |
Adhemerval Zanella | 7b44988 | 2013-01-04 19:08:13 +0000 | [diff] [blame] | 636 | writeInt32BE(LocalAddress, Result); |
| 637 | } break; |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 638 | case ELF::R_PPC64_REL24 : { |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 639 | uint64_t FinalAddress = (Section.LoadAddress + Offset); |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 640 | int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend); |
| 641 | if (SignExtend32<24>(delta) != delta) |
| 642 | llvm_unreachable("Relocation R_PPC64_REL24 overflow"); |
| 643 | // Generates a 'bl <address>' instruction |
| 644 | writeInt32BE(LocalAddress, 0x48000001 | (delta & 0x03FFFFFC)); |
| 645 | } break; |
Adhemerval Zanella | a1db5de | 2013-01-09 17:08:15 +0000 | [diff] [blame] | 646 | case ELF::R_PPC64_REL32 : { |
| 647 | uint64_t FinalAddress = (Section.LoadAddress + Offset); |
| 648 | int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend); |
| 649 | if (SignExtend32<32>(delta) != delta) |
| 650 | llvm_unreachable("Relocation R_PPC64_REL32 overflow"); |
| 651 | writeInt32BE(LocalAddress, delta); |
| 652 | } break; |
Adhemerval Zanella | f51d7e7 | 2013-05-06 17:21:23 +0000 | [diff] [blame] | 653 | case ELF::R_PPC64_REL64: { |
| 654 | uint64_t FinalAddress = (Section.LoadAddress + Offset); |
| 655 | uint64_t Delta = Value - FinalAddress + Addend; |
| 656 | writeInt64BE(LocalAddress, Delta); |
| 657 | } break; |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 658 | case ELF::R_PPC64_ADDR64 : |
| 659 | writeInt64BE(LocalAddress, Value + Addend); |
| 660 | break; |
| 661 | case ELF::R_PPC64_TOC : |
| 662 | writeInt64BE(LocalAddress, findPPC64TOC()); |
| 663 | break; |
| 664 | case ELF::R_PPC64_TOC16 : { |
| 665 | uint64_t TOCStart = findPPC64TOC(); |
| 666 | Value = applyPPClo((Value + Addend) - TOCStart); |
| 667 | writeInt16BE(LocalAddress, applyPPClo(Value)); |
| 668 | } break; |
| 669 | case ELF::R_PPC64_TOC16_DS : { |
| 670 | uint64_t TOCStart = findPPC64TOC(); |
| 671 | Value = ((Value + Addend) - TOCStart); |
| 672 | writeInt16BE(LocalAddress, applyPPClo(Value)); |
| 673 | } break; |
| 674 | } |
| 675 | } |
| 676 | |
Richard Sandiford | 6fc2ad6 | 2013-05-03 14:15:35 +0000 | [diff] [blame] | 677 | void RuntimeDyldELF::resolveSystemZRelocation(const SectionEntry &Section, |
| 678 | uint64_t Offset, |
| 679 | uint64_t Value, |
| 680 | uint32_t Type, |
| 681 | int64_t Addend) { |
| 682 | uint8_t *LocalAddress = Section.Address + Offset; |
| 683 | switch (Type) { |
| 684 | default: |
| 685 | llvm_unreachable("Relocation type not implemented yet!"); |
| 686 | break; |
| 687 | case ELF::R_390_PC16DBL: |
| 688 | case ELF::R_390_PLT16DBL: { |
| 689 | int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset); |
| 690 | assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); |
| 691 | writeInt16BE(LocalAddress, Delta / 2); |
| 692 | break; |
| 693 | } |
| 694 | case ELF::R_390_PC32DBL: |
| 695 | case ELF::R_390_PLT32DBL: { |
| 696 | int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset); |
| 697 | assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow"); |
| 698 | writeInt32BE(LocalAddress, Delta / 2); |
| 699 | break; |
| 700 | } |
| 701 | case ELF::R_390_PC32: { |
| 702 | int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset); |
| 703 | assert(int32_t(Delta) == Delta && "R_390_PC32 overflow"); |
| 704 | writeInt32BE(LocalAddress, Delta); |
| 705 | break; |
| 706 | } |
| 707 | case ELF::R_390_64: |
| 708 | writeInt64BE(LocalAddress, Value + Addend); |
| 709 | break; |
| 710 | } |
| 711 | } |
| 712 | |
Rafael Espindola | 87b5017 | 2013-04-29 17:24:34 +0000 | [diff] [blame] | 713 | void RuntimeDyldELF::resolveRelocation(const RelocationEntry &RE, |
| 714 | uint64_t Value) { |
| 715 | const SectionEntry &Section = Sections[RE.SectionID]; |
| 716 | return resolveRelocation(Section, RE.Offset, Value, RE.RelType, RE.Addend); |
| 717 | } |
| 718 | |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 719 | void RuntimeDyldELF::resolveRelocation(const SectionEntry &Section, |
| 720 | uint64_t Offset, |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 721 | uint64_t Value, |
| 722 | uint32_t Type, |
| 723 | int64_t Addend) { |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 724 | switch (Arch) { |
| 725 | case Triple::x86_64: |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 726 | resolveX86_64Relocation(Section, Offset, Value, Type, Addend); |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 727 | break; |
| 728 | case Triple::x86: |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 729 | resolveX86Relocation(Section, Offset, |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 730 | (uint32_t)(Value & 0xffffffffL), Type, |
| 731 | (uint32_t)(Addend & 0xffffffffL)); |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 732 | break; |
Tim Northover | 85829bb | 2013-05-04 20:13:59 +0000 | [diff] [blame] | 733 | case Triple::aarch64: |
| 734 | resolveAArch64Relocation(Section, Offset, Value, Type, Addend); |
| 735 | break; |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 736 | case Triple::arm: // Fall through. |
| 737 | case Triple::thumb: |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 738 | resolveARMRelocation(Section, Offset, |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 739 | (uint32_t)(Value & 0xffffffffL), Type, |
| 740 | (uint32_t)(Addend & 0xffffffffL)); |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 741 | break; |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 742 | case Triple::mips: // Fall through. |
| 743 | case Triple::mipsel: |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 744 | resolveMIPSRelocation(Section, Offset, |
Akira Hatanaka | b862f09 | 2012-08-20 17:53:24 +0000 | [diff] [blame] | 745 | (uint32_t)(Value & 0xffffffffL), Type, |
| 746 | (uint32_t)(Addend & 0xffffffffL)); |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 747 | break; |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 748 | case Triple::ppc64: |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 749 | resolvePPC64Relocation(Section, Offset, Value, Type, Addend); |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 750 | break; |
Richard Sandiford | 6fc2ad6 | 2013-05-03 14:15:35 +0000 | [diff] [blame] | 751 | case Triple::systemz: |
| 752 | resolveSystemZRelocation(Section, Offset, Value, Type, Addend); |
| 753 | break; |
Craig Topper | 8581438 | 2012-02-07 05:05:23 +0000 | [diff] [blame] | 754 | default: llvm_unreachable("Unsupported CPU type!"); |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 755 | } |
| 756 | } |
| 757 | |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 758 | void RuntimeDyldELF::processRelocationRef(unsigned SectionID, |
Rafael Espindola | ca0e736 | 2013-04-29 19:03:21 +0000 | [diff] [blame] | 759 | RelocationRef RelI, |
Preston Gurd | 689ff9c | 2012-04-16 22:12:58 +0000 | [diff] [blame] | 760 | ObjectImage &Obj, |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 761 | ObjSectionToIDMap &ObjSectionToID, |
Eli Bendersky | d98c9e9 | 2012-05-01 06:58:59 +0000 | [diff] [blame] | 762 | const SymbolTableMap &Symbols, |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 763 | StubMap &Stubs) { |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 764 | uint64_t RelType; |
Rafael Espindola | ca0e736 | 2013-04-29 19:03:21 +0000 | [diff] [blame] | 765 | Check(RelI.getType(RelType)); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 766 | int64_t Addend; |
Rafael Espindola | 167957f | 2013-05-09 03:39:05 +0000 | [diff] [blame] | 767 | Check(getELFRelocationAddend(RelI, Addend)); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 768 | SymbolRef Symbol; |
Rafael Espindola | ca0e736 | 2013-04-29 19:03:21 +0000 | [diff] [blame] | 769 | Check(RelI.getSymbol(Symbol)); |
Eli Bendersky | c201e6e | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 770 | |
| 771 | // Obtain the symbol name which is referenced in the relocation |
| 772 | StringRef TargetName; |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 773 | Symbol.getName(TargetName); |
| 774 | DEBUG(dbgs() << "\t\tRelType: " << RelType |
| 775 | << " Addend: " << Addend |
| 776 | << " TargetName: " << TargetName |
| 777 | << "\n"); |
Eli Bendersky | c201e6e | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 778 | RelocationValueRef Value; |
| 779 | // First search for the symbol in the local symbol table |
Eli Bendersky | d98c9e9 | 2012-05-01 06:58:59 +0000 | [diff] [blame] | 780 | SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data()); |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 781 | SymbolRef::Type SymType; |
| 782 | Symbol.getType(SymType); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 783 | if (lsi != Symbols.end()) { |
| 784 | Value.SectionID = lsi->second.first; |
Ulrich Weigand | 03f018a | 2013-04-05 13:29:04 +0000 | [diff] [blame] | 785 | Value.Addend = lsi->second.second + Addend; |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 786 | } else { |
Eli Bendersky | c201e6e | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 787 | // Search for the symbol in the global symbol table |
Eli Bendersky | d98c9e9 | 2012-05-01 06:58:59 +0000 | [diff] [blame] | 788 | SymbolTableMap::const_iterator gsi = |
| 789 | GlobalSymbolTable.find(TargetName.data()); |
| 790 | if (gsi != GlobalSymbolTable.end()) { |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 791 | Value.SectionID = gsi->second.first; |
Ulrich Weigand | 03f018a | 2013-04-05 13:29:04 +0000 | [diff] [blame] | 792 | Value.Addend = gsi->second.second + Addend; |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 793 | } else { |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 794 | switch (SymType) { |
| 795 | case SymbolRef::ST_Debug: { |
| 796 | // TODO: Now ELF SymbolRef::ST_Debug = STT_SECTION, it's not obviously |
| 797 | // and can be changed by another developers. Maybe best way is add |
| 798 | // a new symbol type ST_Section to SymbolRef and use it. |
Eli Bendersky | c201e6e | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 799 | section_iterator si(Obj.end_sections()); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 800 | Symbol.getSection(si); |
| 801 | if (si == Obj.end_sections()) |
| 802 | llvm_unreachable("Symbol section not found, bad object file format!"); |
| 803 | DEBUG(dbgs() << "\t\tThis is section symbol\n"); |
Andrew Kaylor | fa8cd9d | 2012-10-12 23:53:16 +0000 | [diff] [blame] | 804 | // Default to 'true' in case isText fails (though it never does). |
| 805 | bool isCode = true; |
| 806 | si->isText(isCode); |
Michael J. Spencer | 4d9c539 | 2013-01-04 20:36:28 +0000 | [diff] [blame] | 807 | Value.SectionID = findOrEmitSection(Obj, |
| 808 | (*si), |
| 809 | isCode, |
Andrew Kaylor | fa8cd9d | 2012-10-12 23:53:16 +0000 | [diff] [blame] | 810 | ObjSectionToID); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 811 | Value.Addend = Addend; |
| 812 | break; |
| 813 | } |
| 814 | case SymbolRef::ST_Unknown: { |
| 815 | Value.SymbolName = TargetName.data(); |
| 816 | Value.Addend = Addend; |
| 817 | break; |
| 818 | } |
| 819 | default: |
| 820 | llvm_unreachable("Unresolved symbol type!"); |
| 821 | break; |
| 822 | } |
| 823 | } |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 824 | } |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 825 | uint64_t Offset; |
Rafael Espindola | ca0e736 | 2013-04-29 19:03:21 +0000 | [diff] [blame] | 826 | Check(RelI.getOffset(Offset)); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 827 | |
| 828 | DEBUG(dbgs() << "\t\tSectionID: " << SectionID |
| 829 | << " Offset: " << Offset |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 830 | << "\n"); |
Tim Northover | 4a9b6b7 | 2013-05-04 20:14:09 +0000 | [diff] [blame] | 831 | if (Arch == Triple::aarch64 && |
| 832 | (RelType == ELF::R_AARCH64_CALL26 || |
| 833 | RelType == ELF::R_AARCH64_JUMP26)) { |
| 834 | // This is an AArch64 branch relocation, need to use a stub function. |
| 835 | DEBUG(dbgs() << "\t\tThis is an AArch64 branch relocation."); |
| 836 | SectionEntry &Section = Sections[SectionID]; |
| 837 | |
| 838 | // Look for an existing stub. |
| 839 | StubMap::const_iterator i = Stubs.find(Value); |
| 840 | if (i != Stubs.end()) { |
| 841 | resolveRelocation(Section, Offset, |
| 842 | (uint64_t)Section.Address + i->second, RelType, 0); |
| 843 | DEBUG(dbgs() << " Stub function found\n"); |
| 844 | } else { |
| 845 | // Create a new stub function. |
| 846 | DEBUG(dbgs() << " Create a new stub function\n"); |
| 847 | Stubs[Value] = Section.StubOffset; |
| 848 | uint8_t *StubTargetAddr = createStubFunction(Section.Address + |
| 849 | Section.StubOffset); |
| 850 | |
| 851 | RelocationEntry REmovz_g3(SectionID, |
| 852 | StubTargetAddr - Section.Address, |
| 853 | ELF::R_AARCH64_MOVW_UABS_G3, Value.Addend); |
| 854 | RelocationEntry REmovk_g2(SectionID, |
| 855 | StubTargetAddr - Section.Address + 4, |
| 856 | ELF::R_AARCH64_MOVW_UABS_G2_NC, Value.Addend); |
| 857 | RelocationEntry REmovk_g1(SectionID, |
| 858 | StubTargetAddr - Section.Address + 8, |
| 859 | ELF::R_AARCH64_MOVW_UABS_G1_NC, Value.Addend); |
| 860 | RelocationEntry REmovk_g0(SectionID, |
| 861 | StubTargetAddr - Section.Address + 12, |
| 862 | ELF::R_AARCH64_MOVW_UABS_G0_NC, Value.Addend); |
| 863 | |
| 864 | if (Value.SymbolName) { |
| 865 | addRelocationForSymbol(REmovz_g3, Value.SymbolName); |
| 866 | addRelocationForSymbol(REmovk_g2, Value.SymbolName); |
| 867 | addRelocationForSymbol(REmovk_g1, Value.SymbolName); |
| 868 | addRelocationForSymbol(REmovk_g0, Value.SymbolName); |
| 869 | } else { |
| 870 | addRelocationForSection(REmovz_g3, Value.SectionID); |
| 871 | addRelocationForSection(REmovk_g2, Value.SectionID); |
| 872 | addRelocationForSection(REmovk_g1, Value.SectionID); |
| 873 | addRelocationForSection(REmovk_g0, Value.SectionID); |
| 874 | } |
| 875 | resolveRelocation(Section, Offset, |
| 876 | (uint64_t)Section.Address + Section.StubOffset, |
| 877 | RelType, 0); |
| 878 | Section.StubOffset += getMaxStubSize(); |
| 879 | } |
| 880 | } else if (Arch == Triple::arm && |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 881 | (RelType == ELF::R_ARM_PC24 || |
| 882 | RelType == ELF::R_ARM_CALL || |
| 883 | RelType == ELF::R_ARM_JUMP24)) { |
| 884 | // This is an ARM branch relocation, need to use a stub function. |
| 885 | DEBUG(dbgs() << "\t\tThis is an ARM branch relocation."); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 886 | SectionEntry &Section = Sections[SectionID]; |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 887 | |
Eric Christopher | bf261f1 | 2012-10-23 17:19:15 +0000 | [diff] [blame] | 888 | // Look for an existing stub. |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 889 | StubMap::const_iterator i = Stubs.find(Value); |
| 890 | if (i != Stubs.end()) { |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 891 | resolveRelocation(Section, Offset, |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 892 | (uint64_t)Section.Address + i->second, RelType, 0); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 893 | DEBUG(dbgs() << " Stub function found\n"); |
| 894 | } else { |
| 895 | // Create a new stub function. |
| 896 | DEBUG(dbgs() << " Create a new stub function\n"); |
| 897 | Stubs[Value] = Section.StubOffset; |
| 898 | uint8_t *StubTargetAddr = createStubFunction(Section.Address + |
| 899 | Section.StubOffset); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 900 | RelocationEntry RE(SectionID, StubTargetAddr - Section.Address, |
Eli Bendersky | c201e6e | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 901 | ELF::R_ARM_ABS32, Value.Addend); |
| 902 | if (Value.SymbolName) |
| 903 | addRelocationForSymbol(RE, Value.SymbolName); |
| 904 | else |
| 905 | addRelocationForSection(RE, Value.SectionID); |
| 906 | |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 907 | resolveRelocation(Section, Offset, |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 908 | (uint64_t)Section.Address + Section.StubOffset, |
| 909 | RelType, 0); |
Danil Malyshev | 0e4fa5f | 2012-03-30 16:45:19 +0000 | [diff] [blame] | 910 | Section.StubOffset += getMaxStubSize(); |
| 911 | } |
Akira Hatanaka | ade0474 | 2012-12-03 23:12:19 +0000 | [diff] [blame] | 912 | } else if ((Arch == Triple::mipsel || Arch == Triple::mips) && |
| 913 | RelType == ELF::R_MIPS_26) { |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 914 | // This is an Mips branch relocation, need to use a stub function. |
| 915 | DEBUG(dbgs() << "\t\tThis is a Mips branch relocation."); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 916 | SectionEntry &Section = Sections[SectionID]; |
| 917 | uint8_t *Target = Section.Address + Offset; |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 918 | uint32_t *TargetAddress = (uint32_t *)Target; |
| 919 | |
| 920 | // Extract the addend from the instruction. |
| 921 | uint32_t Addend = ((*TargetAddress) & 0x03ffffff) << 2; |
| 922 | |
| 923 | Value.Addend += Addend; |
| 924 | |
| 925 | // Look up for existing stub. |
| 926 | StubMap::const_iterator i = Stubs.find(Value); |
| 927 | if (i != Stubs.end()) { |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 928 | resolveRelocation(Section, Offset, |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 929 | (uint64_t)Section.Address + i->second, RelType, 0); |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 930 | DEBUG(dbgs() << " Stub function found\n"); |
| 931 | } else { |
| 932 | // Create a new stub function. |
| 933 | DEBUG(dbgs() << " Create a new stub function\n"); |
| 934 | Stubs[Value] = Section.StubOffset; |
| 935 | uint8_t *StubTargetAddr = createStubFunction(Section.Address + |
| 936 | Section.StubOffset); |
| 937 | |
| 938 | // Creating Hi and Lo relocations for the filled stub instructions. |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 939 | RelocationEntry REHi(SectionID, |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 940 | StubTargetAddr - Section.Address, |
| 941 | ELF::R_MIPS_HI16, Value.Addend); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 942 | RelocationEntry RELo(SectionID, |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 943 | StubTargetAddr - Section.Address + 4, |
| 944 | ELF::R_MIPS_LO16, Value.Addend); |
| 945 | |
| 946 | if (Value.SymbolName) { |
| 947 | addRelocationForSymbol(REHi, Value.SymbolName); |
| 948 | addRelocationForSymbol(RELo, Value.SymbolName); |
| 949 | } else { |
| 950 | addRelocationForSection(REHi, Value.SectionID); |
| 951 | addRelocationForSection(RELo, Value.SectionID); |
| 952 | } |
| 953 | |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 954 | resolveRelocation(Section, Offset, |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 955 | (uint64_t)Section.Address + Section.StubOffset, |
| 956 | RelType, 0); |
Akira Hatanaka | b889e0c | 2012-08-17 21:28:04 +0000 | [diff] [blame] | 957 | Section.StubOffset += getMaxStubSize(); |
| 958 | } |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 959 | } else if (Arch == Triple::ppc64) { |
| 960 | if (RelType == ELF::R_PPC64_REL24) { |
| 961 | // A PPC branch relocation will need a stub function if the target is |
| 962 | // an external symbol (Symbol::ST_Unknown) or if the target address |
| 963 | // is not within the signed 24-bits branch address. |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 964 | SectionEntry &Section = Sections[SectionID]; |
| 965 | uint8_t *Target = Section.Address + Offset; |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 966 | bool RangeOverflow = false; |
| 967 | if (SymType != SymbolRef::ST_Unknown) { |
| 968 | // A function call may points to the .opd entry, so the final symbol value |
| 969 | // in calculated based in the relocation values in .opd section. |
| 970 | findOPDEntrySection(Obj, ObjSectionToID, Value); |
| 971 | uint8_t *RelocTarget = Sections[Value.SectionID].Address + Value.Addend; |
| 972 | int32_t delta = static_cast<int32_t>(Target - RelocTarget); |
| 973 | // If it is within 24-bits branch range, just set the branch target |
| 974 | if (SignExtend32<24>(delta) == delta) { |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 975 | RelocationEntry RE(SectionID, Offset, RelType, Value.Addend); |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 976 | if (Value.SymbolName) |
| 977 | addRelocationForSymbol(RE, Value.SymbolName); |
| 978 | else |
| 979 | addRelocationForSection(RE, Value.SectionID); |
| 980 | } else { |
| 981 | RangeOverflow = true; |
| 982 | } |
| 983 | } |
| 984 | if (SymType == SymbolRef::ST_Unknown || RangeOverflow == true) { |
| 985 | // It is an external symbol (SymbolRef::ST_Unknown) or within a range |
| 986 | // larger than 24-bits. |
| 987 | StubMap::const_iterator i = Stubs.find(Value); |
| 988 | if (i != Stubs.end()) { |
| 989 | // Symbol function stub already created, just relocate to it |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 990 | resolveRelocation(Section, Offset, |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 991 | (uint64_t)Section.Address + i->second, RelType, 0); |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 992 | DEBUG(dbgs() << " Stub function found\n"); |
| 993 | } else { |
| 994 | // Create a new stub function. |
| 995 | DEBUG(dbgs() << " Create a new stub function\n"); |
| 996 | Stubs[Value] = Section.StubOffset; |
| 997 | uint8_t *StubTargetAddr = createStubFunction(Section.Address + |
| 998 | Section.StubOffset); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 999 | RelocationEntry RE(SectionID, StubTargetAddr - Section.Address, |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 1000 | ELF::R_PPC64_ADDR64, Value.Addend); |
| 1001 | |
| 1002 | // Generates the 64-bits address loads as exemplified in section |
| 1003 | // 4.5.1 in PPC64 ELF ABI. |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 1004 | RelocationEntry REhst(SectionID, |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 1005 | StubTargetAddr - Section.Address + 2, |
| 1006 | ELF::R_PPC64_ADDR16_HIGHEST, Value.Addend); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 1007 | RelocationEntry REhr(SectionID, |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 1008 | StubTargetAddr - Section.Address + 6, |
| 1009 | ELF::R_PPC64_ADDR16_HIGHER, Value.Addend); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 1010 | RelocationEntry REh(SectionID, |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 1011 | StubTargetAddr - Section.Address + 14, |
| 1012 | ELF::R_PPC64_ADDR16_HI, Value.Addend); |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 1013 | RelocationEntry REl(SectionID, |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 1014 | StubTargetAddr - Section.Address + 18, |
| 1015 | ELF::R_PPC64_ADDR16_LO, Value.Addend); |
| 1016 | |
| 1017 | if (Value.SymbolName) { |
| 1018 | addRelocationForSymbol(REhst, Value.SymbolName); |
| 1019 | addRelocationForSymbol(REhr, Value.SymbolName); |
| 1020 | addRelocationForSymbol(REh, Value.SymbolName); |
| 1021 | addRelocationForSymbol(REl, Value.SymbolName); |
| 1022 | } else { |
| 1023 | addRelocationForSection(REhst, Value.SectionID); |
| 1024 | addRelocationForSection(REhr, Value.SectionID); |
| 1025 | addRelocationForSection(REh, Value.SectionID); |
| 1026 | addRelocationForSection(REl, Value.SectionID); |
| 1027 | } |
| 1028 | |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 1029 | resolveRelocation(Section, Offset, |
Andrew Kaylor | a307a1c | 2012-11-02 19:45:23 +0000 | [diff] [blame] | 1030 | (uint64_t)Section.Address + Section.StubOffset, |
| 1031 | RelType, 0); |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 1032 | if (SymType == SymbolRef::ST_Unknown) |
| 1033 | // Restore the TOC for external calls |
| 1034 | writeInt32BE(Target+4, 0xE8410028); // ld r2,40(r1) |
| 1035 | Section.StubOffset += getMaxStubSize(); |
| 1036 | } |
| 1037 | } |
| 1038 | } else { |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 1039 | RelocationEntry RE(SectionID, Offset, RelType, Value.Addend); |
Adhemerval Zanella | 6e8946c | 2012-10-25 13:13:48 +0000 | [diff] [blame] | 1040 | // Extra check to avoid relocation againt empty symbols (usually |
| 1041 | // the R_PPC64_TOC). |
| 1042 | if (Value.SymbolName && !TargetName.empty()) |
| 1043 | addRelocationForSymbol(RE, Value.SymbolName); |
| 1044 | else |
| 1045 | addRelocationForSection(RE, Value.SectionID); |
| 1046 | } |
Richard Sandiford | 6fc2ad6 | 2013-05-03 14:15:35 +0000 | [diff] [blame] | 1047 | } else if (Arch == Triple::systemz && |
| 1048 | (RelType == ELF::R_390_PLT32DBL || |
| 1049 | RelType == ELF::R_390_GOTENT)) { |
| 1050 | // Create function stubs for both PLT and GOT references, regardless of |
| 1051 | // whether the GOT reference is to data or code. The stub contains the |
| 1052 | // full address of the symbol, as needed by GOT references, and the |
| 1053 | // executable part only adds an overhead of 8 bytes. |
| 1054 | // |
| 1055 | // We could try to conserve space by allocating the code and data |
| 1056 | // parts of the stub separately. However, as things stand, we allocate |
| 1057 | // a stub for every relocation, so using a GOT in JIT code should be |
| 1058 | // no less space efficient than using an explicit constant pool. |
| 1059 | DEBUG(dbgs() << "\t\tThis is a SystemZ indirect relocation."); |
| 1060 | SectionEntry &Section = Sections[SectionID]; |
| 1061 | |
| 1062 | // Look for an existing stub. |
| 1063 | StubMap::const_iterator i = Stubs.find(Value); |
| 1064 | uintptr_t StubAddress; |
| 1065 | if (i != Stubs.end()) { |
| 1066 | StubAddress = uintptr_t(Section.Address) + i->second; |
| 1067 | DEBUG(dbgs() << " Stub function found\n"); |
| 1068 | } else { |
| 1069 | // Create a new stub function. |
| 1070 | DEBUG(dbgs() << " Create a new stub function\n"); |
| 1071 | |
| 1072 | uintptr_t BaseAddress = uintptr_t(Section.Address); |
| 1073 | uintptr_t StubAlignment = getStubAlignment(); |
| 1074 | StubAddress = (BaseAddress + Section.StubOffset + |
| 1075 | StubAlignment - 1) & -StubAlignment; |
| 1076 | unsigned StubOffset = StubAddress - BaseAddress; |
| 1077 | |
| 1078 | Stubs[Value] = StubOffset; |
| 1079 | createStubFunction((uint8_t *)StubAddress); |
| 1080 | RelocationEntry RE(SectionID, StubOffset + 8, |
| 1081 | ELF::R_390_64, Value.Addend - Addend); |
| 1082 | if (Value.SymbolName) |
| 1083 | addRelocationForSymbol(RE, Value.SymbolName); |
| 1084 | else |
| 1085 | addRelocationForSection(RE, Value.SectionID); |
| 1086 | Section.StubOffset = StubOffset + getMaxStubSize(); |
| 1087 | } |
| 1088 | |
| 1089 | if (RelType == ELF::R_390_GOTENT) |
| 1090 | resolveRelocation(Section, Offset, StubAddress + 8, |
| 1091 | ELF::R_390_PC32DBL, Addend); |
| 1092 | else |
| 1093 | resolveRelocation(Section, Offset, StubAddress, RelType, Addend); |
Eli Bendersky | c201e6e | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 1094 | } else { |
Rafael Espindola | efa91f6 | 2013-04-29 14:44:23 +0000 | [diff] [blame] | 1095 | RelocationEntry RE(SectionID, Offset, RelType, Value.Addend); |
Eli Bendersky | c201e6e | 2012-05-01 10:41:12 +0000 | [diff] [blame] | 1096 | if (Value.SymbolName) |
| 1097 | addRelocationForSymbol(RE, Value.SymbolName); |
| 1098 | else |
| 1099 | addRelocationForSection(RE, Value.SectionID); |
| 1100 | } |
Jim Grosbach | 61425c0 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 1101 | } |
| 1102 | |
Andrew Kaylor | 3f23cef | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 1103 | bool RuntimeDyldELF::isCompatibleFormat(const ObjectBuffer *Buffer) const { |
| 1104 | if (Buffer->getBufferSize() < strlen(ELF::ElfMagic)) |
| 1105 | return false; |
| 1106 | return (memcmp(Buffer->getBufferStart(), ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0; |
Eli Bendersky | a66a185 | 2012-01-16 08:56:09 +0000 | [diff] [blame] | 1107 | } |
| 1108 | } // namespace llvm |