diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-09 23:46:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-09 23:46:42 +0000 |
commit | d747a9f21f87418b7d257ccd6aaaa1f7419dab87 (patch) | |
tree | 2a83a4cd641822d51faee0974bc2b47bcd71337b /llvm/lib/Support/MemoryObject.cpp | |
parent | 0fea62d0c70cc6d44ff39dbaf78f8947f323919e (diff) | |
download | llvm-d747a9f21f87418b7d257ccd6aaaa1f7419dab87.zip llvm-d747a9f21f87418b7d257ccd6aaaa1f7419dab87.tar.gz llvm-d747a9f21f87418b7d257ccd6aaaa1f7419dab87.tar.bz2 |
canonicalize namespace gymnastics
llvm-svn: 81402
Diffstat (limited to 'llvm/lib/Support/MemoryObject.cpp')
-rw-r--r-- | llvm/lib/Support/MemoryObject.cpp | 43 |
1 files changed, 20 insertions, 23 deletions
diff --git a/llvm/lib/Support/MemoryObject.cpp b/llvm/lib/Support/MemoryObject.cpp index 08e5fb7..91e3ecd 100644 --- a/llvm/lib/Support/MemoryObject.cpp +++ b/llvm/lib/Support/MemoryObject.cpp @@ -1,4 +1,4 @@ -//===- MemoryObject.cpp - Abstract memory interface -------------*- C++ -*-===// +//===- MemoryObject.cpp - Abstract memory interface -----------------------===// // // The LLVM Compiler Infrastructure // @@ -8,30 +8,27 @@ //===----------------------------------------------------------------------===// #include "llvm/Support/MemoryObject.h" - -namespace llvm { +using namespace llvm; - MemoryObject::~MemoryObject() { - } +MemoryObject::~MemoryObject() { +} + +int MemoryObject::readBytes(uint64_t address, + uint64_t size, + uint8_t* buf, + uint64_t* copied) const { + uint64_t current = address; + uint64_t limit = getBase() + getExtent(); - int MemoryObject::readBytes(uint64_t address, - uint64_t size, - uint8_t* buf, - uint64_t* copied) const { - uint64_t current = address; - uint64_t limit = getBase() + getExtent(); - - while (current - address < size && current < limit) { - if (readByte(current, &buf[(current - address)])) - return -1; - - current++; - } + while (current - address < size && current < limit) { + if (readByte(current, &buf[(current - address)])) + return -1; - if (copied) - *copied = current - address; - - return 0; + current++; } - + + if (copied) + *copied = current - address; + + return 0; } |