[PATCH] D75899: [llvm-objdump] Simplify conditional statements (isa<...>(Obj) => Obj->isSomeFile())
Xing GUO via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 4 21:50:52 PDT 2020
Higuoxing updated this revision to Diff 255109.
Higuoxing added a comment.
Rebase.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75899/new/
https://reviews.llvm.org/D75899
Files:
llvm/tools/llvm-objdump/llvm-objdump.cpp
Index: llvm/tools/llvm-objdump/llvm-objdump.cpp
===================================================================
--- llvm/tools/llvm-objdump/llvm-objdump.cpp
+++ llvm/tools/llvm-objdump/llvm-objdump.cpp
@@ -1071,7 +1071,7 @@
// TODO: implement for other file formats.
static bool shouldAdjustVA(const SectionRef &Section) {
const ObjectFile *Obj = Section.getObject();
- if (isa<object::ELFObjectFileBase>(Obj))
+ if (Obj->isELF())
return ELFSectionRef(Section).getFlags() & ELF::SHF_ALLOC;
return false;
}
@@ -1947,7 +1947,7 @@
if ((Section != O->section_end() || Absolute) && !Weak)
GlobLoc = Global ? 'g' : 'l';
char IFunc = ' ';
- if (isa<ELFObjectFileBase>(O)) {
+ if (O->isELF()) {
if (ELFSymbolRef(Symbol).getELFType() == ELF::STT_GNU_IFUNC)
IFunc = 'i';
if (ELFSymbolRef(Symbol).getBinding() == ELF::STB_GNU_UNIQUE)
@@ -1986,7 +1986,7 @@
} else if (Section == O->section_end()) {
outs() << "*UND*";
} else {
- if (const MachOObjectFile *MachO = dyn_cast<const MachOObjectFile>(O)) {
+ if (MachO) {
DataRefImpl DR = Section->getRawDataRefImpl();
StringRef SegmentName = MachO->getSectionFinalSegmentName(DR);
outs() << SegmentName << ",";
@@ -1995,13 +1995,13 @@
outs() << SectionName;
}
- if (Common || isa<ELFObjectFileBase>(O)) {
+ if (Common || O->isELF()) {
uint64_t Val =
Common ? Symbol.getAlignment() : ELFSymbolRef(Symbol).getSize();
outs() << '\t' << format(Fmt, Val);
}
- if (isa<ELFObjectFileBase>(O)) {
+ if (O->isELF()) {
uint8_t Other = ELFSymbolRef(Symbol).getOther();
switch (Other) {
case ELF::STV_DEFAULT:
@@ -2056,7 +2056,7 @@
}
StringRef ClangASTSectionName("__clangast");
- if (isa<COFFObjectFile>(Obj)) {
+ if (Obj->isCOFF()) {
ClangASTSectionName = "clangast";
}
@@ -2084,9 +2084,9 @@
static void printFaultMaps(const ObjectFile *Obj) {
StringRef FaultMapSectionName;
- if (isa<ELFObjectFileBase>(Obj)) {
+ if (Obj->isELF()) {
FaultMapSectionName = ".llvm_faultmaps";
- } else if (isa<MachOObjectFile>(Obj)) {
+ } else if (Obj->isMachO()) {
FaultMapSectionName = "__llvm_faultmaps";
} else {
WithColor::error(errs(), ToolName)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75899.255109.patch
Type: text/x-patch
Size: 2246 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200405/7915e892/attachment.bin>
More information about the llvm-commits
mailing list