2005-10-16 13:39:50 +08:00
|
|
|
//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2004-07-09 01:58:04 +08: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-29 04:18:53 +08:00
|
|
|
// the output mechanism used by `llc'.
|
2004-06-22 00:55:25 +08:00
|
|
|
//
|
2004-07-09 01:58:04 +08:00
|
|
|
// Documentation at http://developer.apple.com/documentation/DeveloperTools/
|
|
|
|
// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
|
2004-06-30 01:13:26 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-06-25 01:31:42 +08:00
|
|
|
#define DEBUG_TYPE "asmprinter"
|
2005-10-15 07:51:18 +08:00
|
|
|
#include "PPC.h"
|
2006-11-18 06:10:59 +08:00
|
|
|
#include "PPCPredicates.h"
|
2005-10-15 07:59:06 +08:00
|
|
|
#include "PPCTargetMachine.h"
|
2005-10-15 07:51:18 +08:00
|
|
|
#include "PPCSubtarget.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Assembly/Writer.h"
|
2004-08-17 07:25:21 +08:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2006-01-04 21:52:30 +08:00
|
|
|
#include "llvm/CodeGen/DwarfWriter.h"
|
2007-01-27 05:22:28 +08:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2004-06-25 01:31:42 +08:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2008-01-26 14:51:24 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
#include "llvm/Support/Mangler.h"
|
2004-09-04 22:51:26 +08:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
2006-08-27 20:54:02 +08:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2006-09-07 02:34:40 +08:00
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2008-02-11 02:45:23 +08:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2004-11-25 15:09:01 +08:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2006-02-18 08:08:58 +08:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2004-06-25 01:31:42 +08:00
|
|
|
#include <set>
|
2004-08-17 07:25:21 +08:00
|
|
|
using namespace llvm;
|
2004-06-22 00:55:25 +08:00
|
|
|
|
2006-12-20 06:59:26 +08:00
|
|
|
STATISTIC(EmittedInsts, "Number of machine instrs printed");
|
2004-06-22 00:55:25 +08:00
|
|
|
|
2006-12-20 06:59:26 +08:00
|
|
|
namespace {
|
2006-09-07 02:34:40 +08:00
|
|
|
struct VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
|
2005-12-16 08:22:14 +08:00
|
|
|
std::set<std::string> FnStubs, GVStubs;
|
2006-09-21 01:07:15 +08:00
|
|
|
const PPCSubtarget &Subtarget;
|
2006-12-01 15:56:37 +08:00
|
|
|
|
2006-09-08 06:06:40 +08:00
|
|
|
PPCAsmPrinter(std::ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
|
2006-09-21 01:07:15 +08:00
|
|
|
: AsmPrinter(O, TM, T), Subtarget(TM.getSubtarget<PPCSubtarget>()) {
|
|
|
|
}
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2004-06-22 00:55:25 +08:00
|
|
|
virtual const char *getPassName() const {
|
2004-09-04 13:00:00 +08:00
|
|
|
return "PowerPC Assembly Printer";
|
2004-06-22 00:55:25 +08:00
|
|
|
}
|
|
|
|
|
2005-10-16 13:39:50 +08:00
|
|
|
PPCTargetMachine &getTM() {
|
|
|
|
return static_cast<PPCTargetMachine&>(TM);
|
2004-08-17 07:25:21 +08:00
|
|
|
}
|
|
|
|
|
2005-07-21 06:42:00 +08: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-15 06:09:10 +08: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-22 00:55:25 +08:00
|
|
|
void printMachineInstruction(const MachineInstr *MI);
|
2005-11-18 03:25:59 +08:00
|
|
|
void printOp(const MachineOperand &MO);
|
2006-12-21 04:56:46 +08:00
|
|
|
|
|
|
|
/// stripRegisterPrefix - This method strips the character prefix from a
|
|
|
|
/// register name so that only the number is left. Used by for linux asm.
|
2006-12-21 05:33:34 +08:00
|
|
|
const char *stripRegisterPrefix(const char *RegName) {
|
|
|
|
switch (RegName[0]) {
|
|
|
|
case 'r':
|
|
|
|
case 'f':
|
|
|
|
case 'v': return RegName + 1;
|
2006-12-21 05:35:00 +08:00
|
|
|
case 'c': if (RegName[1] == 'r') return RegName + 2;
|
2006-12-21 04:56:46 +08:00
|
|
|
}
|
2006-12-21 05:33:34 +08:00
|
|
|
|
|
|
|
return RegName;
|
2006-12-21 04:56:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// printRegister - Print register according to target requirements.
|
|
|
|
///
|
|
|
|
void printRegister(const MachineOperand &MO, bool R0AsZero) {
|
|
|
|
unsigned RegNo = MO.getReg();
|
2008-02-11 02:45:23 +08:00
|
|
|
assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
|
2006-12-21 04:56:46 +08:00
|
|
|
|
|
|
|
// If we should use 0 for R0.
|
|
|
|
if (R0AsZero && RegNo == PPC::R0) {
|
|
|
|
O << "0";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-02-27 05:11:01 +08:00
|
|
|
const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
|
2006-12-21 04:56:46 +08:00
|
|
|
// Linux assembler (Others?) does not take register mnemonics.
|
|
|
|
// FIXME - What about special registers used in mfspr/mtspr?
|
2006-12-21 05:33:34 +08:00
|
|
|
if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
|
|
|
|
O << RegName;
|
2006-12-21 04:56:46 +08:00
|
|
|
}
|
2004-08-15 07:27:29 +08:00
|
|
|
|
2006-02-02 06:38:46 +08:00
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo) {
|
2004-08-15 07:27:29 +08:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
2006-05-05 02:05:43 +08:00
|
|
|
if (MO.isRegister()) {
|
2006-12-21 04:56:46 +08:00
|
|
|
printRegister(MO, false);
|
2004-08-15 13:46:14 +08:00
|
|
|
} else if (MO.isImmediate()) {
|
2007-12-31 04:49:49 +08:00
|
|
|
O << MO.getImm();
|
2004-08-15 07:27:29 +08:00
|
|
|
} else {
|
|
|
|
printOp(MO);
|
|
|
|
}
|
|
|
|
}
|
2006-02-02 06:38:46 +08:00
|
|
|
|
|
|
|
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
2006-02-24 03:31:10 +08:00
|
|
|
unsigned AsmVariant, const char *ExtraCode);
|
2006-02-25 04:27:40 +08:00
|
|
|
bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant, const char *ExtraCode);
|
|
|
|
|
2006-02-02 06:38:46 +08:00
|
|
|
|
2006-03-25 14:12:06 +08:00
|
|
|
void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2007-12-31 04:49:49 +08:00
|
|
|
char value = MI->getOperand(OpNo).getImm();
|
2006-03-25 14:12:06 +08:00
|
|
|
value = (value << (32-5)) >> (32-5);
|
|
|
|
O << (int)value;
|
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2007-12-31 04:49:49 +08:00
|
|
|
unsigned char value = MI->getOperand(OpNo).getImm();
|
2004-08-22 03:11:03 +08:00
|
|
|
assert(value <= 31 && "Invalid u5imm argument!");
|
2004-08-21 13:56:39 +08:00
|
|
|
O << (unsigned int)value;
|
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2007-12-31 04:49:49 +08:00
|
|
|
unsigned char value = MI->getOperand(OpNo).getImm();
|
2004-08-30 10:28:06 +08:00
|
|
|
assert(value <= 63 && "Invalid u6imm argument!");
|
|
|
|
O << (unsigned int)value;
|
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2007-12-31 04:49:49 +08:00
|
|
|
O << (short)MI->getOperand(OpNo).getImm();
|
2004-09-04 13:00:00 +08:00
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2007-12-31 04:49:49 +08:00
|
|
|
O << (unsigned short)MI->getOperand(OpNo).getImm();
|
2004-08-15 13:20:16 +08:00
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
|
2006-11-17 05:45:30 +08:00
|
|
|
if (MI->getOperand(OpNo).isImmediate()) {
|
2007-12-31 04:49:49 +08:00
|
|
|
O << (short)(MI->getOperand(OpNo).getImm()*4);
|
2006-11-17 05:45:30 +08:00
|
|
|
} else {
|
|
|
|
O << "lo16(";
|
|
|
|
printOp(MI->getOperand(OpNo));
|
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_)
|
2007-10-14 13:57:21 +08:00
|
|
|
O << "-\"L" << getFunctionNumber() << "$pb\")";
|
2006-11-17 05:45:30 +08:00
|
|
|
else
|
|
|
|
O << ')';
|
|
|
|
}
|
2005-10-19 00:51:22 +08:00
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
|
2004-09-04 13:00:00 +08: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()) {
|
2007-12-31 04:49:49 +08:00
|
|
|
O << "$+" << MI->getOperand(OpNo).getImm()*4;
|
2004-09-04 13:00:00 +08:00
|
|
|
} else {
|
2005-11-18 03:16:08 +08:00
|
|
|
printOp(MI->getOperand(OpNo));
|
2004-09-04 13:00:00 +08:00
|
|
|
}
|
2004-09-02 16:13:00 +08:00
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
|
2005-11-18 03:25:59 +08:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
2006-02-23 04:19:42 +08:00
|
|
|
if (TM.getRelocationModel() != Reloc::Static) {
|
2005-12-16 08:22:14 +08:00
|
|
|
if (MO.getType() == MachineOperand::MO_GlobalAddress) {
|
|
|
|
GlobalValue *GV = MO.getGlobal();
|
2007-01-31 04:08:39 +08:00
|
|
|
if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
|
2008-05-15 04:12:51 +08:00
|
|
|
GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
|
2005-12-16 08:22:14 +08:00
|
|
|
// Dynamically-resolved functions need a stub for the function.
|
|
|
|
std::string Name = Mang->getValueName(GV);
|
|
|
|
FnStubs.insert(Name);
|
2008-05-20 05:38:18 +08:00
|
|
|
printSuffixedName(Name, "$stub");
|
2006-12-01 15:56:37 +08:00
|
|
|
if (GV->hasExternalWeakLinkage())
|
2006-12-18 11:37:18 +08:00
|
|
|
ExtWeakSymbols.insert(GV);
|
2005-12-16 08:22:14 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2005-11-18 03:40:30 +08:00
|
|
|
if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
|
2006-09-07 02:34:40 +08:00
|
|
|
std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
|
2005-11-18 03:40:30 +08:00
|
|
|
FnStubs.insert(Name);
|
2008-05-20 05:38:18 +08:00
|
|
|
printSuffixedName(Name, "$stub");
|
2005-11-18 03:40:30 +08:00
|
|
|
return;
|
|
|
|
}
|
2005-11-18 03:25:59 +08:00
|
|
|
}
|
2005-11-18 03:40:30 +08:00
|
|
|
|
|
|
|
printOp(MI->getOperand(OpNo));
|
2005-11-18 03:16:08 +08:00
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
|
2007-12-31 04:49:49 +08:00
|
|
|
O << (int)MI->getOperand(OpNo).getImm()*4;
|
2005-11-16 08:48:01 +08:00
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
|
2007-10-14 13:57:21 +08:00
|
|
|
O << "\"L" << getFunctionNumber() << "$pb\"\n";
|
|
|
|
O << "\"L" << getFunctionNumber() << "$pb\":";
|
2004-09-02 16:13:00 +08:00
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
|
2005-07-22 04:44:43 +08:00
|
|
|
if (MI->getOperand(OpNo).isImmediate()) {
|
2005-12-01 02:54:35 +08:00
|
|
|
printS16ImmOperand(MI, OpNo);
|
2005-07-22 04:44:43 +08:00
|
|
|
} else {
|
2007-03-03 13:29:51 +08:00
|
|
|
if (Subtarget.isDarwin()) O << "ha16(";
|
2005-07-22 04:44:43 +08:00
|
|
|
printOp(MI->getOperand(OpNo));
|
2006-07-27 05:12:04 +08:00
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_)
|
2007-10-14 13:57:21 +08:00
|
|
|
O << "-\"L" << getFunctionNumber() << "$pb\"";
|
2007-03-03 13:29:51 +08:00
|
|
|
if (Subtarget.isDarwin())
|
2005-07-22 04:44:43 +08:00
|
|
|
O << ')';
|
2007-03-03 13:29:51 +08:00
|
|
|
else
|
|
|
|
O << "@ha";
|
2005-07-22 04:44:43 +08:00
|
|
|
}
|
2004-09-04 13:00:00 +08:00
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
|
2004-09-04 13:00:00 +08:00
|
|
|
if (MI->getOperand(OpNo).isImmediate()) {
|
2005-12-01 02:54:35 +08:00
|
|
|
printS16ImmOperand(MI, OpNo);
|
2004-09-04 13:00:00 +08:00
|
|
|
} else {
|
2007-03-03 13:29:51 +08:00
|
|
|
if (Subtarget.isDarwin()) O << "lo16(";
|
2004-11-25 15:09:01 +08:00
|
|
|
printOp(MI->getOperand(OpNo));
|
2006-07-27 05:12:04 +08:00
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_)
|
2007-10-14 13:57:21 +08:00
|
|
|
O << "-\"L" << getFunctionNumber() << "$pb\"";
|
2007-03-03 13:29:51 +08:00
|
|
|
if (Subtarget.isDarwin())
|
2005-07-22 04:44:43 +08:00
|
|
|
O << ')';
|
2007-03-03 13:29:51 +08:00
|
|
|
else
|
|
|
|
O << "@l";
|
2004-09-04 13:00:00 +08:00
|
|
|
}
|
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
|
2005-07-21 06:42:00 +08:00
|
|
|
unsigned CCReg = MI->getOperand(OpNo).getReg();
|
|
|
|
unsigned RegNo = enumRegToMachineReg(CCReg);
|
|
|
|
O << (0x80 >> RegNo);
|
|
|
|
}
|
2006-02-25 04:27:40 +08:00
|
|
|
// The new addressing mode printers.
|
2005-12-20 07:25:09 +08:00
|
|
|
void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printSymbolLo(MI, OpNo);
|
|
|
|
O << '(';
|
2006-03-22 01:21:13 +08:00
|
|
|
if (MI->getOperand(OpNo+1).isRegister() &&
|
|
|
|
MI->getOperand(OpNo+1).getReg() == PPC::R0)
|
|
|
|
O << "0";
|
|
|
|
else
|
|
|
|
printOperand(MI, OpNo+1);
|
2005-12-20 07:25:09 +08:00
|
|
|
O << ')';
|
|
|
|
}
|
2006-03-22 13:26:03 +08:00
|
|
|
void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
if (MI->getOperand(OpNo).isImmediate())
|
|
|
|
printS16X4ImmOperand(MI, OpNo);
|
|
|
|
else
|
|
|
|
printSymbolLo(MI, OpNo);
|
|
|
|
O << '(';
|
|
|
|
if (MI->getOperand(OpNo+1).isRegister() &&
|
|
|
|
MI->getOperand(OpNo+1).getReg() == PPC::R0)
|
|
|
|
O << "0";
|
|
|
|
else
|
|
|
|
printOperand(MI, OpNo+1);
|
|
|
|
O << ')';
|
|
|
|
}
|
|
|
|
|
2005-12-20 07:25:09 +08:00
|
|
|
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
llvm-svn: 24872
2005-12-20 07:40:42 +08: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);
|
2006-12-21 04:56:46 +08:00
|
|
|
printRegister(MO, true);
|
2005-12-20 07:25:09 +08:00
|
|
|
O << ", ";
|
|
|
|
printOperand(MI, OpNo+1);
|
|
|
|
}
|
|
|
|
|
2006-11-04 13:27:39 +08:00
|
|
|
void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
const char *Modifier);
|
|
|
|
|
2005-04-22 07:30:14 +08:00
|
|
|
virtual bool runOnMachineFunction(MachineFunction &F) = 0;
|
2004-09-04 13:00:00 +08:00
|
|
|
virtual bool doFinalization(Module &M) = 0;
|
2007-02-22 06:47:38 +08:00
|
|
|
|
|
|
|
virtual void EmitExternalGlobal(const GlobalVariable *GV);
|
2004-09-04 13:00:00 +08:00
|
|
|
};
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2006-12-22 04:26:09 +08:00
|
|
|
/// LinuxAsmPrinter - PowerPC assembly printer, customized for Linux
|
|
|
|
struct VISIBILITY_HIDDEN LinuxAsmPrinter : public PPCAsmPrinter {
|
|
|
|
|
|
|
|
DwarfWriter DW;
|
2008-07-10 05:24:07 +08:00
|
|
|
MachineModuleInfo *MMI;
|
2006-12-22 04:26:09 +08:00
|
|
|
|
|
|
|
LinuxAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
|
|
|
|
const TargetAsmInfo *T)
|
2008-07-10 05:24:07 +08:00
|
|
|
: PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
|
2006-12-22 04:26:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Linux PPC Assembly Printer";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
|
|
|
bool doInitialization(Module &M);
|
|
|
|
bool doFinalization(Module &M);
|
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
2007-01-27 05:22:28 +08:00
|
|
|
AU.addRequired<MachineModuleInfo>();
|
2006-12-22 04:26:09 +08:00
|
|
|
PPCAsmPrinter::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getSectionForFunction - Return the section that we should emit the
|
|
|
|
/// specified function body into.
|
|
|
|
virtual std::string getSectionForFunction(const Function &F) const;
|
|
|
|
};
|
|
|
|
|
2004-09-05 10:42:44 +08:00
|
|
|
/// DarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac OS
|
|
|
|
/// X
|
2006-06-29 07:17:24 +08:00
|
|
|
struct VISIBILITY_HIDDEN DarwinAsmPrinter : public PPCAsmPrinter {
|
2006-01-04 21:52:30 +08:00
|
|
|
|
2006-09-07 02:34:40 +08:00
|
|
|
DwarfWriter DW;
|
2007-11-21 07:24:42 +08:00
|
|
|
MachineModuleInfo *MMI;
|
2004-09-04 13:00:00 +08:00
|
|
|
|
2006-09-08 06:06:40 +08:00
|
|
|
DarwinAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
|
|
|
|
const TargetAsmInfo *T)
|
2007-11-21 07:24:42 +08:00
|
|
|
: PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
|
2004-09-04 13:00:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Darwin PPC Assembly Printer";
|
|
|
|
}
|
2005-12-10 02:24:29 +08:00
|
|
|
|
2005-04-22 07:30:14 +08:00
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
2005-07-21 09:25:49 +08:00
|
|
|
bool doInitialization(Module &M);
|
2004-06-22 00:55:25 +08:00
|
|
|
bool doFinalization(Module &M);
|
2006-01-05 06:28:25 +08:00
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
2006-01-05 09:25:28 +08:00
|
|
|
AU.setPreservesAll();
|
2007-01-27 05:22:28 +08:00
|
|
|
AU.addRequired<MachineModuleInfo>();
|
2006-01-05 09:25:28 +08:00
|
|
|
PPCAsmPrinter::getAnalysisUsage(AU);
|
2006-01-05 06:28:25 +08:00
|
|
|
}
|
|
|
|
|
2006-10-05 10:42:20 +08:00
|
|
|
/// getSectionForFunction - Return the section that we should emit the
|
|
|
|
/// specified function body into.
|
|
|
|
virtual std::string getSectionForFunction(const Function &F) const;
|
2004-06-22 00:55:25 +08:00
|
|
|
};
|
|
|
|
} // end of anonymous namespace
|
|
|
|
|
2004-09-04 13:00:00 +08:00
|
|
|
// Include the auto-generated portion of the assembly writer
|
2005-10-15 07:37:35 +08:00
|
|
|
#include "PPCGenAsmWriter.inc"
|
2004-09-04 13:00:00 +08:00
|
|
|
|
2005-11-18 03:25:59 +08:00
|
|
|
void PPCAsmPrinter::printOp(const MachineOperand &MO) {
|
2004-06-22 00:55:25 +08:00
|
|
|
switch (MO.getType()) {
|
2006-05-05 01:21:20 +08:00
|
|
|
case MachineOperand::MO_Immediate:
|
2006-12-08 06:21:48 +08:00
|
|
|
cerr << "printOp() does not handle immediate values\n";
|
2004-07-28 08:00:48 +08:00
|
|
|
abort();
|
2004-06-22 00:55:25 +08:00
|
|
|
return;
|
2004-07-28 08:00:48 +08:00
|
|
|
|
2006-04-23 02:53:45 +08:00
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
2007-12-31 07:10:15 +08:00
|
|
|
printBasicBlockLabel(MO.getMBB());
|
2006-04-23 02:53:45 +08:00
|
|
|
return;
|
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
2007-10-14 13:57:21 +08:00
|
|
|
O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
|
2007-12-31 07:10:15 +08:00
|
|
|
<< '_' << MO.getIndex();
|
2006-04-23 02:53:45 +08:00
|
|
|
// FIXME: PIC relocation model
|
2004-06-22 00:55:25 +08:00
|
|
|
return;
|
2004-07-09 01:58:04 +08:00
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
2007-10-14 13:57:21 +08:00
|
|
|
O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
|
2007-12-31 07:10:15 +08:00
|
|
|
<< '_' << MO.getIndex();
|
2004-06-22 00:55:25 +08:00
|
|
|
return;
|
2004-07-09 01:58:04 +08:00
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
2005-12-16 08:22:14 +08:00
|
|
|
// Computing the address of an external symbol, not calling it.
|
2006-02-23 04:19:42 +08:00
|
|
|
if (TM.getRelocationModel() != Reloc::Static) {
|
2006-09-07 02:34:40 +08:00
|
|
|
std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
|
2005-12-16 08:22:14 +08:00
|
|
|
GVStubs.insert(Name);
|
2008-05-20 05:38:18 +08:00
|
|
|
printSuffixedName(Name, "$non_lazy_ptr");
|
2005-12-16 08:22:14 +08:00
|
|
|
return;
|
|
|
|
}
|
2006-09-07 02:34:40 +08:00
|
|
|
O << TAI->getGlobalPrefix() << MO.getSymbolName();
|
2004-07-09 01:58:04 +08:00
|
|
|
return;
|
2004-08-13 17:32:01 +08:00
|
|
|
case MachineOperand::MO_GlobalAddress: {
|
2005-12-16 08:22:14 +08:00
|
|
|
// Computing the address of a global symbol, not calling it.
|
2004-08-13 17:32:01 +08:00
|
|
|
GlobalValue *GV = MO.getGlobal();
|
|
|
|
std::string Name = Mang->getValueName(GV);
|
|
|
|
|
2004-10-18 07:01:34 +08:00
|
|
|
// External or weakly linked global variables need non-lazily-resolved stubs
|
2006-02-23 04:19:42 +08:00
|
|
|
if (TM.getRelocationModel() != Reloc::Static) {
|
2007-01-31 04:08:39 +08:00
|
|
|
if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
|
2008-05-15 04:12:51 +08:00
|
|
|
GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
|
2004-11-25 15:09:01 +08:00
|
|
|
GVStubs.insert(Name);
|
2008-05-20 05:38:18 +08:00
|
|
|
printSuffixedName(Name, "$non_lazy_ptr");
|
2008-05-17 04:09:25 +08:00
|
|
|
if (GV->hasExternalWeakLinkage())
|
|
|
|
ExtWeakSymbols.insert(GV);
|
2005-12-16 08:22:14 +08:00
|
|
|
return;
|
|
|
|
}
|
2004-06-22 00:55:25 +08:00
|
|
|
}
|
2005-11-18 03:40:30 +08:00
|
|
|
O << Name;
|
2006-12-01 15:56:37 +08:00
|
|
|
|
2007-05-04 00:39:48 +08:00
|
|
|
if (MO.getOffset() > 0)
|
|
|
|
O << "+" << MO.getOffset();
|
|
|
|
else if (MO.getOffset() < 0)
|
|
|
|
O << MO.getOffset();
|
|
|
|
|
2006-12-01 15:56:37 +08:00
|
|
|
if (GV->hasExternalWeakLinkage())
|
2006-12-18 11:37:18 +08:00
|
|
|
ExtWeakSymbols.insert(GV);
|
2004-06-22 00:55:25 +08:00
|
|
|
return;
|
2004-08-13 17:32:01 +08:00
|
|
|
}
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2004-06-22 00:55:25 +08:00
|
|
|
default:
|
2004-07-09 01:58:04 +08:00
|
|
|
O << "<unknown operand type: " << MO.getType() << ">";
|
2004-06-25 23:11:34 +08:00
|
|
|
return;
|
2004-06-22 00:55:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-22 06:47:38 +08:00
|
|
|
/// EmitExternalGlobal - In this case we need to use the indirect symbol.
|
|
|
|
///
|
|
|
|
void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
|
|
|
|
std::string Name = getGlobalLinkName(GV);
|
|
|
|
if (TM.getRelocationModel() != Reloc::Static) {
|
|
|
|
GVStubs.insert(Name);
|
2008-05-20 05:38:18 +08:00
|
|
|
printSuffixedName(Name, "$non_lazy_ptr");
|
2007-02-22 06:47:38 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
O << Name;
|
|
|
|
}
|
|
|
|
|
2006-02-24 03:31:10 +08:00
|
|
|
/// PrintAsmOperand - Print out an operand for an inline asm expression.
|
|
|
|
///
|
|
|
|
bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant,
|
|
|
|
const char *ExtraCode) {
|
|
|
|
// Does this asm operand have a single letter operand modifier?
|
|
|
|
if (ExtraCode && ExtraCode[0]) {
|
|
|
|
if (ExtraCode[1] != 0) return true; // Unknown modifier.
|
|
|
|
|
|
|
|
switch (ExtraCode[0]) {
|
|
|
|
default: return true; // Unknown modifier.
|
2007-01-25 10:52:50 +08:00
|
|
|
case 'c': // Don't print "$" before a global var name or constant.
|
|
|
|
// PPC never has a prefix.
|
|
|
|
printOperand(MI, OpNo);
|
|
|
|
return false;
|
2006-02-24 03:31:10 +08:00
|
|
|
case 'L': // Write second word of DImode reference.
|
|
|
|
// Verify that this operand has two consecutive registers.
|
|
|
|
if (!MI->getOperand(OpNo).isRegister() ||
|
|
|
|
OpNo+1 == MI->getNumOperands() ||
|
|
|
|
!MI->getOperand(OpNo+1).isRegister())
|
|
|
|
return true;
|
|
|
|
++OpNo; // Return the high-part.
|
|
|
|
break;
|
2007-04-25 06:51:03 +08:00
|
|
|
case 'I':
|
|
|
|
// Write 'i' if an integer constant, otherwise nothing. Used to print
|
|
|
|
// addi vs add, etc.
|
2007-09-15 04:33:02 +08:00
|
|
|
if (MI->getOperand(OpNo).isImmediate())
|
2007-04-25 06:51:03 +08:00
|
|
|
O << "i";
|
|
|
|
return false;
|
2006-02-24 03:31:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printOperand(MI, OpNo);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-02-25 04:27:40 +08:00
|
|
|
bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant,
|
|
|
|
const char *ExtraCode) {
|
|
|
|
if (ExtraCode && ExtraCode[0])
|
|
|
|
return true; // Unknown modifier.
|
2007-02-01 08:39:08 +08:00
|
|
|
if (MI->getOperand(OpNo).isRegister())
|
|
|
|
printMemRegReg(MI, OpNo);
|
|
|
|
else
|
|
|
|
printMemRegImm(MI, OpNo);
|
2006-02-25 04:27:40 +08:00
|
|
|
return false;
|
|
|
|
}
|
2006-02-24 03:31:10 +08:00
|
|
|
|
2006-11-04 13:27:39 +08:00
|
|
|
void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
const char *Modifier) {
|
|
|
|
assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
|
|
|
|
unsigned Code = MI->getOperand(OpNo).getImm();
|
|
|
|
if (!strcmp(Modifier, "cc")) {
|
|
|
|
switch ((PPC::Predicate)Code) {
|
|
|
|
case PPC::PRED_ALWAYS: return; // Don't print anything for always.
|
|
|
|
case PPC::PRED_LT: O << "lt"; return;
|
|
|
|
case PPC::PRED_LE: O << "le"; return;
|
|
|
|
case PPC::PRED_EQ: O << "eq"; return;
|
|
|
|
case PPC::PRED_GE: O << "ge"; return;
|
|
|
|
case PPC::PRED_GT: O << "gt"; return;
|
|
|
|
case PPC::PRED_NE: O << "ne"; return;
|
|
|
|
case PPC::PRED_UN: O << "un"; return;
|
|
|
|
case PPC::PRED_NU: O << "nu"; return;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
assert(!strcmp(Modifier, "reg") &&
|
|
|
|
"Need to specify 'cc' or 'reg' as predicate op modifier!");
|
|
|
|
// Don't print the register for 'always'.
|
|
|
|
if (Code == PPC::PRED_ALWAYS) return;
|
|
|
|
printOperand(MI, OpNo+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-15 06:09:10 +08:00
|
|
|
/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
|
|
|
|
/// the current output stream.
|
2004-06-22 00:55:25 +08:00
|
|
|
///
|
2005-10-15 07:37:35 +08:00
|
|
|
void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
|
2004-08-15 06:09:10 +08:00
|
|
|
++EmittedInsts;
|
2005-10-15 06:44:13 +08:00
|
|
|
|
2005-04-06 02:19:50 +08:00
|
|
|
// Check for slwi/srwi mnemonics.
|
|
|
|
if (MI->getOpcode() == PPC::RLWINM) {
|
|
|
|
bool FoundMnemonic = false;
|
2007-12-31 04:49:49 +08:00
|
|
|
unsigned char SH = MI->getOperand(2).getImm();
|
|
|
|
unsigned char MB = MI->getOperand(3).getImm();
|
|
|
|
unsigned char ME = MI->getOperand(4).getImm();
|
2005-04-06 02:19:50 +08:00
|
|
|
if (SH <= 31 && MB == 0 && ME == (31-SH)) {
|
2008-02-05 16:49:09 +08:00
|
|
|
O << "\tslwi "; FoundMnemonic = true;
|
2005-04-06 02:19:50 +08:00
|
|
|
}
|
|
|
|
if (SH <= 31 && MB == (32-SH) && ME == 31) {
|
2008-02-05 16:49:09 +08:00
|
|
|
O << "\tsrwi "; FoundMnemonic = true;
|
2005-04-06 02:19:50 +08:00
|
|
|
SH = 32-SH;
|
|
|
|
}
|
|
|
|
if (FoundMnemonic) {
|
2005-12-01 02:54:35 +08:00
|
|
|
printOperand(MI, 0);
|
2005-04-22 07:30:14 +08:00
|
|
|
O << ", ";
|
2005-12-01 02:54:35 +08:00
|
|
|
printOperand(MI, 1);
|
2005-04-06 02:19:50 +08:00
|
|
|
O << ", " << (unsigned int)SH << "\n";
|
|
|
|
return;
|
|
|
|
}
|
2006-06-21 07:18:58 +08:00
|
|
|
} else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
|
2006-02-08 14:56:40 +08:00
|
|
|
if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
|
2008-02-05 16:49:09 +08:00
|
|
|
O << "\tmr ";
|
2006-02-08 14:56:40 +08:00
|
|
|
printOperand(MI, 0);
|
|
|
|
O << ", ";
|
|
|
|
printOperand(MI, 1);
|
|
|
|
O << "\n";
|
|
|
|
return;
|
|
|
|
}
|
2006-11-18 09:23:56 +08:00
|
|
|
} else if (MI->getOpcode() == PPC::RLDICR) {
|
2007-12-31 04:49:49 +08:00
|
|
|
unsigned char SH = MI->getOperand(2).getImm();
|
|
|
|
unsigned char ME = MI->getOperand(3).getImm();
|
2006-11-18 09:23:56 +08:00
|
|
|
// rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
|
|
|
|
if (63-SH == ME) {
|
2008-02-05 16:49:09 +08:00
|
|
|
O << "\tsldi ";
|
2006-11-18 09:23:56 +08:00
|
|
|
printOperand(MI, 0);
|
|
|
|
O << ", ";
|
|
|
|
printOperand(MI, 1);
|
|
|
|
O << ", " << (unsigned int)SH << "\n";
|
|
|
|
return;
|
|
|
|
}
|
2005-04-06 02:19:50 +08:00
|
|
|
}
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2004-08-15 06:09:10 +08:00
|
|
|
if (printInstruction(MI))
|
|
|
|
return; // Printer was automatically generated
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2004-09-04 13:00:00 +08:00
|
|
|
assert(0 && "Unhandled instruction in asm writer!");
|
|
|
|
abort();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-12-22 04:26:09 +08:00
|
|
|
/// runOnMachineFunction - This uses the printMachineInstruction()
|
|
|
|
/// method to print assembly for each instruction.
|
|
|
|
///
|
|
|
|
bool LinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
|
|
|
|
|
|
|
SetupMachineFunction(MF);
|
|
|
|
O << "\n\n";
|
|
|
|
|
|
|
|
// Print out constants referenced by the function
|
|
|
|
EmitConstantPool(MF.getConstantPool());
|
|
|
|
|
|
|
|
// Print out labels for the function.
|
|
|
|
const Function *F = MF.getFunction();
|
|
|
|
SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
|
|
|
|
|
|
|
|
switch (F->getLinkage()) {
|
|
|
|
default: assert(0 && "Unknown linkage type!");
|
|
|
|
case Function::InternalLinkage: // Symbols default to internal.
|
|
|
|
break;
|
|
|
|
case Function::ExternalLinkage:
|
|
|
|
O << "\t.global\t" << CurrentFnName << '\n'
|
|
|
|
<< "\t.type\t" << CurrentFnName << ", @function\n";
|
|
|
|
break;
|
|
|
|
case Function::WeakLinkage:
|
|
|
|
case Function::LinkOnceLinkage:
|
|
|
|
O << "\t.global\t" << CurrentFnName << '\n';
|
|
|
|
O << "\t.weak\t" << CurrentFnName << '\n';
|
|
|
|
break;
|
|
|
|
}
|
2007-01-14 14:37:54 +08:00
|
|
|
|
|
|
|
if (F->hasHiddenVisibility())
|
|
|
|
if (const char *Directive = TAI->getHiddenDirective())
|
|
|
|
O << Directive << CurrentFnName << "\n";
|
|
|
|
|
2006-12-22 04:26:09 +08:00
|
|
|
EmitAlignment(2, F);
|
|
|
|
O << CurrentFnName << ":\n";
|
|
|
|
|
|
|
|
// Emit pre-function debug information.
|
|
|
|
DW.BeginFunction(&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 (I != MF.begin()) {
|
2008-02-28 08:43:03 +08:00
|
|
|
printBasicBlockLabel(I, true, true);
|
2006-12-22 04:26:09 +08:00
|
|
|
O << '\n';
|
|
|
|
}
|
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
|
|
|
|
II != E; ++II) {
|
|
|
|
// Print the assembly for the instruction.
|
|
|
|
printMachineInstruction(II);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << "\n";
|
|
|
|
|
|
|
|
// Print out jump tables referenced by the function.
|
|
|
|
EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
|
|
|
|
|
|
|
|
// Emit post-function debug information.
|
|
|
|
DW.EndFunction();
|
|
|
|
|
|
|
|
// We didn't modify anything.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LinuxAsmPrinter::doInitialization(Module &M) {
|
2007-07-26 03:33:14 +08:00
|
|
|
bool Result = AsmPrinter::doInitialization(M);
|
2006-12-22 04:26:09 +08:00
|
|
|
|
2008-07-10 05:24:07 +08:00
|
|
|
// Emit initial debug information.
|
|
|
|
DW.BeginModule(&M);
|
|
|
|
|
|
|
|
// AsmPrinter::doInitialization should have done this analysis.
|
|
|
|
MMI = getAnalysisToUpdate<MachineModuleInfo>();
|
|
|
|
assert(MMI);
|
|
|
|
DW.SetModuleInfo(MMI);
|
|
|
|
|
2006-12-22 04:26:09 +08:00
|
|
|
// GNU as handles section names wrapped in quotes
|
|
|
|
Mang->setUseQuotes(true);
|
|
|
|
|
|
|
|
SwitchToTextSection(TAI->getTextSection());
|
|
|
|
|
2007-07-26 03:33:14 +08:00
|
|
|
return Result;
|
2006-12-22 04:26:09 +08:00
|
|
|
}
|
|
|
|
|
2008-02-16 03:04:54 +08:00
|
|
|
/// PrintUnmangledNameSafely - Print out the printable characters in the name.
|
|
|
|
/// Don't print things like \n or \0.
|
|
|
|
static void PrintUnmangledNameSafely(const Value *V, std::ostream &OS) {
|
|
|
|
for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
|
|
|
|
Name != E; ++Name)
|
|
|
|
if (isprint(*Name))
|
|
|
|
OS << *Name;
|
|
|
|
}
|
|
|
|
|
2006-12-22 04:26:09 +08:00
|
|
|
bool LinuxAsmPrinter::doFinalization(Module &M) {
|
|
|
|
const TargetData *TD = TM.getTargetData();
|
2006-10-05 10:42:20 +08:00
|
|
|
|
2006-12-22 04:26:09 +08:00
|
|
|
// Print out module-level global variables here.
|
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (!I->hasInitializer()) continue; // External global require no code
|
|
|
|
|
|
|
|
// Check to see if this is a special global used by LLVM, if so, emit it.
|
|
|
|
if (EmitSpecialLLVMGlobal(I))
|
|
|
|
continue;
|
2007-01-14 14:37:54 +08:00
|
|
|
|
2006-12-22 04:26:09 +08:00
|
|
|
std::string name = Mang->getValueName(I);
|
2007-01-14 14:37:54 +08:00
|
|
|
|
|
|
|
if (I->hasHiddenVisibility())
|
|
|
|
if (const char *Directive = TAI->getHiddenDirective())
|
|
|
|
O << Directive << name << "\n";
|
|
|
|
|
2006-12-22 04:26:09 +08:00
|
|
|
Constant *C = I->getInitializer();
|
2007-11-05 08:04:43 +08:00
|
|
|
unsigned Size = TD->getABITypeSize(C->getType());
|
2006-12-22 04:26:09 +08:00
|
|
|
unsigned Align = TD->getPreferredAlignmentLog(I);
|
|
|
|
|
|
|
|
if (C->isNullValue() && /* FIXME: Verify correct */
|
2008-05-15 04:12:51 +08:00
|
|
|
!I->hasSection() && (I->hasCommonLinkage() ||
|
|
|
|
I->hasInternalLinkage() || I->hasWeakLinkage() ||
|
2007-09-21 08:41:19 +08:00
|
|
|
I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
|
2006-12-22 04:26:09 +08:00
|
|
|
if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
|
|
|
|
if (I->hasExternalLinkage()) {
|
|
|
|
O << "\t.global " << name << '\n';
|
|
|
|
O << "\t.type " << name << ", @object\n";
|
2007-11-05 01:32:10 +08:00
|
|
|
if (TAI->getBSSSection())
|
|
|
|
SwitchToDataSection(TAI->getBSSSection(), I);
|
2007-07-25 11:48:45 +08:00
|
|
|
O << name << ":\n";
|
|
|
|
O << "\t.zero " << Size << "\n";
|
2006-12-22 04:26:09 +08:00
|
|
|
} else if (I->hasInternalLinkage()) {
|
|
|
|
SwitchToDataSection("\t.data", I);
|
|
|
|
O << TAI->getLCOMMDirective() << name << "," << Size;
|
|
|
|
} else {
|
|
|
|
SwitchToDataSection("\t.data", I);
|
|
|
|
O << ".comm " << name << "," << Size;
|
|
|
|
}
|
2008-02-16 03:04:54 +08:00
|
|
|
O << "\t\t" << TAI->getCommentString() << " '";
|
|
|
|
PrintUnmangledNameSafely(I, O);
|
|
|
|
O << "'\n";
|
2006-12-22 04:26:09 +08:00
|
|
|
} else {
|
|
|
|
switch (I->getLinkage()) {
|
|
|
|
case GlobalValue::LinkOnceLinkage:
|
|
|
|
case GlobalValue::WeakLinkage:
|
2008-05-15 04:12:51 +08:00
|
|
|
case GlobalValue::CommonLinkage:
|
2006-12-22 04:26:09 +08:00
|
|
|
O << "\t.global " << name << '\n'
|
|
|
|
<< "\t.type " << name << ", @object\n"
|
|
|
|
<< "\t.weak " << name << '\n';
|
|
|
|
SwitchToDataSection("\t.data", I);
|
|
|
|
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.global " << name << "\n"
|
|
|
|
<< "\t.type " << name << ", @object\n";
|
|
|
|
// FALL THROUGH
|
|
|
|
case GlobalValue::InternalLinkage:
|
|
|
|
if (I->isConstant()) {
|
|
|
|
const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
|
|
|
|
if (TAI->getCStringSection() && CVA && CVA->isCString()) {
|
|
|
|
SwitchToDataSection(TAI->getCStringSection(), I);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: special handling for ".ctors" & ".dtors" sections
|
|
|
|
if (I->hasSection() &&
|
|
|
|
(I->getSection() == ".ctors" ||
|
|
|
|
I->getSection() == ".dtors")) {
|
|
|
|
std::string SectionName = ".section " + I->getSection()
|
|
|
|
+ ",\"aw\",@progbits";
|
|
|
|
SwitchToDataSection(SectionName.c_str());
|
|
|
|
} else {
|
2007-03-08 16:31:54 +08:00
|
|
|
if (I->isConstant() && TAI->getReadOnlySection())
|
|
|
|
SwitchToDataSection(TAI->getReadOnlySection(), I);
|
|
|
|
else
|
|
|
|
SwitchToDataSection(TAI->getDataSection(), I);
|
2006-12-22 04:26:09 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cerr << "Unknown linkage type!";
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
EmitAlignment(Align, I);
|
2008-02-16 03:04:54 +08:00
|
|
|
O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
|
|
|
|
PrintUnmangledNameSafely(I, O);
|
|
|
|
O << "'\n";
|
2006-12-22 04:26:09 +08:00
|
|
|
|
|
|
|
// If the initializer is a extern weak symbol, remember to emit the weak
|
|
|
|
// reference!
|
|
|
|
if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
|
|
|
|
if (GV->hasExternalWeakLinkage())
|
|
|
|
ExtWeakSymbols.insert(GV);
|
|
|
|
|
|
|
|
EmitGlobalConstant(C);
|
|
|
|
O << '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
// Emit initial debug information.
|
|
|
|
DW.EndModule();
|
|
|
|
|
2007-07-26 03:33:14 +08:00
|
|
|
return AsmPrinter::doFinalization(M);
|
2006-12-22 04:26:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string LinuxAsmPrinter::getSectionForFunction(const Function &F) const {
|
|
|
|
switch (F.getLinkage()) {
|
|
|
|
default: assert(0 && "Unknown linkage type!");
|
|
|
|
case Function::ExternalLinkage:
|
|
|
|
case Function::InternalLinkage: return TAI->getTextSection();
|
|
|
|
case Function::WeakLinkage:
|
|
|
|
case Function::LinkOnceLinkage:
|
|
|
|
return ".text";
|
|
|
|
}
|
|
|
|
}
|
2006-10-05 10:42:20 +08:00
|
|
|
|
|
|
|
std::string DarwinAsmPrinter::getSectionForFunction(const Function &F) const {
|
|
|
|
switch (F.getLinkage()) {
|
|
|
|
default: assert(0 && "Unknown linkage type!");
|
|
|
|
case Function::ExternalLinkage:
|
|
|
|
case Function::InternalLinkage: return TAI->getTextSection();
|
|
|
|
case Function::WeakLinkage:
|
|
|
|
case Function::LinkOnceLinkage:
|
2008-01-11 08:54:37 +08:00
|
|
|
return "\t.section __TEXT,__textcoal_nt,coalesced,pure_instructions";
|
2006-10-05 10:42:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-04 13:00:00 +08:00
|
|
|
/// runOnMachineFunction - This uses the printMachineInstruction()
|
|
|
|
/// method to print assembly for each instruction.
|
|
|
|
///
|
|
|
|
bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
2006-01-05 09:25:28 +08:00
|
|
|
|
2005-11-21 15:51:23 +08:00
|
|
|
SetupMachineFunction(MF);
|
2004-09-04 13:00:00 +08:00
|
|
|
O << "\n\n";
|
2007-11-21 07:24:42 +08:00
|
|
|
|
2004-09-04 13:00:00 +08:00
|
|
|
// Print out constants referenced by the function
|
2005-11-21 16:26:15 +08:00
|
|
|
EmitConstantPool(MF.getConstantPool());
|
2004-09-04 13:00:00 +08:00
|
|
|
|
|
|
|
// Print out labels for the function.
|
2005-11-15 02:52:46 +08:00
|
|
|
const Function *F = MF.getFunction();
|
2006-10-05 10:42:20 +08:00
|
|
|
SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
|
2006-10-05 08:35:50 +08:00
|
|
|
|
2005-12-16 08:22:14 +08:00
|
|
|
switch (F->getLinkage()) {
|
|
|
|
default: assert(0 && "Unknown linkage type!");
|
|
|
|
case Function::InternalLinkage: // Symbols default to internal.
|
|
|
|
break;
|
|
|
|
case Function::ExternalLinkage:
|
|
|
|
O << "\t.globl\t" << CurrentFnName << "\n";
|
|
|
|
break;
|
|
|
|
case Function::WeakLinkage:
|
|
|
|
case Function::LinkOnceLinkage:
|
2005-10-29 02:44:07 +08:00
|
|
|
O << "\t.globl\t" << CurrentFnName << "\n";
|
2005-12-16 08:22:14 +08:00
|
|
|
O << "\t.weak_definition\t" << CurrentFnName << "\n";
|
|
|
|
break;
|
|
|
|
}
|
2007-01-14 14:37:54 +08:00
|
|
|
|
|
|
|
if (F->hasHiddenVisibility())
|
|
|
|
if (const char *Directive = TAI->getHiddenDirective())
|
|
|
|
O << Directive << CurrentFnName << "\n";
|
|
|
|
|
2008-03-26 06:29:46 +08:00
|
|
|
EmitAlignment(OptimizeForSize ? 2 : 4, F);
|
2004-09-04 13:00:00 +08:00
|
|
|
O << CurrentFnName << ":\n";
|
|
|
|
|
2006-04-08 04:44:42 +08:00
|
|
|
// Emit pre-function debug information.
|
2006-06-23 20:51:53 +08:00
|
|
|
DW.BeginFunction(&MF);
|
2006-04-08 04:44:42 +08:00
|
|
|
|
2008-01-26 14:51:24 +08:00
|
|
|
// If the function is empty, then we need to emit *something*. Otherwise, the
|
|
|
|
// function's label might be associated with something that it wasn't meant to
|
|
|
|
// be associated with. We emit a noop in this situation.
|
|
|
|
MachineFunction::iterator I = MF.begin();
|
|
|
|
|
2008-01-26 17:03:52 +08:00
|
|
|
if (++I == MF.end() && MF.front().empty())
|
|
|
|
O << "\tnop\n";
|
2008-01-26 14:51:24 +08:00
|
|
|
|
2004-09-04 13:00:00 +08:00
|
|
|
// 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-22 03:09:33 +08:00
|
|
|
if (I != MF.begin()) {
|
2008-02-28 08:43:03 +08:00
|
|
|
printBasicBlockLabel(I, true, true);
|
2006-05-02 13:37:32 +08:00
|
|
|
O << '\n';
|
2005-08-22 03:09:33 +08:00
|
|
|
}
|
2008-01-26 14:51:24 +08:00
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
|
|
|
|
II != IE; ++II) {
|
2004-09-04 13:00:00 +08:00
|
|
|
// Print the assembly for the instruction.
|
|
|
|
printMachineInstruction(II);
|
2004-06-22 00:55:25 +08:00
|
|
|
}
|
|
|
|
}
|
2004-09-04 13:00:00 +08:00
|
|
|
|
2006-10-05 08:26:05 +08:00
|
|
|
// Print out jump tables referenced by the function.
|
2006-10-05 11:01:21 +08:00
|
|
|
EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
|
2006-10-05 08:26:05 +08:00
|
|
|
|
2006-01-04 21:52:30 +08:00
|
|
|
// Emit post-function debug information.
|
2006-03-24 02:09:44 +08:00
|
|
|
DW.EndFunction();
|
2006-10-05 08:24:46 +08:00
|
|
|
|
2004-09-04 13:00:00 +08:00
|
|
|
// We didn't modify anything.
|
|
|
|
return false;
|
2004-06-22 00:55:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-21 09:25:49 +08:00
|
|
|
bool DarwinAsmPrinter::doInitialization(Module &M) {
|
2008-03-26 05:45:14 +08:00
|
|
|
static const char *const CPUDirectives[] = {
|
2008-02-15 07:35:16 +08:00
|
|
|
"",
|
2006-12-13 04:57:08 +08:00
|
|
|
"ppc",
|
|
|
|
"ppc601",
|
|
|
|
"ppc602",
|
|
|
|
"ppc603",
|
|
|
|
"ppc7400",
|
|
|
|
"ppc750",
|
|
|
|
"ppc970",
|
|
|
|
"ppc64"
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned Directive = Subtarget.getDarwinDirective();
|
|
|
|
if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
|
|
|
|
Directive = PPC::DIR_970;
|
|
|
|
if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
|
|
|
|
Directive = PPC::DIR_7400;
|
|
|
|
if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
|
|
|
|
Directive = PPC::DIR_64;
|
|
|
|
assert(Directive <= PPC::DIR_64 && "Directive out of range.");
|
|
|
|
O << "\t.machine " << CPUDirectives[Directive] << "\n";
|
2006-12-13 00:07:33 +08:00
|
|
|
|
2007-07-26 03:33:14 +08:00
|
|
|
bool Result = AsmPrinter::doInitialization(M);
|
2005-11-11 03:33:43 +08:00
|
|
|
|
2008-07-10 04:43:39 +08:00
|
|
|
// Emit initial debug information.
|
|
|
|
DW.BeginModule(&M);
|
|
|
|
|
|
|
|
// We need this for Personality functions.
|
|
|
|
// AsmPrinter::doInitialization should have done this analysis.
|
|
|
|
MMI = getAnalysisToUpdate<MachineModuleInfo>();
|
|
|
|
assert(MMI);
|
|
|
|
DW.SetModuleInfo(MMI);
|
|
|
|
|
2005-11-11 03:33:43 +08:00
|
|
|
// Darwin wants symbols to be quoted if they have complex names.
|
|
|
|
Mang->setUseQuotes(true);
|
2006-01-04 21:52:30 +08:00
|
|
|
|
2006-11-29 02:21:52 +08:00
|
|
|
// Prime text sections so they are adjacent. This reduces the likelihood a
|
|
|
|
// large data or debug section causes a branch to exceed 16M limit.
|
2008-01-11 08:54:37 +08:00
|
|
|
SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
|
2006-11-29 02:21:52 +08:00
|
|
|
"pure_instructions");
|
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_) {
|
2008-01-11 08:54:37 +08:00
|
|
|
SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
|
2006-11-29 02:21:52 +08:00
|
|
|
"pure_instructions,32");
|
|
|
|
} else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
|
2008-01-11 08:54:37 +08:00
|
|
|
SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
|
2006-11-29 02:21:52 +08:00
|
|
|
"pure_instructions,16");
|
|
|
|
}
|
|
|
|
SwitchToTextSection(TAI->getTextSection());
|
|
|
|
|
2007-07-26 03:33:14 +08:00
|
|
|
return Result;
|
2005-07-21 09:25:49 +08:00
|
|
|
}
|
|
|
|
|
2004-09-04 13:00:00 +08:00
|
|
|
bool DarwinAsmPrinter::doFinalization(Module &M) {
|
2006-05-03 09:29:57 +08:00
|
|
|
const TargetData *TD = TM.getTargetData();
|
2004-06-22 00:55:25 +08:00
|
|
|
|
|
|
|
// Print out module-level global variables here.
|
2005-11-15 03:00:30 +08:00
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
2005-12-13 12:33:58 +08:00
|
|
|
I != E; ++I) {
|
|
|
|
if (!I->hasInitializer()) continue; // External global require no code
|
|
|
|
|
2005-12-13 14:32:50 +08:00
|
|
|
// Check to see if this is a special global used by LLVM, if so, emit it.
|
2007-01-30 16:04:53 +08:00
|
|
|
if (EmitSpecialLLVMGlobal(I)) {
|
|
|
|
if (TM.getRelocationModel() == Reloc::Static) {
|
|
|
|
if (I->getName() == "llvm.global_ctors")
|
|
|
|
O << ".reference .constructors_used\n";
|
|
|
|
else if (I->getName() == "llvm.global_dtors")
|
|
|
|
O << ".reference .destructors_used\n";
|
|
|
|
}
|
2005-12-13 14:32:50 +08:00
|
|
|
continue;
|
2007-01-30 16:04:53 +08:00
|
|
|
}
|
2005-12-13 12:33:58 +08:00
|
|
|
|
|
|
|
std::string name = Mang->getValueName(I);
|
2007-01-14 14:37:54 +08:00
|
|
|
|
|
|
|
if (I->hasHiddenVisibility())
|
|
|
|
if (const char *Directive = TAI->getHiddenDirective())
|
|
|
|
O << Directive << name << "\n";
|
|
|
|
|
2005-12-13 12:33:58 +08:00
|
|
|
Constant *C = I->getInitializer();
|
2007-03-08 09:25:25 +08:00
|
|
|
const Type *Type = C->getType();
|
2007-11-05 08:04:43 +08:00
|
|
|
unsigned Size = TD->getABITypeSize(Type);
|
2006-10-25 04:32:14 +08:00
|
|
|
unsigned Align = TD->getPreferredAlignmentLog(I);
|
2005-12-13 12:33:58 +08:00
|
|
|
|
|
|
|
if (C->isNullValue() && /* FIXME: Verify correct */
|
2008-05-15 04:12:51 +08:00
|
|
|
!I->hasSection() && (I->hasCommonLinkage() ||
|
|
|
|
I->hasInternalLinkage() || I->hasWeakLinkage() ||
|
2008-01-18 07:04:07 +08:00
|
|
|
I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
|
2005-12-13 12:33:58 +08:00
|
|
|
if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
|
2006-02-15 06:18:23 +08:00
|
|
|
if (I->hasExternalLinkage()) {
|
|
|
|
O << "\t.globl " << name << '\n';
|
|
|
|
O << "\t.zerofill __DATA, __common, " << name << ", "
|
|
|
|
<< Size << ", " << Align;
|
|
|
|
} else if (I->hasInternalLinkage()) {
|
2006-05-10 00:15:00 +08:00
|
|
|
SwitchToDataSection("\t.data", I);
|
2006-09-07 02:34:40 +08:00
|
|
|
O << TAI->getLCOMMDirective() << name << "," << Size << "," << Align;
|
2008-05-17 04:09:25 +08:00
|
|
|
} else if (!I->hasCommonLinkage()) {
|
|
|
|
O << "\t.globl " << name << "\n"
|
|
|
|
<< TAI->getWeakDefDirective() << name << "\n";
|
|
|
|
SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
|
|
|
|
EmitAlignment(Align, I);
|
|
|
|
O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
|
|
|
|
PrintUnmangledNameSafely(I, O);
|
|
|
|
O << "\n";
|
|
|
|
EmitGlobalConstant(C);
|
|
|
|
continue;
|
2006-02-15 06:18:23 +08:00
|
|
|
} else {
|
2006-05-10 00:15:00 +08:00
|
|
|
SwitchToDataSection("\t.data", I);
|
2005-12-13 12:33:58 +08:00
|
|
|
O << ".comm " << name << "," << Size;
|
2008-01-03 03:35:16 +08:00
|
|
|
// Darwin 9 and above support aligned common data.
|
|
|
|
if (Subtarget.isDarwin9())
|
|
|
|
O << "," << Align;
|
2006-02-15 06:18:23 +08:00
|
|
|
}
|
2008-02-16 03:04:54 +08:00
|
|
|
O << "\t\t" << TAI->getCommentString() << " '";
|
|
|
|
PrintUnmangledNameSafely(I, O);
|
|
|
|
O << "'\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
} else {
|
|
|
|
switch (I->getLinkage()) {
|
2006-12-01 22:37:39 +08:00
|
|
|
case GlobalValue::LinkOnceLinkage:
|
2005-12-13 12:33:58 +08:00
|
|
|
case GlobalValue::WeakLinkage:
|
2008-05-15 04:12:51 +08:00
|
|
|
case GlobalValue::CommonLinkage:
|
2005-12-23 05:15:17 +08:00
|
|
|
O << "\t.globl " << name << '\n'
|
|
|
|
<< "\t.weak_definition " << name << '\n';
|
2008-05-24 08:10:20 +08:00
|
|
|
if (!I->isConstant())
|
|
|
|
SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
|
|
|
|
else {
|
|
|
|
const ArrayType *AT = dyn_cast<ArrayType>(Type);
|
|
|
|
if (AT && AT->getElementType()==Type::Int8Ty)
|
|
|
|
SwitchToDataSection("\t.section __TEXT,__const_coal,coalesced", I);
|
|
|
|
else
|
|
|
|
SwitchToDataSection("\t.section __DATA,__const_coal,coalesced", I);
|
|
|
|
}
|
2005-12-13 12:33:58 +08: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:
|
2006-10-28 13:56:51 +08:00
|
|
|
if (I->isConstant()) {
|
2006-10-27 05:48:57 +08:00
|
|
|
const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
|
2006-10-28 13:56:51 +08:00
|
|
|
if (TAI->getCStringSection() && CVA && CVA->isCString()) {
|
2006-10-27 05:48:57 +08:00
|
|
|
SwitchToDataSection(TAI->getCStringSection(), I);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-01-23 08:58:14 +08:00
|
|
|
if (I->hasSection()) {
|
|
|
|
// Honor all section names on Darwin; ObjC uses this
|
|
|
|
std::string SectionName = ".section " + I->getSection();
|
|
|
|
SwitchToDataSection(SectionName.c_str());
|
|
|
|
} else if (!I->isConstant())
|
2007-03-08 09:25:25 +08:00
|
|
|
SwitchToDataSection(TAI->getDataSection(), I);
|
|
|
|
else {
|
|
|
|
// Read-only data.
|
2007-03-08 16:31:54 +08:00
|
|
|
bool HasReloc = C->ContainsRelocations();
|
|
|
|
if (HasReloc &&
|
2007-03-08 09:25:25 +08:00
|
|
|
TM.getRelocationModel() != Reloc::Static)
|
|
|
|
SwitchToDataSection("\t.const_data\n");
|
2007-03-08 16:31:54 +08:00
|
|
|
else if (!HasReloc && Size == 4 &&
|
2007-03-08 09:25:25 +08:00
|
|
|
TAI->getFourByteConstantSection())
|
|
|
|
SwitchToDataSection(TAI->getFourByteConstantSection(), I);
|
2007-03-08 16:31:54 +08:00
|
|
|
else if (!HasReloc && Size == 8 &&
|
2007-03-08 09:25:25 +08:00
|
|
|
TAI->getEightByteConstantSection())
|
|
|
|
SwitchToDataSection(TAI->getEightByteConstantSection(), I);
|
2007-03-08 16:31:54 +08:00
|
|
|
else if (!HasReloc && Size == 16 &&
|
2007-03-08 09:25:25 +08:00
|
|
|
TAI->getSixteenByteConstantSection())
|
|
|
|
SwitchToDataSection(TAI->getSixteenByteConstantSection(), I);
|
|
|
|
else if (TAI->getReadOnlySection())
|
|
|
|
SwitchToDataSection(TAI->getReadOnlySection(), I);
|
|
|
|
else
|
|
|
|
SwitchToDataSection(TAI->getDataSection(), I);
|
|
|
|
}
|
2005-12-13 12:33:58 +08:00
|
|
|
break;
|
|
|
|
default:
|
2006-12-08 06:21:48 +08:00
|
|
|
cerr << "Unknown linkage type!";
|
2005-12-13 12:33:58 +08:00
|
|
|
abort();
|
2004-06-22 00:55:25 +08:00
|
|
|
}
|
2005-12-13 12:33:58 +08:00
|
|
|
|
|
|
|
EmitAlignment(Align, I);
|
2008-02-16 03:04:54 +08:00
|
|
|
O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
|
|
|
|
PrintUnmangledNameSafely(I, O);
|
|
|
|
O << "'\n";
|
2006-12-01 17:13:26 +08:00
|
|
|
|
|
|
|
// If the initializer is a extern weak symbol, remember to emit the weak
|
|
|
|
// reference!
|
|
|
|
if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
|
|
|
|
if (GV->hasExternalWeakLinkage())
|
2006-12-18 11:37:18 +08:00
|
|
|
ExtWeakSymbols.insert(GV);
|
2006-12-01 17:13:26 +08:00
|
|
|
|
2005-12-13 12:33:58 +08:00
|
|
|
EmitGlobalConstant(C);
|
2006-01-21 09:35:26 +08:00
|
|
|
O << '\n';
|
2004-06-22 00:55:25 +08:00
|
|
|
}
|
2005-12-13 12:33:58 +08:00
|
|
|
}
|
2004-07-17 04:29:04 +08:00
|
|
|
|
2006-06-27 09:02:25 +08:00
|
|
|
bool isPPC64 = TD->getPointerSizeInBits() == 64;
|
|
|
|
|
2004-07-17 04:29:04 +08:00
|
|
|
// Output stubs for dynamically-linked functions
|
2006-07-27 05:12:04 +08:00
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_) {
|
2005-12-13 12:33:58 +08:00
|
|
|
for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
|
|
|
|
i != e; ++i) {
|
2008-01-11 08:54:37 +08:00
|
|
|
SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
|
2006-10-31 16:31:24 +08:00
|
|
|
"pure_instructions,32");
|
2006-06-27 09:02:25 +08:00
|
|
|
EmitAlignment(4);
|
2008-05-20 05:38:18 +08:00
|
|
|
std::string p = *i;
|
|
|
|
std::string L0p = (p[0]=='\"') ? "\"L0$" + p.substr(1) : "L0$" + p ;
|
|
|
|
printSuffixedName(p, "$stub");
|
|
|
|
O << ":\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
|
|
|
O << "\tmflr r0\n";
|
2008-05-20 05:38:18 +08:00
|
|
|
O << "\tbcl 20,31," << L0p << "\n";
|
|
|
|
O << L0p << ":\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
O << "\tmflr r11\n";
|
2008-05-20 05:38:18 +08:00
|
|
|
O << "\taddis r11,r11,ha16(";
|
|
|
|
printSuffixedName(p, "$lazy_ptr");
|
|
|
|
O << "-" << L0p << ")\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
O << "\tmtlr r0\n";
|
2006-06-27 09:02:25 +08:00
|
|
|
if (isPPC64)
|
2008-05-20 05:38:18 +08:00
|
|
|
O << "\tldu r12,lo16(";
|
2006-06-27 09:02:25 +08:00
|
|
|
else
|
2008-05-20 05:38:18 +08:00
|
|
|
O << "\tlwzu r12,lo16(";
|
|
|
|
printSuffixedName(p, "$lazy_ptr");
|
|
|
|
O << "-" << L0p << ")(r11)\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
O << "\tmtctr r12\n";
|
|
|
|
O << "\tbctr\n";
|
2006-10-31 16:31:24 +08:00
|
|
|
SwitchToDataSection(".lazy_symbol_pointer");
|
2008-05-20 05:38:18 +08:00
|
|
|
printSuffixedName(p, "$lazy_ptr");
|
|
|
|
O << ":\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
2006-06-27 09:02:25 +08:00
|
|
|
if (isPPC64)
|
|
|
|
O << "\t.quad dyld_stub_binding_helper\n";
|
|
|
|
else
|
|
|
|
O << "\t.long dyld_stub_binding_helper\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
|
|
|
|
i != e; ++i) {
|
2008-01-11 08:54:37 +08:00
|
|
|
SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
|
2006-10-31 16:31:24 +08:00
|
|
|
"pure_instructions,16");
|
2005-12-13 12:33:58 +08:00
|
|
|
EmitAlignment(4);
|
2008-05-20 05:38:18 +08:00
|
|
|
std::string p = *i;
|
|
|
|
printSuffixedName(p, "$stub");
|
|
|
|
O << ":\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
2008-05-20 05:38:18 +08:00
|
|
|
O << "\tlis r11,ha16(";
|
|
|
|
printSuffixedName(p, "$lazy_ptr");
|
|
|
|
O << ")\n";
|
2006-06-27 09:02:25 +08:00
|
|
|
if (isPPC64)
|
2008-05-20 05:38:18 +08:00
|
|
|
O << "\tldu r12,lo16(";
|
2006-06-27 09:02:25 +08:00
|
|
|
else
|
2008-05-20 05:38:18 +08:00
|
|
|
O << "\tlwzu r12,lo16(";
|
|
|
|
printSuffixedName(p, "$lazy_ptr");
|
|
|
|
O << ")(r11)\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
O << "\tmtctr r12\n";
|
|
|
|
O << "\tbctr\n";
|
2006-10-31 16:31:24 +08:00
|
|
|
SwitchToDataSection(".lazy_symbol_pointer");
|
2008-05-20 05:38:18 +08:00
|
|
|
printSuffixedName(p, "$lazy_ptr");
|
|
|
|
O << ":\n";
|
2005-12-13 12:33:58 +08:00
|
|
|
O << "\t.indirect_symbol " << *i << "\n";
|
2006-06-27 09:02:25 +08:00
|
|
|
if (isPPC64)
|
|
|
|
O << "\t.quad dyld_stub_binding_helper\n";
|
|
|
|
else
|
|
|
|
O << "\t.long dyld_stub_binding_helper\n";
|
2005-07-22 04:44:43 +08:00
|
|
|
}
|
2004-06-25 07:04:11 +08:00
|
|
|
}
|
2004-06-22 00:55:25 +08:00
|
|
|
|
2004-07-17 04:29:04 +08:00
|
|
|
O << "\n";
|
|
|
|
|
2008-04-02 08:25:04 +08:00
|
|
|
if (TAI->doesSupportExceptionHandling() && MMI) {
|
2007-11-21 07:24:42 +08:00
|
|
|
// Add the (possibly multiple) personalities to the set of global values.
|
2008-04-02 08:25:04 +08:00
|
|
|
// Only referenced functions get into the Personalities list.
|
2007-11-21 07:24:42 +08:00
|
|
|
const std::vector<Function *>& Personalities = MMI->getPersonalities();
|
|
|
|
|
|
|
|
for (std::vector<Function *>::const_iterator I = Personalities.begin(),
|
|
|
|
E = Personalities.end(); I != E; ++I)
|
|
|
|
if (*I) GVStubs.insert("_" + (*I)->getName());
|
|
|
|
}
|
|
|
|
|
2005-12-16 08:22:14 +08:00
|
|
|
// Output stubs for external and common global variables.
|
2007-10-04 03:26:29 +08:00
|
|
|
if (!GVStubs.empty()) {
|
2006-10-31 16:31:24 +08:00
|
|
|
SwitchToDataSection(".non_lazy_symbol_pointer");
|
2005-12-16 08:22:14 +08:00
|
|
|
for (std::set<std::string>::iterator I = GVStubs.begin(),
|
|
|
|
E = GVStubs.end(); I != E; ++I) {
|
2008-05-20 05:38:18 +08:00
|
|
|
std::string p = *I;
|
|
|
|
printSuffixedName(p, "$non_lazy_ptr");
|
|
|
|
O << ":\n";
|
2005-12-16 08:22:14 +08:00
|
|
|
O << "\t.indirect_symbol " << *I << "\n";
|
2006-06-28 04:20:53 +08:00
|
|
|
if (isPPC64)
|
|
|
|
O << "\t.quad\t0\n";
|
|
|
|
else
|
|
|
|
O << "\t.long\t0\n";
|
|
|
|
|
2005-12-13 12:33:58 +08:00
|
|
|
}
|
2004-08-15 06:09:10 +08:00
|
|
|
}
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2006-01-18 01:31:53 +08:00
|
|
|
// Emit initial debug information.
|
2006-03-24 02:09:44 +08:00
|
|
|
DW.EndModule();
|
2006-01-18 01:31:53 +08:00
|
|
|
|
2005-11-01 08:12:36 +08: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.
|
2006-09-21 01:12:19 +08:00
|
|
|
O << "\t.subsections_via_symbols\n";
|
2005-11-01 08:12:36 +08:00
|
|
|
|
2007-07-26 03:33:14 +08:00
|
|
|
return AsmPrinter::doFinalization(M);
|
2004-06-22 00:55:25 +08:00
|
|
|
}
|
2004-09-04 13:00:00 +08:00
|
|
|
|
2006-09-21 01:12:19 +08:00
|
|
|
|
|
|
|
|
2006-12-21 04:56:46 +08:00
|
|
|
/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
|
|
|
|
/// for a MachineFunction to the given output stream, in a format that the
|
2006-09-21 01:12:19 +08:00
|
|
|
/// Darwin assembler can deal with.
|
|
|
|
///
|
|
|
|
FunctionPass *llvm::createPPCAsmPrinterPass(std::ostream &o,
|
|
|
|
PPCTargetMachine &tm) {
|
2006-12-22 04:26:09 +08:00
|
|
|
const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
|
|
|
|
|
|
|
|
if (Subtarget->isDarwin()) {
|
|
|
|
return new DarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
|
|
|
|
} else {
|
|
|
|
return new LinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
|
|
|
|
}
|
2006-09-21 01:12:19 +08:00
|
|
|
}
|
|
|
|
|