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
|
|
|
};
|
|
|
|
|
[lld-macho] Ensure __bss sections we output have file offset of zero
Summary:
llvm-mc emits `__bss` sections with an offset of zero, but we weren't expecting
that in our input, so we were copying non-zero data from the start of the file and
putting it in `__bss`, with obviously undesirable runtime results. (It appears that
the kernel will copy those nonzero bytes as long as the offset is nonzero, regardless
of whether S_ZERO_FILL is set.)
I debated on whether to make a special ZeroFillSection -- separate from a
regular InputSection -- but it seemed like too much work for now. But I'm happy
to refactor if anyone feels strongly about having it as a separate class.
Depends on D80857.
Reviewers: ruiu, pcc, MaskRay, smeenai, alexshap, gkm, Ktwu, christylee
Reviewed By: smeenai
Subscribers: llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D80859
2020-06-14 11:00:36 +08:00
|
|
|
inline bool isZeroFill(uint8_t flags) {
|
2020-08-08 02:04:41 +08:00
|
|
|
return llvm::MachO::isVirtualSection(flags & llvm::MachO::SECTION_TYPE);
|
|
|
|
}
|
2020-08-08 02:04:52 +08:00
|
|
|
|
|
|
|
inline bool isThreadLocalVariables(uint8_t flags) {
|
|
|
|
return (flags & llvm::MachO::SECTION_TYPE) ==
|
|
|
|
llvm::MachO::S_THREAD_LOCAL_VARIABLES;
|
[lld-macho] Ensure __bss sections we output have file offset of zero
Summary:
llvm-mc emits `__bss` sections with an offset of zero, but we weren't expecting
that in our input, so we were copying non-zero data from the start of the file and
putting it in `__bss`, with obviously undesirable runtime results. (It appears that
the kernel will copy those nonzero bytes as long as the offset is nonzero, regardless
of whether S_ZERO_FILL is set.)
I debated on whether to make a special ZeroFillSection -- separate from a
regular InputSection -- but it seemed like too much work for now. But I'm happy
to refactor if anyone feels strongly about having it as a separate class.
Depends on D80857.
Reviewers: ruiu, pcc, MaskRay, smeenai, alexshap, gkm, Ktwu, christylee
Reviewed By: smeenai
Subscribers: llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D80859
2020-06-14 11:00:36 +08:00
|
|
|
}
|
|
|
|
|
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(); }
|
[lld-macho] Ensure __bss sections we output have file offset of zero
Summary:
llvm-mc emits `__bss` sections with an offset of zero, but we weren't expecting
that in our input, so we were copying non-zero data from the start of the file and
putting it in `__bss`, with obviously undesirable runtime results. (It appears that
the kernel will copy those nonzero bytes as long as the offset is nonzero, regardless
of whether S_ZERO_FILL is set.)
I debated on whether to make a special ZeroFillSection -- separate from a
regular InputSection -- but it seemed like too much work for now. But I'm happy
to refactor if anyone feels strongly about having it as a separate class.
Depends on D80857.
Reviewers: ruiu, pcc, MaskRay, smeenai, alexshap, gkm, Ktwu, christylee
Reviewed By: smeenai
Subscribers: llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D80859
2020-06-14 11:00:36 +08:00
|
|
|
virtual uint64_t getFileSize() const {
|
|
|
|
return isZeroFill(flags) ? 0 : getSize();
|
|
|
|
}
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|