MC: Disassembled CFG reconstruction.
[oota-llvm.git] / include / llvm / Support / StringRefMemoryObject.h
1 //===- llvm/Support/StringRefMemoryObject.h ---------------------*- C++ -*-===//
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 // This file contains the declaration of the StringRefMemObject class, a simple
11 // wrapper around StringRef implementing the MemoryObject interface.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_SUPPORT_STRINGREFMEMORYOBJECT_H
16 #define LLVM_SUPPORT_STRINGREFMEMORYOBJECT_H
17
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/Support/MemoryObject.h"
20
21 namespace llvm {
22
23 /// StringRefMemoryObject - Simple StringRef-backed MemoryObject
24 class StringRefMemoryObject : public MemoryObject {
25   StringRef Bytes;
26   uint64_t Base;
27 public:
28   StringRefMemoryObject(StringRef Bytes, uint64_t Base = 0)
29     : Bytes(Bytes), Base(Base) {}
30
31   uint64_t getBase() const { return Base; }
32   uint64_t getExtent() const { return Bytes.size(); }
33
34   int readByte(uint64_t Addr, uint8_t *Byte) const;
35   int readBytes(uint64_t Addr, uint64_t Size,
36                 uint8_t *Buf, uint64_t *Copied) const;
37
38 };
39
40 }
41
42 #endif