mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
9f7818d9bd
Remove Cxxx registers, add new special register - "ALU_CONST" and new operand for each alu src - "sel". ALU_CONST is used to designate that the new operand contains the value to override src.sel, src.kc_bank, src.chan for constants in the driver. Patch by: Vadim Girlin Vincent Lejeune: - Use pointers for constants - Fold CONST_ADDRESS when possible Tom Stellard: - Give CONSTANT_BUFFER_0 its own address space - Use integer types for constant loads Reviewed-by: Tom Stellard <thomas.stellard@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173222 91177308-0d34-0410-b5e6-96231b3b80d8
75 lines
2.4 KiB
C++
75 lines
2.4 KiB
C++
//===-- R600LowerConstCopy.cpp - Propagate ConstCopy / lower them to MOV---===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
/// \file
|
|
/// This pass is intended to handle remaining ConstCopy pseudo MachineInstr.
|
|
/// ISel will fold each Const Buffer read inside scalar ALU. However it cannot
|
|
/// fold them inside vector instruction, like DOT4 or Cube ; ISel emits
|
|
/// ConstCopy instead. This pass (executed after ExpandingSpecialInstr) will try
|
|
/// to fold them if possible or replace them by MOV otherwise.
|
|
/// TODO : Implement the folding part, using Copy Propagation algorithm.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "AMDGPU.h"
|
|
#include "R600InstrInfo.h"
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
#include "llvm/IR/GlobalValue.h"
|
|
|
|
namespace llvm {
|
|
|
|
class R600LowerConstCopy : public MachineFunctionPass {
|
|
private:
|
|
static char ID;
|
|
const R600InstrInfo *TII;
|
|
public:
|
|
R600LowerConstCopy(TargetMachine &tm);
|
|
virtual bool runOnMachineFunction(MachineFunction &MF);
|
|
|
|
const char *getPassName() const { return "R600 Eliminate Symbolic Operand"; }
|
|
};
|
|
|
|
char R600LowerConstCopy::ID = 0;
|
|
|
|
|
|
R600LowerConstCopy::R600LowerConstCopy(TargetMachine &tm) :
|
|
MachineFunctionPass(ID),
|
|
TII (static_cast<const R600InstrInfo *>(tm.getInstrInfo()))
|
|
{
|
|
}
|
|
|
|
bool R600LowerConstCopy::runOnMachineFunction(MachineFunction &MF) {
|
|
for (MachineFunction::iterator BB = MF.begin(), BB_E = MF.end();
|
|
BB != BB_E; ++BB) {
|
|
MachineBasicBlock &MBB = *BB;
|
|
for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
|
|
I != E;) {
|
|
MachineInstr &MI = *I;
|
|
I = llvm::next(I);
|
|
if (MI.getOpcode() != AMDGPU::CONST_COPY)
|
|
continue;
|
|
MachineInstr *NewMI = TII->buildDefaultInstruction(MBB, I, AMDGPU::MOV,
|
|
MI.getOperand(0).getReg(), AMDGPU::ALU_CONST);
|
|
NewMI->getOperand(9).setImm(MI.getOperand(1).getImm());
|
|
MI.eraseFromParent();
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
FunctionPass *createR600LowerConstCopy(TargetMachine &tm) {
|
|
return new R600LowerConstCopy(tm);
|
|
}
|
|
|
|
}
|
|
|
|
|