llvm/mlir/include/mlir/Target/SPIRV/SPIRVBinaryUtils.h

//===- SPIRVBinaryUtils.cpp - SPIR-V Binary Module Utils --------*- 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 common utilities for SPIR-V binary module.
//
//===----------------------------------------------------------------------===//

#ifndef MLIR_TARGET_SPIRV_SPIRVBINARYUTILS_H
#define MLIR_TARGET_SPIRV_SPIRVBINARYUTILS_H

#include "mlir/Dialect/SPIRV/IR/SPIRVEnums.h"
#include "mlir/Support/LLVM.h"

#include <cstdint>

namespace mlir {
namespace spirv {

/// SPIR-V binary header word count
constexpr unsigned kHeaderWordCount =;

/// SPIR-V magic number
constexpr uint32_t kMagicNumber =;

/// The serializer tool ID registered to the Khronos Group
constexpr uint32_t kGeneratorNumber =;

/// Appends a SPRI-V module header to `header` with the given `version` and
/// `idBound`.
void appendModuleHeader(SmallVectorImpl<uint32_t> &header,
                        spirv::Version version, uint32_t idBound);

/// Returns the word-count-prefixed opcode for an SPIR-V instruction.
uint32_t getPrefixedOpcode(uint32_t wordCount, spirv::Opcode opcode);

/// Encodes an SPIR-V `literal` string into the given `binary` vector.
void encodeStringLiteralInto(SmallVectorImpl<uint32_t> &binary,
                             StringRef literal);

/// Decodes a string literal in `words` starting at `wordIndex`. Update the
/// latter to point to the position in words after the string literal.
inline StringRef decodeStringLiteral(ArrayRef<uint32_t> words,
                                     unsigned &wordIndex) {}

} // namespace spirv
} // namespace mlir

#endif // MLIR_TARGET_SPIRV_SPIRVBINARYUTILS_H