[PATCH] D105089: [llvm-objcopy][MachO] Code cleanup
Alexander Shaposhnikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 29 01:43:32 PDT 2021
alexander-shaposhnikov created this revision.
alexander-shaposhnikov added reviewers: smeenai, MaskRay, jhenderson.
alexander-shaposhnikov created this object with visibility "All Users".
Herald added a reviewer: rupprecht.
Herald added a subscriber: abrachet.
alexander-shaposhnikov requested review of this revision.
Herald added a project: LLVM.
1. Remove unnecessary templates.
2. Fix potential unaligned reads inside `constructSection`.
Test plan: make check-all
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D105089
Files:
llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
Index: llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
===================================================================
--- llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
+++ llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
@@ -28,7 +28,7 @@
}
template <typename SectionType>
-static Section constructSectionCommon(SectionType Sec, uint32_t Index) {
+static Section constructSectionCommon(const SectionType &Sec, uint32_t Index) {
StringRef SegName(Sec.segname, strnlen(Sec.segname, sizeof(Sec.segname)));
StringRef SectName(Sec.sectname, strnlen(Sec.sectname, sizeof(Sec.sectname)));
Section S(SegName, SectName);
@@ -46,14 +46,11 @@
return S;
}
-template <typename SectionType>
-Section constructSection(SectionType Sec, uint32_t Index);
-
-template <> Section constructSection(MachO::section Sec, uint32_t Index) {
+Section constructSection(const MachO::section &Sec, uint32_t Index) {
return constructSectionCommon(Sec, Index);
}
-template <> Section constructSection(MachO::section_64 Sec, uint32_t Index) {
+Section constructSection(const MachO::section_64 &Sec, uint32_t Index) {
Section S = constructSectionCommon(Sec, Index);
S.Reserved3 = Sec.reserved3;
return S;
@@ -68,16 +65,14 @@
reinterpret_cast<const SectionType *>(LoadCmd.Ptr + sizeof(SegmentType));
std::vector<std::unique_ptr<Section>> Sections;
for (; reinterpret_cast<const void *>(Curr) < End; Curr++) {
- if (MachOObj.isLittleEndian() != sys::IsLittleEndianHost) {
- SectionType Sec;
- memcpy((void *)&Sec, Curr, sizeof(SectionType));
+ SectionType Sec;
+ memcpy((void *)&Sec, Curr, sizeof(SectionType));
+
+ if (MachOObj.isLittleEndian() != sys::IsLittleEndianHost)
MachO::swapStruct(Sec);
- Sections.push_back(
- std::make_unique<Section>(constructSection(Sec, NextSectionIndex)));
- } else {
- Sections.push_back(
- std::make_unique<Section>(constructSection(*Curr, NextSectionIndex)));
- }
+
+ Sections.push_back(
+ std::make_unique<Section>(constructSection(Sec, NextSectionIndex)));
Section &S = *Sections.back();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105089.355142.patch
Type: text/x-patch
Size: 2120 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210629/1801ea23/attachment.bin>
More information about the llvm-commits
mailing list