2015-08-14 22:12:54 +08:00
|
|
|
//===- Writer.h -------------------------------------------------*- C++ -*-===//
|
2015-07-25 05:03:07 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2015-07-25 05:03:07 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_ELF_WRITER_H
|
|
|
|
#define LLD_ELF_WRITER_H
|
|
|
|
|
2019-09-06 00:32:31 +08:00
|
|
|
#include "Config.h"
|
2016-12-20 05:21:07 +08:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2016-10-13 06:36:31 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2016-07-19 17:25:43 +08:00
|
|
|
#include <cstdint>
|
2016-07-12 16:50:42 +08:00
|
|
|
#include <memory>
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
namespace lld {
|
2016-02-28 08:25:54 +08:00
|
|
|
namespace elf {
|
2016-11-06 06:58:01 +08:00
|
|
|
class InputFile;
|
2017-02-24 23:07:30 +08:00
|
|
|
class OutputSection;
|
2017-02-23 10:28:28 +08:00
|
|
|
class InputSectionBase;
|
2019-09-06 23:57:24 +08:00
|
|
|
void copySectionsIntoPartitions();
|
|
|
|
template <class ELFT> void createSyntheticSections();
|
2019-08-26 18:32:12 +08:00
|
|
|
void combineEhSections();
|
2016-08-09 11:38:23 +08:00
|
|
|
template <class ELFT> void writeResult();
|
2016-07-19 17:25:43 +08:00
|
|
|
|
|
|
|
// This describes a program header entry.
|
|
|
|
// Each contains type, access flags and range of output sections that will be
|
|
|
|
// placed in it.
|
2016-12-20 01:01:01 +08:00
|
|
|
struct PhdrEntry {
|
2019-09-06 00:32:31 +08:00
|
|
|
PhdrEntry(unsigned type, unsigned flags)
|
|
|
|
: p_align(type == llvm::ELF::PT_LOAD ? config->maxPageSize : 0),
|
|
|
|
p_type(type), p_flags(flags) {}
|
2017-02-24 23:07:30 +08:00
|
|
|
void add(OutputSection *sec);
|
2016-07-19 17:25:43 +08:00
|
|
|
|
2016-12-20 01:01:01 +08:00
|
|
|
uint64_t p_paddr = 0;
|
|
|
|
uint64_t p_vaddr = 0;
|
|
|
|
uint64_t p_memsz = 0;
|
|
|
|
uint64_t p_filesz = 0;
|
|
|
|
uint64_t p_offset = 0;
|
2017-03-07 23:51:09 +08:00
|
|
|
uint32_t p_align = 0;
|
2016-12-20 01:01:01 +08:00
|
|
|
uint32_t p_type = 0;
|
|
|
|
uint32_t p_flags = 0;
|
|
|
|
|
2017-09-07 19:01:10 +08:00
|
|
|
OutputSection *firstSec = nullptr;
|
|
|
|
OutputSection *lastSec = nullptr;
|
2016-09-09 17:46:16 +08:00
|
|
|
bool hasLMA = false;
|
2018-01-29 11:44:44 +08:00
|
|
|
|
2018-01-26 03:02:08 +08:00
|
|
|
uint64_t lmaOffset = 0;
|
2016-07-19 17:25:43 +08:00
|
|
|
};
|
2016-07-12 16:50:42 +08:00
|
|
|
|
2017-12-24 01:21:39 +08:00
|
|
|
void addReservedSymbols();
|
2018-05-23 09:58:43 +08:00
|
|
|
llvm::StringRef getOutputSectionName(const InputSectionBase *s);
|
2016-07-12 16:50:42 +08:00
|
|
|
|
2017-10-02 22:56:41 +08:00
|
|
|
template <class ELFT> uint32_t calcMipsEFlags();
|
2016-08-12 14:28:49 +08:00
|
|
|
|
|
|
|
uint8_t getMipsFpAbiFlag(uint8_t oldFlag, uint8_t newFlag,
|
|
|
|
llvm::StringRef fileName);
|
2016-11-06 06:58:01 +08:00
|
|
|
|
|
|
|
bool isMipsN32Abi(const InputFile *f);
|
2017-11-14 06:40:36 +08:00
|
|
|
bool isMicroMips();
|
2017-10-03 21:30:02 +08:00
|
|
|
bool isMipsR6();
|
2017-07-18 19:55:35 +08:00
|
|
|
} // namespace elf
|
|
|
|
} // namespace lld
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
#endif
|