From 86b97f00a284493aabfae62aa14064121c296326 Mon Sep 17 00:00:00 2001 From: vgxbj Date: Sun, 5 Apr 2020 12:31:22 +0800 Subject: [PATCH] [llvm-objdump] Simplify conditional statements (isa<...>(Obj) => Obj->isSomeFile()) Summary: Simplify some conditional statements. Reviewers: jhenderson, MaskRay, rupprecht Reviewed By: MaskRay, rupprecht Subscribers: rupprecht, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D75899 --- llvm/tools/llvm-objdump/llvm-objdump.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/llvm/tools/llvm-objdump/llvm-objdump.cpp b/llvm/tools/llvm-objdump/llvm-objdump.cpp index 69967db9ad565..b1be6d572c8d1 100644 --- a/llvm/tools/llvm-objdump/llvm-objdump.cpp +++ b/llvm/tools/llvm-objdump/llvm-objdump.cpp @@ -1071,7 +1071,7 @@ getRelocsMap(object::ObjectFile const &Obj) { // TODO: implement for other file formats. static bool shouldAdjustVA(const SectionRef &Section) { const ObjectFile *Obj = Section.getObject(); - if (isa(Obj)) + if (Obj->isELF()) return ELFSectionRef(Section).getFlags() & ELF::SHF_ALLOC; return false; } @@ -1947,7 +1947,7 @@ void printSymbol(const ObjectFile *O, const SymbolRef &Symbol, if ((Section != O->section_end() || Absolute) && !Weak) GlobLoc = Global ? 'g' : 'l'; char IFunc = ' '; - if (isa(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 @@ void printSymbol(const ObjectFile *O, const SymbolRef &Symbol, } else if (Section == O->section_end()) { outs() << "*UND*"; } else { - if (const MachOObjectFile *MachO = dyn_cast(O)) { + if (MachO) { DataRefImpl DR = Section->getRawDataRefImpl(); StringRef SegmentName = MachO->getSectionFinalSegmentName(DR); outs() << SegmentName << ","; @@ -1995,13 +1995,13 @@ void printSymbol(const ObjectFile *O, const SymbolRef &Symbol, outs() << SectionName; } - if (Common || isa(O)) { + if (Common || O->isELF()) { uint64_t Val = Common ? Symbol.getAlignment() : ELFSymbolRef(Symbol).getSize(); outs() << '\t' << format(Fmt, Val); } - if (isa(O)) { + if (O->isELF()) { uint8_t Other = ELFSymbolRef(Symbol).getOther(); switch (Other) { case ELF::STV_DEFAULT: @@ -2056,7 +2056,7 @@ void printRawClangAST(const ObjectFile *Obj) { } StringRef ClangASTSectionName("__clangast"); - if (isa(Obj)) { + if (Obj->isCOFF()) { ClangASTSectionName = "clangast"; } @@ -2084,9 +2084,9 @@ void printRawClangAST(const ObjectFile *Obj) { static void printFaultMaps(const ObjectFile *Obj) { StringRef FaultMapSectionName; - if (isa(Obj)) { + if (Obj->isELF()) { FaultMapSectionName = ".llvm_faultmaps"; - } else if (isa(Obj)) { + } else if (Obj->isMachO()) { FaultMapSectionName = "__llvm_faultmaps"; } else { WithColor::error(errs(), ToolName)