blob: aa71b77c8abf653efb05c236a5746801a7b3b6ca [file] [log] [blame]
Benjamin Kramer0b8b7712011-09-19 17:56:04 +00001//===-- llvm-objdump.h ----------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_OBJDUMP_H
11#define LLVM_OBJDUMP_H
12
13#include "llvm/ADT/StringRef.h"
14#include "llvm/Support/CommandLine.h"
15#include "llvm/Support/DataTypes.h"
16#include "llvm/Support/MemoryObject.h"
17
18namespace llvm {
19
20extern cl::opt<std::string> TripleName;
21extern cl::opt<std::string> ArchName;
22
23// Various helper functions.
24void DumpBytes(StringRef bytes);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000025void DisassembleInputMachO(StringRef Filename);
26
27class StringRefMemoryObject : public MemoryObject {
David Blaikie2d24e2a2011-12-20 02:50:00 +000028 virtual void anchor();
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000029 StringRef Bytes;
30public:
31 StringRefMemoryObject(StringRef bytes) : Bytes(bytes) {}
32
33 uint64_t getBase() const { return 0; }
Derek Schuffadef06a2012-02-29 01:09:06 +000034 uint64_t getExtent() const { return Bytes.size(); }
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000035
Derek Schuffadef06a2012-02-29 01:09:06 +000036 int readByte(uint64_t Addr, uint8_t *Byte) const {
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000037 if (Addr >= getExtent())
38 return -1;
39 *Byte = Bytes[Addr];
40 return 0;
41 }
42};
43
44}
45
46#endif