2005-10-16 05:39:50 +00:00
|
|
|
//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2004-07-08 17:58:04 +00:00
|
|
|
// This file contains a printer that converts from our internal representation
|
|
|
|
// of machine-dependent LLVM code to PowerPC assembly language. This printer is
|
2004-07-28 20:18:53 +00:00
|
|
|
// the output mechanism used by `llc'.
|
2004-06-21 16:55:25 +00:00
|
|
|
//
|
2004-07-08 17:58:04 +00:00
|
|
|
// Documentation at http://developer.apple.com/documentation/DeveloperTools/
|
|
|
|
// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
|
2004-06-29 17:13:26 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-06-24 17:31:42 +00:00
|
|
|
#define DEBUG_TYPE "asmprinter"
|
2005-10-14 23:51:18 +00:00
|
|
|
#include "PPC.h"
|
2005-10-14 23:59:06 +00:00
|
|
|
#include "PPCTargetMachine.h"
|
2005-10-14 23:51:18 +00:00
|
|
|
#include "PPCSubtarget.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Assembly/Writer.h"
|
2004-08-16 23:25:21 +00:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2005-12-16 22:45:29 +00:00
|
|
|
#include "llvm/CodeGen/MachineDebugInfo.h"
|
2004-06-24 17:31:42 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
|
|
#include "llvm/Support/Mangler.h"
|
2004-09-04 14:51:26 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
2004-10-26 06:02:38 +00:00
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
2004-11-25 07:09:01 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2004-06-24 17:31:42 +00:00
|
|
|
#include <set>
|
2004-08-16 23:25:21 +00:00
|
|
|
using namespace llvm;
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
|
|
|
|
|
2005-11-14 18:52:46 +00:00
|
|
|
class PPCAsmPrinter : public AsmPrinter {
|
2005-12-11 07:45:47 +00:00
|
|
|
public:
|
2005-12-16 00:22:14 +00:00
|
|
|
std::set<std::string> FnStubs, GVStubs;
|
2005-11-14 18:52:46 +00:00
|
|
|
|
2005-10-14 23:37:35 +00:00
|
|
|
PPCAsmPrinter(std::ostream &O, TargetMachine &TM)
|
2005-11-21 08:14:07 +00:00
|
|
|
: AsmPrinter(O, TM) {}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
virtual const char *getPassName() const {
|
2004-09-04 05:00:00 +00:00
|
|
|
return "PowerPC Assembly Printer";
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
2005-10-16 05:39:50 +00:00
|
|
|
PPCTargetMachine &getTM() {
|
|
|
|
return static_cast<PPCTargetMachine&>(TM);
|
2004-08-16 23:25:21 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 22:42:00 +00:00
|
|
|
unsigned enumRegToMachineReg(unsigned enumReg) {
|
|
|
|
switch (enumReg) {
|
|
|
|
default: assert(0 && "Unhandled register!"); break;
|
|
|
|
case PPC::CR0: return 0;
|
|
|
|
case PPC::CR1: return 1;
|
|
|
|
case PPC::CR2: return 2;
|
|
|
|
case PPC::CR3: return 3;
|
|
|
|
case PPC::CR4: return 4;
|
|
|
|
case PPC::CR5: return 5;
|
|
|
|
case PPC::CR6: return 6;
|
|
|
|
case PPC::CR7: return 7;
|
|
|
|
}
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2004-08-14 22:09:10 +00:00
|
|
|
/// printInstruction - This method is automatically generated by tablegen
|
|
|
|
/// from the instruction set description. This method returns true if the
|
|
|
|
/// machine instruction was sufficiently described to print it, otherwise it
|
|
|
|
/// returns false.
|
|
|
|
bool printInstruction(const MachineInstr *MI);
|
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
void printMachineInstruction(const MachineInstr *MI);
|
2005-11-17 19:25:59 +00:00
|
|
|
void printOp(const MachineOperand &MO);
|
2004-08-14 23:27:29 +00:00
|
|
|
|
2005-11-30 18:54:35 +00:00
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo){
|
2004-08-14 23:27:29 +00:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
|
|
|
if (MO.getType() == MachineOperand::MO_MachineRegister) {
|
|
|
|
assert(MRegisterInfo::isPhysicalRegister(MO.getReg())&&"Not physreg??");
|
2005-08-22 22:00:02 +00:00
|
|
|
O << TM.getRegisterInfo()->get(MO.getReg()).Name;
|
2004-08-15 05:46:14 +00:00
|
|
|
} else if (MO.isImmediate()) {
|
|
|
|
O << MO.getImmedValue();
|
2004-08-14 23:27:29 +00:00
|
|
|
} else {
|
|
|
|
printOp(MO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-30 18:54:35 +00:00
|
|
|
void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2004-08-21 05:56:39 +00:00
|
|
|
unsigned char value = MI->getOperand(OpNo).getImmedValue();
|
2004-08-21 19:11:03 +00:00
|
|
|
assert(value <= 31 && "Invalid u5imm argument!");
|
2004-08-21 05:56:39 +00:00
|
|
|
O << (unsigned int)value;
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2004-08-30 02:28:06 +00:00
|
|
|
unsigned char value = MI->getOperand(OpNo).getImmedValue();
|
|
|
|
assert(value <= 63 && "Invalid u6imm argument!");
|
|
|
|
O << (unsigned int)value;
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2004-09-04 05:00:00 +00:00
|
|
|
O << (short)MI->getOperand(OpNo).getImmedValue();
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2004-08-15 05:20:16 +00:00
|
|
|
O << (unsigned short)MI->getOperand(OpNo).getImmedValue();
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2005-10-18 16:51:22 +00:00
|
|
|
O << (short)MI->getOperand(OpNo).getImmedValue()*4;
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
|
2004-09-04 05:00:00 +00:00
|
|
|
// Branches can take an immediate operand. This is used by the branch
|
|
|
|
// selection pass to print $+8, an eight byte displacement from the PC.
|
|
|
|
if (MI->getOperand(OpNo).isImmediate()) {
|
2005-04-10 01:48:29 +00:00
|
|
|
O << "$+" << MI->getOperand(OpNo).getImmedValue();
|
2004-09-04 05:00:00 +00:00
|
|
|
} else {
|
2005-11-17 19:16:08 +00:00
|
|
|
printOp(MI->getOperand(OpNo));
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
2004-09-02 08:13:00 +00:00
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
|
2005-11-17 19:25:59 +00:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
2005-11-17 19:40:30 +00:00
|
|
|
if (!PPCGenerateStaticCode) {
|
2005-12-16 00:22:14 +00:00
|
|
|
if (MO.getType() == MachineOperand::MO_GlobalAddress) {
|
|
|
|
GlobalValue *GV = MO.getGlobal();
|
|
|
|
if (((GV->isExternal() || GV->hasWeakLinkage() ||
|
|
|
|
GV->hasLinkOnceLinkage()))) {
|
|
|
|
// Dynamically-resolved functions need a stub for the function.
|
|
|
|
std::string Name = Mang->getValueName(GV);
|
|
|
|
FnStubs.insert(Name);
|
|
|
|
O << "L" << Name << "$stub";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2005-11-17 19:40:30 +00:00
|
|
|
if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
|
|
|
|
std::string Name(GlobalPrefix); Name += MO.getSymbolName();
|
|
|
|
FnStubs.insert(Name);
|
|
|
|
O << "L" << Name << "$stub";
|
|
|
|
return;
|
|
|
|
}
|
2005-11-17 19:25:59 +00:00
|
|
|
}
|
2005-11-17 19:40:30 +00:00
|
|
|
|
|
|
|
printOp(MI->getOperand(OpNo));
|
2005-11-17 19:16:08 +00:00
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
|
2005-11-16 00:48:01 +00:00
|
|
|
O << (int)MI->getOperand(OpNo).getImmedValue()*4;
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
|
2005-12-16 00:22:14 +00:00
|
|
|
O << "\"L" << getFunctionNumber() << "$pb\"\n";
|
|
|
|
O << "\"L" << getFunctionNumber() << "$pb\":";
|
2004-09-02 08:13:00 +00:00
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
|
2005-07-21 20:44:43 +00:00
|
|
|
if (MI->getOperand(OpNo).isImmediate()) {
|
2005-11-30 18:54:35 +00:00
|
|
|
printS16ImmOperand(MI, OpNo);
|
2005-07-21 20:44:43 +00:00
|
|
|
} else {
|
|
|
|
O << "ha16(";
|
|
|
|
printOp(MI->getOperand(OpNo));
|
|
|
|
if (PICEnabled)
|
2005-12-16 00:22:14 +00:00
|
|
|
O << "-\"L" << getFunctionNumber() << "$pb\")";
|
2005-07-21 20:44:43 +00:00
|
|
|
else
|
|
|
|
O << ')';
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
|
2004-09-04 05:00:00 +00:00
|
|
|
if (MI->getOperand(OpNo).isImmediate()) {
|
2005-11-30 18:54:35 +00:00
|
|
|
printS16ImmOperand(MI, OpNo);
|
2004-09-04 05:00:00 +00:00
|
|
|
} else {
|
|
|
|
O << "lo16(";
|
2004-11-25 07:09:01 +00:00
|
|
|
printOp(MI->getOperand(OpNo));
|
2005-07-21 20:44:43 +00:00
|
|
|
if (PICEnabled)
|
2005-12-16 00:22:14 +00:00
|
|
|
O << "-\"L" << getFunctionNumber() << "$pb\")";
|
2005-07-21 20:44:43 +00:00
|
|
|
else
|
|
|
|
O << ')';
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
|
2005-07-20 22:42:00 +00:00
|
|
|
unsigned CCReg = MI->getOperand(OpNo).getReg();
|
|
|
|
unsigned RegNo = enumRegToMachineReg(CCReg);
|
|
|
|
O << (0x80 >> RegNo);
|
|
|
|
}
|
2005-12-19 23:25:09 +00:00
|
|
|
// The new addressing mode printers, currently empty
|
|
|
|
void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printSymbolLo(MI, OpNo);
|
|
|
|
O << '(';
|
|
|
|
printOperand(MI, OpNo+1);
|
|
|
|
O << ')';
|
|
|
|
}
|
|
|
|
void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
|
Fix a couple of the FIXMEs, thanks to suggestion from Chris. This allows
us to load and store vectors directly at a pointer (offset of zero) by
using r0 as the base register. This also requires some asm printer work
to satisfy the darwin assembler.
For
void %foo(<4 x float> * %a) {
entry:
%tmp1 = load <4 x float> * %a;
%tmp2 = add <4 x float> %tmp1, %tmp1
store <4 x float> %tmp2, <4 x float> *%a
ret void
}
We now produce:
_foo:
lvx v0, 0, r3
vaddfp v0, v0, v0
stvx v0, 0, r3
blr
Instead of:
_foo:
li r2, 0
lvx v0, r2, r3
vaddfp v0, v0, v0
stvx v0, r2, r3
blr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24872 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-19 23:40:42 +00:00
|
|
|
// When used as the base register, r0 reads constant zero rather than
|
|
|
|
// the value contained in the register. For this reason, the darwin
|
|
|
|
// assembler requires that we print r0 as 0 (no r) when used as the base.
|
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
|
|
|
if (MO.getReg() == PPC::R0)
|
|
|
|
O << '0';
|
|
|
|
else
|
|
|
|
O << TM.getRegisterInfo()->get(MO.getReg()).Name;
|
2005-12-19 23:25:09 +00:00
|
|
|
O << ", ";
|
|
|
|
printOperand(MI, OpNo+1);
|
|
|
|
}
|
|
|
|
|
2005-04-21 23:30:14 +00:00
|
|
|
virtual bool runOnMachineFunction(MachineFunction &F) = 0;
|
2004-09-04 05:00:00 +00:00
|
|
|
virtual bool doFinalization(Module &M) = 0;
|
|
|
|
};
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-09-05 02:42:44 +00:00
|
|
|
/// DarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac OS
|
|
|
|
/// X
|
|
|
|
///
|
2005-10-14 23:37:35 +00:00
|
|
|
struct DarwinAsmPrinter : public PPCAsmPrinter {
|
2004-09-04 05:00:00 +00:00
|
|
|
|
|
|
|
DarwinAsmPrinter(std::ostream &O, TargetMachine &TM)
|
2005-10-14 23:37:35 +00:00
|
|
|
: PPCAsmPrinter(O, TM) {
|
2004-09-04 05:00:00 +00:00
|
|
|
CommentString = ";";
|
|
|
|
GlobalPrefix = "_";
|
2005-11-21 06:47:58 +00:00
|
|
|
PrivateGlobalPrefix = "L"; // Marker for constant pool idxs
|
2004-09-04 05:00:00 +00:00
|
|
|
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
|
|
|
Data64bitsDirective = 0; // we can't emit a 64-bit unit
|
|
|
|
AlignmentIsInBytes = false; // Alignment is by power of 2.
|
2005-11-21 08:26:15 +00:00
|
|
|
ConstantPoolSection = "\t.const\t";
|
2005-12-11 07:45:47 +00:00
|
|
|
LCOMMDirective = "\t.lcomm\t";
|
2005-12-13 06:32:50 +00:00
|
|
|
StaticCtorsSection = ".mod_init_func";
|
|
|
|
StaticDtorsSection = ".mod_term_func";
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Darwin PPC Assembly Printer";
|
|
|
|
}
|
2005-12-09 18:24:29 +00:00
|
|
|
|
2005-04-21 23:30:14 +00:00
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
2005-07-21 01:25:49 +00:00
|
|
|
bool doInitialization(Module &M);
|
2004-06-21 16:55:25 +00:00
|
|
|
bool doFinalization(Module &M);
|
|
|
|
};
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-09-05 02:42:44 +00:00
|
|
|
/// AIXAsmPrinter - PowerPC assembly printer, customized for AIX
|
|
|
|
///
|
2005-10-14 23:37:35 +00:00
|
|
|
struct AIXAsmPrinter : public PPCAsmPrinter {
|
2004-09-04 05:00:00 +00:00
|
|
|
/// Map for labels corresponding to global variables
|
|
|
|
///
|
|
|
|
std::map<const GlobalVariable*,std::string> GVToLabelMap;
|
|
|
|
|
|
|
|
AIXAsmPrinter(std::ostream &O, TargetMachine &TM)
|
2005-10-14 23:37:35 +00:00
|
|
|
: PPCAsmPrinter(O, TM) {
|
2004-09-04 05:00:00 +00:00
|
|
|
CommentString = "#";
|
2005-11-10 18:20:29 +00:00
|
|
|
GlobalPrefix = ".";
|
2004-09-04 05:00:00 +00:00
|
|
|
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
|
|
|
Data64bitsDirective = 0; // we can't emit a 64-bit unit
|
|
|
|
AlignmentIsInBytes = false; // Alignment is by power of 2.
|
2005-11-21 08:26:15 +00:00
|
|
|
ConstantPoolSection = "\t.const\t";
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "AIX PPC Assembly Printer";
|
|
|
|
}
|
|
|
|
|
2005-04-21 23:30:14 +00:00
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
2004-09-04 05:00:00 +00:00
|
|
|
bool doInitialization(Module &M);
|
|
|
|
bool doFinalization(Module &M);
|
|
|
|
};
|
2004-06-21 16:55:25 +00:00
|
|
|
} // end of anonymous namespace
|
|
|
|
|
2005-04-21 23:30:14 +00:00
|
|
|
/// createDarwinAsmPrinterPass - Returns a pass that prints the PPC assembly
|
|
|
|
/// code for a MachineFunction to the given output stream, in a format that the
|
2004-09-04 05:00:00 +00:00
|
|
|
/// Darwin assembler can deal with.
|
|
|
|
///
|
|
|
|
FunctionPass *llvm::createDarwinAsmPrinter(std::ostream &o, TargetMachine &tm) {
|
|
|
|
return new DarwinAsmPrinter(o, tm);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// createAIXAsmPrinterPass - Returns a pass that prints the PPC assembly code
|
2005-04-21 23:30:14 +00:00
|
|
|
/// for a MachineFunction to the given output stream, in a format that the
|
2004-09-04 05:00:00 +00:00
|
|
|
/// AIX 5L assembler can deal with.
|
|
|
|
///
|
|
|
|
FunctionPass *llvm::createAIXAsmPrinter(std::ostream &o, TargetMachine &tm) {
|
|
|
|
return new AIXAsmPrinter(o, tm);
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
// Include the auto-generated portion of the assembly writer
|
2005-10-14 23:37:35 +00:00
|
|
|
#include "PPCGenAsmWriter.inc"
|
2004-09-04 05:00:00 +00:00
|
|
|
|
2005-11-17 19:25:59 +00:00
|
|
|
void PPCAsmPrinter::printOp(const MachineOperand &MO) {
|
2004-06-21 16:55:25 +00:00
|
|
|
const MRegisterInfo &RI = *TM.getRegisterInfo();
|
|
|
|
int new_symbol;
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
switch (MO.getType()) {
|
|
|
|
case MachineOperand::MO_VirtualRegister:
|
|
|
|
if (Value *V = MO.getVRegValueOrNull()) {
|
|
|
|
O << "<" << V->getName() << ">";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// FALLTHROUGH
|
|
|
|
case MachineOperand::MO_MachineRegister:
|
2004-07-08 17:58:04 +00:00
|
|
|
case MachineOperand::MO_CCRegister:
|
2005-08-22 22:00:02 +00:00
|
|
|
O << RI.get(MO.getReg()).Name;
|
2004-06-24 23:51:00 +00:00
|
|
|
return;
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
case MachineOperand::MO_SignExtendedImmed:
|
|
|
|
case MachineOperand::MO_UnextendedImmed:
|
2004-07-28 00:00:48 +00:00
|
|
|
std::cerr << "printOp() does not handle immediate values\n";
|
|
|
|
abort();
|
2004-06-21 16:55:25 +00:00
|
|
|
return;
|
2004-07-28 00:00:48 +00:00
|
|
|
|
2004-07-08 17:58:04 +00:00
|
|
|
case MachineOperand::MO_PCRelativeDisp:
|
|
|
|
std::cerr << "Shouldn't use addPCDisp() when building PPC MachineInstrs";
|
|
|
|
abort();
|
|
|
|
return;
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
case MachineOperand::MO_MachineBasicBlock: {
|
|
|
|
MachineBasicBlock *MBBOp = MO.getMachineBasicBlock();
|
2005-11-21 08:14:07 +00:00
|
|
|
O << PrivateGlobalPrefix << "BB" << getFunctionNumber() << "_"
|
2005-11-21 07:41:05 +00:00
|
|
|
<< MBBOp->getNumber() << "\t; " << MBBOp->getBasicBlock()->getName();
|
2004-06-21 16:55:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-07-08 17:58:04 +00:00
|
|
|
|
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
2005-11-21 08:14:07 +00:00
|
|
|
O << PrivateGlobalPrefix << "CPI" << getFunctionNumber()
|
2005-11-21 06:47:58 +00:00
|
|
|
<< '_' << MO.getConstantPoolIndex();
|
2004-06-21 16:55:25 +00:00
|
|
|
return;
|
2004-07-08 17:58:04 +00:00
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
2005-12-16 00:22:14 +00:00
|
|
|
// Computing the address of an external symbol, not calling it.
|
|
|
|
if (!PPCGenerateStaticCode) {
|
|
|
|
std::string Name(GlobalPrefix); Name += MO.getSymbolName();
|
|
|
|
GVStubs.insert(Name);
|
|
|
|
O << "L" << Name << "$non_lazy_ptr";
|
|
|
|
return;
|
|
|
|
}
|
2005-03-30 01:45:43 +00:00
|
|
|
O << GlobalPrefix << MO.getSymbolName();
|
2004-07-08 17:58:04 +00:00
|
|
|
return;
|
2004-08-13 09:32:01 +00:00
|
|
|
case MachineOperand::MO_GlobalAddress: {
|
2005-12-16 00:22:14 +00:00
|
|
|
// Computing the address of a global symbol, not calling it.
|
2004-08-13 09:32:01 +00:00
|
|
|
GlobalValue *GV = MO.getGlobal();
|
|
|
|
std::string Name = Mang->getValueName(GV);
|
|
|
|
|
2004-10-17 23:01:34 +00:00
|
|
|
// External or weakly linked global variables need non-lazily-resolved stubs
|
2005-12-16 00:22:14 +00:00
|
|
|
if (!PPCGenerateStaticCode) {
|
|
|
|
if (((GV->isExternal() || GV->hasWeakLinkage() ||
|
|
|
|
GV->hasLinkOnceLinkage()))) {
|
2004-11-25 07:09:01 +00:00
|
|
|
GVStubs.insert(Name);
|
2005-12-16 00:22:14 +00:00
|
|
|
O << "L" << Name << "$non_lazy_ptr";
|
|
|
|
return;
|
|
|
|
}
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
2004-11-25 07:09:01 +00:00
|
|
|
|
2005-11-17 19:40:30 +00:00
|
|
|
O << Name;
|
2004-06-21 16:55:25 +00:00
|
|
|
return;
|
2004-08-13 09:32:01 +00:00
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
default:
|
2004-07-08 17:58:04 +00:00
|
|
|
O << "<unknown operand type: " << MO.getType() << ">";
|
2004-06-25 15:11:34 +00:00
|
|
|
return;
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-14 22:09:10 +00:00
|
|
|
/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
|
|
|
|
/// the current output stream.
|
2004-06-21 16:55:25 +00:00
|
|
|
///
|
2005-10-14 23:37:35 +00:00
|
|
|
void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
|
2004-08-14 22:09:10 +00:00
|
|
|
++EmittedInsts;
|
2005-10-14 22:44:13 +00:00
|
|
|
|
2005-04-05 18:19:50 +00:00
|
|
|
// Check for slwi/srwi mnemonics.
|
|
|
|
if (MI->getOpcode() == PPC::RLWINM) {
|
|
|
|
bool FoundMnemonic = false;
|
|
|
|
unsigned char SH = MI->getOperand(2).getImmedValue();
|
|
|
|
unsigned char MB = MI->getOperand(3).getImmedValue();
|
|
|
|
unsigned char ME = MI->getOperand(4).getImmedValue();
|
|
|
|
if (SH <= 31 && MB == 0 && ME == (31-SH)) {
|
|
|
|
O << "slwi "; FoundMnemonic = true;
|
|
|
|
}
|
|
|
|
if (SH <= 31 && MB == (32-SH) && ME == 31) {
|
|
|
|
O << "srwi "; FoundMnemonic = true;
|
|
|
|
SH = 32-SH;
|
|
|
|
}
|
|
|
|
if (FoundMnemonic) {
|
2005-11-30 18:54:35 +00:00
|
|
|
printOperand(MI, 0);
|
2005-04-21 23:30:14 +00:00
|
|
|
O << ", ";
|
2005-11-30 18:54:35 +00:00
|
|
|
printOperand(MI, 1);
|
2005-04-05 18:19:50 +00:00
|
|
|
O << ", " << (unsigned int)SH << "\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-08-14 22:09:10 +00:00
|
|
|
if (printInstruction(MI))
|
|
|
|
return; // Printer was automatically generated
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
assert(0 && "Unhandled instruction in asm writer!");
|
|
|
|
abort();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-21 07:57:37 +00:00
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
/// runOnMachineFunction - This uses the printMachineInstruction()
|
|
|
|
/// method to print assembly for each instruction.
|
|
|
|
///
|
|
|
|
bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
2005-11-21 07:51:23 +00:00
|
|
|
SetupMachineFunction(MF);
|
2004-09-04 05:00:00 +00:00
|
|
|
O << "\n\n";
|
2005-12-16 22:45:29 +00:00
|
|
|
|
|
|
|
// Print out dwarf file info
|
|
|
|
MachineDebugInfo &DebugInfo = MF.getDebugInfo();
|
|
|
|
std::vector<std::string> Sources = DebugInfo.getSourceFiles();
|
|
|
|
for (unsigned i = 0, N = Sources.size(); i < N; i++) {
|
|
|
|
O << "\t; .file\t" << (i + 1) << "," << "\"" << Sources[i] << "\"" << "\n";
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
|
|
|
|
// Print out constants referenced by the function
|
2005-11-21 08:26:15 +00:00
|
|
|
EmitConstantPool(MF.getConstantPool());
|
2004-09-04 05:00:00 +00:00
|
|
|
|
|
|
|
// Print out labels for the function.
|
2005-11-14 18:52:46 +00:00
|
|
|
const Function *F = MF.getFunction();
|
2005-12-16 00:22:14 +00:00
|
|
|
switch (F->getLinkage()) {
|
|
|
|
default: assert(0 && "Unknown linkage type!");
|
|
|
|
case Function::InternalLinkage: // Symbols default to internal.
|
|
|
|
SwitchSection(".text", F);
|
|
|
|
EmitAlignment(4, F);
|
|
|
|
break;
|
|
|
|
case Function::ExternalLinkage:
|
|
|
|
SwitchSection(".text", F);
|
|
|
|
EmitAlignment(4, F);
|
|
|
|
O << "\t.globl\t" << CurrentFnName << "\n";
|
|
|
|
break;
|
|
|
|
case Function::WeakLinkage:
|
|
|
|
case Function::LinkOnceLinkage:
|
|
|
|
SwitchSection(".section __TEXT,__textcoal_nt,coalesced,pure_instructions",
|
|
|
|
F);
|
2005-10-28 18:44:07 +00:00
|
|
|
O << "\t.globl\t" << CurrentFnName << "\n";
|
2005-12-16 00:22:14 +00:00
|
|
|
O << "\t.weak_definition\t" << CurrentFnName << "\n";
|
|
|
|
break;
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
O << CurrentFnName << ":\n";
|
|
|
|
|
|
|
|
// 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.
|
2005-08-21 19:09:33 +00:00
|
|
|
if (I != MF.begin()) {
|
2005-11-21 08:14:07 +00:00
|
|
|
O << PrivateGlobalPrefix << "BB" << getFunctionNumber() << '_'
|
2005-11-21 07:41:05 +00:00
|
|
|
<< I->getNumber() << ":\t";
|
2005-08-21 19:09:33 +00:00
|
|
|
if (!I->getBasicBlock()->getName().empty())
|
|
|
|
O << CommentString << " " << I->getBasicBlock()->getName();
|
|
|
|
O << "\n";
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
|
|
|
|
II != E; ++II) {
|
|
|
|
// Print the assembly for the instruction.
|
|
|
|
O << "\t";
|
|
|
|
printMachineInstruction(II);
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
|
|
|
|
// We didn't modify anything.
|
|
|
|
return false;
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-21 01:25:49 +00:00
|
|
|
bool DarwinAsmPrinter::doInitialization(Module &M) {
|
2005-08-05 22:05:03 +00:00
|
|
|
if (TM.getSubtarget<PPCSubtarget>().isGigaProcessor())
|
|
|
|
O << "\t.machine ppc970\n";
|
2005-07-21 01:25:49 +00:00
|
|
|
AsmPrinter::doInitialization(M);
|
2005-11-10 19:33:43 +00:00
|
|
|
|
|
|
|
// Darwin wants symbols to be quoted if they have complex names.
|
|
|
|
Mang->setUseQuotes(true);
|
2005-07-21 01:25:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
bool DarwinAsmPrinter::doFinalization(Module &M) {
|
2004-06-21 16:55:25 +00:00
|
|
|
const TargetData &TD = TM.getTargetData();
|
|
|
|
|
|
|
|
// Print out module-level global variables here.
|
2005-11-14 19:00:30 +00:00
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
2005-12-13 04:33:58 +00:00
|
|
|
I != E; ++I) {
|
|
|
|
if (!I->hasInitializer()) continue; // External global require no code
|
|
|
|
|
2005-12-13 06:32:50 +00:00
|
|
|
// Check to see if this is a special global used by LLVM, if so, emit it.
|
|
|
|
if (I->hasAppendingLinkage() && EmitSpecialLLVMGlobal(I))
|
|
|
|
continue;
|
2005-12-13 04:33:58 +00:00
|
|
|
|
|
|
|
O << '\n';
|
|
|
|
std::string name = Mang->getValueName(I);
|
|
|
|
Constant *C = I->getInitializer();
|
|
|
|
unsigned Size = TD.getTypeSize(C->getType());
|
|
|
|
unsigned Align = TD.getTypeAlignmentShift(C->getType());
|
|
|
|
|
|
|
|
if (C->isNullValue() && /* FIXME: Verify correct */
|
|
|
|
(I->hasInternalLinkage() || I->hasWeakLinkage() ||
|
|
|
|
I->hasLinkOnceLinkage())) {
|
|
|
|
SwitchSection(".data", I);
|
|
|
|
if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
|
|
|
|
if (I->hasInternalLinkage())
|
|
|
|
O << LCOMMDirective << name << "," << Size << "," << Align;
|
|
|
|
else
|
|
|
|
O << ".comm " << name << "," << Size;
|
|
|
|
O << "\t\t; '" << I->getName() << "'\n";
|
|
|
|
} else {
|
|
|
|
switch (I->getLinkage()) {
|
|
|
|
case GlobalValue::LinkOnceLinkage:
|
|
|
|
case GlobalValue::WeakLinkage:
|
2005-12-22 21:15:17 +00:00
|
|
|
O << "\t.globl " << name << '\n'
|
|
|
|
<< "\t.weak_definition " << name << '\n';
|
2005-12-16 00:22:14 +00:00
|
|
|
SwitchSection(".section __DATA,__datacoal_nt,coalesced", I);
|
2005-12-13 04:33:58 +00:00
|
|
|
break;
|
|
|
|
case GlobalValue::AppendingLinkage:
|
|
|
|
// FIXME: appending linkage variables should go into a section of
|
|
|
|
// their name or something. For now, just emit them as external.
|
|
|
|
case GlobalValue::ExternalLinkage:
|
|
|
|
// If external or appending, declare as a global symbol
|
|
|
|
O << "\t.globl " << name << "\n";
|
|
|
|
// FALL THROUGH
|
|
|
|
case GlobalValue::InternalLinkage:
|
2005-11-14 18:52:46 +00:00
|
|
|
SwitchSection(".data", I);
|
2005-12-13 04:33:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
std::cerr << "Unknown linkage type!";
|
|
|
|
abort();
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
2005-12-13 04:33:58 +00:00
|
|
|
|
|
|
|
EmitAlignment(Align, I);
|
|
|
|
O << name << ":\t\t\t\t; '" << I->getName() << "'\n";
|
|
|
|
EmitGlobalConstant(C);
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
2005-12-13 04:33:58 +00:00
|
|
|
}
|
2004-07-16 20:29:04 +00:00
|
|
|
|
|
|
|
// Output stubs for dynamically-linked functions
|
2005-12-13 04:33:58 +00:00
|
|
|
if (PICEnabled) {
|
|
|
|
for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
|
|
|
|
i != e; ++i) {
|
2005-12-16 00:22:14 +00:00
|
|
|
SwitchSection(".section __TEXT,__picsymbolstub1,symbol_stubs,"
|
|
|
|
"pure_instructions,32", 0);
|
2005-12-13 04:33:58 +00:00
|
|
|
EmitAlignment(2);
|
|
|
|
O << "L" << *i << "$stub:\n";
|
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\tmflr r0\n";
|
|
|
|
O << "\tbcl 20,31,L0$" << *i << "\n";
|
|
|
|
O << "L0$" << *i << ":\n";
|
|
|
|
O << "\tmflr r11\n";
|
|
|
|
O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
|
|
|
|
O << "\tmtlr r0\n";
|
|
|
|
O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr-L0$" << *i << ")(r11)\n";
|
|
|
|
O << "\tmtctr r12\n";
|
|
|
|
O << "\tbctr\n";
|
2005-12-16 00:22:14 +00:00
|
|
|
SwitchSection(".lazy_symbol_pointer", 0);
|
2005-12-13 04:33:58 +00:00
|
|
|
O << "L" << *i << "$lazy_ptr:\n";
|
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\t.long dyld_stub_binding_helper\n";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
|
|
|
|
i != e; ++i) {
|
2005-12-16 00:22:14 +00:00
|
|
|
SwitchSection(".section __TEXT,__symbol_stub1,symbol_stubs,"
|
|
|
|
"pure_instructions,16", 0);
|
2005-12-13 04:33:58 +00:00
|
|
|
EmitAlignment(4);
|
|
|
|
O << "L" << *i << "$stub:\n";
|
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\tlis r11,ha16(L" << *i << "$lazy_ptr)\n";
|
|
|
|
O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr)(r11)\n";
|
|
|
|
O << "\tmtctr r12\n";
|
|
|
|
O << "\tbctr\n";
|
2005-12-16 00:22:14 +00:00
|
|
|
SwitchSection(".lazy_symbol_pointer", 0);
|
2005-12-13 04:33:58 +00:00
|
|
|
O << "L" << *i << "$lazy_ptr:\n";
|
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\t.long dyld_stub_binding_helper\n";
|
2005-07-21 20:44:43 +00:00
|
|
|
}
|
2004-06-24 23:04:11 +00:00
|
|
|
}
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2004-07-16 20:29:04 +00:00
|
|
|
O << "\n";
|
|
|
|
|
2005-12-16 00:22:14 +00:00
|
|
|
// Output stubs for external and common global variables.
|
|
|
|
if (GVStubs.begin() != GVStubs.end()) {
|
|
|
|
SwitchSection(".non_lazy_symbol_pointer", 0);
|
|
|
|
for (std::set<std::string>::iterator I = GVStubs.begin(),
|
|
|
|
E = GVStubs.end(); I != E; ++I) {
|
|
|
|
O << "L" << *I << "$non_lazy_ptr:\n";
|
|
|
|
O << "\t.indirect_symbol " << *I << "\n";
|
|
|
|
O << "\t.long\t0\n";
|
2005-12-13 04:33:58 +00:00
|
|
|
}
|
2004-08-14 22:09:10 +00:00
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2005-11-01 00:12:36 +00:00
|
|
|
// Funny Darwin hack: This flag tells the linker that no global symbols
|
|
|
|
// contain code that falls through to other global symbols (e.g. the obvious
|
|
|
|
// implementation of multiple entry points). If this doesn't occur, the
|
|
|
|
// linker can safely perform dead code stripping. Since LLVM never generates
|
|
|
|
// code that does this, it is always safe to set.
|
|
|
|
O << "\t.subsections_via_symbols\n";
|
|
|
|
|
2004-08-16 23:25:21 +00:00
|
|
|
AsmPrinter::doFinalization(M);
|
2004-06-21 16:55:25 +00:00
|
|
|
return false; // success
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
|
|
|
|
/// runOnMachineFunction - This uses the printMachineInstruction()
|
|
|
|
/// method to print assembly for each instruction.
|
|
|
|
///
|
|
|
|
bool AIXAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
2005-11-21 08:02:41 +00:00
|
|
|
SetupMachineFunction(MF);
|
2004-09-04 05:00:00 +00:00
|
|
|
|
|
|
|
// Print out constants referenced by the function
|
2005-11-21 08:26:15 +00:00
|
|
|
EmitConstantPool(MF.getConstantPool());
|
2004-09-04 05:00:00 +00:00
|
|
|
|
|
|
|
// Print out header for the function.
|
|
|
|
O << "\t.csect .text[PR]\n"
|
|
|
|
<< "\t.align 2\n"
|
|
|
|
<< "\t.globl " << CurrentFnName << '\n'
|
|
|
|
<< "\t.globl ." << CurrentFnName << '\n'
|
|
|
|
<< "\t.csect " << CurrentFnName << "[DS],3\n"
|
|
|
|
<< CurrentFnName << ":\n"
|
|
|
|
<< "\t.llong ." << CurrentFnName << ", TOC[tc0], 0\n"
|
|
|
|
<< "\t.csect .text[PR]\n"
|
|
|
|
<< '.' << CurrentFnName << ":\n";
|
|
|
|
|
|
|
|
// 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.
|
2005-11-21 08:14:07 +00:00
|
|
|
O << PrivateGlobalPrefix << "BB" << getFunctionNumber() << '_'
|
|
|
|
<< I->getNumber()
|
2005-11-21 08:02:41 +00:00
|
|
|
<< ":\t" << CommentString << I->getBasicBlock()->getName() << '\n';
|
2004-09-04 05:00:00 +00:00
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
|
|
|
|
II != E; ++II) {
|
|
|
|
// Print the assembly for the instruction.
|
|
|
|
O << "\t";
|
|
|
|
printMachineInstruction(II);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
O << "LT.." << CurrentFnName << ":\n"
|
|
|
|
<< "\t.long 0\n"
|
|
|
|
<< "\t.byte 0,0,32,65,128,0,0,0\n"
|
|
|
|
<< "\t.long LT.." << CurrentFnName << "-." << CurrentFnName << '\n'
|
|
|
|
<< "\t.short 3\n"
|
|
|
|
<< "\t.byte \"" << CurrentFnName << "\"\n"
|
|
|
|
<< "\t.align 2\n";
|
|
|
|
|
|
|
|
// We didn't modify anything.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AIXAsmPrinter::doInitialization(Module &M) {
|
2005-11-14 18:52:46 +00:00
|
|
|
SwitchSection("", 0);
|
2004-09-04 05:00:00 +00:00
|
|
|
const TargetData &TD = TM.getTargetData();
|
|
|
|
|
2005-04-21 23:30:14 +00:00
|
|
|
O << "\t.machine \"ppc64\"\n"
|
2004-09-04 05:00:00 +00:00
|
|
|
<< "\t.toc\n"
|
|
|
|
<< "\t.csect .text[PR]\n";
|
|
|
|
|
|
|
|
// Print out module-level global variables
|
2005-07-26 19:03:27 +00:00
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I) {
|
2004-09-04 05:00:00 +00:00
|
|
|
if (!I->hasInitializer())
|
|
|
|
continue;
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
std::string Name = I->getName();
|
|
|
|
Constant *C = I->getInitializer();
|
|
|
|
// N.B.: We are defaulting to writable strings
|
2005-04-21 23:30:14 +00:00
|
|
|
if (I->hasExternalLinkage()) {
|
2004-09-04 05:00:00 +00:00
|
|
|
O << "\t.globl " << Name << '\n'
|
|
|
|
<< "\t.csect .data[RW],3\n";
|
|
|
|
} else {
|
|
|
|
O << "\t.csect _global.rw_c[RW],3\n";
|
|
|
|
}
|
|
|
|
O << Name << ":\n";
|
2005-11-21 07:51:23 +00:00
|
|
|
EmitGlobalConstant(C);
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Output labels for globals
|
2005-03-15 04:54:21 +00:00
|
|
|
if (M.global_begin() != M.global_end()) O << "\t.toc\n";
|
2005-07-26 19:03:27 +00:00
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I) {
|
2004-09-04 05:00:00 +00:00
|
|
|
const GlobalVariable *GV = I;
|
|
|
|
// Do not output labels for unused variables
|
|
|
|
if (GV->isExternal() && GV->use_begin() == GV->use_end())
|
|
|
|
continue;
|
|
|
|
|
2005-11-21 08:14:07 +00:00
|
|
|
IncrementFunctionNumber();
|
2004-09-04 05:00:00 +00:00
|
|
|
std::string Name = GV->getName();
|
2005-11-21 08:14:07 +00:00
|
|
|
std::string Label = "LC.." + utostr(getFunctionNumber());
|
2004-09-04 05:00:00 +00:00
|
|
|
GVToLabelMap[GV] = Label;
|
|
|
|
O << Label << ":\n"
|
|
|
|
<< "\t.tc " << Name << "[TC]," << Name;
|
|
|
|
if (GV->isExternal()) O << "[RW]";
|
|
|
|
O << '\n';
|
2005-11-21 08:14:07 +00:00
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
|
2005-11-10 18:20:29 +00:00
|
|
|
AsmPrinter::doInitialization(M);
|
2004-09-04 05:00:00 +00:00
|
|
|
return false; // success
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AIXAsmPrinter::doFinalization(Module &M) {
|
|
|
|
const TargetData &TD = TM.getTargetData();
|
|
|
|
// Print out module-level global variables
|
2005-07-26 19:03:27 +00:00
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I) {
|
2004-09-04 05:00:00 +00:00
|
|
|
if (I->hasInitializer() || I->hasExternalLinkage())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::string Name = I->getName();
|
|
|
|
if (I->hasInternalLinkage()) {
|
|
|
|
O << "\t.lcomm " << Name << ",16,_global.bss_c";
|
|
|
|
} else {
|
|
|
|
O << "\t.comm " << Name << "," << TD.getTypeSize(I->getType())
|
2005-08-02 19:26:06 +00:00
|
|
|
<< "," << Log2_32((unsigned)TD.getTypeAlignment(I->getType()));
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
2005-11-21 08:02:41 +00:00
|
|
|
O << "\t\t" << CommentString << " ";
|
2005-10-03 07:08:36 +00:00
|
|
|
WriteAsOperand(O, I, false, true, &M);
|
2004-09-04 05:00:00 +00:00
|
|
|
O << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
O << "_section_.text:\n"
|
|
|
|
<< "\t.csect .data[RW],3\n"
|
|
|
|
<< "\t.llong _section_.text\n";
|
2005-11-10 18:20:29 +00:00
|
|
|
AsmPrinter::doFinalization(M);
|
2004-09-04 05:00:00 +00:00
|
|
|
return false; // success
|
|
|
|
}
|