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"
|
|
|
|
#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"
|
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
#include "llvm/Support/Mangler.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
STATISTIC(EmittedInsts, "Number of machine instrs printed");
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class VISIBILITY_HIDDEN SystemZAsmPrinter : public AsmPrinter {
|
|
|
|
public:
|
|
|
|
SystemZAsmPrinter(raw_ostream &O, SystemZTargetMachine &TM,
|
|
|
|
const TargetAsmInfo *TAI,
|
|
|
|
CodeGenOpt::Level OL, bool V)
|
|
|
|
: AsmPrinter(O, TM, TAI, OL, V) {}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "SystemZ Assembly Printer";
|
|
|
|
}
|
|
|
|
|
|
|
|
void printOperand(const MachineInstr *MI, int OpNum,
|
|
|
|
const char* Modifier = 0);
|
2009-07-16 15:43:18 +02:00
|
|
|
void printRIAddrOperand(const MachineInstr *MI, int OpNum,
|
|
|
|
const char* Modifier = 0);
|
2009-07-16 15:44:00 +02:00
|
|
|
void printRRIAddrOperand(const MachineInstr *MI, int OpNum,
|
|
|
|
const char* Modifier = 0);
|
2009-07-16 15:27:25 +02:00
|
|
|
bool printInstruction(const MachineInstr *MI); // autogenerated.
|
|
|
|
void printMachineInstruction(const MachineInstr * MI);
|
|
|
|
|
|
|
|
void emitFunctionHeader(const MachineFunction &MF);
|
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
|
|
|
bool doInitialization(Module &M);
|
|
|
|
bool doFinalization(Module &M);
|
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AsmPrinter::getAnalysisUsage(AU);
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end of anonymous namespace
|
|
|
|
|
|
|
|
#include "SystemZGenAsmWriter.inc"
|
|
|
|
|
|
|
|
/// createSystemZCodePrinterPass - Returns a pass that prints the SystemZ
|
|
|
|
/// assembly code for a MachineFunction to the given output stream,
|
|
|
|
/// using the given target machine description. This should work
|
|
|
|
/// regardless of whether the function is in SSA form.
|
|
|
|
///
|
|
|
|
FunctionPass *llvm::createSystemZCodePrinterPass(raw_ostream &o,
|
|
|
|
SystemZTargetMachine &tm,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
bool verbose) {
|
|
|
|
return new SystemZAsmPrinter(o, tm, tm.getTargetAsmInfo(), OptLevel, verbose);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SystemZAsmPrinter::doInitialization(Module &M) {
|
|
|
|
Mang = new Mangler(M, "", TAI->getPrivateGlobalPrefix());
|
|
|
|
return false; // success
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SystemZAsmPrinter::doFinalization(Module &M) {
|
|
|
|
return AsmPrinter::doFinalization(M);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemZAsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
|
|
|
|
const Function *F = MF.getFunction();
|
|
|
|
|
|
|
|
SwitchToSection(TAI->SectionForGlobal(F));
|
|
|
|
|
|
|
|
unsigned FnAlign = 4;
|
|
|
|
if (F->hasFnAttr(Attribute::OptimizeForSize))
|
|
|
|
FnAlign = 1;
|
|
|
|
|
|
|
|
EmitAlignment(FnAlign, F);
|
|
|
|
|
|
|
|
switch (F->getLinkage()) {
|
|
|
|
default: assert(0 && "Unknown linkage type!");
|
|
|
|
case Function::InternalLinkage: // Symbols default to internal.
|
|
|
|
case Function::PrivateLinkage:
|
|
|
|
break;
|
|
|
|
case Function::ExternalLinkage:
|
|
|
|
O << "\t.globl\t" << CurrentFnName << '\n';
|
|
|
|
break;
|
|
|
|
case Function::LinkOnceAnyLinkage:
|
|
|
|
case Function::LinkOnceODRLinkage:
|
|
|
|
case Function::WeakAnyLinkage:
|
|
|
|
case Function::WeakODRLinkage:
|
|
|
|
O << "\t.weak\t" << CurrentFnName << '\n';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
printVisibility(CurrentFnName, F->getVisibility());
|
|
|
|
|
|
|
|
O << "\t.type\t" << CurrentFnName << ",@function\n"
|
|
|
|
<< CurrentFnName << ":\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SystemZAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
|
|
|
SetupMachineFunction(MF);
|
|
|
|
O << "\n\n";
|
|
|
|
|
|
|
|
// Print the 'header' of function
|
|
|
|
emitFunctionHeader(MF);
|
|
|
|
|
|
|
|
// Print out code for the function.
|
|
|
|
for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
// Print a label for the basic block.
|
|
|
|
if (!VerboseAsm && (I->pred_empty() || I->isOnlyReachableByFallthrough())) {
|
|
|
|
// This is an entry block or a block that's only reachable via a
|
|
|
|
// fallthrough edge. In non-VerboseAsm mode, don't print the label.
|
|
|
|
} else {
|
|
|
|
printBasicBlockLabel(I, true, true, VerboseAsm);
|
|
|
|
O << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
|
|
|
|
II != E; ++II)
|
|
|
|
// Print the assembly for the instruction.
|
|
|
|
printMachineInstruction(II);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TAI->hasDotTypeDotSizeDirective())
|
|
|
|
O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << '\n';
|
|
|
|
|
|
|
|
O.flush();
|
|
|
|
|
|
|
|
// We didn't modify anything
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemZAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
|
|
|
|
++EmittedInsts;
|
|
|
|
|
|
|
|
// Call the autogenerated instruction printer routines.
|
|
|
|
if (printInstruction(MI))
|
|
|
|
return;
|
|
|
|
|
|
|
|
assert(0 && "Should not happen");
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemZAsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
|
2009-07-16 15:43:18 +02:00
|
|
|
const char* Modifier) {
|
2009-07-16 15:29:38 +02:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNum);
|
|
|
|
switch (MO.getType()) {
|
|
|
|
case MachineOperand::MO_Register:
|
|
|
|
assert (TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
|
|
|
|
"Virtual registers should be already mapped!");
|
|
|
|
O << '%' << TM.getRegisterInfo()->get(MO.getReg()).AsmName;
|
|
|
|
return;
|
|
|
|
case MachineOperand::MO_Immediate:
|
2009-07-16 16:00:42 +02:00
|
|
|
// FIXME: Temporary until generic tblgen stuff won't be resolved.
|
|
|
|
O << (int32_t)MO.getImm();
|
2009-07-16 15:29:38 +02:00
|
|
|
return;
|
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
|
|
|
printBasicBlockLabel(MO.getMBB());
|
|
|
|
return;
|
2009-07-16 15:50:21 +02:00
|
|
|
case MachineOperand::MO_GlobalAddress: {
|
|
|
|
std::string Name = Mang->getValueName(MO.getGlobal());
|
|
|
|
assert(MO.getOffset() == 0 && "No offsets allowed!");
|
|
|
|
|
|
|
|
O << Name;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
case MachineOperand::MO_ExternalSymbol: {
|
|
|
|
std::string Name(TAI->getGlobalPrefix());
|
|
|
|
Name += MO.getSymbolName();
|
|
|
|
O << Name;
|
|
|
|
return;
|
|
|
|
}
|
2009-07-16 15:29:38 +02:00
|
|
|
default:
|
|
|
|
assert(0 && "Not implemented yet!");
|
|
|
|
}
|
2009-07-16 15:27:25 +02:00
|
|
|
}
|
2009-07-16 15:43:18 +02:00
|
|
|
|
|
|
|
void SystemZAsmPrinter::printRIAddrOperand(const MachineInstr *MI, int OpNum,
|
|
|
|
const char* Modifier) {
|
|
|
|
const MachineOperand &Base = MI->getOperand(OpNum);
|
|
|
|
|
|
|
|
// Print displacement operand.
|
|
|
|
printOperand(MI, OpNum+1);
|
|
|
|
|
|
|
|
// 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 << '(';
|
|
|
|
printOperand(MI, OpNum);
|
|
|
|
O << ')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-16 15:44:00 +02:00
|
|
|
void SystemZAsmPrinter::printRRIAddrOperand(const MachineInstr *MI, int OpNum,
|
|
|
|
const char* Modifier) {
|
|
|
|
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.
|
2009-07-16 15:48:42 +02:00
|
|
|
printOperand(MI, OpNum+1);
|
2009-07-16 15:44:00 +02:00
|
|
|
|
|
|
|
// Print base operand (if any)
|
|
|
|
if (Base.getReg()) {
|
|
|
|
O << '(';
|
|
|
|
printOperand(MI, OpNum);
|
|
|
|
if (Index.getReg()) {
|
|
|
|
O << ',';
|
2009-07-16 15:48:42 +02:00
|
|
|
printOperand(MI, OpNum+2);
|
2009-07-16 15:44:00 +02:00
|
|
|
}
|
|
|
|
O << ')';
|
|
|
|
} else
|
|
|
|
assert(!Index.getReg() && "Should allocate base register first!");
|
|
|
|
}
|
|
|
|
|