llvm-6502/include/llvm/Support/StringRefMemoryObject.h
Benjamin Kramer 49a6a8d8f2 Remove the Copied parameter from MemoryObject::readBytes.
There was exactly one caller using this API right, the others were relying on
specific behavior of the default implementation. Since it's too hard to use it
right just remove it and standardize on the default behavior.

Defines away PR16132.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182636 91177308-0d34-0410-b5e6-96231b3b80d8
2013-05-24 10:54:58 +00:00

42 lines
1.3 KiB
C++

//===- llvm/Support/StringRefMemoryObject.h ---------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the declaration of the StringRefMemObject class, a simple
// wrapper around StringRef implementing the MemoryObject interface.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_SUPPORT_STRINGREFMEMORYOBJECT_H
#define LLVM_SUPPORT_STRINGREFMEMORYOBJECT_H
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/MemoryObject.h"
namespace llvm {
/// StringRefMemoryObject - Simple StringRef-backed MemoryObject
class StringRefMemoryObject : public MemoryObject {
StringRef Bytes;
uint64_t Base;
public:
StringRefMemoryObject(StringRef Bytes, uint64_t Base = 0)
: Bytes(Bytes), Base(Base) {}
uint64_t getBase() const LLVM_OVERRIDE { return Base; }
uint64_t getExtent() const LLVM_OVERRIDE { return Bytes.size(); }
int readByte(uint64_t Addr, uint8_t *Byte) const LLVM_OVERRIDE;
int readBytes(uint64_t Addr, uint64_t Size, uint8_t *Buf) const LLVM_OVERRIDE;
};
}
#endif