mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-05 02:16:46 +00:00
d14a49a05f
For amdgcn target Clang generates addrspacecast to represent null pointers in private and local address spaces. In LLVM codegen, the static variable initializer is lowered by virtual function AsmPrinter::lowerConstant which is target generic. Since addrspacecast is target specific, AsmPrinter::lowerConst This patch overrides AsmPrinter::lowerConstant with AMDGPUAsmPrinter::lowerConstant, which is able to lower the target-specific addrspacecast in the null pointer representation so that -1 is co Differential Revision: https://reviews.llvm.org/D29284 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294265 91177308-0d34-0410-b5e6-96231b3b80d8
150 lines
4.7 KiB
C++
150 lines
4.7 KiB
C++
//===-- AMDGPUAsmPrinter.h - Print AMDGPU assembly code ---------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
/// \file
|
|
/// \brief AMDGPU Assembly printer class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H
|
|
#define LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace llvm {
|
|
|
|
class MCOperand;
|
|
|
|
class AMDGPUAsmPrinter final : public AsmPrinter {
|
|
private:
|
|
struct SIProgramInfo {
|
|
// Fields set in PGM_RSRC1 pm4 packet.
|
|
uint32_t VGPRBlocks = 0;
|
|
uint32_t SGPRBlocks = 0;
|
|
uint32_t Priority = 0;
|
|
uint32_t FloatMode = 0;
|
|
uint32_t Priv = 0;
|
|
uint32_t DX10Clamp = 0;
|
|
uint32_t DebugMode = 0;
|
|
uint32_t IEEEMode = 0;
|
|
uint32_t ScratchSize = 0;
|
|
|
|
uint64_t ComputePGMRSrc1 = 0;
|
|
|
|
// Fields set in PGM_RSRC2 pm4 packet.
|
|
uint32_t LDSBlocks = 0;
|
|
uint32_t ScratchBlocks = 0;
|
|
|
|
uint64_t ComputePGMRSrc2 = 0;
|
|
|
|
uint32_t NumVGPR = 0;
|
|
uint32_t NumSGPR = 0;
|
|
uint32_t LDSSize;
|
|
bool FlatUsed = false;
|
|
|
|
// Number of SGPRs that meets number of waves per execution unit request.
|
|
uint32_t NumSGPRsForWavesPerEU = 0;
|
|
|
|
// Number of VGPRs that meets number of waves per execution unit request.
|
|
uint32_t NumVGPRsForWavesPerEU = 0;
|
|
|
|
// If ReservedVGPRCount is 0 then must be 0. Otherwise, this is the first
|
|
// fixed VGPR number reserved.
|
|
uint16_t ReservedVGPRFirst = 0;
|
|
|
|
// The number of consecutive VGPRs reserved.
|
|
uint16_t ReservedVGPRCount = 0;
|
|
|
|
// Fixed SGPR number used to hold wave scratch offset for entire kernel
|
|
// execution, or std::numeric_limits<uint16_t>::max() if the register is not
|
|
// used or not known.
|
|
uint16_t DebuggerWavefrontPrivateSegmentOffsetSGPR =
|
|
std::numeric_limits<uint16_t>::max();
|
|
|
|
// Fixed SGPR number of the first 4 SGPRs used to hold scratch V# for entire
|
|
// kernel execution, or std::numeric_limits<uint16_t>::max() if the register
|
|
// is not used or not known.
|
|
uint16_t DebuggerPrivateSegmentBufferSGPR =
|
|
std::numeric_limits<uint16_t>::max();
|
|
|
|
// Bonus information for debugging.
|
|
bool VCCUsed = false;
|
|
uint64_t CodeLen = 0;
|
|
|
|
SIProgramInfo() = default;
|
|
};
|
|
|
|
void getSIProgramInfo(SIProgramInfo &Out, const MachineFunction &MF) const;
|
|
void findNumUsedRegistersSI(const MachineFunction &MF,
|
|
unsigned &NumSGPR,
|
|
unsigned &NumVGPR) const;
|
|
|
|
/// \brief Emit register usage information so that the GPU driver
|
|
/// can correctly setup the GPU state.
|
|
void EmitProgramInfoR600(const MachineFunction &MF);
|
|
void EmitProgramInfoSI(const MachineFunction &MF, const SIProgramInfo &KernelInfo);
|
|
void EmitAmdKernelCodeT(const MachineFunction &MF,
|
|
const SIProgramInfo &KernelInfo) const;
|
|
|
|
public:
|
|
explicit AMDGPUAsmPrinter(TargetMachine &TM,
|
|
std::unique_ptr<MCStreamer> Streamer);
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override;
|
|
|
|
StringRef getPassName() const override;
|
|
|
|
/// \brief Wrapper for MCInstLowering.lowerOperand() for the tblgen'erated
|
|
/// pseudo lowering.
|
|
bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp) const;
|
|
|
|
/// \brief Lower the specified LLVM Constant to an MCExpr.
|
|
/// The AsmPrinter::lowerConstantof does not know how to lower
|
|
/// addrspacecast, therefore they should be lowered by this function.
|
|
const MCExpr *lowerConstant(const Constant *CV) override;
|
|
|
|
/// \brief tblgen'erated driver function for lowering simple MI->MC pseudo
|
|
/// instructions.
|
|
bool emitPseudoExpansionLowering(MCStreamer &OutStreamer,
|
|
const MachineInstr *MI);
|
|
|
|
/// Implemented in AMDGPUMCInstLower.cpp
|
|
void EmitInstruction(const MachineInstr *MI) override;
|
|
|
|
void EmitFunctionBodyStart() override;
|
|
|
|
void EmitFunctionEntryLabel() override;
|
|
|
|
void EmitGlobalVariable(const GlobalVariable *GV) override;
|
|
|
|
void EmitStartOfAsmFile(Module &M) override;
|
|
|
|
bool isBlockOnlyReachableByFallthrough(
|
|
const MachineBasicBlock *MBB) const override;
|
|
|
|
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
unsigned AsmVariant, const char *ExtraCode,
|
|
raw_ostream &O) override;
|
|
|
|
protected:
|
|
std::vector<std::string> DisasmLines, HexLines;
|
|
size_t DisasmLineMaxLen;
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H
|