summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2011-10-17 23:53:37 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2011-10-17 23:53:37 +0000
commitab6bcf35aefe823894d349773ebd53f465f122b7 (patch)
tree1629fe701eea53014966d4bee06de19144223c26
parent7c81013c4521ceab3e98d5be1fdcf3853e27e077 (diff)
downloadllvm-ab6bcf35aefe823894d349773ebd53f465f122b7.tar.gz
llvm-ab6bcf35aefe823894d349773ebd53f465f122b7.tar.bz2
llvm-ab6bcf35aefe823894d349773ebd53f465f122b7.tar.xz
Object: Implement casting for concrete classes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142314 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Object/COFF.h6
-rw-r--r--include/llvm/Object/MachO.h5
-rw-r--r--lib/Object/ELFObjectFile.cpp5
3 files changed, 16 insertions, 0 deletions
diff --git a/include/llvm/Object/COFF.h b/include/llvm/Object/COFF.h
index fa8dee7c5d..1dd8f983ec 100644
--- a/include/llvm/Object/COFF.h
+++ b/include/llvm/Object/COFF.h
@@ -141,6 +141,12 @@ public:
virtual uint8_t getBytesInAddress() const;
virtual StringRef getFileFormatName() const;
virtual unsigned getArch() const;
+
+
+ static inline bool classof(const Binary *v) {
+ return v->getType() == isCOFF;
+ }
+ static inline bool classof(const COFFObjectFile *v) { return true; }
};
}
diff --git a/include/llvm/Object/MachO.h b/include/llvm/Object/MachO.h
index 71830aa89b..147987e8f1 100644
--- a/include/llvm/Object/MachO.h
+++ b/include/llvm/Object/MachO.h
@@ -40,6 +40,11 @@ public:
MachOObject *getObject() { return MachOObj; }
+ static inline bool classof(const Binary *v) {
+ return v->getType() == isMachO;
+ }
+ static inline bool classof(const MachOObjectFile *v) { return true; }
+
protected:
virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
diff --git a/lib/Object/ELFObjectFile.cpp b/lib/Object/ELFObjectFile.cpp
index e13c31214a..7a992e2fec 100644
--- a/lib/Object/ELFObjectFile.cpp
+++ b/lib/Object/ELFObjectFile.cpp
@@ -377,6 +377,11 @@ public:
uint64_t getStringTableIndex() const;
ELF::Elf64_Word getSymbolTableIndex(const Elf_Sym *symb) const;
const Elf_Shdr *getSection(const Elf_Sym *symb) const;
+
+ static inline bool classof(const Binary *v) {
+ return v->getType() == isELF;
+ }
+ static inline bool classof(const ELFObjectFile *v) { return true; }
};
} // end namespace