LLVM 22.0.0git
ELFConfig.h
Go to the documentation of this file.
1//===- ELFConfig.h ----------------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_OBJCOPY_ELF_ELFCONFIG_H
10#define LLVM_OBJCOPY_ELF_ELFCONFIG_H
11
14
15namespace llvm {
16namespace objcopy {
17
18// Note to remove info specified by --remove-note option.
22};
23
24// ELF specific configuration for copying/stripping a single file.
25struct ELFConfig {
27
28 std::vector<std::pair<NameMatcher, uint8_t>> SymbolsToSetVisibility;
29
30 // ELF entry point address expression. The input parameter is an entry point
31 // address in the input ELF file. The entry address in the output file is
32 // calculated with EntryExpr(input_address), when either --set-start or
33 // --change-start is used.
34 std::function<uint64_t(uint64_t)> EntryExpr;
35
36 bool AllowBrokenLinks = false;
37 bool KeepFileSymbols = false;
38 bool LocalizeHidden = false;
39 bool VerifyNoteSections = true;
40
41 // Notes specified by --remove-note option.
43};
44
45} // namespace objcopy
46} // namespace llvm
47
48#endif // LLVM_OBJCOPY_ELF_ELFCONFIG_H
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1197
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:55
@ STV_DEFAULT
Definition: ELF.h:1426
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::vector< std::pair< NameMatcher, uint8_t > > SymbolsToSetVisibility
Definition: ELFConfig.h:28
SmallVector< RemoveNoteInfo, 0 > NotesToRemove
Definition: ELFConfig.h:42
std::function< uint64_t(uint64_t)> EntryExpr
Definition: ELFConfig.h:34