2009-07-16 15:27:25 +02:00
|
|
|
//===-- SystemZAsmPrinter.cpp - SystemZ LLVM assembly writer ---------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains a printer that converts from our internal representation
|
|
|
|
// of machine-dependent LLVM code to the SystemZ assembly language.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "asm-printer"
|
|
|
|
#include "SystemZ.h"
|
|
|
|
#include "SystemZInstrInfo.h"
|
|
|
|
#include "SystemZTargetMachine.h"
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Module.h"
|
2009-08-13 03:36:44 +02:00
|
|
|
#include "llvm/Assembly/Writer.h"
|
2009-07-16 15:27:25 +02:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/DwarfWriter.h"
|
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2009-08-19 07:49:37 +02:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2009-08-22 22:48:53 +02:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-09-13 19:14:04 +02:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2010-03-12 22:19:23 +01:00
|
|
|
#include "llvm/Target/Mangler.h"
|
2009-07-16 15:27:25 +02:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2009-07-28 05:13:23 +02:00
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
2009-07-16 16:36:52 +02:00
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
2009-11-07 10:20:54 +01:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-07-16 16:36:52 +02:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2009-07-16 15:27:25 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
2009-10-25 07:33:48 +01:00
|
|
|
class SystemZAsmPrinter : public AsmPrinter {
|
2009-07-16 15:27:25 +02:00
|
|
|
public:
|
2009-07-16 16:36:52 +02:00
|
|
|
SystemZAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
|
2010-03-13 21:55:24 +01:00
|
|
|
MCStreamer &Streamer)
|
|
|
|
: AsmPrinter(O, TM, Streamer) {}
|
2009-07-16 15:27:25 +02:00
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "SystemZ Assembly Printer";
|
|
|
|
}
|
|
|
|
|
2010-04-04 06:47:45 +02:00
|
|
|
void printOperand(const MachineInstr *MI, int OpNum, raw_ostream &O,
|
2009-07-16 15:27:25 +02:00
|
|
|
const char* Modifier = 0);
|
2010-04-04 06:47:45 +02:00
|
|
|
void printPCRelImmOperand(const MachineInstr *MI, int OpNum, raw_ostream &O);
|
|
|
|
void printRIAddrOperand(const MachineInstr *MI, int OpNum, raw_ostream &O,
|
2009-07-16 15:43:18 +02:00
|
|
|
const char* Modifier = 0);
|
2010-04-04 06:47:45 +02:00
|
|
|
void printRRIAddrOperand(const MachineInstr *MI, int OpNum, raw_ostream &O,
|
2009-07-16 15:44:00 +02:00
|
|
|
const char* Modifier = 0);
|
2010-04-04 06:47:45 +02:00
|
|
|
void printS16ImmOperand(const MachineInstr *MI, int OpNum, raw_ostream &O) {
|
2009-07-16 16:02:45 +02:00
|
|
|
O << (int16_t)MI->getOperand(OpNum).getImm();
|
|
|
|
}
|
2010-04-04 06:47:45 +02:00
|
|
|
void printS32ImmOperand(const MachineInstr *MI, int OpNum, raw_ostream &O) {
|
2009-07-16 16:02:45 +02:00
|
|
|
O << (int32_t)MI->getOperand(OpNum).getImm();
|
|
|
|
}
|
|
|
|
|
2010-04-04 06:47:45 +02:00
|
|
|
void printInstruction(const MachineInstr *MI, raw_ostream &O);
|
2009-09-13 22:19:22 +02:00
|
|
|
static const char *getRegisterName(unsigned RegNo);
|
2009-09-13 22:08:00 +02:00
|
|
|
|
2010-01-28 02:48:52 +01:00
|
|
|
void EmitInstruction(const MachineInstr *MI);
|
2009-07-16 15:27:25 +02:00
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AsmPrinter::getAnalysisUsage(AU);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end of anonymous namespace
|
|
|
|
|
|
|
|
#include "SystemZGenAsmWriter.inc"
|
|
|
|
|
2010-01-28 02:48:52 +01:00
|
|
|
void SystemZAsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
2009-07-16 15:27:25 +02:00
|
|
|
// Call the autogenerated instruction printer routines.
|
2010-04-04 06:47:45 +02:00
|
|
|
printInstruction(MI, O);
|
2010-02-10 01:36:00 +01:00
|
|
|
OutStreamer.AddBlankLine();
|
2009-07-16 15:27:25 +02:00
|
|
|
}
|
|
|
|
|
2010-04-04 06:47:45 +02:00
|
|
|
void SystemZAsmPrinter::printPCRelImmOperand(const MachineInstr *MI, int OpNum,
|
|
|
|
raw_ostream &O) {
|
2009-07-16 16:16:05 +02:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNum);
|
|
|
|
switch (MO.getType()) {
|
2009-07-16 16:17:07 +02:00
|
|
|
case MachineOperand::MO_Immediate:
|
|
|
|
O << MO.getImm();
|
|
|
|
return;
|
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
2010-03-13 22:04:28 +01:00
|
|
|
O << *MO.getMBB()->getSymbol();
|
2009-07-16 16:17:07 +02:00
|
|
|
return;
|
2009-07-16 16:16:05 +02:00
|
|
|
case MachineOperand::MO_GlobalAddress: {
|
|
|
|
const GlobalValue *GV = MO.getGlobal();
|
2010-03-12 22:19:23 +01:00
|
|
|
O << *Mang->getSymbol(GV);
|
2009-07-16 16:16:05 +02:00
|
|
|
|
|
|
|
// Assemble calls via PLT for externally visible symbols if PIC.
|
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_ &&
|
|
|
|
!GV->hasHiddenVisibility() && !GV->hasProtectedVisibility() &&
|
|
|
|
!GV->hasLocalLinkage())
|
|
|
|
O << "@PLT";
|
|
|
|
|
2010-04-04 00:28:33 +02:00
|
|
|
printOffset(MO.getOffset(), O);
|
2009-07-16 16:16:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
case MachineOperand::MO_ExternalSymbol: {
|
2009-08-22 23:43:10 +02:00
|
|
|
std::string Name(MAI->getGlobalPrefix());
|
2009-07-16 16:16:05 +02:00
|
|
|
Name += MO.getSymbolName();
|
|
|
|
O << Name;
|
|
|
|
|
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_)
|
|
|
|
O << "@PLT";
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
assert(0 && "Not implemented yet!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-16 15:27:25 +02:00
|
|
|
void SystemZAsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
|
2010-04-04 06:47:45 +02:00
|
|
|
raw_ostream &O, const char *Modifier) {
|
2009-07-16 15:29:38 +02:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNum);
|
|
|
|
switch (MO.getType()) {
|
2009-07-16 16:04:01 +02:00
|
|
|
case MachineOperand::MO_Register: {
|
2009-07-16 15:29:38 +02:00
|
|
|
assert (TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
|
|
|
|
"Virtual registers should be already mapped!");
|
2009-07-16 16:04:01 +02:00
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (Modifier && strncmp(Modifier, "subreg", 6) == 0) {
|
|
|
|
if (strncmp(Modifier + 7, "even", 4) == 0)
|
|
|
|
Reg = TRI->getSubReg(Reg, SystemZ::SUBREG_EVEN);
|
|
|
|
else if (strncmp(Modifier + 7, "odd", 3) == 0)
|
|
|
|
Reg = TRI->getSubReg(Reg, SystemZ::SUBREG_ODD);
|
|
|
|
else
|
|
|
|
assert(0 && "Invalid subreg modifier");
|
|
|
|
}
|
|
|
|
|
2009-09-13 22:31:40 +02:00
|
|
|
O << '%' << getRegisterName(Reg);
|
2009-07-16 15:29:38 +02:00
|
|
|
return;
|
2009-07-16 16:04:01 +02:00
|
|
|
}
|
2009-07-16 15:29:38 +02:00
|
|
|
case MachineOperand::MO_Immediate:
|
2009-07-16 16:01:10 +02:00
|
|
|
O << MO.getImm();
|
2009-07-16 15:29:38 +02:00
|
|
|
return;
|
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
2010-03-13 22:04:28 +01:00
|
|
|
O << *MO.getMBB()->getSymbol();
|
2009-07-16 16:07:50 +02:00
|
|
|
return;
|
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
2009-08-22 23:43:10 +02:00
|
|
|
O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << '_'
|
2009-07-16 16:07:50 +02:00
|
|
|
<< MO.getIndex();
|
|
|
|
|
2009-07-16 15:29:38 +02:00
|
|
|
return;
|
2009-07-16 16:19:35 +02:00
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
2009-08-22 23:43:10 +02:00
|
|
|
O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
|
2009-07-16 16:19:35 +02:00
|
|
|
<< MO.getIndex();
|
|
|
|
|
2010-04-04 00:28:33 +02:00
|
|
|
printOffset(MO.getOffset(), O);
|
2009-07-16 16:19:35 +02:00
|
|
|
break;
|
2010-01-16 02:17:26 +01:00
|
|
|
case MachineOperand::MO_GlobalAddress:
|
2010-03-12 22:19:23 +01:00
|
|
|
O << *Mang->getSymbol(MO.getGlobal());
|
2009-07-16 16:16:05 +02:00
|
|
|
break;
|
2009-07-16 15:50:21 +02:00
|
|
|
case MachineOperand::MO_ExternalSymbol: {
|
2010-01-17 22:43:43 +01:00
|
|
|
O << *GetExternalSymbolSymbol(MO.getSymbolName());
|
2009-07-16 16:16:05 +02:00
|
|
|
break;
|
2009-07-16 15:50:21 +02:00
|
|
|
}
|
2009-07-16 15:29:38 +02:00
|
|
|
default:
|
|
|
|
assert(0 && "Not implemented yet!");
|
|
|
|
}
|
2009-07-16 16:16:05 +02:00
|
|
|
|
|
|
|
switch (MO.getTargetFlags()) {
|
|
|
|
default:
|
2009-07-18 15:33:17 +02:00
|
|
|
llvm_unreachable("Unknown target flag on GV operand");
|
2009-07-16 16:16:05 +02:00
|
|
|
case SystemZII::MO_NO_FLAG:
|
|
|
|
break;
|
|
|
|
case SystemZII::MO_GOTENT: O << "@GOTENT"; break;
|
|
|
|
case SystemZII::MO_PLT: O << "@PLT"; break;
|
|
|
|
}
|
|
|
|
|
2010-04-04 00:28:33 +02:00
|
|
|
printOffset(MO.getOffset(), O);
|
2009-07-16 15:27:25 +02:00
|
|
|
}
|
2009-07-16 15:43:18 +02:00
|
|
|
|
|
|
|
void SystemZAsmPrinter::printRIAddrOperand(const MachineInstr *MI, int OpNum,
|
2010-04-04 06:47:45 +02:00
|
|
|
raw_ostream &O,
|
|
|
|
const char *Modifier) {
|
2009-07-16 15:43:18 +02:00
|
|
|
const MachineOperand &Base = MI->getOperand(OpNum);
|
|
|
|
|
|
|
|
// Print displacement operand.
|
2010-04-04 06:47:45 +02:00
|
|
|
printOperand(MI, OpNum+1, O);
|
2009-07-16 15:43:18 +02:00
|
|
|
|
|
|
|
// Print base operand (if any)
|
2009-07-16 15:44:00 +02:00
|
|
|
if (Base.getReg()) {
|
2009-07-16 15:43:18 +02:00
|
|
|
O << '(';
|
2010-04-04 06:47:45 +02:00
|
|
|
printOperand(MI, OpNum, O);
|
2009-07-16 15:43:18 +02:00
|
|
|
O << ')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-16 15:44:00 +02:00
|
|
|
void SystemZAsmPrinter::printRRIAddrOperand(const MachineInstr *MI, int OpNum,
|
2010-04-04 06:47:45 +02:00
|
|
|
raw_ostream &O,
|
|
|
|
const char *Modifier) {
|
2009-07-16 15:44:00 +02:00
|
|
|
const MachineOperand &Base = MI->getOperand(OpNum);
|
2009-07-16 15:48:42 +02:00
|
|
|
const MachineOperand &Index = MI->getOperand(OpNum+2);
|
2009-07-16 15:44:00 +02:00
|
|
|
|
|
|
|
// Print displacement operand.
|
2010-04-04 06:47:45 +02:00
|
|
|
printOperand(MI, OpNum+1, O);
|
2009-07-16 15:44:00 +02:00
|
|
|
|
|
|
|
// Print base operand (if any)
|
|
|
|
if (Base.getReg()) {
|
|
|
|
O << '(';
|
2010-04-04 06:47:45 +02:00
|
|
|
printOperand(MI, OpNum, O);
|
2009-07-16 15:44:00 +02:00
|
|
|
if (Index.getReg()) {
|
|
|
|
O << ',';
|
2010-04-04 06:47:45 +02:00
|
|
|
printOperand(MI, OpNum+2, O);
|
2009-07-16 15:44:00 +02:00
|
|
|
}
|
|
|
|
O << ')';
|
|
|
|
} else
|
|
|
|
assert(!Index.getReg() && "Should allocate base register first!");
|
|
|
|
}
|
|
|
|
|
2009-07-16 16:36:52 +02:00
|
|
|
// Force static initialization.
|
|
|
|
extern "C" void LLVMInitializeSystemZAsmPrinter() {
|
2009-07-25 08:49:55 +02:00
|
|
|
RegisterAsmPrinter<SystemZAsmPrinter> X(TheSystemZTarget);
|
2009-07-16 16:36:52 +02:00
|
|
|
}
|