blob: bebcafbf9150d589214580533264d4f9dbb169eb [file] [log] [blame]
Zachary Turner3f4a4b32017-02-24 18:56:49 +00001//===--- DataBufferLLVM.cpp -------------------------------------*- 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
Zachary Turner666cc0b2017-03-04 01:30:05 +000010#include "lldb/Utility/DataBufferLLVM.h"
Zachary Turner3f4a4b32017-02-24 18:56:49 +000011
Zachary Turner666cc0b2017-03-04 01:30:05 +000012#include "llvm/ADT/Twine.h"
Zachary Turner3f4a4b32017-02-24 18:56:49 +000013#include "llvm/Support/FileSystem.h"
14#include "llvm/Support/MemoryBuffer.h"
15
Zachary Turner4479ac12017-04-06 18:12:24 +000016#include <assert.h> // for assert
17#include <type_traits> // for move
18
Zachary Turner3f4a4b32017-02-24 18:56:49 +000019using namespace lldb_private;
20
21DataBufferLLVM::DataBufferLLVM(std::unique_ptr<llvm::MemoryBuffer> MemBuffer)
22 : Buffer(std::move(MemBuffer)) {
23 assert(Buffer != nullptr &&
24 "Cannot construct a DataBufferLLVM with a null buffer");
25}
26
27DataBufferLLVM::~DataBufferLLVM() {}
28
29std::shared_ptr<DataBufferLLVM>
Zachary Turner7f6a7a32017-03-06 23:42:14 +000030DataBufferLLVM::CreateSliceFromPath(const llvm::Twine &Path, uint64_t Size,
31 uint64_t Offset, bool Private) {
Zachary Turner3f4a4b32017-02-24 18:56:49 +000032 // If the file resides non-locally, pass the volatile flag so that we don't
33 // mmap it.
Zachary Turner7f6a7a32017-03-06 23:42:14 +000034 if (!Private)
35 Private = !llvm::sys::fs::is_local(Path);
Zachary Turner3f4a4b32017-02-24 18:56:49 +000036
Zachary Turner7f6a7a32017-03-06 23:42:14 +000037 auto Buffer = llvm::MemoryBuffer::getFileSlice(Path, Size, Offset, Private);
38 if (!Buffer)
39 return nullptr;
40 return std::shared_ptr<DataBufferLLVM>(
41 new DataBufferLLVM(std::move(*Buffer)));
42}
43
44std::shared_ptr<DataBufferLLVM>
45DataBufferLLVM::CreateFromPath(const llvm::Twine &Path, bool NullTerminate, bool Private) {
46 // If the file resides non-locally, pass the volatile flag so that we don't
47 // mmap it.
48 if (!Private)
49 Private = !llvm::sys::fs::is_local(Path);
50
51 auto Buffer = llvm::MemoryBuffer::getFile(Path, -1, NullTerminate, Private);
Zachary Turner3f4a4b32017-02-24 18:56:49 +000052 if (!Buffer)
53 return nullptr;
54 return std::shared_ptr<DataBufferLLVM>(
55 new DataBufferLLVM(std::move(*Buffer)));
56}
57
Zachary Turner3f4a4b32017-02-24 18:56:49 +000058uint8_t *DataBufferLLVM::GetBytes() {
59 return const_cast<uint8_t *>(GetBuffer());
60}
61
62const uint8_t *DataBufferLLVM::GetBytes() const { return GetBuffer(); }
63
64lldb::offset_t DataBufferLLVM::GetByteSize() const {
65 return Buffer->getBufferSize();
66}
67
68const uint8_t *DataBufferLLVM::GetBuffer() const {
69 return reinterpret_cast<const uint8_t *>(Buffer->getBufferStart());
70}