blob: 4e2b33d840bc86cee35ee5a9199587930b5f6490 [file] [log] [blame]
Seiya Nutaf923d9b2019-06-21 00:21:50 +00001#include "Object.h"
2#include "../llvm-objcopy.h"
3
4namespace llvm {
5namespace objcopy {
6namespace macho {
7
8const SymbolEntry *SymbolTable::getSymbolByIndex(uint32_t Index) const {
9 assert(Index < Symbols.size() && "invalid symbol index");
10 return Symbols[Index].get();
11}
12
Seiya Nuta9bbf2a12019-10-31 13:51:11 +090013SymbolEntry *SymbolTable::getSymbolByIndex(uint32_t Index) {
14 return const_cast<SymbolEntry *>(
15 static_cast<const SymbolTable *>(this)->getSymbolByIndex(Index));
16}
17
18void SymbolTable::removeSymbols(
19 function_ref<bool(const std::unique_ptr<SymbolEntry> &)> ToRemove) {
20 Symbols.erase(
21 std::remove_if(std::begin(Symbols), std::end(Symbols), ToRemove),
22 std::end(Symbols));
23}
24
Alexander Shaposhnikovdc046c72020-02-21 13:18:36 -080025void Object::removeSections(function_ref<bool(const std::unique_ptr<Section> &)> ToRemove) {
Seiya Nuta7f19dd12019-10-28 15:40:37 +090026 for (LoadCommand &LC : LoadCommands)
27 LC.Sections.erase(std::remove_if(std::begin(LC.Sections),
28 std::end(LC.Sections), ToRemove),
29 std::end(LC.Sections));
30}
31
Alexander Shaposhnikovc54959c2019-11-19 23:30:52 -080032void Object::addLoadCommand(LoadCommand LC) {
33 LoadCommands.push_back(std::move(LC));
34}
35
Seiya Nuta9e119ad2019-12-16 14:05:06 +090036template <typename SegmentType>
37static void constructSegment(SegmentType &Seg,
38 llvm::MachO::LoadCommandType CmdType,
39 StringRef SegName) {
40 assert(SegName.size() <= sizeof(Seg.segname) && "too long segment name");
41 memset(&Seg, 0, sizeof(SegmentType));
42 Seg.cmd = CmdType;
43 strncpy(Seg.segname, SegName.data(), SegName.size());
44}
45
46LoadCommand &Object::addSegment(StringRef SegName) {
47 LoadCommand LC;
48 if (is64Bit())
49 constructSegment(LC.MachOLoadCommand.segment_command_64_data,
50 MachO::LC_SEGMENT_64, SegName);
51 else
52 constructSegment(LC.MachOLoadCommand.segment_command_data,
53 MachO::LC_SEGMENT, SegName);
54
Alexander Shaposhnikovdc046c72020-02-21 13:18:36 -080055 LoadCommands.push_back(std::move(LC));
Seiya Nuta9e119ad2019-12-16 14:05:06 +090056 return LoadCommands.back();
57}
58
59/// Extracts a segment name from a string which is possibly non-null-terminated.
60static StringRef extractSegmentName(const char *SegName) {
61 return StringRef(SegName,
62 strnlen(SegName, sizeof(MachO::segment_command::segname)));
63}
64
65Optional<StringRef> LoadCommand::getSegmentName() const {
66 const MachO::macho_load_command &MLC = MachOLoadCommand;
67 switch (MLC.load_command_data.cmd) {
68 case MachO::LC_SEGMENT:
69 return extractSegmentName(MLC.segment_command_data.segname);
70 case MachO::LC_SEGMENT_64:
71 return extractSegmentName(MLC.segment_command_64_data.segname);
72 default:
73 return None;
74 }
75}
76
Seiya Nutaf923d9b2019-06-21 00:21:50 +000077} // end namespace macho
78} // end namespace objcopy
79} // end namespace llvm