Files
clang-r547379/include/llvm/MC/MCSPIRVObjectWriter.h
Ryan Prichard 6024e5c395 Update prebuilt Clang to r547379 (20.0.0).
clang 20.0.0 (based on r547379) from build 12806354.

Bug: http://b/379133546
Test: N/A
Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b

Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
2025-11-26 14:59:46 -05:00

69 lines
2.1 KiB
C++

//===-- llvm/MC/MCSPIRVObjectWriter.h - SPIR-V Object Writer -----*- 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
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_MC_MCSPIRVOBJECTWRITER_H
#define LLVM_MC_MCSPIRVOBJECTWRITER_H
#include "llvm/MC/MCObjectWriter.h"
#include "llvm/MC/MCValue.h"
#include "llvm/Support/EndianStream.h"
#include "llvm/Support/raw_ostream.h"
#include <memory>
namespace llvm {
class MCSPIRVObjectTargetWriter : public MCObjectTargetWriter {
protected:
explicit MCSPIRVObjectTargetWriter() {}
public:
Triple::ObjectFormatType getFormat() const override { return Triple::SPIRV; }
static bool classof(const MCObjectTargetWriter *W) {
return W->getFormat() == Triple::SPIRV;
}
};
class SPIRVObjectWriter final : public MCObjectWriter {
support::endian::Writer W;
std::unique_ptr<MCSPIRVObjectTargetWriter> TargetObjectWriter;
struct VersionInfoType {
unsigned Major = 0;
unsigned Minor = 0;
unsigned Bound = 0;
} VersionInfo;
public:
SPIRVObjectWriter(std::unique_ptr<MCSPIRVObjectTargetWriter> MOTW,
raw_pwrite_stream &OS)
: W(OS, llvm::endianness::little), TargetObjectWriter(std::move(MOTW)) {}
void setBuildVersion(unsigned Major, unsigned Minor, unsigned Bound);
private:
void recordRelocation(MCAssembler &Asm, const MCFragment *Fragment,
const MCFixup &Fixup, MCValue Target,
uint64_t &FixedValue) override {}
uint64_t writeObject(MCAssembler &Asm) override;
void writeHeader(const MCAssembler &Asm);
};
/// Construct a new SPIR-V writer instance.
///
/// \param MOTW - The target specific SPIR-V writer subclass.
/// \param OS - The stream to write to.
/// \returns The constructed object writer.
std::unique_ptr<MCObjectWriter>
createSPIRVObjectWriter(std::unique_ptr<MCSPIRVObjectTargetWriter> MOTW,
raw_pwrite_stream &OS);
} // namespace llvm
#endif