HomeSort by relevance Sort by last modified time
    Searched refs:ELFObjectFile (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Object/
ELFObjectFile.cpp 1 //===- ELFObjectFile.cpp - ELF object file implementation -------*- C++ -*-===//
10 // Part of the ELFObjectFile class implementation.
14 #include "llvm/Object/ELFObjectFile.h"
35 R.reset(new ELFObjectFile<ELFType<support::little, 4, false>>(Obj, EC));
39 R.reset(new ELFObjectFile<ELFType<support::little, 2, false>>(Obj, EC));
45 R.reset(new ELFObjectFile<ELFType<support::big, 4, false>>(Obj, EC));
49 R.reset(new ELFObjectFile<ELFType<support::big, 2, false>>(Obj, EC));
55 R.reset(new ELFObjectFile<ELFType<support::big, 8, true>>(Obj, EC));
59 R.reset(new ELFObjectFile<ELFType<support::big, 2, true>>(Obj, EC));
65 R.reset(new ELFObjectFile<ELFType<support::little, 8, true>>(Obj, EC))
    [all...]
Android.mk 9 ELFObjectFile.cpp \
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 1 //===- ELFObjectFile.h - ELF object file implementation ---------*- C++ -*-===//
10 // This file declares the ELFObjectFile template class.
57 template <class ELFT> class ELFObjectFile : public ELFObjectFileBase {
194 // This flag is used for classof, to distinguish ELFObjectFile from
200 ELFObjectFile(MemoryBufferRef Object, std::error_code &EC);
247 typedef ELFObjectFile<ELFType<support::little, 2, false> > ELF32LEObjectFile;
248 typedef ELFObjectFile<ELFType<support::little, 2, true> > ELF64LEObjectFile;
249 typedef ELFObjectFile<ELFType<support::big, 2, false> > ELF32BEObjectFile;
250 typedef ELFObjectFile<ELFType<support::big, 2, true> > ELF64BEObjectFile;
253 void ELFObjectFile<ELFT>::moveSymbolNext(DataRefImpl &Symb) const
    [all...]
  /external/clang/test/SemaCXX/
crashes.cpp 142 template<int a> class ELFObjectFile {
144 ELFObjectFile() {
  /system/extras/simpleperf/
read_elf.cpp 30 #include <llvm/Object/ELFObjectFile.h>
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 25 #include "llvm/Object/ELFObjectFile.h"
636 static char getSymbolNMTypeChar(ELFObjectFile<ELFT> &Obj,
638 typedef typename ELFObjectFile<ELFT>::Elf_Sym Elf_Sym;
639 typedef typename ELFObjectFile<ELFT>::Elf_Shdr Elf_Shdr;
788 static bool isELFObject(ELFObjectFile<ELFT> &Obj, symbol_iterator I) {
789 typedef typename ELFObjectFile<ELFT>::Elf_Sym Elf_Sym;
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 21 #include "llvm/Object/ELFObjectFile.h"
42 template <class ELFT> class DyldELFObject : public ELFObjectFile<ELFT> {
63 return (isa<ELFObjectFile<ELFT>>(v) &&
64 classof(cast<ELFObjectFile<ELFT>>(v)));
66 static inline bool classof(const ELFObjectFile<ELFT> *v) {
79 : ELFObjectFile<ELFT>(Wrapper, EC) {
100 ELFObjectFile<ELFT>::getSymbol(SymRef.getRawDataRefImpl()));
    [all...]

Completed in 3871 milliseconds