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