2005-10-16 07:39:50 +02:00
|
|
|
//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
|
2005-04-22 01:30:14 +02:00
|
|
|
//
|
2004-06-21 18:55:25 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 01:30:14 +02:00
|
|
|
//
|
2004-06-21 18:55:25 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2004-07-08 19:58:04 +02: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 22:18:53 +02:00
|
|
|
// the output mechanism used by `llc'.
|
2004-06-21 18:55:25 +02:00
|
|
|
//
|
2004-07-08 19:58:04 +02:00
|
|
|
// Documentation at http://developer.apple.com/documentation/DeveloperTools/
|
|
|
|
// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
|
2004-06-29 19:13:26 +02:00
|
|
|
//
|
2004-06-21 18:55:25 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-06-24 19:31:42 +02:00
|
|
|
#define DEBUG_TYPE "asmprinter"
|
2005-10-15 01:51:18 +02:00
|
|
|
#include "PPC.h"
|
2006-11-17 23:10:59 +01:00
|
|
|
#include "PPCPredicates.h"
|
2005-10-15 01:59:06 +02:00
|
|
|
#include "PPCTargetMachine.h"
|
2005-10-15 01:51:18 +02:00
|
|
|
#include "PPCSubtarget.h"
|
2010-04-26 22:05:01 +02:00
|
|
|
#include "llvm/Analysis/DebugInfo.h"
|
2004-06-21 18:55:25 +02:00
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Assembly/Writer.h"
|
2004-08-17 01:25:21 +02:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2004-06-24 19:31:42 +02:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2004-06-21 18:55:25 +02:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2008-01-26 07:51:24 +01:00
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
2010-01-20 22:16:14 +01:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfoImpls.h"
|
2010-02-15 23:37:53 +01:00
|
|
|
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
2009-09-13 19:14:04 +02:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2010-01-13 20:00:57 +01:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2010-03-12 00:39:44 +01:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2010-11-14 20:53:02 +01:00
|
|
|
#include "llvm/MC/MCInst.h"
|
2009-08-10 20:15:01 +02:00
|
|
|
#include "llvm/MC/MCSectionMachO.h"
|
2009-08-19 07:49:37 +02:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2009-09-13 19:14:04 +02:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2010-01-16 22:57:06 +01:00
|
|
|
#include "llvm/Target/Mangler.h"
|
2009-07-31 20:48:30 +02:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
2010-11-14 20:53:02 +01:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-08-05 00:07:50 +02:00
|
|
|
#include "llvm/Support/Debug.h"
|
2004-09-04 16:51:26 +02:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2009-07-08 22:53:28 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-04-04 10:18:47 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2008-12-05 02:06:39 +01:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2010-01-13 07:38:18 +01:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2010-11-14 20:40:38 +01:00
|
|
|
#include "InstPrinter/PPCInstPrinter.h"
|
2004-08-17 01:25:21 +02:00
|
|
|
using namespace llvm;
|
2004-06-21 18:55:25 +02:00
|
|
|
|
2006-12-19 23:59:26 +01:00
|
|
|
namespace {
|
2009-10-25 07:33:48 +01:00
|
|
|
class PPCAsmPrinter : public AsmPrinter {
|
2009-02-24 09:30:20 +01:00
|
|
|
protected:
|
2010-04-04 09:05:53 +02:00
|
|
|
DenseMap<MCSymbol*, MCSymbol*> TOC;
|
2006-09-20 19:07:15 +02:00
|
|
|
const PPCSubtarget &Subtarget;
|
2010-11-15 04:42:54 +01:00
|
|
|
uint64_t TOCLabelID;
|
2009-02-24 09:30:20 +01:00
|
|
|
public:
|
2010-04-04 10:18:47 +02:00
|
|
|
explicit PPCAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
|
|
|
|
: AsmPrinter(TM, Streamer),
|
2010-11-15 04:42:54 +01:00
|
|
|
Subtarget(TM.getSubtarget<PPCSubtarget>()), TOCLabelID(0) {}
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-06-21 18:55:25 +02:00
|
|
|
virtual const char *getPassName() const {
|
2004-09-04 07:00:00 +02:00
|
|
|
return "PowerPC Assembly Printer";
|
2004-06-21 18:55:25 +02:00
|
|
|
}
|
|
|
|
|
2004-08-15 00:09:10 +02:00
|
|
|
|
2010-01-28 02:28:58 +01:00
|
|
|
virtual void EmitInstruction(const MachineInstr *MI);
|
2004-08-15 01:27:29 +02:00
|
|
|
|
2010-11-15 04:39:06 +01:00
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo, raw_ostream &O);
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2006-02-01 23:38:46 +01:00
|
|
|
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
2010-04-04 07:29:35 +02:00
|
|
|
unsigned AsmVariant, const char *ExtraCode,
|
|
|
|
raw_ostream &O);
|
2006-02-24 21:27:40 +01:00
|
|
|
bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
2010-04-04 07:29:35 +02:00
|
|
|
unsigned AsmVariant, const char *ExtraCode,
|
|
|
|
raw_ostream &O);
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2010-08-05 00:07:50 +02:00
|
|
|
MachineLocation getDebugValueLocation(const MachineInstr *MI) const {
|
|
|
|
MachineLocation Location;
|
2010-11-15 04:39:06 +01:00
|
|
|
assert(MI->getNumOperands() == 4 && "Invalid no. of machine operands!");
|
2010-08-05 00:07:50 +02:00
|
|
|
// Frame address. Currently handles register +- offset only.
|
|
|
|
if (MI->getOperand(0).isReg() && MI->getOperand(2).isImm())
|
|
|
|
Location.set(MI->getOperand(0).getReg(), MI->getOperand(2).getImm());
|
|
|
|
else {
|
|
|
|
DEBUG(dbgs() << "DBG_VALUE instruction ignored! " << *MI << "\n");
|
|
|
|
}
|
|
|
|
return Location;
|
|
|
|
}
|
2004-09-04 07:00:00 +02:00
|
|
|
};
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2008-08-08 20:22:59 +02:00
|
|
|
/// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
|
2009-10-25 07:33:48 +01:00
|
|
|
class PPCLinuxAsmPrinter : public PPCAsmPrinter {
|
2009-02-24 09:30:20 +01:00
|
|
|
public:
|
2010-04-04 10:18:47 +02:00
|
|
|
explicit PPCLinuxAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
|
|
|
|
: PPCAsmPrinter(TM, Streamer) {}
|
2006-12-21 21:26:09 +01:00
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Linux PPC Assembly Printer";
|
|
|
|
}
|
|
|
|
|
2009-08-15 13:54:46 +02:00
|
|
|
bool doFinalization(Module &M);
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2010-01-27 08:21:55 +01:00
|
|
|
virtual void EmitFunctionEntryLabel();
|
2006-12-21 21:26:09 +01:00
|
|
|
};
|
|
|
|
|
2008-08-08 20:22:59 +02:00
|
|
|
/// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
|
|
|
|
/// OS X
|
2009-10-25 07:33:48 +01:00
|
|
|
class PPCDarwinAsmPrinter : public PPCAsmPrinter {
|
2009-02-24 09:30:20 +01:00
|
|
|
public:
|
2010-04-04 10:18:47 +02:00
|
|
|
explicit PPCDarwinAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
|
|
|
|
: PPCAsmPrinter(TM, Streamer) {}
|
2004-09-04 07:00:00 +02:00
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Darwin PPC Assembly Printer";
|
|
|
|
}
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2004-06-21 18:55:25 +02:00
|
|
|
bool doFinalization(Module &M);
|
2009-10-01 00:06:26 +02:00
|
|
|
void EmitStartOfAsmFile(Module &M);
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2010-01-20 22:36:48 +01:00
|
|
|
void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
|
2004-06-21 18:55:25 +02:00
|
|
|
};
|
|
|
|
} // end of anonymous namespace
|
|
|
|
|
2010-11-15 04:39:06 +01:00
|
|
|
/// stripRegisterPrefix - This method strips the character prefix from a
|
|
|
|
/// register name so that only the number is left. Used by for linux asm.
|
|
|
|
static const char *stripRegisterPrefix(const char *RegName) {
|
|
|
|
switch (RegName[0]) {
|
|
|
|
case 'r':
|
|
|
|
case 'f':
|
|
|
|
case 'v': return RegName + 1;
|
|
|
|
case 'c': if (RegName[1] == 'r') return RegName + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RegName;
|
|
|
|
}
|
2004-09-04 07:00:00 +02:00
|
|
|
|
2010-11-15 04:39:06 +01:00
|
|
|
void PPCAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
raw_ostream &O) {
|
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
|
|
|
|
2004-06-21 18:55:25 +02:00
|
|
|
switch (MO.getType()) {
|
2010-11-15 04:39:06 +01:00
|
|
|
case MachineOperand::MO_Register: {
|
|
|
|
const char *RegName = PPCInstPrinter::getRegisterName(MO.getReg());
|
|
|
|
// Linux assembler (Others?) does not take register mnemonics.
|
|
|
|
// FIXME - What about special registers used in mfspr/mtspr?
|
|
|
|
if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
|
|
|
|
O << RegName;
|
|
|
|
return;
|
|
|
|
}
|
2006-05-04 19:21:20 +02:00
|
|
|
case MachineOperand::MO_Immediate:
|
2010-11-15 04:39:06 +01:00
|
|
|
O << MO.getImm();
|
|
|
|
return;
|
2004-07-28 02:00:48 +02:00
|
|
|
|
2006-04-22 20:53:45 +02:00
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
2010-03-13 22:04:28 +01:00
|
|
|
O << *MO.getMBB()->getSymbol();
|
2006-04-22 20:53:45 +02:00
|
|
|
return;
|
|
|
|
case MachineOperand::MO_JumpTableIndex:
|
2009-08-22 23:43:10 +02:00
|
|
|
O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
|
2007-12-31 00:10:15 +01:00
|
|
|
<< '_' << MO.getIndex();
|
2006-04-22 20:53:45 +02:00
|
|
|
// FIXME: PIC relocation model
|
2004-06-21 18:55:25 +02:00
|
|
|
return;
|
2004-07-08 19:58:04 +02:00
|
|
|
case MachineOperand::MO_ConstantPoolIndex:
|
2009-08-22 23:43:10 +02:00
|
|
|
O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
|
2007-12-31 00:10:15 +01:00
|
|
|
<< '_' << MO.getIndex();
|
2004-06-21 18:55:25 +02:00
|
|
|
return;
|
2009-11-04 22:31:18 +01:00
|
|
|
case MachineOperand::MO_BlockAddress:
|
2010-01-17 22:43:43 +01:00
|
|
|
O << *GetBlockAddressSymbol(MO.getBlockAddress());
|
2009-11-04 22:31:18 +01:00
|
|
|
return;
|
2009-07-15 03:14:44 +02:00
|
|
|
case MachineOperand::MO_ExternalSymbol: {
|
2005-12-16 01:22:14 +01:00
|
|
|
// Computing the address of an external symbol, not calling it.
|
2010-01-16 03:09:06 +01:00
|
|
|
if (TM.getRelocationModel() == Reloc::Static) {
|
2010-01-20 22:16:14 +01:00
|
|
|
O << *GetExternalSymbolSymbol(MO.getSymbolName());
|
2010-01-16 03:09:06 +01:00
|
|
|
return;
|
2005-12-16 01:22:14 +01:00
|
|
|
}
|
2010-01-20 22:16:14 +01:00
|
|
|
|
2010-02-03 07:18:30 +01:00
|
|
|
MCSymbol *NLPSym =
|
2010-01-16 03:09:06 +01:00
|
|
|
OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
|
|
|
|
MO.getSymbolName()+"$non_lazy_ptr");
|
2010-03-10 23:34:10 +01:00
|
|
|
MachineModuleInfoImpl::StubValueTy &StubSym =
|
2010-01-20 22:16:14 +01:00
|
|
|
MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
|
2010-03-10 23:34:10 +01:00
|
|
|
if (StubSym.getPointer() == 0)
|
|
|
|
StubSym = MachineModuleInfoImpl::
|
|
|
|
StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
|
2010-01-20 22:16:14 +01:00
|
|
|
|
2010-01-17 22:43:43 +01:00
|
|
|
O << *NLPSym;
|
2004-07-08 19:58:04 +02:00
|
|
|
return;
|
2009-07-15 03:14:44 +02:00
|
|
|
}
|
2004-08-13 11:32:01 +02:00
|
|
|
case MachineOperand::MO_GlobalAddress: {
|
2005-12-16 01:22:14 +01:00
|
|
|
// Computing the address of a global symbol, not calling it.
|
2010-04-15 03:51:59 +02:00
|
|
|
const GlobalValue *GV = MO.getGlobal();
|
2010-01-16 03:00:23 +01:00
|
|
|
MCSymbol *SymToPrint;
|
2004-08-13 11:32:01 +02:00
|
|
|
|
2004-10-18 01:01:34 +02:00
|
|
|
// External or weakly linked global variables need non-lazily-resolved stubs
|
2009-07-15 03:14:44 +02:00
|
|
|
if (TM.getRelocationModel() != Reloc::Static &&
|
|
|
|
(GV->isDeclaration() || GV->isWeakForLinker())) {
|
|
|
|
if (!GV->hasHiddenVisibility()) {
|
2010-01-16 19:37:32 +01:00
|
|
|
SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
|
2010-03-10 23:34:10 +01:00
|
|
|
MachineModuleInfoImpl::StubValueTy &StubSym =
|
|
|
|
MMI->getObjFileInfo<MachineModuleInfoMachO>()
|
|
|
|
.getGVStubEntry(SymToPrint);
|
|
|
|
if (StubSym.getPointer() == 0)
|
|
|
|
StubSym = MachineModuleInfoImpl::
|
2010-03-12 22:19:23 +01:00
|
|
|
StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
|
2009-07-15 03:14:44 +02:00
|
|
|
} else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
|
|
|
|
GV->hasAvailableExternallyLinkage()) {
|
2010-01-16 19:37:32 +01:00
|
|
|
SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
|
2010-01-20 22:16:14 +01:00
|
|
|
|
2010-03-10 23:34:10 +01:00
|
|
|
MachineModuleInfoImpl::StubValueTy &StubSym =
|
2010-01-20 22:16:14 +01:00
|
|
|
MMI->getObjFileInfo<MachineModuleInfoMachO>().
|
|
|
|
getHiddenGVStubEntry(SymToPrint);
|
2010-03-10 23:34:10 +01:00
|
|
|
if (StubSym.getPointer() == 0)
|
|
|
|
StubSym = MachineModuleInfoImpl::
|
2010-03-12 22:19:23 +01:00
|
|
|
StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
|
2009-07-15 03:14:44 +02:00
|
|
|
} else {
|
2010-03-12 22:19:23 +01:00
|
|
|
SymToPrint = Mang->getSymbol(GV);
|
2005-12-16 01:22:14 +01:00
|
|
|
}
|
2009-07-15 03:14:44 +02:00
|
|
|
} else {
|
2010-03-12 22:19:23 +01:00
|
|
|
SymToPrint = Mang->getSymbol(GV);
|
2004-06-21 18:55:25 +02:00
|
|
|
}
|
2010-01-16 03:00:23 +01:00
|
|
|
|
2010-01-17 22:43:43 +01:00
|
|
|
O << *SymToPrint;
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2010-04-04 00:28:33 +02:00
|
|
|
printOffset(MO.getOffset(), O);
|
2004-06-21 18:55:25 +02:00
|
|
|
return;
|
2004-08-13 11:32:01 +02:00
|
|
|
}
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-06-21 18:55:25 +02:00
|
|
|
default:
|
2004-07-08 19:58:04 +02:00
|
|
|
O << "<unknown operand type: " << MO.getType() << ">";
|
2004-06-25 17:11:34 +02:00
|
|
|
return;
|
2004-06-21 18:55:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-23 20:31:10 +01:00
|
|
|
/// PrintAsmOperand - Print out an operand for an inline asm expression.
|
|
|
|
///
|
|
|
|
bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
2008-08-08 20:22:59 +02:00
|
|
|
unsigned AsmVariant,
|
2010-04-04 07:29:35 +02:00
|
|
|
const char *ExtraCode, raw_ostream &O) {
|
2006-02-23 20:31:10 +01:00
|
|
|
// Does this asm operand have a single letter operand modifier?
|
|
|
|
if (ExtraCode && ExtraCode[0]) {
|
|
|
|
if (ExtraCode[1] != 0) return true; // Unknown modifier.
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2006-02-23 20:31:10 +01:00
|
|
|
switch (ExtraCode[0]) {
|
|
|
|
default: return true; // Unknown modifier.
|
2007-01-25 03:52:50 +01:00
|
|
|
case 'c': // Don't print "$" before a global var name or constant.
|
2010-11-15 04:39:06 +01:00
|
|
|
break; // PPC never has a prefix.
|
2008-08-08 20:22:59 +02:00
|
|
|
case 'L': // Write second word of DImode reference.
|
2006-02-23 20:31:10 +01:00
|
|
|
// Verify that this operand has two consecutive registers.
|
2008-10-03 17:45:36 +02:00
|
|
|
if (!MI->getOperand(OpNo).isReg() ||
|
2006-02-23 20:31:10 +01:00
|
|
|
OpNo+1 == MI->getNumOperands() ||
|
2008-10-03 17:45:36 +02:00
|
|
|
!MI->getOperand(OpNo+1).isReg())
|
2006-02-23 20:31:10 +01:00
|
|
|
return true;
|
|
|
|
++OpNo; // Return the high-part.
|
|
|
|
break;
|
2007-04-25 00:51:03 +02:00
|
|
|
case 'I':
|
|
|
|
// Write 'i' if an integer constant, otherwise nothing. Used to print
|
|
|
|
// addi vs add, etc.
|
2008-10-03 17:45:36 +02:00
|
|
|
if (MI->getOperand(OpNo).isImm())
|
2007-04-25 00:51:03 +02:00
|
|
|
O << "i";
|
|
|
|
return false;
|
2006-02-23 20:31:10 +01:00
|
|
|
}
|
|
|
|
}
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2010-04-04 06:47:45 +02:00
|
|
|
printOperand(MI, OpNo, O);
|
2006-02-23 20:31:10 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-18 02:18:39 +02:00
|
|
|
// At the moment, all inline asm memory operands are a single register.
|
|
|
|
// In any case, the output of this routine should always be just one
|
|
|
|
// assembler operand.
|
|
|
|
|
2006-02-24 21:27:40 +01:00
|
|
|
bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
2008-08-08 20:22:59 +02:00
|
|
|
unsigned AsmVariant,
|
2010-04-04 07:29:35 +02:00
|
|
|
const char *ExtraCode,
|
|
|
|
raw_ostream &O) {
|
2006-02-24 21:27:40 +01:00
|
|
|
if (ExtraCode && ExtraCode[0])
|
|
|
|
return true; // Unknown modifier.
|
2010-11-15 04:39:06 +01:00
|
|
|
assert(MI->getOperand(OpNo).isReg());
|
2009-08-26 20:10:32 +02:00
|
|
|
O << "0(";
|
2010-04-04 06:47:45 +02:00
|
|
|
printOperand(MI, OpNo, O);
|
2009-08-26 20:10:32 +02:00
|
|
|
O << ")";
|
2006-02-24 21:27:40 +01:00
|
|
|
return false;
|
|
|
|
}
|
2006-02-23 20:31:10 +01:00
|
|
|
|
2006-11-04 06:27:39 +01:00
|
|
|
|
2010-01-28 02:28:58 +01:00
|
|
|
/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
|
2004-08-15 00:09:10 +02:00
|
|
|
/// the current output stream.
|
2004-06-21 18:55:25 +02:00
|
|
|
///
|
2010-01-28 02:28:58 +01:00
|
|
|
void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
2010-11-15 04:39:06 +01:00
|
|
|
MCInst TmpInst;
|
|
|
|
|
|
|
|
// Lower multi-instruction pseudo operations.
|
|
|
|
switch (MI->getOpcode()) {
|
|
|
|
default: break;
|
2010-11-15 08:52:06 +01:00
|
|
|
case TargetOpcode::DBG_VALUE: {
|
|
|
|
if (!isVerbose() || !OutStreamer.hasRawTextSupport()) return;
|
|
|
|
|
|
|
|
SmallString<32> Str;
|
|
|
|
raw_svector_ostream O(Str);
|
|
|
|
unsigned NOps = MI->getNumOperands();
|
|
|
|
assert(NOps==4);
|
|
|
|
O << '\t' << MAI->getCommentString() << "DEBUG_VALUE: ";
|
|
|
|
// cast away const; DIetc do not take const operands for some reason.
|
|
|
|
DIVariable V(const_cast<MDNode *>(MI->getOperand(NOps-1).getMetadata()));
|
|
|
|
O << V.getName();
|
|
|
|
O << " <- ";
|
|
|
|
// Frame address. Currently handles register +- offset only.
|
|
|
|
assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm());
|
|
|
|
O << '['; printOperand(MI, 0, O); O << '+'; printOperand(MI, 1, O);
|
|
|
|
O << ']';
|
|
|
|
O << "+";
|
|
|
|
printOperand(MI, NOps-2, O);
|
|
|
|
OutStreamer.EmitRawText(O.str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-15 04:39:06 +01:00
|
|
|
case PPC::MovePCtoLR:
|
|
|
|
case PPC::MovePCtoLR8: {
|
|
|
|
// Transform %LR = MovePCtoLR
|
|
|
|
// Into this, where the label is the PIC base:
|
|
|
|
// bl L1$pb
|
|
|
|
// L1$pb:
|
|
|
|
MCSymbol *PICBase = MF->getPICBaseSymbol();
|
2010-11-14 23:03:15 +01:00
|
|
|
|
2010-11-15 04:39:06 +01:00
|
|
|
// Emit the 'bl'.
|
|
|
|
TmpInst.setOpcode(PPC::BL_Darwin); // Darwin vs SVR4 doesn't matter here.
|
|
|
|
|
|
|
|
|
|
|
|
// FIXME: We would like an efficient form for this, so we don't have to do
|
|
|
|
// a lot of extra uniquing.
|
|
|
|
TmpInst.addOperand(MCOperand::CreateExpr(MCSymbolRefExpr::
|
|
|
|
Create(PICBase, OutContext)));
|
|
|
|
OutStreamer.EmitInstruction(TmpInst);
|
|
|
|
|
|
|
|
// Emit the label.
|
|
|
|
OutStreamer.EmitLabel(PICBase);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
case PPC::LDtoc: {
|
|
|
|
// Transform %X3 = LDtoc <ga:@min1>, %X2
|
|
|
|
LowerPPCMachineInstrToMCInst(MI, TmpInst, *this);
|
2010-11-14 23:56:43 +01:00
|
|
|
|
2010-11-15 04:39:06 +01:00
|
|
|
// Change the opcode to LD, and the global address operand to be a
|
|
|
|
// reference to the TOC entry we will synthesize later.
|
|
|
|
TmpInst.setOpcode(PPC::LD);
|
|
|
|
const MachineOperand &MO = MI->getOperand(1);
|
|
|
|
assert(MO.isGlobal());
|
2010-11-14 23:56:43 +01:00
|
|
|
|
2010-11-15 04:39:06 +01:00
|
|
|
// Map symbol -> label of TOC entry.
|
|
|
|
MCSymbol *&TOCEntry = TOC[Mang->getSymbol(MO.getGlobal())];
|
2010-11-15 04:42:54 +01:00
|
|
|
if (TOCEntry == 0)
|
|
|
|
TOCEntry = GetTempSymbol("C", TOCLabelID++);
|
2010-11-15 04:39:06 +01:00
|
|
|
|
|
|
|
const MCExpr *Exp =
|
|
|
|
MCSymbolRefExpr::Create(TOCEntry, MCSymbolRefExpr::VK_PPC_TOC,
|
|
|
|
OutContext);
|
|
|
|
TmpInst.getOperand(1) = MCOperand::CreateExpr(Exp);
|
2010-11-14 20:53:02 +01:00
|
|
|
OutStreamer.EmitInstruction(TmpInst);
|
|
|
|
return;
|
|
|
|
}
|
2010-11-15 04:39:06 +01:00
|
|
|
|
|
|
|
case PPC::MFCRpseud:
|
|
|
|
// Transform: %R3 = MFCRpseud %CR7
|
|
|
|
// Into: %R3 = MFCR ;; cr7
|
|
|
|
OutStreamer.AddComment(PPCInstPrinter::
|
|
|
|
getRegisterName(MI->getOperand(1).getReg()));
|
|
|
|
TmpInst.setOpcode(PPC::MFCR);
|
|
|
|
TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
|
|
|
|
OutStreamer.EmitInstruction(TmpInst);
|
2010-01-28 02:28:58 +01:00
|
|
|
return;
|
|
|
|
}
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2010-11-15 04:39:06 +01:00
|
|
|
LowerPPCMachineInstrToMCInst(MI, TmpInst, *this);
|
|
|
|
OutStreamer.EmitInstruction(TmpInst);
|
2004-09-04 07:00:00 +02:00
|
|
|
}
|
|
|
|
|
2010-01-27 08:21:55 +01:00
|
|
|
void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
|
|
|
|
if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
|
|
|
|
return AsmPrinter::EmitFunctionEntryLabel();
|
|
|
|
|
|
|
|
// Emit an official procedure descriptor.
|
|
|
|
// FIXME 64-bit SVR4: Use MCSection here!
|
2010-04-04 09:05:53 +02:00
|
|
|
OutStreamer.EmitRawText(StringRef("\t.section\t\".opd\",\"aw\""));
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.align 3"));
|
2010-01-27 08:21:55 +01:00
|
|
|
OutStreamer.EmitLabel(CurrentFnSym);
|
2010-04-04 09:05:53 +02:00
|
|
|
OutStreamer.EmitRawText("\t.quad .L." + Twine(CurrentFnSym->getName()) +
|
|
|
|
",.TOC.@tocbase");
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.previous"));
|
|
|
|
OutStreamer.EmitRawText(".L." + Twine(CurrentFnSym->getName()) + ":");
|
2010-01-27 08:21:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-15 13:54:46 +02:00
|
|
|
bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
|
|
|
|
const TargetData *TD = TM.getTargetData();
|
|
|
|
|
|
|
|
bool isPPC64 = TD->getPointerSizeInBits() == 64;
|
|
|
|
|
|
|
|
if (isPPC64 && !TOC.empty()) {
|
|
|
|
// FIXME 64-bit SVR4: Use MCSection here?
|
2010-04-04 09:05:53 +02:00
|
|
|
OutStreamer.EmitRawText(StringRef("\t.section\t\".toc\",\"aw\""));
|
2009-08-15 13:54:46 +02:00
|
|
|
|
2010-01-16 03:00:23 +01:00
|
|
|
// FIXME: This is nondeterminstic!
|
2010-04-04 09:05:53 +02:00
|
|
|
for (DenseMap<MCSymbol*, MCSymbol*>::iterator I = TOC.begin(),
|
2010-01-16 03:09:06 +01:00
|
|
|
E = TOC.end(); I != E; ++I) {
|
2010-04-04 09:05:53 +02:00
|
|
|
OutStreamer.EmitLabel(I->second);
|
|
|
|
OutStreamer.EmitRawText("\t.tc " + Twine(I->first->getName()) +
|
|
|
|
"[TC]," + I->first->getName());
|
2009-08-15 13:54:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return AsmPrinter::doFinalization(M);
|
|
|
|
}
|
2006-12-21 21:26:09 +01:00
|
|
|
|
2009-10-01 00:06:26 +02:00
|
|
|
void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
|
2008-03-25 22:45:14 +01:00
|
|
|
static const char *const CPUDirectives[] = {
|
2008-02-15 00:35:16 +01:00
|
|
|
"",
|
2006-12-12 21:57:08 +01: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.");
|
2010-11-15 09:49:58 +01:00
|
|
|
|
|
|
|
// FIXME: This is a total hack, finish mc'izing the PPC backend.
|
|
|
|
if (OutStreamer.hasRawTextSupport())
|
|
|
|
OutStreamer.EmitRawText("\t.machine " + Twine(CPUDirectives[Directive]));
|
2008-08-08 20:22:59 +02:00
|
|
|
|
2006-11-28 19:21:52 +01: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.
|
2010-04-17 18:44:48 +02:00
|
|
|
const TargetLoweringObjectFileMachO &TLOFMacho =
|
|
|
|
static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
|
2006-11-28 19:21:52 +01:00
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_) {
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(
|
2010-04-08 22:40:11 +02:00
|
|
|
OutContext.getMachOSection("__TEXT", "__picsymbolstub1",
|
2009-08-19 07:49:37 +02:00
|
|
|
MCSectionMachO::S_SYMBOL_STUBS |
|
|
|
|
MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
|
|
|
|
32, SectionKind::getText()));
|
2006-11-28 19:21:52 +01:00
|
|
|
} else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(
|
2010-04-08 22:40:11 +02:00
|
|
|
OutContext.getMachOSection("__TEXT","__symbol_stub1",
|
2009-08-19 07:49:37 +02:00
|
|
|
MCSectionMachO::S_SYMBOL_STUBS |
|
|
|
|
MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
|
|
|
|
16, SectionKind::getText()));
|
2006-11-28 19:21:52 +01:00
|
|
|
}
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
|
2005-07-21 03:25:49 +02:00
|
|
|
}
|
|
|
|
|
2010-04-04 09:12:28 +02:00
|
|
|
static MCSymbol *GetLazyPtr(MCSymbol *Sym, MCContext &Ctx) {
|
2010-01-20 22:36:48 +01:00
|
|
|
// Remove $stub suffix, add $lazy_ptr.
|
|
|
|
SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
|
|
|
|
TmpStr += "$lazy_ptr";
|
2010-03-30 20:10:53 +02:00
|
|
|
return Ctx.GetOrCreateSymbol(TmpStr.str());
|
2010-01-20 22:36:48 +01:00
|
|
|
}
|
|
|
|
|
2010-04-04 09:12:28 +02:00
|
|
|
static MCSymbol *GetAnonSym(MCSymbol *Sym, MCContext &Ctx) {
|
2010-01-20 22:36:48 +01:00
|
|
|
// Add $tmp suffix to $stub, yielding $stub$tmp.
|
|
|
|
SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
|
|
|
|
TmpStr += "$tmp";
|
2010-03-30 20:10:53 +02:00
|
|
|
return Ctx.GetOrCreateSymbol(TmpStr.str());
|
2010-01-20 22:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PPCDarwinAsmPrinter::
|
|
|
|
EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
|
2010-01-20 22:19:44 +01:00
|
|
|
bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
|
|
|
|
|
2010-04-17 18:44:48 +02:00
|
|
|
const TargetLoweringObjectFileMachO &TLOFMacho =
|
|
|
|
static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
2010-01-20 22:19:44 +01:00
|
|
|
|
|
|
|
// .lazy_symbol_pointer
|
|
|
|
const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
|
2009-08-10 03:39:42 +02:00
|
|
|
|
2004-07-16 22:29:04 +02:00
|
|
|
// Output stubs for dynamically-linked functions
|
2010-01-20 22:19:44 +01:00
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_) {
|
2009-08-04 00:52:21 +02:00
|
|
|
const MCSection *StubSection =
|
2010-04-08 22:40:11 +02:00
|
|
|
OutContext.getMachOSection("__TEXT", "__picsymbolstub1",
|
|
|
|
MCSectionMachO::S_SYMBOL_STUBS |
|
|
|
|
MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
|
|
|
|
32, SectionKind::getText());
|
2010-01-20 22:36:48 +01:00
|
|
|
for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(StubSection);
|
2006-06-27 03:02:25 +02:00
|
|
|
EmitAlignment(4);
|
2010-01-20 22:36:48 +01:00
|
|
|
|
2010-04-04 09:05:53 +02:00
|
|
|
MCSymbol *Stub = Stubs[i].first;
|
2010-04-04 09:12:28 +02:00
|
|
|
MCSymbol *RawSym = Stubs[i].second.getPointer();
|
|
|
|
MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
|
|
|
|
MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
|
2010-01-20 22:36:48 +01:00
|
|
|
|
2010-04-04 09:05:53 +02:00
|
|
|
OutStreamer.EmitLabel(Stub);
|
2010-04-04 09:12:28 +02:00
|
|
|
OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
|
|
|
|
// FIXME: MCize this.
|
2010-04-04 09:17:25 +02:00
|
|
|
OutStreamer.EmitRawText(StringRef("\tmflr r0"));
|
|
|
|
OutStreamer.EmitRawText("\tbcl 20,31," + Twine(AnonSymbol->getName()));
|
2010-04-04 09:12:28 +02:00
|
|
|
OutStreamer.EmitLabel(AnonSymbol);
|
2010-04-04 09:17:25 +02:00
|
|
|
OutStreamer.EmitRawText(StringRef("\tmflr r11"));
|
|
|
|
OutStreamer.EmitRawText("\taddis r11,r11,ha16("+Twine(LazyPtr->getName())+
|
|
|
|
"-" + AnonSymbol->getName() + ")");
|
|
|
|
OutStreamer.EmitRawText(StringRef("\tmtlr r0"));
|
|
|
|
|
|
|
|
if (isPPC64)
|
|
|
|
OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
|
|
|
|
"-" + AnonSymbol->getName() + ")(r11)");
|
|
|
|
else
|
|
|
|
OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
|
|
|
|
"-" + AnonSymbol->getName() + ")(r11)");
|
|
|
|
OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
|
|
|
|
OutStreamer.EmitRawText(StringRef("\tbctr"));
|
2009-07-16 03:23:26 +02:00
|
|
|
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(LSPSection);
|
2010-04-04 09:12:28 +02:00
|
|
|
OutStreamer.EmitLabel(LazyPtr);
|
|
|
|
OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
|
2010-04-04 09:17:25 +02:00
|
|
|
|
|
|
|
if (isPPC64)
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
|
|
|
|
else
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
|
2005-12-13 05:33:58 +01:00
|
|
|
}
|
2010-04-04 09:05:53 +02:00
|
|
|
OutStreamer.AddBlankLine();
|
2010-01-20 22:19:44 +01:00
|
|
|
return;
|
2004-06-25 01:04:11 +02:00
|
|
|
}
|
2010-01-20 22:19:44 +01:00
|
|
|
|
|
|
|
const MCSection *StubSection =
|
2010-04-08 22:40:11 +02:00
|
|
|
OutContext.getMachOSection("__TEXT","__symbol_stub1",
|
|
|
|
MCSectionMachO::S_SYMBOL_STUBS |
|
|
|
|
MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
|
|
|
|
16, SectionKind::getText());
|
2010-01-20 22:36:48 +01:00
|
|
|
for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
|
2010-04-04 09:05:53 +02:00
|
|
|
MCSymbol *Stub = Stubs[i].first;
|
2010-04-04 09:12:28 +02:00
|
|
|
MCSymbol *RawSym = Stubs[i].second.getPointer();
|
|
|
|
MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
|
2010-01-20 22:36:48 +01:00
|
|
|
|
2010-01-20 22:19:44 +01:00
|
|
|
OutStreamer.SwitchSection(StubSection);
|
|
|
|
EmitAlignment(4);
|
2010-04-04 09:05:53 +02:00
|
|
|
OutStreamer.EmitLabel(Stub);
|
2010-04-04 09:12:28 +02:00
|
|
|
OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
|
2010-04-04 09:17:25 +02:00
|
|
|
OutStreamer.EmitRawText("\tlis r11,ha16(" + Twine(LazyPtr->getName()) +")");
|
|
|
|
if (isPPC64)
|
|
|
|
OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
|
|
|
|
")(r11)");
|
|
|
|
else
|
|
|
|
OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
|
|
|
|
")(r11)");
|
|
|
|
OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
|
|
|
|
OutStreamer.EmitRawText(StringRef("\tbctr"));
|
2010-01-20 22:19:44 +01:00
|
|
|
OutStreamer.SwitchSection(LSPSection);
|
2010-04-04 09:12:28 +02:00
|
|
|
OutStreamer.EmitLabel(LazyPtr);
|
|
|
|
OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
|
2010-04-04 09:17:25 +02:00
|
|
|
|
|
|
|
if (isPPC64)
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
|
|
|
|
else
|
|
|
|
OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
|
2010-01-20 22:19:44 +01:00
|
|
|
}
|
|
|
|
|
2010-04-04 09:12:28 +02:00
|
|
|
OutStreamer.AddBlankLine();
|
2010-01-20 22:19:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
|
|
|
|
bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
|
|
|
|
|
|
|
|
// Darwin/PPC always uses mach-o.
|
2010-04-17 18:44:48 +02:00
|
|
|
const TargetLoweringObjectFileMachO &TLOFMacho =
|
|
|
|
static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
2010-01-20 22:19:44 +01:00
|
|
|
MachineModuleInfoMachO &MMIMacho =
|
|
|
|
MMI->getObjFileInfo<MachineModuleInfoMachO>();
|
|
|
|
|
2010-01-20 22:36:48 +01:00
|
|
|
MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
|
|
|
|
if (!Stubs.empty())
|
|
|
|
EmitFunctionStubs(Stubs);
|
2004-07-16 22:29:04 +02:00
|
|
|
|
2009-08-22 23:43:10 +02:00
|
|
|
if (MAI->doesSupportExceptionHandling() && MMI) {
|
2007-11-21 00:24:42 +01:00
|
|
|
// Add the (possibly multiple) personalities to the set of global values.
|
2008-04-02 02:25:04 +02:00
|
|
|
// Only referenced functions get into the Personalities list.
|
2010-04-15 03:51:59 +02:00
|
|
|
const std::vector<const Function*> &Personalities = MMI->getPersonalities();
|
|
|
|
for (std::vector<const Function*>::const_iterator I = Personalities.begin(),
|
2009-07-15 03:14:44 +02:00
|
|
|
E = Personalities.end(); I != E; ++I) {
|
2010-01-20 22:16:14 +01:00
|
|
|
if (*I) {
|
2010-02-03 07:18:30 +01:00
|
|
|
MCSymbol *NLPSym = GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
|
2010-03-10 23:34:10 +01:00
|
|
|
MachineModuleInfoImpl::StubValueTy &StubSym =
|
|
|
|
MMIMacho.getGVStubEntry(NLPSym);
|
2010-03-12 22:19:23 +01:00
|
|
|
StubSym = MachineModuleInfoImpl::StubValueTy(Mang->getSymbol(*I), true);
|
2010-01-20 22:16:14 +01:00
|
|
|
}
|
2009-07-15 03:14:44 +02:00
|
|
|
}
|
2007-11-21 00:24:42 +01:00
|
|
|
}
|
|
|
|
|
2010-01-20 22:16:14 +01:00
|
|
|
// Output stubs for dynamically-linked functions.
|
2010-01-20 22:36:48 +01:00
|
|
|
Stubs = MMIMacho.GetGVStubList();
|
2010-01-20 22:16:14 +01:00
|
|
|
|
2009-08-04 00:52:21 +02:00
|
|
|
// Output macho stubs for external and common global variables.
|
2010-01-20 22:16:14 +01:00
|
|
|
if (!Stubs.empty()) {
|
2009-08-10 03:39:42 +02:00
|
|
|
// Switch with ".non_lazy_symbol_pointer" directive.
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
|
2009-08-10 19:58:51 +02:00
|
|
|
EmitAlignment(isPPC64 ? 3 : 2);
|
|
|
|
|
2010-01-20 22:16:14 +01:00
|
|
|
for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
|
2010-03-12 00:39:44 +01:00
|
|
|
// L_foo$stub:
|
|
|
|
OutStreamer.EmitLabel(Stubs[i].first);
|
|
|
|
// .indirect_symbol _foo
|
|
|
|
MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
|
|
|
|
OutStreamer.EmitSymbolAttribute(MCSym.getPointer(), MCSA_IndirectSymbol);
|
2010-03-12 03:00:43 +01:00
|
|
|
|
|
|
|
if (MCSym.getInt())
|
|
|
|
// External to current translation unit.
|
|
|
|
OutStreamer.EmitIntValue(0, isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
|
|
|
|
else
|
|
|
|
// Internal to current translation unit.
|
2010-03-31 20:47:10 +02:00
|
|
|
//
|
|
|
|
// When we place the LSDA into the TEXT section, the type info pointers
|
|
|
|
// need to be indirect and pc-rel. We accomplish this by using NLPs.
|
|
|
|
// However, sometimes the types are local to the file. So we need to
|
|
|
|
// fill in the value for the NLP in those cases.
|
2010-03-12 03:00:43 +01:00
|
|
|
OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
|
|
|
|
OutContext),
|
|
|
|
isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
|
2005-12-13 05:33:58 +01:00
|
|
|
}
|
2010-03-12 00:39:44 +01:00
|
|
|
|
|
|
|
Stubs.clear();
|
|
|
|
OutStreamer.AddBlankLine();
|
2004-08-15 00:09:10 +02:00
|
|
|
}
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2010-01-20 22:16:14 +01:00
|
|
|
Stubs = MMIMacho.GetHiddenGVStubList();
|
|
|
|
if (!Stubs.empty()) {
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
|
2009-07-15 03:14:44 +02:00
|
|
|
EmitAlignment(isPPC64 ? 3 : 2);
|
2010-01-20 22:16:14 +01:00
|
|
|
|
|
|
|
for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
|
2010-03-12 00:39:44 +01:00
|
|
|
// L_foo$stub:
|
|
|
|
OutStreamer.EmitLabel(Stubs[i].first);
|
|
|
|
// .long _foo
|
|
|
|
OutStreamer.EmitValue(MCSymbolRefExpr::
|
|
|
|
Create(Stubs[i].second.getPointer(),
|
|
|
|
OutContext),
|
|
|
|
isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
|
2008-12-05 02:06:39 +01:00
|
|
|
}
|
2010-03-12 00:39:44 +01:00
|
|
|
|
|
|
|
Stubs.clear();
|
|
|
|
OutStreamer.AddBlankLine();
|
2008-12-05 02:06:39 +01:00
|
|
|
}
|
|
|
|
|
2005-11-01 01:12:36 +01: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.
|
2010-01-23 07:39:22 +01:00
|
|
|
OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
|
2005-11-01 01:12:36 +01:00
|
|
|
|
2007-07-25 21:33:14 +02:00
|
|
|
return AsmPrinter::doFinalization(M);
|
2004-06-21 18:55:25 +02:00
|
|
|
}
|
2004-09-04 07:00:00 +02:00
|
|
|
|
2006-12-20 21:56:46 +01: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-20 19:12:19 +02:00
|
|
|
/// Darwin assembler can deal with.
|
|
|
|
///
|
2010-04-04 10:18:47 +02:00
|
|
|
static AsmPrinter *createPPCAsmPrinterPass(TargetMachine &tm,
|
2010-03-13 21:55:24 +01:00
|
|
|
MCStreamer &Streamer) {
|
2006-12-21 21:26:09 +01:00
|
|
|
const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
|
|
|
|
|
2009-07-21 20:38:57 +02:00
|
|
|
if (Subtarget->isDarwin())
|
2010-04-04 10:18:47 +02:00
|
|
|
return new PPCDarwinAsmPrinter(tm, Streamer);
|
|
|
|
return new PPCLinuxAsmPrinter(tm, Streamer);
|
2006-09-20 19:12:19 +02:00
|
|
|
}
|
2008-08-17 15:54:28 +02:00
|
|
|
|
2010-11-14 20:40:38 +01:00
|
|
|
static MCInstPrinter *createPPCMCInstPrinter(const Target &T,
|
|
|
|
unsigned SyntaxVariant,
|
|
|
|
const MCAsmInfo &MAI) {
|
2010-11-14 21:02:39 +01:00
|
|
|
return new PPCInstPrinter(MAI, SyntaxVariant);
|
2010-11-14 20:40:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-24 01:59:40 +02:00
|
|
|
// Force static initialization.
|
2009-07-15 22:24:03 +02:00
|
|
|
extern "C" void LLVMInitializePowerPCAsmPrinter() {
|
|
|
|
TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
|
|
|
|
TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
|
2010-11-14 20:40:38 +01:00
|
|
|
|
|
|
|
TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
|
2010-11-14 22:42:53 +01:00
|
|
|
TargetRegistry::RegisterMCInstPrinter(ThePPC64Target, createPPCMCInstPrinter);
|
2009-07-15 22:24:03 +02:00
|
|
|
}
|