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"
|
2004-06-21 16:55:25 +00:00
|
|
|
#include "llvm/CodeGen/MachineConstantPool.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"
|
2004-08-14 23:27:29 +00:00
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
#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-10-14 23:37:35 +00:00
|
|
|
struct PPCAsmPrinter : public AsmPrinter {
|
2004-07-21 20:11:11 +00:00
|
|
|
std::set<std::string> FnStubs, GVStubs, LinkOnceStubs;
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2005-10-14 23:37:35 +00:00
|
|
|
PPCAsmPrinter(std::ostream &O, TargetMachine &TM)
|
2004-09-04 05:00:00 +00:00
|
|
|
: AsmPrinter(O, TM), LabelNumber(0) {}
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2004-07-26 16:28:33 +00:00
|
|
|
/// Unique incrementer for label values for referencing Global values.
|
2004-06-29 17:13:26 +00:00
|
|
|
///
|
2004-07-26 16:28:33 +00:00
|
|
|
unsigned LabelNumber;
|
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);
|
2004-11-25 07:09:01 +00:00
|
|
|
void printOp(const MachineOperand &MO, bool IsCallOp = false);
|
2004-08-14 23:27:29 +00:00
|
|
|
|
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo, MVT::ValueType VT){
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-21 05:56:39 +00:00
|
|
|
void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
MVT::ValueType VT) {
|
|
|
|
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;
|
|
|
|
}
|
2004-08-30 02:28:06 +00:00
|
|
|
void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
MVT::ValueType VT) {
|
|
|
|
unsigned char value = MI->getOperand(OpNo).getImmedValue();
|
|
|
|
assert(value <= 63 && "Invalid u6imm argument!");
|
|
|
|
O << (unsigned int)value;
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
MVT::ValueType VT) {
|
|
|
|
O << (short)MI->getOperand(OpNo).getImmedValue();
|
|
|
|
}
|
2004-08-15 05:20:16 +00:00
|
|
|
void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
MVT::ValueType VT) {
|
|
|
|
O << (unsigned short)MI->getOperand(OpNo).getImmedValue();
|
|
|
|
}
|
2004-09-02 08:13:00 +00:00
|
|
|
void printBranchOperand(const MachineInstr *MI, unsigned OpNo,
|
2004-10-23 04:58:32 +00:00
|
|
|
MVT::ValueType VT) {
|
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-04-21 23:30:14 +00:00
|
|
|
printOp(MI->getOperand(OpNo),
|
2004-11-25 07:09:01 +00:00
|
|
|
TM.getInstrInfo()->isCall(MI->getOpcode()));
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
2004-09-02 08:13:00 +00:00
|
|
|
}
|
|
|
|
void printPICLabel(const MachineInstr *MI, unsigned OpNo,
|
2004-10-23 04:58:32 +00:00
|
|
|
MVT::ValueType VT) {
|
2004-09-02 08:13:00 +00:00
|
|
|
// FIXME: should probably be converted to cout.width and cout.fill
|
|
|
|
O << "\"L0000" << LabelNumber << "$pb\"\n";
|
|
|
|
O << "\"L0000" << LabelNumber << "$pb\":";
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
void printSymbolHi(const MachineInstr *MI, unsigned OpNo,
|
2004-10-23 04:58:32 +00:00
|
|
|
MVT::ValueType VT) {
|
2005-07-21 20:44:43 +00:00
|
|
|
if (MI->getOperand(OpNo).isImmediate()) {
|
|
|
|
printS16ImmOperand(MI, OpNo, VT);
|
|
|
|
} else {
|
|
|
|
O << "ha16(";
|
|
|
|
printOp(MI->getOperand(OpNo));
|
|
|
|
if (PICEnabled)
|
|
|
|
O << "-\"L0000" << LabelNumber << "$pb\")";
|
|
|
|
else
|
|
|
|
O << ')';
|
|
|
|
}
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
|
|
|
void printSymbolLo(const MachineInstr *MI, unsigned OpNo,
|
2004-10-23 04:58:32 +00:00
|
|
|
MVT::ValueType VT) {
|
2004-09-04 05:00:00 +00:00
|
|
|
if (MI->getOperand(OpNo).isImmediate()) {
|
2005-07-21 20:44:43 +00:00
|
|
|
printS16ImmOperand(MI, OpNo, VT);
|
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)
|
|
|
|
O << "-\"L0000" << LabelNumber << "$pb\")";
|
|
|
|
else
|
|
|
|
O << ')';
|
2004-09-04 05:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
2005-07-20 22:42:00 +00:00
|
|
|
void printcrbitm(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
MVT::ValueType VT) {
|
|
|
|
unsigned CCReg = MI->getOperand(OpNo).getReg();
|
|
|
|
unsigned RegNo = enumRegToMachineReg(CCReg);
|
|
|
|
O << (0x80 >> RegNo);
|
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
virtual void printConstantPool(MachineConstantPool *MCP) = 0;
|
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 = "_";
|
|
|
|
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.
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Darwin PPC Assembly Printer";
|
|
|
|
}
|
2004-08-15 05:20:16 +00:00
|
|
|
|
2004-06-21 16:55:25 +00:00
|
|
|
void printConstantPool(MachineConstantPool *MCP);
|
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 = "#";
|
|
|
|
GlobalPrefix = "_";
|
|
|
|
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-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";
|
|
|
|
}
|
|
|
|
|
|
|
|
void printConstantPool(MachineConstantPool *MCP);
|
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
|
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
// SwitchSection - Switch to the specified section of the executable if we are
|
|
|
|
// not already in it!
|
|
|
|
//
|
|
|
|
static void SwitchSection(std::ostream &OS, std::string &CurSection,
|
|
|
|
const char *NewSection) {
|
|
|
|
if (CurSection != NewSection) {
|
|
|
|
CurSection = NewSection;
|
|
|
|
if (!CurSection.empty())
|
|
|
|
OS << "\t" << NewSection << "\n";
|
|
|
|
}
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
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-10-14 23:37:35 +00:00
|
|
|
void PPCAsmPrinter::printOp(const MachineOperand &MO, bool IsCallOp) {
|
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-09-01 21:48:35 +00:00
|
|
|
O << "LBB" << Mang->getValueName(MBBOp->getParent()->getFunction())
|
2004-06-29 17:13:26 +00:00
|
|
|
<< "_" << MBBOp->getNumber() << "\t; "
|
2004-06-25 15:42:10 +00:00
|
|
|
<< MBBOp->getBasicBlock()->getName();
|
2004-06-21 16:55:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-07-08 17:58:04 +00:00
|
|
|
|
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
|
|
|
O << ".CPI" << CurrentFnName << "_" << MO.getConstantPoolIndex();
|
2004-06-21 16:55:25 +00:00
|
|
|
return;
|
2004-07-08 17:58:04 +00:00
|
|
|
|
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
2005-03-30 01:45:43 +00:00
|
|
|
if (IsCallOp) {
|
|
|
|
std::string Name(GlobalPrefix); Name += MO.getSymbolName();
|
|
|
|
FnStubs.insert(Name);
|
|
|
|
O << "L" << Name << "$stub";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
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: {
|
|
|
|
GlobalValue *GV = MO.getGlobal();
|
|
|
|
std::string Name = Mang->getValueName(GV);
|
|
|
|
|
|
|
|
// Dynamically-resolved functions need a stub for the function. Be
|
|
|
|
// wary however not to output $stub for external functions whose addresses
|
|
|
|
// are taken. Those should be emitted as $non_lazy_ptr below.
|
|
|
|
Function *F = dyn_cast<Function>(GV);
|
2004-11-27 04:45:11 +00:00
|
|
|
if (F && IsCallOp && F->isExternal()) {
|
2004-08-13 09:32:01 +00:00
|
|
|
FnStubs.insert(Name);
|
|
|
|
O << "L" << Name << "$stub";
|
|
|
|
return;
|
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-10-17 23:01:34 +00:00
|
|
|
// External or weakly linked global variables need non-lazily-resolved stubs
|
2004-11-27 04:45:11 +00:00
|
|
|
if ((GV->isExternal() || GV->hasWeakLinkage() || GV->hasLinkOnceLinkage())){
|
2004-11-25 07:09:01 +00:00
|
|
|
if (GV->hasLinkOnceLinkage())
|
|
|
|
LinkOnceStubs.insert(Name);
|
|
|
|
else
|
|
|
|
GVStubs.insert(Name);
|
2004-08-13 09:32:01 +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
|
|
|
|
2004-08-13 09:32:01 +00:00
|
|
|
O << Mang->getValueName(GV);
|
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-04-21 23:30:14 +00:00
|
|
|
printOperand(MI, 0, MVT::i64);
|
|
|
|
O << ", ";
|
|
|
|
printOperand(MI, 1, MVT::i64);
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// runOnMachineFunction - This uses the printMachineInstruction()
|
|
|
|
/// method to print assembly for each instruction.
|
|
|
|
///
|
|
|
|
bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
|
|
|
setupMachineFunction(MF);
|
|
|
|
O << "\n\n";
|
|
|
|
|
|
|
|
// Print out constants referenced by the function
|
|
|
|
printConstantPool(MF.getConstantPool());
|
|
|
|
|
|
|
|
// Print out labels for the function.
|
|
|
|
O << "\t.text\n";
|
2005-09-01 23:08:50 +00:00
|
|
|
emitAlignment(4);
|
2004-09-04 05:00:00 +00:00
|
|
|
O << "\t.globl\t" << CurrentFnName << "\n";
|
|
|
|
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-09-01 21:48:35 +00:00
|
|
|
O << "LBB" << CurrentFnName << "_" << 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
|
|
|
++LabelNumber;
|
|
|
|
|
|
|
|
// We didn't modify anything.
|
|
|
|
return false;
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
/// printConstantPool - Print to the current output stream assembly
|
|
|
|
/// representations of the constants in the constant pool MCP. This is
|
|
|
|
/// used to print out constants which have been "spilled to memory" by
|
|
|
|
/// the code generator.
|
|
|
|
///
|
|
|
|
void DarwinAsmPrinter::printConstantPool(MachineConstantPool *MCP) {
|
|
|
|
const std::vector<Constant*> &CP = MCP->getConstants();
|
|
|
|
const TargetData &TD = TM.getTargetData();
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
if (CP.empty()) return;
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = CP.size(); i != e; ++i) {
|
|
|
|
O << "\t.const\n";
|
2005-08-04 21:04:09 +00:00
|
|
|
// FIXME: force doubles to be naturally aligned. We should handle this
|
|
|
|
// more correctly in the future.
|
|
|
|
if (Type::DoubleTy == CP[i]->getType())
|
|
|
|
emitAlignment(3);
|
|
|
|
else
|
|
|
|
emitAlignment(TD.getTypeAlignmentShift(CP[i]->getType()));
|
2004-09-04 05:00:00 +00:00
|
|
|
O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t" << CommentString
|
|
|
|
<< *CP[i] << "\n";
|
|
|
|
emitGlobalConstant(CP[i]);
|
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);
|
|
|
|
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();
|
|
|
|
std::string CurSection;
|
|
|
|
|
|
|
|
// Print out module-level global variables here.
|
2005-03-15 04:54:21 +00:00
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
|
2004-06-21 16:55:25 +00:00
|
|
|
if (I->hasInitializer()) { // External global require no code
|
2004-09-22 04:40:25 +00:00
|
|
|
O << '\n';
|
2004-06-21 16:55:25 +00:00
|
|
|
std::string name = Mang->getValueName(I);
|
|
|
|
Constant *C = I->getInitializer();
|
|
|
|
unsigned Size = TD.getTypeSize(C->getType());
|
2004-08-17 19:26:03 +00:00
|
|
|
unsigned Align = TD.getTypeAlignmentShift(C->getType());
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2004-07-21 20:11:11 +00:00
|
|
|
if (C->isNullValue() && /* FIXME: Verify correct */
|
2005-04-21 23:30:14 +00:00
|
|
|
(I->hasInternalLinkage() || I->hasWeakLinkage() ||
|
2004-11-09 04:01:18 +00:00
|
|
|
I->hasLinkOnceLinkage())) {
|
2004-06-21 16:55:25 +00:00
|
|
|
SwitchSection(O, CurSection, ".data");
|
2004-12-12 20:36:19 +00:00
|
|
|
if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
|
2004-06-21 16:55:25 +00:00
|
|
|
if (I->hasInternalLinkage())
|
2004-12-12 20:31:00 +00:00
|
|
|
O << ".lcomm " << name << "," << Size << "," << Align;
|
2005-04-21 23:30:14 +00:00
|
|
|
else
|
2004-12-12 20:31:00 +00:00
|
|
|
O << ".comm " << name << "," << Size;
|
2005-10-03 07:08:36 +00:00
|
|
|
O << "\t\t; '" << I->getName() << "'\n";
|
2004-06-21 16:55:25 +00:00
|
|
|
} else {
|
|
|
|
switch (I->getLinkage()) {
|
|
|
|
case GlobalValue::LinkOnceLinkage:
|
2004-07-21 20:11:11 +00:00
|
|
|
O << ".section __TEXT,__textcoal_nt,coalesced,no_toc\n"
|
|
|
|
<< ".weak_definition " << name << '\n'
|
|
|
|
<< ".private_extern " << name << '\n'
|
|
|
|
<< ".section __DATA,__datacoal_nt,coalesced,no_toc\n";
|
|
|
|
LinkOnceStubs.insert(name);
|
2005-04-21 23:30:14 +00:00
|
|
|
break;
|
2005-07-26 19:03:27 +00:00
|
|
|
case GlobalValue::WeakLinkage:
|
|
|
|
O << ".weak_definition " << name << '\n'
|
|
|
|
<< ".private_extern " << name << '\n';
|
2004-06-21 16:55:25 +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:
|
2004-06-29 23:40:57 +00:00
|
|
|
SwitchSection(O, CurSection, ".data");
|
2004-06-21 16:55:25 +00:00
|
|
|
break;
|
2004-11-14 21:03:30 +00:00
|
|
|
case GlobalValue::GhostLinkage:
|
|
|
|
std::cerr << "Error: unmaterialized (GhostLinkage) function in asm!";
|
|
|
|
abort();
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
2004-08-17 19:26:03 +00:00
|
|
|
emitAlignment(Align);
|
2005-10-03 07:08:36 +00:00
|
|
|
O << name << ":\t\t\t\t; '" << I->getName() << "'\n";
|
2004-06-21 16:55:25 +00:00
|
|
|
emitGlobalConstant(C);
|
|
|
|
}
|
|
|
|
}
|
2004-07-16 20:29:04 +00:00
|
|
|
|
|
|
|
// Output stubs for dynamically-linked functions
|
2005-04-21 23:30:14 +00:00
|
|
|
for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
|
2004-07-16 20:29:04 +00:00
|
|
|
i != e; ++i)
|
2004-06-24 23:04:11 +00:00
|
|
|
{
|
2005-07-21 20:44:43 +00:00
|
|
|
if (PICEnabled) {
|
2004-07-23 16:08:20 +00:00
|
|
|
O << ".data\n";
|
|
|
|
O << ".section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32\n";
|
2004-08-17 19:26:03 +00:00
|
|
|
emitAlignment(2);
|
2004-06-24 23:04:11 +00:00
|
|
|
O << "L" << *i << "$stub:\n";
|
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\tmflr r0\n";
|
2004-07-23 16:08:20 +00:00
|
|
|
O << "\tbcl 20,31,L0$" << *i << "\n";
|
2004-06-24 23:04:11 +00:00
|
|
|
O << "L0$" << *i << ":\n";
|
|
|
|
O << "\tmflr r11\n";
|
|
|
|
O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
|
|
|
|
O << "\tmtlr r0\n";
|
2004-07-23 16:08:20 +00:00
|
|
|
O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr-L0$" << *i << ")(r11)\n";
|
2004-06-24 23:04:11 +00:00
|
|
|
O << "\tmtctr r12\n";
|
|
|
|
O << "\tbctr\n";
|
|
|
|
O << ".data\n";
|
|
|
|
O << ".lazy_symbol_pointer\n";
|
|
|
|
O << "L" << *i << "$lazy_ptr:\n";
|
2004-07-23 16:08:20 +00:00
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\t.long dyld_stub_binding_helper\n";
|
2005-07-21 20:44:43 +00:00
|
|
|
} else {
|
|
|
|
O << "\t.section __TEXT,__symbol_stub1,symbol_stubs,pure_instructions,16\n";
|
|
|
|
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";
|
|
|
|
O << "\t.lazy_symbol_pointer\n";
|
|
|
|
O << "L" << *i << "$lazy_ptr:\n";
|
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\t.long dyld_stub_binding_helper\n";
|
|
|
|
}
|
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";
|
|
|
|
|
|
|
|
// Output stubs for external global variables
|
|
|
|
if (GVStubs.begin() != GVStubs.end())
|
2004-07-23 16:08:20 +00:00
|
|
|
O << ".data\n.non_lazy_symbol_pointer\n";
|
2005-04-21 23:30:14 +00:00
|
|
|
for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end();
|
2004-07-16 20:29:04 +00:00
|
|
|
i != e; ++i) {
|
|
|
|
O << "L" << *i << "$non_lazy_ptr:\n";
|
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\t.long\t0\n";
|
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-08-14 22:09:10 +00:00
|
|
|
// Output stubs for link-once variables
|
|
|
|
if (LinkOnceStubs.begin() != LinkOnceStubs.end())
|
|
|
|
O << ".data\n.align 2\n";
|
2005-04-21 23:30:14 +00:00
|
|
|
for (std::set<std::string>::iterator i = LinkOnceStubs.begin(),
|
2004-08-14 22:09:10 +00:00
|
|
|
e = LinkOnceStubs.end(); i != e; ++i) {
|
|
|
|
O << "L" << *i << "$non_lazy_ptr:\n"
|
|
|
|
<< "\t.long\t" << *i << '\n';
|
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
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) {
|
|
|
|
CurrentFnName = MF.getFunction()->getName();
|
|
|
|
|
|
|
|
// Print out constants referenced by the function
|
|
|
|
printConstantPool(MF.getConstantPool());
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
O << "LBB" << CurrentFnName << "_" << I->getNumber() << ":\t# "
|
|
|
|
<< I->getBasicBlock()->getName() << "\n";
|
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
|
|
|
|
II != E; ++II) {
|
|
|
|
// Print the assembly for the instruction.
|
|
|
|
O << "\t";
|
|
|
|
printMachineInstruction(II);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++LabelNumber;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// printConstantPool - Print to the current output stream assembly
|
|
|
|
/// representations of the constants in the constant pool MCP. This is
|
|
|
|
/// used to print out constants which have been "spilled to memory" by
|
|
|
|
/// the code generator.
|
|
|
|
///
|
|
|
|
void AIXAsmPrinter::printConstantPool(MachineConstantPool *MCP) {
|
|
|
|
const std::vector<Constant*> &CP = MCP->getConstants();
|
|
|
|
const TargetData &TD = TM.getTargetData();
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-09-04 05:00:00 +00:00
|
|
|
if (CP.empty()) return;
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = CP.size(); i != e; ++i) {
|
|
|
|
O << "\t.const\n";
|
|
|
|
O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
|
|
|
|
<< "\n";
|
|
|
|
O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t;"
|
|
|
|
<< *CP[i] << "\n";
|
|
|
|
emitGlobalConstant(CP[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AIXAsmPrinter::doInitialization(Module &M) {
|
|
|
|
const TargetData &TD = TM.getTargetData();
|
|
|
|
std::string CurSection;
|
|
|
|
|
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";
|
|
|
|
emitGlobalConstant(C);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
std::string Name = GV->getName();
|
|
|
|
std::string Label = "LC.." + utostr(LabelNumber++);
|
|
|
|
GVToLabelMap[GV] = Label;
|
|
|
|
O << Label << ":\n"
|
|
|
|
<< "\t.tc " << Name << "[TC]," << Name;
|
|
|
|
if (GV->isExternal()) O << "[RW]";
|
|
|
|
O << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
Mang = new Mangler(M, ".");
|
|
|
|
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
|
|
|
}
|
|
|
|
O << "\t\t# ";
|
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";
|
|
|
|
|
|
|
|
delete Mang;
|
|
|
|
return false; // success
|
|
|
|
}
|