This patch adds one SPIRV analysis pass and extends AsmPrinter. It is essential for minimum SPIR-V output. Also it adds several simplest tests to show that the target basically works. Differential Revision: https://reviews.llvm.org/D116465 Authors: Aleksandr Bezzubikov, Lewis Crawford, Ilia Diachkov, Michal Paszkowski, Andrey Tretyakov, Konrad Trifunovic Co-authored-by: Aleksandr Bezzubikov <zuban32s@gmail.com> Co-authored-by: Ilia Diachkov <iliya.diyachkov@intel.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>
59 lines
2.0 KiB
C++
59 lines
2.0 KiB
C++
//=- SPIRVMCInstLower.cpp - Convert SPIR-V MachineInstr to MCInst -*- 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 code to lower SPIR-V MachineInstrs to their corresponding
|
|
// MCInst records.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "SPIRVMCInstLower.h"
|
|
#include "SPIRV.h"
|
|
#include "SPIRVModuleAnalysis.h"
|
|
#include "SPIRVUtils.h"
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
using namespace llvm;
|
|
|
|
void SPIRVMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI,
|
|
SPIRV::ModuleAnalysisInfo *MAI) const {
|
|
OutMI.setOpcode(MI->getOpcode());
|
|
const MachineFunction *MF = MI->getMF();
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
const MachineOperand &MO = MI->getOperand(i);
|
|
MCOperand MCOp;
|
|
switch (MO.getType()) {
|
|
default:
|
|
llvm_unreachable("unknown operand type");
|
|
case MachineOperand::MO_GlobalAddress: {
|
|
Register FuncReg = MAI->getFuncReg(MO.getGlobal()->getGlobalIdentifier());
|
|
assert(FuncReg.isValid() && "Cannot find function Id");
|
|
MCOp = MCOperand::createReg(FuncReg);
|
|
break;
|
|
}
|
|
case MachineOperand::MO_MachineBasicBlock:
|
|
MCOp = MCOperand::createReg(MAI->getOrCreateMBBRegister(*MO.getMBB()));
|
|
break;
|
|
case MachineOperand::MO_Register: {
|
|
Register NewReg = MAI->getRegisterAlias(MF, MO.getReg());
|
|
MCOp = MCOperand::createReg(NewReg.isValid() ? NewReg : MO.getReg());
|
|
break;
|
|
}
|
|
case MachineOperand::MO_Immediate:
|
|
MCOp = MCOperand::createImm(MO.getImm());
|
|
break;
|
|
case MachineOperand::MO_FPImmediate:
|
|
MCOp = MCOperand::createDFPImm(
|
|
MO.getFPImm()->getValueAPF().convertToFloat());
|
|
break;
|
|
}
|
|
|
|
OutMI.addOperand(MCOp);
|
|
}
|
|
}
|