2017-01-14 05:05:46 +08:00
|
|
|
//===- MapFile.h ------------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
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
|
2017-01-14 05:05:46 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_ELF_MAPFILE_H
|
|
|
|
#define LLD_ELF_MAPFILE_H
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace elf {
|
2017-10-29 04:15:56 +08:00
|
|
|
void writeMapFile();
|
2021-09-21 00:52:30 +08:00
|
|
|
void writeWhyExtract();
|
2018-03-15 04:29:45 +08:00
|
|
|
void writeCrossReferenceTable();
|
2020-04-28 10:30:09 +08:00
|
|
|
void writeArchiveStats();
|
2017-07-18 19:55:35 +08:00
|
|
|
} // namespace elf
|
|
|
|
} // namespace lld
|
2017-01-14 05:05:46 +08:00
|
|
|
|
|
|
|
#endif
|