2020-04-03 02:54:05 +08:00
|
|
|
//===- InputSection.h -------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_MACHO_INPUT_SECTION_H
|
|
|
|
#define LLD_MACHO_INPUT_SECTION_H
|
|
|
|
|
|
|
|
#include "lld/Common/LLVM.h"
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
#include "llvm/ADT/PointerUnion.h"
|
|
|
|
#include "llvm/BinaryFormat/MachO.h"
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace macho {
|
|
|
|
|
|
|
|
class InputFile;
|
|
|
|
class InputSection;
|
2020-05-02 07:29:06 +08:00
|
|
|
class OutputSection;
|
2020-04-03 02:54:05 +08:00
|
|
|
class Symbol;
|
|
|
|
|
|
|
|
struct Reloc {
|
|
|
|
uint8_t type;
|
2020-05-19 23:53:53 +08:00
|
|
|
bool pcrel;
|
2020-06-14 10:52:20 +08:00
|
|
|
uint8_t length;
|
[lld-macho][re-land] Support .subsections_via_symbols
Summary:
This diff restores and builds upon @pcc and @ruiu's initial work on
subsections.
The .subsections_via_symbols directive indicates we can split each
section along symbol boundaries, unless those symbols have been marked
with `.alt_entry`.
We exercise this functionality in our tests by using order files that
rearrange those symbols.
Depends on D79668.
Reviewers: ruiu, pcc, MaskRay, smeenai, alexshap, gkm, Ktwu, christylee
Reviewed By: smeenai
Subscribers: thakis, llvm-commits, pcc, ruiu
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D79926
2020-05-19 23:46:07 +08:00
|
|
|
// The offset from the start of the subsection that this relocation belongs
|
|
|
|
// to.
|
2020-04-03 02:54:05 +08:00
|
|
|
uint32_t offset;
|
2020-05-19 23:53:53 +08:00
|
|
|
// Adding this offset to the address of the target symbol or subsection gives
|
|
|
|
// the destination that this relocation refers to.
|
|
|
|
uint64_t addend;
|
2020-04-03 02:54:05 +08:00
|
|
|
llvm::PointerUnion<Symbol *, InputSection *> target;
|
|
|
|
};
|
|
|
|
|
|
|
|
class InputSection {
|
|
|
|
public:
|
2020-04-22 04:37:57 +08:00
|
|
|
virtual ~InputSection() = default;
|
2020-06-17 08:27:28 +08:00
|
|
|
virtual uint64_t getSize() const { return data.size(); }
|
2020-04-28 03:50:59 +08:00
|
|
|
virtual uint64_t getFileSize() const { return getSize(); }
|
|
|
|
uint64_t getFileOffset() const;
|
2020-05-02 07:29:06 +08:00
|
|
|
uint64_t getVA() const;
|
|
|
|
|
2020-04-28 03:50:59 +08:00
|
|
|
virtual void writeTo(uint8_t *buf);
|
2020-04-03 02:54:05 +08:00
|
|
|
|
|
|
|
InputFile *file = nullptr;
|
|
|
|
StringRef name;
|
|
|
|
StringRef segname;
|
|
|
|
|
2020-05-02 07:29:06 +08:00
|
|
|
OutputSection *parent = nullptr;
|
|
|
|
uint64_t outSecOff = 0;
|
|
|
|
uint64_t outSecFileOff = 0;
|
2020-04-28 03:50:59 +08:00
|
|
|
|
2020-04-03 02:54:05 +08:00
|
|
|
uint32_t align = 1;
|
|
|
|
uint32_t flags = 0;
|
|
|
|
|
2020-05-02 07:29:06 +08:00
|
|
|
ArrayRef<uint8_t> data;
|
2020-04-03 02:54:05 +08:00
|
|
|
std::vector<Reloc> relocs;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern std::vector<InputSection *> inputSections;
|
|
|
|
|
|
|
|
} // namespace macho
|
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|