The patch adds SPIR-V specific intrinsics required to keep information critical to SPIR-V consistency (types, constants, etc.) during translation from IR to MIR. Two related passes (SPIRVEmitIntrinsics and SPIRVPreLegalizer) and several LIT tests (passed with this change) have also been added. It also fixes the issue with opaque pointers in SPIRVGlobalRegistry.cpp and the mismatch of the data layout between the SPIR-V backend and clang (Issue #55122). Differential Revision: https://reviews.llvm.org/D124416 Co-authored-by: Aleksandr Bezzubikov <zuban32s@gmail.com> Co-authored-by: Michal Paszkowski <michal.paszkowski@outlook.com> Co-authored-by: Andrey Tretyakov <andrey1.tretyakov@intel.com> Co-authored-by: Konrad Trifunovic <konrad.trifunovic@intel.com>
84 lines
3.3 KiB
C++
84 lines
3.3 KiB
C++
//===--- SPIRVUtils.h ---- SPIR-V Utility Functions -------------*- 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 contains miscellaneous utility functions.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_SPIRV_SPIRVUTILS_H
|
|
#define LLVM_LIB_TARGET_SPIRV_SPIRVUTILS_H
|
|
|
|
#include "MCTargetDesc/SPIRVBaseInfo.h"
|
|
#include "llvm/IR/IRBuilder.h"
|
|
#include <string>
|
|
|
|
namespace llvm {
|
|
class MCInst;
|
|
class MachineFunction;
|
|
class MachineInstr;
|
|
class MachineInstrBuilder;
|
|
class MachineIRBuilder;
|
|
class MachineRegisterInfo;
|
|
class Register;
|
|
class StringRef;
|
|
class SPIRVInstrInfo;
|
|
} // namespace llvm
|
|
|
|
// Add the given string as a series of integer operand, inserting null
|
|
// terminators and padding to make sure the operands all have 32-bit
|
|
// little-endian words.
|
|
void addStringImm(const llvm::StringRef &Str, llvm::MachineInstrBuilder &MIB);
|
|
void addStringImm(const llvm::StringRef &Str, llvm::IRBuilder<> &B,
|
|
std::vector<llvm::Value *> &Args);
|
|
|
|
// Read the series of integer operands back as a null-terminated string using
|
|
// the reverse of the logic in addStringImm.
|
|
std::string getStringImm(const llvm::MachineInstr &MI, unsigned StartIndex);
|
|
|
|
// Add the given numerical immediate to MIB.
|
|
void addNumImm(const llvm::APInt &Imm, llvm::MachineInstrBuilder &MIB);
|
|
|
|
// Add an OpName instruction for the given target register.
|
|
void buildOpName(llvm::Register Target, const llvm::StringRef &Name,
|
|
llvm::MachineIRBuilder &MIRBuilder);
|
|
|
|
// Add an OpDecorate instruction for the given Reg.
|
|
void buildOpDecorate(llvm::Register Reg, llvm::MachineIRBuilder &MIRBuilder,
|
|
llvm::SPIRV::Decoration Dec,
|
|
const std::vector<uint32_t> &DecArgs,
|
|
llvm::StringRef StrImm = "");
|
|
void buildOpDecorate(llvm::Register Reg, llvm::MachineInstr &I,
|
|
const llvm::SPIRVInstrInfo &TII,
|
|
llvm::SPIRV::Decoration Dec,
|
|
const std::vector<uint32_t> &DecArgs,
|
|
llvm::StringRef StrImm = "");
|
|
|
|
// Convert a SPIR-V storage class to the corresponding LLVM IR address space.
|
|
unsigned storageClassToAddressSpace(llvm::SPIRV::StorageClass SC);
|
|
|
|
// Convert an LLVM IR address space to a SPIR-V storage class.
|
|
llvm::SPIRV::StorageClass addressSpaceToStorageClass(unsigned AddrSpace);
|
|
|
|
llvm::SPIRV::MemorySemantics
|
|
getMemSemanticsForStorageClass(llvm::SPIRV::StorageClass SC);
|
|
|
|
// Find def instruction for the given ConstReg, walking through
|
|
// spv_track_constant and ASSIGN_TYPE instructions. Updates ConstReg by def
|
|
// of OpConstant instruction.
|
|
llvm::MachineInstr *
|
|
getDefInstrMaybeConstant(llvm::Register &ConstReg,
|
|
const llvm::MachineRegisterInfo *MRI);
|
|
|
|
// Get constant integer value of the given ConstReg.
|
|
uint64_t getIConstVal(llvm::Register ConstReg,
|
|
const llvm::MachineRegisterInfo *MRI);
|
|
|
|
// Get type of i-th operand of the metadata node.
|
|
llvm::Type *getMDOperandAsType(const llvm::MDNode *N, unsigned I);
|
|
#endif // LLVM_LIB_TARGET_SPIRV_SPIRVUTILS_H
|