|
LLVM
3.7.0
|
#include "llvm/ADT/ArrayRef.h"#include "llvm/ADT/DenseMap.h"#include "llvm/ADT/IntervalMap.h"#include "llvm/ADT/PointerIntPair.h"#include "llvm/ADT/SmallVector.h"#include "llvm/ADT/StringSwitch.h"#include "llvm/ADT/Triple.h"#include "llvm/Object/ELFTypes.h"#include "llvm/Object/Error.h"#include "llvm/Support/Casting.h"#include "llvm/Support/ELF.h"#include "llvm/Support/Endian.h"#include "llvm/Support/ErrorHandling.h"#include "llvm/Support/ErrorOr.h"#include "llvm/Support/MemoryBuffer.h"#include "llvm/Support/raw_ostream.h"#include <algorithm>#include <limits>#include <utility>Go to the source code of this file.
Classes | |
| class | llvm::object::ELFFile< ELFT > |
| class | llvm::object::ELFFile< ELFT >::ELFEntityIterator< EntT > |
| Iterate over constant sized entities. More... | |
| class | llvm::object::ELFFile< ELFT >::ArchivePointerTypeTraits< T > |
| Archive files are 2 byte aligned, so we need this for PointerIntPair to work. More... | |
Namespaces | |
| llvm | |
| Compute iterated dominance frontiers using a linear time algorithm. | |
| llvm::object | |
Typedefs | |
| typedef ELFFile< ELFType < support::little, false > > | llvm::object::ELF32LEFile |
| typedef ELFFile< ELFType < support::little, true > > | llvm::object::ELF64LEFile |
| typedef ELFFile< ELFType < support::big, false > > | llvm::object::ELF32BEFile |
| typedef ELFFile< ELFType < support::big, true > > | llvm::object::ELF64BEFile |
Functions | |
| StringRef | llvm::object::getELFRelocationTypeName (uint32_t Machine, uint32_t Type) |
| std::pair< unsigned char, unsigned char > | llvm::object::getElfArchType (StringRef Object) |
| static unsigned | llvm::object::elf_hash (StringRef &symbolName) |
| This function returns the hash value for a symbol in the .dynsym section Name of the API remains consistent as specified in the libelf REF : http://www.sco.com/developers/gabi/latest/ch5.dynamic.html#hash. More... | |
1.8.6