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-09-13 11:45:00 +08:00
|
|
|
// Adding this offset to the address of the referent symbol or subsection
|
|
|
|
// gives the destination that this relocation refers to.
|
2020-05-19 23:53:53 +08:00
|
|
|
uint64_t addend;
|
2020-09-13 11:45:00 +08:00
|
|
|
llvm::PointerUnion<Symbol *, InputSection *> referent;
|
2020-04-03 02:54:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
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-12-02 11:57:37 +08:00
|
|
|
virtual uint64_t getFileSize() const;
|
2020-04-28 03:50:59 +08:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2021-01-09 07:47:40 +08:00
|
|
|
inline uint8_t sectionType(uint32_t flags) {
|
|
|
|
return flags & llvm::MachO::SECTION_TYPE;
|
|
|
|
}
|
|
|
|
|
2020-12-02 11:57:37 +08:00
|
|
|
inline bool isZeroFill(uint32_t flags) {
|
2021-01-09 07:47:40 +08:00
|
|
|
return llvm::MachO::isVirtualSection(sectionType(flags));
|
2020-12-02 11:57:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool isThreadLocalVariables(uint32_t flags) {
|
2021-01-09 07:47:40 +08:00
|
|
|
return sectionType(flags) == llvm::MachO::S_THREAD_LOCAL_VARIABLES;
|
|
|
|
}
|
|
|
|
|
|
|
|
// These sections contain the data for initializing thread-local variables.
|
|
|
|
inline bool isThreadLocalData(uint32_t flags) {
|
|
|
|
return sectionType(flags) == llvm::MachO::S_THREAD_LOCAL_REGULAR ||
|
|
|
|
sectionType(flags) == llvm::MachO::S_THREAD_LOCAL_ZEROFILL;
|
2020-12-02 11:57:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool isDebugSection(uint32_t flags) {
|
|
|
|
return (flags & llvm::MachO::SECTION_ATTRIBUTES_USR) ==
|
|
|
|
llvm::MachO::S_ATTR_DEBUG;
|
|
|
|
}
|
|
|
|
|
2020-12-02 06:45:13 +08:00
|
|
|
bool isCodeSection(InputSection *);
|
|
|
|
|
2020-04-03 02:54:05 +08:00
|
|
|
extern std::vector<InputSection *> inputSections;
|
|
|
|
|
|
|
|
} // namespace macho
|
2020-08-13 10:50:09 +08:00
|
|
|
|
|
|
|
std::string toString(const macho::InputSection *);
|
|
|
|
|
2020-04-03 02:54:05 +08:00
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|