clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
64 lines
2.2 KiB
C++
64 lines
2.2 KiB
C++
//===- SmallVectorMemoryBuffer.h --------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file declares a wrapper class to hold the memory into which an
|
|
// object will be generated.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_SUPPORT_SMALLVECTORMEMORYBUFFER_H
|
|
#define LLVM_SUPPORT_SMALLVECTORMEMORYBUFFER_H
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
namespace llvm {
|
|
|
|
/// SmallVector-backed MemoryBuffer instance.
|
|
///
|
|
/// This class enables efficient construction of MemoryBuffers from SmallVector
|
|
/// instances. This is useful for MCJIT and Orc, where object files are streamed
|
|
/// into SmallVectors, then inspected using ObjectFile (which takes a
|
|
/// MemoryBuffer).
|
|
class SmallVectorMemoryBuffer : public MemoryBuffer {
|
|
public:
|
|
/// Construct a SmallVectorMemoryBuffer from the given SmallVector r-value.
|
|
SmallVectorMemoryBuffer(SmallVectorImpl<char> &&SV,
|
|
bool RequiresNullTerminator = true)
|
|
: SmallVectorMemoryBuffer(std::move(SV), "<in-memory object>",
|
|
RequiresNullTerminator) {}
|
|
|
|
/// Construct a named SmallVectorMemoryBuffer from the given SmallVector
|
|
/// r-value and StringRef.
|
|
SmallVectorMemoryBuffer(SmallVectorImpl<char> &&SV, StringRef Name,
|
|
bool RequiresNullTerminator = true)
|
|
: SV(std::move(SV)), BufferName(std::string(Name)) {
|
|
if (RequiresNullTerminator) {
|
|
this->SV.push_back('\0');
|
|
this->SV.pop_back();
|
|
}
|
|
init(this->SV.begin(), this->SV.end(), false);
|
|
}
|
|
|
|
// Key function.
|
|
~SmallVectorMemoryBuffer() override;
|
|
|
|
StringRef getBufferIdentifier() const override { return BufferName; }
|
|
|
|
BufferKind getBufferKind() const override { return MemoryBuffer_Malloc; }
|
|
|
|
private:
|
|
SmallVector<char, 0> SV;
|
|
std::string BufferName;
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|