2010-04-07 20:10:38 +02:00
|
|
|
//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
|
2004-08-17 01:15:22 +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.
|
2004-08-17 01:15:22 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the AsmPrinter class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-01-28 02:02:27 +01:00
|
|
|
#define DEBUG_TYPE "asm-printer"
|
2006-03-03 03:04:29 +01:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2010-04-05 07:11:15 +02:00
|
|
|
#include "DwarfDebug.h"
|
|
|
|
#include "DwarfException.h"
|
2005-11-10 19:36:17 +01:00
|
|
|
#include "llvm/Module.h"
|
2008-08-17 20:44:35 +02:00
|
|
|
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
2005-11-21 09:25:09 +01:00
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
2009-11-13 22:34:57 +01:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2009-08-18 21:22:55 +02:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2006-04-22 20:53:45 +02:00
|
|
|
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
2009-08-10 18:38:07 +02:00
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
2007-12-31 05:13:23 +01:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2010-02-08 23:02:38 +01:00
|
|
|
#include "llvm/Analysis/ConstantFolding.h"
|
2009-05-07 15:55:51 +02:00
|
|
|
#include "llvm/Analysis/DebugInfo.h"
|
2010-04-04 20:34:07 +02:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-07-27 23:28:04 +02:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2010-01-23 07:17:14 +01:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2009-07-17 00:24:20 +02:00
|
|
|
#include "llvm/MC/MCInst.h"
|
2009-07-31 20:48:30 +02:00
|
|
|
#include "llvm/MC/MCSection.h"
|
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2009-09-13 01:02:08 +02:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2010-01-16 22:57:06 +01:00
|
|
|
#include "llvm/Target/Mangler.h"
|
2006-05-12 08:33:49 +02:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2009-11-13 22:34:57 +01:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2006-10-07 00:50:56 +02:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
2009-07-28 05:13:23 +02:00
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
2011-04-29 16:14:06 +02:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2008-03-15 01:03:38 +01:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2011-01-02 23:09:33 +01:00
|
|
|
#include "llvm/Assembly/Writer.h"
|
2008-08-17 09:19:36 +02:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2010-01-28 02:02:27 +01:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/Format.h"
|
2011-08-31 19:30:56 +02:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2010-04-07 12:44:46 +02:00
|
|
|
#include "llvm/Support/Timer.h"
|
2004-08-17 01:15:22 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-04-07 20:10:38 +02:00
|
|
|
static const char *DWARFGroupName = "DWARF Emission";
|
|
|
|
static const char *DbgTimerName = "DWARF Debug Writer";
|
|
|
|
static const char *EHTimerName = "DWARF Exception Writer";
|
2010-04-07 12:44:46 +02:00
|
|
|
|
2010-01-28 02:02:27 +01:00
|
|
|
STATISTIC(EmittedInsts, "Number of machine instrs printed");
|
|
|
|
|
2007-05-03 03:11:54 +02:00
|
|
|
char AsmPrinter::ID = 0;
|
2010-03-13 21:55:24 +01:00
|
|
|
|
2010-04-04 19:57:56 +02:00
|
|
|
typedef DenseMap<GCStrategy*,GCMetadataPrinter*> gcp_map_type;
|
|
|
|
static gcp_map_type &getGCMap(void *&P) {
|
|
|
|
if (P == 0)
|
|
|
|
P = new gcp_map_type();
|
|
|
|
return *(gcp_map_type*)P;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-28 21:58:07 +02:00
|
|
|
/// getGVAlignmentLog2 - Return the alignment to use for the specified global
|
|
|
|
/// value in log2 form. This rounds up to the preferred alignment if possible
|
|
|
|
/// and legal.
|
|
|
|
static unsigned getGVAlignmentLog2(const GlobalValue *GV, const TargetData &TD,
|
|
|
|
unsigned InBits = 0) {
|
|
|
|
unsigned NumBits = 0;
|
|
|
|
if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
|
|
|
|
NumBits = TD.getPreferredAlignmentLog(GVar);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-28 21:58:07 +02:00
|
|
|
// If InBits is specified, round it to it.
|
|
|
|
if (InBits > NumBits)
|
|
|
|
NumBits = InBits;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-28 21:58:07 +02:00
|
|
|
// If the GV has a specified alignment, take it into account.
|
|
|
|
if (GV->getAlignment() == 0)
|
|
|
|
return NumBits;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-28 21:58:07 +02:00
|
|
|
unsigned GVAlign = Log2_32(GV->getAlignment());
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-28 21:58:07 +02:00
|
|
|
// If the GVAlign is larger than NumBits, or if we are required to obey
|
|
|
|
// NumBits because the GV has an assigned section, obey it.
|
|
|
|
if (GVAlign > NumBits || GV->hasSection())
|
|
|
|
NumBits = GVAlign;
|
|
|
|
return NumBits;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-04-04 10:18:47 +02:00
|
|
|
AsmPrinter::AsmPrinter(TargetMachine &tm, MCStreamer &Streamer)
|
2010-08-06 20:33:48 +02:00
|
|
|
: MachineFunctionPass(ID),
|
2010-04-04 20:06:11 +02:00
|
|
|
TM(tm), MAI(tm.getMCAsmInfo()),
|
2010-03-13 21:55:24 +01:00
|
|
|
OutContext(Streamer.getContext()),
|
|
|
|
OutStreamer(Streamer),
|
2010-03-29 19:20:31 +02:00
|
|
|
LastMI(0), LastFn(0), Counter(~0U), SetCounter(0) {
|
2010-04-05 07:11:15 +02:00
|
|
|
DD = 0; DE = 0; MMI = 0; LI = 0;
|
2010-04-04 19:57:56 +02:00
|
|
|
GCMetadataPrinters = 0;
|
2010-02-03 00:37:42 +01:00
|
|
|
VerboseAsm = Streamer.isVerboseAsm();
|
2009-03-25 02:47:28 +01:00
|
|
|
}
|
2005-12-13 07:32:10 +01:00
|
|
|
|
2008-08-17 14:08:44 +02:00
|
|
|
AsmPrinter::~AsmPrinter() {
|
2010-04-05 07:11:15 +02:00
|
|
|
assert(DD == 0 && DE == 0 && "Debug/EH info didn't get finalized");
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-04 19:57:56 +02:00
|
|
|
if (GCMetadataPrinters != 0) {
|
|
|
|
gcp_map_type &GCMap = getGCMap(GCMetadataPrinters);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-04 19:57:56 +02:00
|
|
|
for (gcp_map_type::iterator I = GCMap.begin(), E = GCMap.end(); I != E; ++I)
|
|
|
|
delete I->second;
|
|
|
|
delete &GCMap;
|
|
|
|
GCMetadataPrinters = 0;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-07-27 23:28:04 +02:00
|
|
|
delete &OutStreamer;
|
2008-08-17 14:08:44 +02:00
|
|
|
}
|
2005-12-13 07:32:10 +01:00
|
|
|
|
2010-01-26 05:35:26 +01:00
|
|
|
/// getFunctionNumber - Return a unique ID for the current function.
|
|
|
|
///
|
|
|
|
unsigned AsmPrinter::getFunctionNumber() const {
|
|
|
|
return MF->getFunctionNumber();
|
|
|
|
}
|
|
|
|
|
2010-04-17 18:44:48 +02:00
|
|
|
const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
|
2009-07-28 05:13:23 +02:00
|
|
|
return TM.getTargetLowering()->getObjFileLowering();
|
|
|
|
}
|
|
|
|
|
2010-04-05 02:13:49 +02:00
|
|
|
|
|
|
|
/// getTargetData - Return information about data layout.
|
|
|
|
const TargetData &AsmPrinter::getTargetData() const {
|
|
|
|
return *TM.getTargetData();
|
|
|
|
}
|
|
|
|
|
2009-08-18 08:15:16 +02:00
|
|
|
/// getCurrentSection() - Return the current section we are emitting to.
|
|
|
|
const MCSection *AsmPrinter::getCurrentSection() const {
|
|
|
|
return OutStreamer.getCurrentSection();
|
2008-09-25 00:12:10 +02:00
|
|
|
}
|
2006-05-09 06:59:56 +02:00
|
|
|
|
2009-08-18 08:15:16 +02:00
|
|
|
|
2010-04-05 02:13:49 +02:00
|
|
|
|
2008-01-07 02:30:38 +01:00
|
|
|
void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
|
2009-08-01 01:37:33 +02:00
|
|
|
AU.setPreservesAll();
|
2008-01-07 02:30:38 +01:00
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
2010-03-13 21:55:24 +01:00
|
|
|
AU.addRequired<MachineModuleInfo>();
|
2008-08-17 20:44:35 +02:00
|
|
|
AU.addRequired<GCModuleInfo>();
|
2010-04-04 20:52:31 +02:00
|
|
|
if (isVerbose())
|
2009-08-10 18:38:07 +02:00
|
|
|
AU.addRequired<MachineLoopInfo>();
|
2008-01-07 02:30:38 +01:00
|
|
|
}
|
|
|
|
|
2004-08-17 01:15:22 +02:00
|
|
|
bool AsmPrinter::doInitialization(Module &M) {
|
2010-04-04 07:09:10 +02:00
|
|
|
MMI = getAnalysisIfAvailable<MachineModuleInfo>();
|
2010-03-13 21:55:24 +01:00
|
|
|
MMI->AnalyzeModule(M);
|
|
|
|
|
2009-07-31 19:42:42 +02:00
|
|
|
// Initialize TargetLoweringObjectFile.
|
|
|
|
const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
|
|
|
|
.Initialize(OutContext, TM);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-03-12 21:47:28 +01:00
|
|
|
Mang = new Mangler(OutContext, *TM.getTargetData());
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-10-01 00:06:26 +02:00
|
|
|
// Allow the target to emit any magic that it wants at the start of the file.
|
|
|
|
EmitStartOfAsmFile(M);
|
2008-12-03 12:01:37 +01:00
|
|
|
|
2010-01-25 19:58:59 +01:00
|
|
|
// Very minimal debug info. It is ignored if we emit actual debug info. If we
|
|
|
|
// don't, this at least helps the user find where a global came from.
|
2009-08-22 23:43:10 +02:00
|
|
|
if (MAI->hasSingleParameterDotFile()) {
|
2010-01-25 19:58:59 +01:00
|
|
|
// .file "foo.c"
|
|
|
|
OutStreamer.EmitFileDirective(M.getModuleIdentifier());
|
2008-12-03 12:01:37 +01:00
|
|
|
}
|
|
|
|
|
2009-10-01 00:06:26 +02:00
|
|
|
GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
|
|
|
|
assert(MI && "AsmPrinter didn't require GCModuleInfo?");
|
2008-08-17 20:44:35 +02:00
|
|
|
for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
|
|
|
|
if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
|
2010-04-04 09:39:04 +02:00
|
|
|
MP->beginAssembly(*this);
|
2010-04-03 23:35:55 +02:00
|
|
|
|
|
|
|
// Emit module-level inline asm if it exists.
|
2010-04-03 23:13:18 +02:00
|
|
|
if (!M.getModuleInlineAsm().empty()) {
|
|
|
|
OutStreamer.AddComment("Start of file scope inline assembly");
|
|
|
|
OutStreamer.AddBlankLine();
|
2010-11-17 08:53:40 +01:00
|
|
|
EmitInlineAsm(M.getModuleInlineAsm()+"\n");
|
2010-04-03 23:13:18 +02:00
|
|
|
OutStreamer.AddComment("End of file scope inline assembly");
|
|
|
|
OutStreamer.AddBlankLine();
|
|
|
|
}
|
2006-01-24 00:47:53 +01:00
|
|
|
|
2010-04-05 07:11:15 +02:00
|
|
|
if (MAI->doesSupportDebugInformation())
|
|
|
|
DD = new DwarfDebug(this, &M);
|
2011-01-14 22:57:45 +01:00
|
|
|
|
2011-05-05 21:48:34 +02:00
|
|
|
switch (MAI->getExceptionHandlingType()) {
|
|
|
|
case ExceptionHandling::None:
|
|
|
|
return false;
|
|
|
|
case ExceptionHandling::SjLj:
|
|
|
|
case ExceptionHandling::DwarfCFI:
|
|
|
|
DE = new DwarfCFIException(this);
|
|
|
|
return false;
|
|
|
|
case ExceptionHandling::ARM:
|
|
|
|
DE = new ARMException(this);
|
|
|
|
return false;
|
2011-05-28 01:47:32 +02:00
|
|
|
case ExceptionHandling::Win64:
|
|
|
|
DE = new Win64Exception(this);
|
|
|
|
return false;
|
2011-05-05 21:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
llvm_unreachable("Unknown exception type.");
|
2004-08-17 01:15:22 +02:00
|
|
|
}
|
|
|
|
|
2010-01-28 01:05:10 +01:00
|
|
|
void AsmPrinter::EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const {
|
2010-01-27 00:47:12 +01:00
|
|
|
switch ((GlobalValue::LinkageTypes)Linkage) {
|
|
|
|
case GlobalValue::CommonLinkage:
|
|
|
|
case GlobalValue::LinkOnceAnyLinkage:
|
|
|
|
case GlobalValue::LinkOnceODRLinkage:
|
|
|
|
case GlobalValue::WeakAnyLinkage:
|
|
|
|
case GlobalValue::WeakODRLinkage:
|
2010-07-01 23:55:59 +02:00
|
|
|
case GlobalValue::LinkerPrivateWeakLinkage:
|
2010-08-21 00:05:50 +02:00
|
|
|
case GlobalValue::LinkerPrivateWeakDefAutoLinkage:
|
2010-01-27 00:47:12 +01:00
|
|
|
if (MAI->getWeakDefDirective() != 0) {
|
|
|
|
// .globl _foo
|
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
|
2010-08-21 00:05:50 +02:00
|
|
|
|
|
|
|
if ((GlobalValue::LinkageTypes)Linkage !=
|
|
|
|
GlobalValue::LinkerPrivateWeakDefAutoLinkage)
|
|
|
|
// .weak_definition _foo
|
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
|
|
|
|
else
|
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefAutoPrivate);
|
2010-05-12 09:11:33 +02:00
|
|
|
} else if (MAI->getLinkOnceDirective() != 0) {
|
2010-01-27 00:47:12 +01:00
|
|
|
// .globl _foo
|
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
|
2010-05-12 09:11:33 +02:00
|
|
|
//NOTE: linkonce is handled by the section the symbol was assigned to.
|
2010-01-27 00:47:12 +01:00
|
|
|
} else {
|
|
|
|
// .weak _foo
|
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GlobalValue::DLLExportLinkage:
|
|
|
|
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.
|
|
|
|
// .globl _foo
|
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
|
|
|
|
break;
|
|
|
|
case GlobalValue::PrivateLinkage:
|
|
|
|
case GlobalValue::InternalLinkage:
|
2010-07-02 00:38:24 +02:00
|
|
|
case GlobalValue::LinkerPrivateLinkage:
|
2010-01-27 00:47:12 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown linkage type!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-19 05:39:15 +01:00
|
|
|
/// EmitGlobalVariable - Emit the specified global variable to the .s file.
|
|
|
|
void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
|
2011-04-05 17:51:32 +02:00
|
|
|
if (GV->hasInitializer()) {
|
|
|
|
// Check to see if this is a special global used by LLVM, if so, emit it.
|
|
|
|
if (EmitSpecialLLVMGlobal(GV))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (isVerbose()) {
|
|
|
|
WriteAsOperand(OutStreamer.GetCommentOS(), GV,
|
|
|
|
/*PrintType=*/false, GV->getParent());
|
|
|
|
OutStreamer.GetCommentOS() << '\n';
|
|
|
|
}
|
2010-05-25 23:49:43 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-03-12 22:09:07 +01:00
|
|
|
MCSymbol *GVSym = Mang->getSymbol(GV);
|
2011-06-10 02:53:15 +02:00
|
|
|
EmitVisibility(GVSym, GV->getVisibility(), !GV->isDeclaration());
|
2010-01-19 06:38:33 +01:00
|
|
|
|
2011-04-05 17:51:32 +02:00
|
|
|
if (!GV->hasInitializer()) // External globals require no extra code.
|
|
|
|
return;
|
|
|
|
|
2010-01-25 19:33:40 +01:00
|
|
|
if (MAI->hasDotTypeDotSizeDirective())
|
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 06:38:33 +01:00
|
|
|
SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
|
|
|
|
|
|
|
|
const TargetData *TD = TM.getTargetData();
|
2010-04-28 21:58:07 +02:00
|
|
|
uint64_t Size = TD->getTypeAllocSize(GV->getType()->getElementType());
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-26 20:46:46 +02:00
|
|
|
// If the alignment is specified, we *must* obey it. Overaligning a global
|
|
|
|
// with a specified alignment is a prompt way to break globals emitted to
|
|
|
|
// sections and expected to be contiguous (e.g. ObjC metadata).
|
2010-04-28 21:58:07 +02:00
|
|
|
unsigned AlignLog = getGVAlignmentLog2(GV, *TD);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 06:51:42 +01:00
|
|
|
// Handle common and BSS local symbols (.lcomm).
|
|
|
|
if (GVKind.isCommon() || GVKind.isBSSLocal()) {
|
2010-01-19 06:38:33 +01:00
|
|
|
if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
|
2011-09-02 01:04:27 +02:00
|
|
|
unsigned Align = 1 << AlignLog;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 07:25:51 +01:00
|
|
|
// Handle common symbols.
|
2010-01-19 06:51:42 +01:00
|
|
|
if (GVKind.isCommon()) {
|
2010-09-27 08:44:54 +02:00
|
|
|
if (!getObjFileLowering().getCommDirectiveSupportsAlignment())
|
|
|
|
Align = 0;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 06:51:42 +01:00
|
|
|
// .comm _foo, 42, 4
|
2010-09-27 08:44:54 +02:00
|
|
|
OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
|
2010-01-19 07:25:51 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 07:25:51 +01:00
|
|
|
// Handle local BSS symbols.
|
|
|
|
if (MAI->hasMachoZeroFillDirective()) {
|
|
|
|
const MCSection *TheSection =
|
|
|
|
getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
|
|
|
|
// .zerofill __DATA, __bss, _foo, 400, 5
|
2011-09-02 01:04:27 +02:00
|
|
|
OutStreamer.EmitZerofill(TheSection, GVSym, Size, Align);
|
2010-01-19 07:25:51 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2011-09-02 01:04:27 +02:00
|
|
|
if (MAI->getLCOMMDirectiveType() != LCOMM::None &&
|
|
|
|
(MAI->getLCOMMDirectiveType() != LCOMM::NoAlignment || Align == 1)) {
|
2010-01-19 07:25:51 +01:00
|
|
|
// .lcomm _foo, 42
|
2011-09-02 01:04:27 +02:00
|
|
|
OutStreamer.EmitLocalCommonSymbol(GVSym, Size, Align);
|
2010-01-19 07:25:51 +01:00
|
|
|
return;
|
2010-01-19 06:38:33 +01:00
|
|
|
}
|
2010-09-27 08:44:54 +02:00
|
|
|
|
|
|
|
if (!getObjFileLowering().getCommDirectiveSupportsAlignment())
|
|
|
|
Align = 0;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 07:25:51 +01:00
|
|
|
// .local _foo
|
2010-01-23 07:39:22 +01:00
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
|
2010-01-19 07:25:51 +01:00
|
|
|
// .comm _foo, 42, 4
|
2010-09-27 08:44:54 +02:00
|
|
|
OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
|
2010-01-19 06:38:33 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 06:38:33 +01:00
|
|
|
const MCSection *TheSection =
|
|
|
|
getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
|
|
|
|
|
|
|
|
// Handle the zerofill directive on darwin, which is a special form of BSS
|
|
|
|
// emission.
|
|
|
|
if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
|
2010-04-27 09:41:44 +02:00
|
|
|
if (Size == 0) Size = 1; // zerofill of 0 bytes is undefined.
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 06:38:33 +01:00
|
|
|
// .globl _foo
|
2010-01-23 07:39:22 +01:00
|
|
|
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
|
2010-01-19 06:38:33 +01:00
|
|
|
// .zerofill __DATA, __common, _foo, 400, 5
|
|
|
|
OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
|
|
|
|
return;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-05-25 23:28:50 +02:00
|
|
|
// Handle thread local data for mach-o which requires us to output an
|
|
|
|
// additional structure of data and mangle the original symbol so that we
|
|
|
|
// can reference it later.
|
2010-09-05 22:33:40 +02:00
|
|
|
//
|
|
|
|
// TODO: This should become an "emit thread local global" method on TLOF.
|
|
|
|
// All of this macho specific stuff should be sunk down into TLOFMachO and
|
|
|
|
// stuff like "TLSExtraDataSection" should no longer be part of the parent
|
|
|
|
// TLOF class. This will also make it more obvious that stuff like
|
|
|
|
// MCStreamer::EmitTBSSSymbol is macho specific and only called from macho
|
|
|
|
// specific code.
|
2010-05-25 23:28:50 +02:00
|
|
|
if (GVKind.isThreadLocal() && MAI->hasMachoTBSSDirective()) {
|
2010-05-22 02:10:22 +02:00
|
|
|
// Emit the .tbss symbol
|
2011-03-30 01:20:22 +02:00
|
|
|
MCSymbol *MangSym =
|
2010-05-22 02:10:22 +02:00
|
|
|
OutContext.GetOrCreateSymbol(GVSym->getName() + Twine("$tlv$init"));
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-05-25 23:28:50 +02:00
|
|
|
if (GVKind.isThreadBSS())
|
|
|
|
OutStreamer.EmitTBSSSymbol(TheSection, MangSym, Size, 1 << AlignLog);
|
|
|
|
else if (GVKind.isThreadData()) {
|
|
|
|
OutStreamer.SwitchSection(TheSection);
|
|
|
|
|
2011-03-30 01:20:22 +02:00
|
|
|
EmitAlignment(AlignLog, GV);
|
2010-05-25 23:28:50 +02:00
|
|
|
OutStreamer.EmitLabel(MangSym);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-05-25 23:28:50 +02:00
|
|
|
EmitGlobalConstant(GV->getInitializer());
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-05-22 02:10:22 +02:00
|
|
|
OutStreamer.AddBlankLine();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-05-22 02:10:22 +02:00
|
|
|
// Emit the variable struct for the runtime.
|
2011-03-30 01:20:22 +02:00
|
|
|
const MCSection *TLVSect
|
2010-05-22 02:10:22 +02:00
|
|
|
= getObjFileLowering().getTLSExtraDataSection();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-05-22 02:10:22 +02:00
|
|
|
OutStreamer.SwitchSection(TLVSect);
|
|
|
|
// Emit the linkage here.
|
|
|
|
EmitLinkage(GV->getLinkage(), GVSym);
|
|
|
|
OutStreamer.EmitLabel(GVSym);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-05-22 02:10:22 +02:00
|
|
|
// Three pointers in size:
|
|
|
|
// - __tlv_bootstrap - used to make sure support exists
|
|
|
|
// - spare pointer, used when mapped by the runtime
|
|
|
|
// - pointer to mangled symbol above with initializer
|
|
|
|
unsigned PtrSize = TD->getPointerSizeInBits()/8;
|
2010-06-03 06:02:59 +02:00
|
|
|
OutStreamer.EmitSymbolValue(GetExternalSymbolSymbol("_tlv_bootstrap"),
|
2010-05-22 02:10:22 +02:00
|
|
|
PtrSize, 0);
|
|
|
|
OutStreamer.EmitIntValue(0, PtrSize, 0);
|
|
|
|
OutStreamer.EmitSymbolValue(MangSym, PtrSize, 0);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-05-22 02:10:22 +02:00
|
|
|
OutStreamer.AddBlankLine();
|
2010-05-20 02:49:07 +02:00
|
|
|
return;
|
|
|
|
}
|
2010-01-19 06:38:33 +01:00
|
|
|
|
|
|
|
OutStreamer.SwitchSection(TheSection);
|
|
|
|
|
2010-01-27 00:47:12 +01:00
|
|
|
EmitLinkage(GV->getLinkage(), GVSym);
|
2010-04-26 20:30:45 +02:00
|
|
|
EmitAlignment(AlignLog, GV);
|
2010-01-27 00:47:12 +01:00
|
|
|
|
2010-01-19 07:41:24 +01:00
|
|
|
OutStreamer.EmitLabel(GVSym);
|
2010-01-19 06:38:33 +01:00
|
|
|
|
|
|
|
EmitGlobalConstant(GV->getInitializer());
|
|
|
|
|
|
|
|
if (MAI->hasDotTypeDotSizeDirective())
|
2010-01-25 08:53:05 +01:00
|
|
|
// .size foo, 42
|
2010-01-25 08:52:13 +01:00
|
|
|
OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-22 20:52:01 +01:00
|
|
|
OutStreamer.AddBlankLine();
|
2010-01-19 05:39:15 +01:00
|
|
|
}
|
|
|
|
|
2010-01-27 00:18:44 +01:00
|
|
|
/// EmitFunctionHeader - This method emits the header for the current
|
|
|
|
/// function.
|
|
|
|
void AsmPrinter::EmitFunctionHeader() {
|
|
|
|
// Print out constants referenced by the function
|
2010-01-28 01:19:24 +01:00
|
|
|
EmitConstantPool();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-27 00:18:44 +01:00
|
|
|
// Print the 'header' of function.
|
|
|
|
const Function *F = MF->getFunction();
|
|
|
|
|
|
|
|
OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
|
2010-01-28 01:05:10 +01:00
|
|
|
EmitVisibility(CurrentFnSym, F->getVisibility());
|
2010-01-27 00:18:44 +01:00
|
|
|
|
2010-01-27 00:51:52 +01:00
|
|
|
EmitLinkage(F->getLinkage(), CurrentFnSym);
|
2010-01-27 00:41:48 +01:00
|
|
|
EmitAlignment(MF->getAlignment(), F);
|
|
|
|
|
2010-01-27 00:18:44 +01:00
|
|
|
if (MAI->hasDotTypeDotSizeDirective())
|
|
|
|
OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
|
|
|
|
|
2010-04-04 20:52:31 +02:00
|
|
|
if (isVerbose()) {
|
2010-01-27 00:53:39 +01:00
|
|
|
WriteAsOperand(OutStreamer.GetCommentOS(), F,
|
|
|
|
/*PrintType=*/false, F->getParent());
|
|
|
|
OutStreamer.GetCommentOS() << '\n';
|
2010-01-27 00:18:44 +01:00
|
|
|
}
|
|
|
|
|
2010-02-10 17:03:48 +01:00
|
|
|
// Emit the CurrentFnSym. This is a virtual function to allow targets to
|
2010-01-27 08:21:55 +01:00
|
|
|
// do their wild and crazy things as required.
|
|
|
|
EmitFunctionEntryLabel();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-03-15 21:39:00 +01:00
|
|
|
// If the function had address-taken blocks that got deleted, then we have
|
|
|
|
// references to the dangling symbols. Emit them at the start of the function
|
|
|
|
// so that we don't get references to undefined symbols.
|
|
|
|
std::vector<MCSymbol*> DeadBlockSyms;
|
|
|
|
MMI->takeDeletedSymbolsForFunction(F, DeadBlockSyms);
|
|
|
|
for (unsigned i = 0, e = DeadBlockSyms.size(); i != e; ++i) {
|
|
|
|
OutStreamer.AddComment("Address taken block that was later removed");
|
|
|
|
OutStreamer.EmitLabel(DeadBlockSyms[i]);
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-27 00:18:44 +01:00
|
|
|
// Add some workaround for linkonce linkage on Cygwin\MinGW.
|
|
|
|
if (MAI->getLinkOnceDirective() != 0 &&
|
2010-04-04 00:19:41 +02:00
|
|
|
(F->hasLinkOnceLinkage() || F->hasWeakLinkage())) {
|
2010-01-27 00:53:39 +01:00
|
|
|
// FIXME: What is this?
|
2011-03-30 01:20:22 +02:00
|
|
|
MCSymbol *FakeStub =
|
2010-04-04 00:19:41 +02:00
|
|
|
OutContext.GetOrCreateSymbol(Twine("Lllvm$workaround$fake$stub$")+
|
|
|
|
CurrentFnSym->getName());
|
|
|
|
OutStreamer.EmitLabel(FakeStub);
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-27 00:18:44 +01:00
|
|
|
// Emit pre-function debug and/or EH information.
|
2010-04-07 12:44:46 +02:00
|
|
|
if (DE) {
|
2010-06-18 17:56:31 +02:00
|
|
|
NamedRegionTimer T(EHTimerName, DWARFGroupName, TimePassesIsEnabled);
|
|
|
|
DE->BeginFunction(MF);
|
2010-04-07 12:44:46 +02:00
|
|
|
}
|
|
|
|
if (DD) {
|
2010-06-18 17:56:31 +02:00
|
|
|
NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
|
|
|
|
DD->beginFunction(MF);
|
2010-04-07 12:44:46 +02:00
|
|
|
}
|
2010-01-27 00:18:44 +01:00
|
|
|
}
|
|
|
|
|
2010-01-27 08:21:55 +01:00
|
|
|
/// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the
|
|
|
|
/// function. This can be overridden by targets as required to do custom stuff.
|
|
|
|
void AsmPrinter::EmitFunctionEntryLabel() {
|
2010-05-06 02:05:37 +02:00
|
|
|
// The function label could have already been emitted if two symbols end up
|
|
|
|
// conflicting due to asm renaming. Detect this and emit an error.
|
|
|
|
if (CurrentFnSym->isUndefined())
|
|
|
|
return OutStreamer.EmitLabel(CurrentFnSym);
|
|
|
|
|
|
|
|
report_fatal_error("'" + Twine(CurrentFnSym->getName()) +
|
|
|
|
"' label emitted multiple times to assembly file");
|
2010-01-27 08:21:55 +01:00
|
|
|
}
|
2010-01-27 00:18:44 +01:00
|
|
|
|
2010-01-19 05:39:15 +01:00
|
|
|
|
2010-06-30 00:29:15 +02:00
|
|
|
/// EmitComments - Pretty-print comments for instructions.
|
|
|
|
static void EmitComments(const MachineInstr &MI, raw_ostream &CommentOS) {
|
|
|
|
const MachineFunction *MF = MI.getParent()->getParent();
|
|
|
|
const TargetMachine &TM = MF->getTarget();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-10 01:47:53 +01:00
|
|
|
// Check for spills and reloads
|
|
|
|
int FI;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-10 01:47:53 +01:00
|
|
|
const MachineFrameInfo *FrameInfo = MF->getFrameInfo();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-10 01:47:53 +01:00
|
|
|
// We assume a single instruction only has a spill or reload, not
|
|
|
|
// both.
|
|
|
|
const MachineMemOperand *MMO;
|
|
|
|
if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
|
|
|
|
if (FrameInfo->isSpillSlotObjectIndex(FI)) {
|
|
|
|
MMO = *MI.memoperands_begin();
|
|
|
|
CommentOS << MMO->getSize() << "-byte Reload\n";
|
|
|
|
}
|
|
|
|
} else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
|
|
|
|
if (FrameInfo->isSpillSlotObjectIndex(FI))
|
|
|
|
CommentOS << MMO->getSize() << "-byte Folded Reload\n";
|
|
|
|
} else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
|
|
|
|
if (FrameInfo->isSpillSlotObjectIndex(FI)) {
|
|
|
|
MMO = *MI.memoperands_begin();
|
|
|
|
CommentOS << MMO->getSize() << "-byte Spill\n";
|
|
|
|
}
|
|
|
|
} else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
|
|
|
|
if (FrameInfo->isSpillSlotObjectIndex(FI))
|
|
|
|
CommentOS << MMO->getSize() << "-byte Folded Spill\n";
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-10 01:47:53 +01:00
|
|
|
// Check for spill-induced copies
|
2010-07-16 06:45:42 +02:00
|
|
|
if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse))
|
|
|
|
CommentOS << " Reload Reuse\n";
|
2010-02-10 01:47:53 +01:00
|
|
|
}
|
|
|
|
|
2010-04-04 20:58:53 +02:00
|
|
|
/// EmitImplicitDef - This method emits the specified machine instruction
|
|
|
|
/// that is an implicit def.
|
|
|
|
static void EmitImplicitDef(const MachineInstr *MI, AsmPrinter &AP) {
|
|
|
|
unsigned RegNo = MI->getOperand(0).getReg();
|
|
|
|
AP.OutStreamer.AddComment(Twine("implicit-def: ") +
|
|
|
|
AP.TM.getRegisterInfo()->getName(RegNo));
|
|
|
|
AP.OutStreamer.AddBlankLine();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EmitKill(const MachineInstr *MI, AsmPrinter &AP) {
|
|
|
|
std::string Str = "kill:";
|
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
const MachineOperand &Op = MI->getOperand(i);
|
|
|
|
assert(Op.isReg() && "KILL instruction must have only register operands");
|
|
|
|
Str += ' ';
|
|
|
|
Str += AP.TM.getRegisterInfo()->getName(Op.getReg());
|
|
|
|
Str += (Op.isDef() ? "<def>" : "<kill>");
|
|
|
|
}
|
|
|
|
AP.OutStreamer.AddComment(Str);
|
|
|
|
AP.OutStreamer.AddBlankLine();
|
|
|
|
}
|
|
|
|
|
2010-04-07 03:15:14 +02:00
|
|
|
/// EmitDebugValueComment - This method handles the target-independent form
|
|
|
|
/// of DBG_VALUE, returning true if it was able to do so. A false return
|
|
|
|
/// means the target will need to handle MI in EmitInstruction.
|
|
|
|
static bool EmitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) {
|
|
|
|
// This code handles only the 3-operand target-independent form.
|
|
|
|
if (MI->getNumOperands() != 3)
|
|
|
|
return false;
|
|
|
|
|
2010-04-07 11:26:51 +02:00
|
|
|
SmallString<128> Str;
|
|
|
|
raw_svector_ostream OS(Str);
|
|
|
|
OS << '\t' << AP.MAI->getCommentString() << "DEBUG_VALUE: ";
|
|
|
|
|
2010-04-07 03:15:14 +02:00
|
|
|
// cast away const; DIetc do not take const operands for some reason.
|
2010-04-08 00:29:10 +02:00
|
|
|
DIVariable V(const_cast<MDNode*>(MI->getOperand(2).getMetadata()));
|
2010-04-29 20:52:10 +02:00
|
|
|
if (V.getContext().isSubprogram())
|
2010-05-07 20:11:54 +02:00
|
|
|
OS << DISubprogram(V.getContext()).getDisplayName() << ":";
|
2010-04-07 11:26:51 +02:00
|
|
|
OS << V.getName() << " <- ";
|
2010-04-07 03:15:14 +02:00
|
|
|
|
|
|
|
// Register or immediate value. Register 0 means undef.
|
|
|
|
if (MI->getOperand(0).isFPImm()) {
|
|
|
|
APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF());
|
|
|
|
if (MI->getOperand(0).getFPImm()->getType()->isFloatTy()) {
|
2010-04-07 11:26:51 +02:00
|
|
|
OS << (double)APF.convertToFloat();
|
2010-04-07 03:15:14 +02:00
|
|
|
} else if (MI->getOperand(0).getFPImm()->getType()->isDoubleTy()) {
|
2010-04-07 11:26:51 +02:00
|
|
|
OS << APF.convertToDouble();
|
2010-04-07 03:15:14 +02:00
|
|
|
} else {
|
|
|
|
// There is no good way to print long double. Convert a copy to
|
|
|
|
// double. Ah well, it's only a comment.
|
|
|
|
bool ignored;
|
|
|
|
APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
|
|
|
|
&ignored);
|
2010-04-07 11:26:51 +02:00
|
|
|
OS << "(long double) " << APF.convertToDouble();
|
2010-04-07 03:15:14 +02:00
|
|
|
}
|
|
|
|
} else if (MI->getOperand(0).isImm()) {
|
2010-04-07 11:26:51 +02:00
|
|
|
OS << MI->getOperand(0).getImm();
|
2011-06-24 22:46:11 +02:00
|
|
|
} else if (MI->getOperand(0).isCImm()) {
|
|
|
|
MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/);
|
2010-04-08 00:29:10 +02:00
|
|
|
} else {
|
|
|
|
assert(MI->getOperand(0).isReg() && "Unknown operand type");
|
2010-04-07 03:15:14 +02:00
|
|
|
if (MI->getOperand(0).getReg() == 0) {
|
|
|
|
// Suppress offset, it is not meaningful here.
|
2010-04-07 11:26:51 +02:00
|
|
|
OS << "undef";
|
2010-04-07 03:15:14 +02:00
|
|
|
// NOTE: Want this comment at start of line, don't emit with AddComment.
|
2010-04-07 11:26:51 +02:00
|
|
|
AP.OutStreamer.EmitRawText(OS.str());
|
2010-04-07 03:15:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
2010-04-07 11:26:51 +02:00
|
|
|
OS << AP.TM.getRegisterInfo()->getName(MI->getOperand(0).getReg());
|
2010-04-08 00:29:10 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-07 11:26:51 +02:00
|
|
|
OS << '+' << MI->getOperand(1).getImm();
|
2010-04-07 03:15:14 +02:00
|
|
|
// NOTE: Want this comment at start of line, don't emit with AddComment.
|
2010-04-07 11:26:51 +02:00
|
|
|
AP.OutStreamer.EmitRawText(OS.str());
|
2010-04-07 03:15:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
2010-02-10 01:47:53 +01:00
|
|
|
|
2011-05-10 20:39:09 +02:00
|
|
|
AsmPrinter::CFIMoveType AsmPrinter::needsCFIMoves() {
|
2011-05-25 05:44:17 +02:00
|
|
|
if (MAI->getExceptionHandlingType() == ExceptionHandling::DwarfCFI &&
|
|
|
|
MF->getFunction()->needsUnwindTableEntry())
|
|
|
|
return CFI_M_EH;
|
2011-04-29 16:14:06 +02:00
|
|
|
|
2011-05-10 20:39:09 +02:00
|
|
|
if (MMI->hasDebugInfo())
|
|
|
|
return CFI_M_Debug;
|
2011-04-29 16:14:06 +02:00
|
|
|
|
2011-05-10 20:39:09 +02:00
|
|
|
return CFI_M_None;
|
2011-04-29 16:14:06 +02:00
|
|
|
}
|
|
|
|
|
2011-05-28 06:21:04 +02:00
|
|
|
bool AsmPrinter::needsSEHMoves() {
|
|
|
|
return MAI->getExceptionHandlingType() == ExceptionHandling::Win64 &&
|
|
|
|
MF->getFunction()->needsUnwindTableEntry();
|
|
|
|
}
|
|
|
|
|
2011-04-15 17:11:06 +02:00
|
|
|
void AsmPrinter::emitPrologLabel(const MachineInstr &MI) {
|
|
|
|
MCSymbol *Label = MI.getOperand(0).getMCSymbol();
|
2011-04-26 21:26:53 +02:00
|
|
|
|
|
|
|
if (MAI->getExceptionHandlingType() != ExceptionHandling::DwarfCFI)
|
2011-04-15 17:11:06 +02:00
|
|
|
return;
|
|
|
|
|
2011-05-10 20:39:09 +02:00
|
|
|
if (needsCFIMoves() == CFI_M_None)
|
2011-04-29 16:14:06 +02:00
|
|
|
return;
|
|
|
|
|
2011-07-19 02:02:51 +02:00
|
|
|
if (MMI->getCompactUnwindEncoding() != 0)
|
|
|
|
OutStreamer.EmitCompactUnwindEncoding(MMI->getCompactUnwindEncoding());
|
|
|
|
|
2011-04-29 16:14:06 +02:00
|
|
|
MachineModuleInfo &MMI = MF->getMMI();
|
2011-04-15 17:11:06 +02:00
|
|
|
std::vector<MachineMove> &Moves = MMI.getFrameMoves();
|
2011-04-26 05:58:56 +02:00
|
|
|
bool FoundOne = false;
|
|
|
|
(void)FoundOne;
|
2011-04-15 17:11:06 +02:00
|
|
|
for (std::vector<MachineMove>::iterator I = Moves.begin(),
|
|
|
|
E = Moves.end(); I != E; ++I) {
|
|
|
|
if (I->getLabel() == Label) {
|
2011-04-26 05:58:56 +02:00
|
|
|
EmitCFIFrameMove(*I);
|
|
|
|
FoundOne = true;
|
2011-04-15 17:11:06 +02:00
|
|
|
}
|
|
|
|
}
|
2011-04-26 05:58:56 +02:00
|
|
|
assert(FoundOne);
|
2011-04-15 17:11:06 +02:00
|
|
|
}
|
|
|
|
|
2010-01-28 02:02:27 +01:00
|
|
|
/// EmitFunctionBody - This method emits the body and trailer for a
|
|
|
|
/// function.
|
|
|
|
void AsmPrinter::EmitFunctionBody() {
|
2010-01-28 02:58:58 +01:00
|
|
|
// Emit target-specific gunk before the function body.
|
|
|
|
EmitFunctionBodyStart();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-05 07:11:15 +02:00
|
|
|
bool ShouldPrintDebugScopes = DD && MMI->hasDebugInfo();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-28 02:02:27 +01:00
|
|
|
// Print out code for the function.
|
|
|
|
bool HasAnyRealCode = false;
|
2010-07-17 00:51:10 +02:00
|
|
|
const MachineInstr *LastMI = 0;
|
2010-01-28 02:02:27 +01:00
|
|
|
for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
|
|
|
|
I != E; ++I) {
|
|
|
|
// Print a label for the basic block.
|
|
|
|
EmitBasicBlockStart(I);
|
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
|
|
|
|
II != IE; ++II) {
|
2010-07-17 00:51:10 +02:00
|
|
|
LastMI = II;
|
|
|
|
|
2010-01-28 02:02:27 +01:00
|
|
|
// Print the assembly for the instruction.
|
2010-05-01 18:41:11 +02:00
|
|
|
if (!II->isLabel() && !II->isImplicitDef() && !II->isKill() &&
|
|
|
|
!II->isDebugValue()) {
|
2010-01-28 02:02:27 +01:00
|
|
|
HasAnyRealCode = true;
|
2010-04-27 21:38:45 +02:00
|
|
|
++EmittedInsts;
|
|
|
|
}
|
|
|
|
|
2010-04-07 12:44:46 +02:00
|
|
|
if (ShouldPrintDebugScopes) {
|
2010-06-18 17:56:31 +02:00
|
|
|
NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
|
2010-10-26 19:49:02 +02:00
|
|
|
DD->beginInstruction(II);
|
2010-04-07 12:44:46 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-04 20:52:31 +02:00
|
|
|
if (isVerbose())
|
2010-02-10 01:47:53 +01:00
|
|
|
EmitComments(*II, OutStreamer.GetCommentOS());
|
|
|
|
|
2010-02-03 02:00:52 +01:00
|
|
|
switch (II->getOpcode()) {
|
2010-07-17 00:20:36 +02:00
|
|
|
case TargetOpcode::PROLOG_LABEL:
|
2011-04-15 17:11:06 +02:00
|
|
|
emitPrologLabel(*II);
|
|
|
|
break;
|
|
|
|
|
2010-02-09 20:54:29 +01:00
|
|
|
case TargetOpcode::EH_LABEL:
|
|
|
|
case TargetOpcode::GC_LABEL:
|
2010-04-04 20:14:01 +02:00
|
|
|
OutStreamer.EmitLabel(II->getOperand(0).getMCSymbol());
|
2010-02-03 02:00:52 +01:00
|
|
|
break;
|
2010-02-09 20:54:29 +01:00
|
|
|
case TargetOpcode::INLINEASM:
|
2010-04-04 20:14:01 +02:00
|
|
|
EmitInlineAsm(II);
|
2010-02-03 02:00:52 +01:00
|
|
|
break;
|
2010-04-07 03:15:14 +02:00
|
|
|
case TargetOpcode::DBG_VALUE:
|
|
|
|
if (isVerbose()) {
|
|
|
|
if (!EmitDebugValueComment(II, *this))
|
|
|
|
EmitInstruction(II);
|
|
|
|
}
|
|
|
|
break;
|
2010-02-09 20:54:29 +01:00
|
|
|
case TargetOpcode::IMPLICIT_DEF:
|
2010-04-04 20:58:53 +02:00
|
|
|
if (isVerbose()) EmitImplicitDef(II, *this);
|
2010-02-03 02:00:52 +01:00
|
|
|
break;
|
2010-02-09 20:54:29 +01:00
|
|
|
case TargetOpcode::KILL:
|
2010-04-04 20:58:53 +02:00
|
|
|
if (isVerbose()) EmitKill(II, *this);
|
2010-02-03 02:00:52 +01:00
|
|
|
break;
|
|
|
|
default:
|
2011-04-29 20:00:54 +02:00
|
|
|
if (!TM.hasMCUseLoc())
|
|
|
|
MCLineEntry::Make(&OutStreamer, getCurrentSection());
|
|
|
|
|
2010-02-03 02:00:52 +01:00
|
|
|
EmitInstruction(II);
|
|
|
|
break;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-07 12:44:46 +02:00
|
|
|
if (ShouldPrintDebugScopes) {
|
2010-06-18 17:56:31 +02:00
|
|
|
NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
|
2010-10-26 19:49:02 +02:00
|
|
|
DD->endInstruction(II);
|
2010-04-07 12:44:46 +02:00
|
|
|
}
|
2010-01-28 02:02:27 +01:00
|
|
|
}
|
|
|
|
}
|
2010-07-17 00:51:10 +02:00
|
|
|
|
|
|
|
// If the last instruction was a prolog label, then we have a situation where
|
|
|
|
// we emitted a prolog but no function body. This results in the ending prolog
|
|
|
|
// label equaling the end of function label and an invalid "row" in the
|
|
|
|
// FDE. We need to emit a noop in this situation so that the FDE's rows are
|
|
|
|
// valid.
|
2010-07-17 21:18:44 +02:00
|
|
|
bool RequiresNoop = LastMI && LastMI->isPrologLabel();
|
2010-07-17 00:51:10 +02:00
|
|
|
|
2010-01-28 02:02:27 +01:00
|
|
|
// If the function is empty and the object file uses .subsections_via_symbols,
|
2010-01-28 02:28:58 +01:00
|
|
|
// then we need to emit *something* to the function body to prevent the
|
2010-04-27 01:37:21 +02:00
|
|
|
// labels from collapsing together. Just emit a noop.
|
2010-07-17 00:51:10 +02:00
|
|
|
if ((MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode) || RequiresNoop) {
|
2010-04-27 01:37:21 +02:00
|
|
|
MCInst Noop;
|
|
|
|
TM.getInstrInfo()->getNoopForMachoTarget(Noop);
|
2010-04-27 01:41:43 +02:00
|
|
|
if (Noop.getOpcode()) {
|
|
|
|
OutStreamer.AddComment("avoids zero-length function");
|
2010-04-27 01:37:21 +02:00
|
|
|
OutStreamer.EmitInstruction(Noop);
|
2010-04-27 01:41:43 +02:00
|
|
|
} else // Target not mc-ized yet.
|
2010-04-27 01:37:21 +02:00
|
|
|
OutStreamer.EmitRawText(StringRef("\tnop\n"));
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-28 02:58:58 +01:00
|
|
|
// Emit target-specific gunk after the function body.
|
|
|
|
EmitFunctionBodyEnd();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-04 00:19:41 +02:00
|
|
|
// If the target wants a .size directive for the size of the function, emit
|
|
|
|
// it.
|
|
|
|
if (MAI->hasDotTypeDotSizeDirective()) {
|
2010-04-04 00:28:33 +02:00
|
|
|
// Create a symbol for the end of function, so we can get the size as
|
|
|
|
// difference between the function label and the temp label.
|
|
|
|
MCSymbol *FnEndLabel = OutContext.CreateTempSymbol();
|
|
|
|
OutStreamer.EmitLabel(FnEndLabel);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-04 00:28:33 +02:00
|
|
|
const MCExpr *SizeExp =
|
|
|
|
MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(FnEndLabel, OutContext),
|
|
|
|
MCSymbolRefExpr::Create(CurrentFnSym, OutContext),
|
|
|
|
OutContext);
|
|
|
|
OutStreamer.EmitELFSize(CurrentFnSym, SizeExp);
|
2010-04-04 00:19:41 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-28 02:02:27 +01:00
|
|
|
// Emit post-function debug information.
|
2010-04-07 12:44:46 +02:00
|
|
|
if (DD) {
|
2010-06-18 17:56:31 +02:00
|
|
|
NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
|
|
|
|
DD->endFunction(MF);
|
2010-04-07 12:44:46 +02:00
|
|
|
}
|
|
|
|
if (DE) {
|
2010-06-18 17:56:31 +02:00
|
|
|
NamedRegionTimer T(EHTimerName, DWARFGroupName, TimePassesIsEnabled);
|
|
|
|
DE->EndFunction();
|
2010-04-07 12:44:46 +02:00
|
|
|
}
|
2010-04-05 07:11:15 +02:00
|
|
|
MMI->EndFunction();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-28 02:02:27 +01:00
|
|
|
// Print out jump tables referenced by the function.
|
|
|
|
EmitJumpTableInfo();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-03 02:49:49 +01:00
|
|
|
OutStreamer.AddBlankLine();
|
2010-01-28 02:02:27 +01:00
|
|
|
}
|
|
|
|
|
2010-04-28 03:39:28 +02:00
|
|
|
/// getDebugValueLocation - Get location information encoded by DBG_VALUE
|
|
|
|
/// operands.
|
2011-03-30 01:20:22 +02:00
|
|
|
MachineLocation AsmPrinter::
|
|
|
|
getDebugValueLocation(const MachineInstr *MI) const {
|
2010-04-28 03:39:28 +02:00
|
|
|
// Target specific DBG_VALUE instructions are handled by each target.
|
|
|
|
return MachineLocation();
|
|
|
|
}
|
2010-01-28 02:02:27 +01:00
|
|
|
|
2011-04-21 23:07:35 +02:00
|
|
|
/// EmitDwarfRegOp - Emit dwarf register operation.
|
2011-04-27 22:29:27 +02:00
|
|
|
void AsmPrinter::EmitDwarfRegOp(const MachineLocation &MLoc) const {
|
2011-04-28 04:22:40 +02:00
|
|
|
const TargetRegisterInfo *TRI = TM.getRegisterInfo();
|
2011-05-28 00:15:01 +02:00
|
|
|
int Reg = TRI->getDwarfRegNum(MLoc.getReg(), false);
|
|
|
|
|
|
|
|
for (const unsigned *SR = TRI->getSuperRegisters(MLoc.getReg());
|
2011-05-28 02:13:01 +02:00
|
|
|
*SR && Reg < 0; ++SR) {
|
2011-05-28 00:15:01 +02:00
|
|
|
Reg = TRI->getDwarfRegNum(*SR, false);
|
|
|
|
// FIXME: Get the bit range this register uses of the superregister
|
|
|
|
// so that we can produce a DW_OP_bit_piece
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Handle cases like a super register being encoded as
|
|
|
|
// DW_OP_reg 32 DW_OP_piece 4 DW_OP_reg 33
|
|
|
|
|
|
|
|
// FIXME: We have no reasonable way of handling errors in here. The
|
|
|
|
// caller might be in the middle of an dwarf expression. We should
|
|
|
|
// probably assert that Reg >= 0 once debug info generation is more mature.
|
|
|
|
|
2011-04-21 23:07:35 +02:00
|
|
|
if (int Offset = MLoc.getOffset()) {
|
2011-04-28 04:22:40 +02:00
|
|
|
if (Reg < 32) {
|
|
|
|
OutStreamer.AddComment(
|
|
|
|
dwarf::OperationEncodingString(dwarf::DW_OP_breg0 + Reg));
|
|
|
|
EmitInt8(dwarf::DW_OP_breg0 + Reg);
|
|
|
|
} else {
|
|
|
|
OutStreamer.AddComment("DW_OP_bregx");
|
|
|
|
EmitInt8(dwarf::DW_OP_bregx);
|
|
|
|
OutStreamer.AddComment(Twine(Reg));
|
|
|
|
EmitULEB128(Reg);
|
|
|
|
}
|
2011-04-21 23:07:35 +02:00
|
|
|
EmitSLEB128(Offset);
|
|
|
|
} else {
|
|
|
|
if (Reg < 32) {
|
|
|
|
OutStreamer.AddComment(
|
|
|
|
dwarf::OperationEncodingString(dwarf::DW_OP_reg0 + Reg));
|
|
|
|
EmitInt8(dwarf::DW_OP_reg0 + Reg);
|
|
|
|
} else {
|
2011-04-28 04:22:40 +02:00
|
|
|
OutStreamer.AddComment("DW_OP_regx");
|
2011-04-21 23:07:35 +02:00
|
|
|
EmitInt8(dwarf::DW_OP_regx);
|
|
|
|
OutStreamer.AddComment(Twine(Reg));
|
|
|
|
EmitULEB128(Reg);
|
|
|
|
}
|
|
|
|
}
|
2011-05-28 00:15:01 +02:00
|
|
|
|
|
|
|
// FIXME: Produce a DW_OP_bit_piece if we used a superregister
|
2011-04-21 23:07:35 +02:00
|
|
|
}
|
|
|
|
|
2004-08-17 01:15:22 +02:00
|
|
|
bool AsmPrinter::doFinalization(Module &M) {
|
2009-07-21 20:38:57 +02:00
|
|
|
// Emit global variables.
|
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I)
|
2010-01-19 05:39:15 +01:00
|
|
|
EmitGlobalVariable(I);
|
2011-01-28 04:20:10 +01:00
|
|
|
|
|
|
|
// Emit visibility info for declarations
|
|
|
|
for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
|
|
|
|
const Function &F = *I;
|
|
|
|
if (!F.isDeclaration())
|
|
|
|
continue;
|
|
|
|
GlobalValue::VisibilityTypes V = F.getVisibility();
|
|
|
|
if (V == GlobalValue::DefaultVisibility)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
MCSymbol *Name = Mang->getSymbol(&F);
|
2011-02-23 03:27:05 +01:00
|
|
|
EmitVisibility(Name, V, false);
|
2011-01-28 04:20:10 +01:00
|
|
|
}
|
|
|
|
|
2010-04-05 07:11:15 +02:00
|
|
|
// Finalize debug and EH information.
|
|
|
|
if (DE) {
|
2010-06-18 17:56:31 +02:00
|
|
|
{
|
|
|
|
NamedRegionTimer T(EHTimerName, DWARFGroupName, TimePassesIsEnabled);
|
2010-04-07 12:44:46 +02:00
|
|
|
DE->EndModule();
|
|
|
|
}
|
2010-04-05 07:11:15 +02:00
|
|
|
delete DE; DE = 0;
|
|
|
|
}
|
|
|
|
if (DD) {
|
2010-06-18 17:56:31 +02:00
|
|
|
{
|
|
|
|
NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
|
2010-04-07 12:44:46 +02:00
|
|
|
DD->endModule();
|
|
|
|
}
|
2010-04-05 07:11:15 +02:00
|
|
|
delete DD; DD = 0;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-06-24 20:52:01 +02:00
|
|
|
// If the target wants to know about weak references, print them all.
|
2009-08-22 23:43:10 +02:00
|
|
|
if (MAI->getWeakRefDirective()) {
|
2009-06-24 20:52:01 +02:00
|
|
|
// FIXME: This is not lazy, it would be nice to only print weak references
|
|
|
|
// to stuff that is actually used. Note that doing so would require targets
|
|
|
|
// to notice uses in operands (due to constant exprs etc). This should
|
|
|
|
// happen with the MC stuff eventually.
|
|
|
|
|
|
|
|
// Print out module-level global variables here.
|
|
|
|
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
|
|
|
|
I != E; ++I) {
|
2010-01-16 19:17:26 +01:00
|
|
|
if (!I->hasExternalWeakLinkage()) continue;
|
2010-03-12 22:09:07 +01:00
|
|
|
OutStreamer.EmitSymbolAttribute(Mang->getSymbol(I), MCSA_WeakReference);
|
2009-06-24 20:52:01 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-08-04 01:10:34 +02:00
|
|
|
for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
|
2010-01-16 19:17:26 +01:00
|
|
|
if (!I->hasExternalWeakLinkage()) continue;
|
2010-03-12 22:09:07 +01:00
|
|
|
OutStreamer.EmitSymbolAttribute(Mang->getSymbol(I), MCSA_WeakReference);
|
2009-06-24 20:52:01 +02:00
|
|
|
}
|
2006-12-18 04:37:18 +01:00
|
|
|
}
|
|
|
|
|
2010-01-26 21:40:54 +01:00
|
|
|
if (MAI->hasSetDirective()) {
|
2010-01-23 06:51:36 +01:00
|
|
|
OutStreamer.AddBlankLine();
|
2007-04-25 16:27:10 +02:00
|
|
|
for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
|
2009-06-24 20:52:01 +02:00
|
|
|
I != E; ++I) {
|
2010-03-12 22:09:07 +01:00
|
|
|
MCSymbol *Name = Mang->getSymbol(I);
|
2007-09-06 19:21:48 +02:00
|
|
|
|
2011-08-01 14:27:15 +02:00
|
|
|
const GlobalValue *GV = I->getAliasedGlobal();
|
2010-03-12 22:09:07 +01:00
|
|
|
MCSymbol *Target = Mang->getSymbol(GV);
|
2010-01-16 02:17:26 +01:00
|
|
|
|
2010-01-17 22:43:43 +01:00
|
|
|
if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
|
2010-01-23 07:39:22 +01:00
|
|
|
OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
|
2010-01-17 22:43:43 +01:00
|
|
|
else if (I->hasWeakLinkage())
|
2010-01-23 07:39:22 +01:00
|
|
|
OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
|
2010-01-17 22:43:43 +01:00
|
|
|
else
|
2010-01-16 02:37:14 +01:00
|
|
|
assert(I->hasLocalLinkage() && "Invalid alias linkage");
|
2008-03-11 22:41:14 +01:00
|
|
|
|
2010-01-28 01:05:10 +01:00
|
|
|
EmitVisibility(Name, I->getVisibility());
|
2008-03-11 22:41:14 +01:00
|
|
|
|
2010-01-26 22:53:08 +01:00
|
|
|
// Emit the directives as assignments aka .set:
|
2011-03-30 01:20:22 +02:00
|
|
|
OutStreamer.EmitAssignment(Name,
|
2010-01-26 22:53:08 +01:00
|
|
|
MCSymbolRefExpr::Create(Target, OutContext));
|
2007-04-25 16:27:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-28 14:14:17 +01:00
|
|
|
GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
|
2008-08-17 20:44:35 +02:00
|
|
|
assert(MI && "AsmPrinter didn't require GCModuleInfo?");
|
|
|
|
for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
|
|
|
|
if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
|
2010-04-04 09:39:04 +02:00
|
|
|
MP->finishAssembly(*this);
|
2008-01-07 02:30:38 +01:00
|
|
|
|
2008-05-05 02:28:39 +02:00
|
|
|
// If we don't have any trampolines, then we don't require stack memory
|
|
|
|
// to be executable. Some targets have a directive to declare this.
|
2009-06-24 20:52:01 +02:00
|
|
|
Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
|
2008-05-05 02:28:39 +02:00
|
|
|
if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
|
2010-04-08 23:26:26 +02:00
|
|
|
if (const MCSection *S = MAI->getNonexecutableStackSection(OutContext))
|
2010-01-23 08:21:06 +01:00
|
|
|
OutStreamer.SwitchSection(S);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-09-18 22:17:03 +02:00
|
|
|
// Allow the target to emit any magic that it wants at the end of the file,
|
|
|
|
// after everything else has gone out.
|
|
|
|
EmitEndOfAsmFile(M);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2004-08-17 01:15:22 +02:00
|
|
|
delete Mang; Mang = 0;
|
2010-04-05 07:11:15 +02:00
|
|
|
MMI = 0;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-07-27 23:28:04 +02:00
|
|
|
OutStreamer.Finish();
|
2004-08-17 01:15:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-11-21 08:51:36 +01:00
|
|
|
void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
|
2010-01-26 05:35:26 +01:00
|
|
|
this->MF = &MF;
|
2010-01-16 02:24:10 +01:00
|
|
|
// Get the function symbol.
|
2010-03-12 22:09:07 +01:00
|
|
|
CurrentFnSym = Mang->getSymbol(MF.getFunction());
|
2009-08-10 18:38:07 +02:00
|
|
|
|
2010-04-04 20:52:31 +02:00
|
|
|
if (isVerbose())
|
2009-08-10 18:38:07 +02:00
|
|
|
LI = &getAnalysis<MachineLoopInfo>();
|
2004-08-17 01:15:22 +02:00
|
|
|
}
|
|
|
|
|
2009-03-13 08:51:59 +01:00
|
|
|
namespace {
|
|
|
|
// SectionCPs - Keep track the alignment, constpool entries per Section.
|
|
|
|
struct SectionCPs {
|
2009-07-31 20:48:30 +02:00
|
|
|
const MCSection *S;
|
2009-03-13 08:51:59 +01:00
|
|
|
unsigned Alignment;
|
|
|
|
SmallVector<unsigned, 4> CPEs;
|
2009-12-19 08:05:23 +01:00
|
|
|
SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
|
2009-03-13 08:51:59 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2005-11-21 09:25:09 +01:00
|
|
|
/// EmitConstantPool - Print to the current output stream assembly
|
|
|
|
/// representations of the constants in the constant pool MCP. This is
|
|
|
|
/// used to print out constants which have been "spilled to memory" by
|
|
|
|
/// the code generator.
|
|
|
|
///
|
2010-01-28 01:19:24 +01:00
|
|
|
void AsmPrinter::EmitConstantPool() {
|
|
|
|
const MachineConstantPool *MCP = MF->getConstantPool();
|
2006-02-09 05:22:52 +01:00
|
|
|
const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
|
2005-11-21 09:25:09 +01:00
|
|
|
if (CP.empty()) return;
|
2006-06-29 02:26:09 +02:00
|
|
|
|
2008-09-25 00:17:59 +02:00
|
|
|
// Calculate sections for constant pool entries. We collect entries to go into
|
|
|
|
// the same section together to reduce amount of section switch statements.
|
2009-03-13 08:51:59 +01:00
|
|
|
SmallVector<SectionCPs, 4> CPSections;
|
2006-06-29 02:26:09 +02:00
|
|
|
for (unsigned i = 0, e = CP.size(); i != e; ++i) {
|
2009-07-22 02:28:43 +02:00
|
|
|
const MachineConstantPoolEntry &CPE = CP[i];
|
2009-03-13 08:51:59 +01:00
|
|
|
unsigned Align = CPE.getAlignment();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-07-26 08:26:55 +02:00
|
|
|
SectionKind Kind;
|
|
|
|
switch (CPE.getRelocationInfo()) {
|
|
|
|
default: llvm_unreachable("Unknown section kind");
|
2009-08-02 01:57:16 +02:00
|
|
|
case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
|
2009-07-26 09:00:12 +02:00
|
|
|
case 1:
|
2009-08-02 01:57:16 +02:00
|
|
|
Kind = SectionKind::getReadOnlyWithRelLocal();
|
2009-07-26 09:00:12 +02:00
|
|
|
break;
|
2009-07-26 08:26:55 +02:00
|
|
|
case 0:
|
2009-07-26 09:00:12 +02:00
|
|
|
switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
|
2009-08-02 01:57:16 +02:00
|
|
|
case 4: Kind = SectionKind::getMergeableConst4(); break;
|
|
|
|
case 8: Kind = SectionKind::getMergeableConst8(); break;
|
|
|
|
case 16: Kind = SectionKind::getMergeableConst16();break;
|
|
|
|
default: Kind = SectionKind::getMergeableConst(); break;
|
2009-07-26 09:00:12 +02:00
|
|
|
}
|
2009-07-26 08:26:55 +02:00
|
|
|
}
|
|
|
|
|
2009-08-02 01:46:12 +02:00
|
|
|
const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-03-13 08:51:59 +01:00
|
|
|
// The number of sections are small, just do a linear search from the
|
|
|
|
// last section to the first.
|
|
|
|
bool Found = false;
|
|
|
|
unsigned SecIdx = CPSections.size();
|
|
|
|
while (SecIdx != 0) {
|
|
|
|
if (CPSections[--SecIdx].S == S) {
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!Found) {
|
|
|
|
SecIdx = CPSections.size();
|
|
|
|
CPSections.push_back(SectionCPs(S, Align));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Align > CPSections[SecIdx].Alignment)
|
|
|
|
CPSections[SecIdx].Alignment = Align;
|
|
|
|
CPSections[SecIdx].CPEs.push_back(i);
|
2006-06-29 02:26:09 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 00:17:59 +02:00
|
|
|
// Now print stuff into the calculated sections.
|
2009-03-13 08:51:59 +01:00
|
|
|
for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(CPSections[i].S);
|
2009-03-13 08:51:59 +01:00
|
|
|
EmitAlignment(Log2_32(CPSections[i].Alignment));
|
2006-06-29 02:26:09 +02:00
|
|
|
|
2009-03-13 08:51:59 +01:00
|
|
|
unsigned Offset = 0;
|
|
|
|
for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
|
|
|
|
unsigned CPI = CPSections[i].CPEs[j];
|
|
|
|
MachineConstantPoolEntry CPE = CP[CPI];
|
|
|
|
|
|
|
|
// Emit inter-object padding for alignment.
|
|
|
|
unsigned AlignMask = CPE.getAlignment() - 1;
|
|
|
|
unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
|
2010-01-19 20:46:13 +01:00
|
|
|
OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
|
2009-03-13 08:51:59 +01:00
|
|
|
|
2011-07-18 06:54:35 +02:00
|
|
|
Type *Ty = CPE.getType();
|
2009-05-09 09:06:46 +02:00
|
|
|
Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
|
2010-01-23 06:19:23 +01:00
|
|
|
OutStreamer.EmitLabel(GetCPISymbol(CPI));
|
|
|
|
|
2009-03-13 08:51:59 +01:00
|
|
|
if (CPE.isMachineConstantPoolEntry())
|
|
|
|
EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
|
2008-09-25 00:17:59 +02:00
|
|
|
else
|
2009-03-13 08:51:59 +01:00
|
|
|
EmitGlobalConstant(CPE.Val.ConstVal);
|
2006-02-09 05:46:04 +01:00
|
|
|
}
|
2005-11-21 09:25:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-22 20:53:45 +02:00
|
|
|
/// EmitJumpTableInfo - Print assembly representations of the jump tables used
|
2011-03-30 01:20:22 +02:00
|
|
|
/// by the current function to the current output stream.
|
2006-04-22 20:53:45 +02:00
|
|
|
///
|
2010-01-28 02:02:27 +01:00
|
|
|
void AsmPrinter::EmitJumpTableInfo() {
|
|
|
|
const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
|
2010-01-25 23:41:33 +01:00
|
|
|
if (MJTI == 0) return;
|
2010-03-11 15:58:16 +01:00
|
|
|
if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return;
|
2006-04-22 20:53:45 +02:00
|
|
|
const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
|
|
|
|
if (JT.empty()) return;
|
2007-11-14 10:18:41 +01:00
|
|
|
|
2011-03-30 01:20:22 +02:00
|
|
|
// Pick the directive to use to print the jump table entries, and switch to
|
2006-07-27 03:13:04 +02:00
|
|
|
// the appropriate section.
|
2010-01-28 02:02:27 +01:00
|
|
|
const Function *F = MF->getFunction();
|
2009-06-18 22:37:15 +02:00
|
|
|
bool JTInDiffSection = false;
|
2010-01-26 07:53:37 +01:00
|
|
|
if (// In PIC mode, we need to emit the jump table to the same section as the
|
|
|
|
// function body itself, otherwise the label differences won't make sense.
|
|
|
|
// FIXME: Need a better predicate for this: what about custom entries?
|
|
|
|
MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
|
|
|
|
// We should also do if the section name is NULL or function is declared
|
|
|
|
// in discardable section
|
|
|
|
// FIXME: this isn't the right predicate, should be based on the MCSection
|
|
|
|
// for the function.
|
|
|
|
F->isWeakForLinker()) {
|
2010-01-28 02:02:27 +01:00
|
|
|
OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F,Mang,TM));
|
2006-07-27 03:13:04 +02:00
|
|
|
} else {
|
2009-08-02 01:46:12 +02:00
|
|
|
// Otherwise, drop it in the readonly section.
|
2011-03-30 01:20:22 +02:00
|
|
|
const MCSection *ReadOnlySection =
|
2009-08-02 01:57:16 +02:00
|
|
|
getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(ReadOnlySection);
|
2009-06-18 22:37:15 +02:00
|
|
|
JTInDiffSection = true;
|
2006-07-27 03:13:04 +02:00
|
|
|
}
|
2010-01-26 00:26:13 +01:00
|
|
|
|
|
|
|
EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData())));
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-26 07:42:44 +01:00
|
|
|
for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
|
|
|
|
const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
|
|
|
// If this jump table was deleted, ignore it.
|
2006-10-28 20:10:06 +02:00
|
|
|
if (JTBBs.empty()) continue;
|
2006-08-12 23:29:52 +02:00
|
|
|
|
2010-01-26 06:15:20 +01:00
|
|
|
// For the EK_LabelDifference32 entry, if the target supports .set, emit a
|
|
|
|
// .set directive for each unique entry. This reduces the number of
|
|
|
|
// relocations the assembler will generate for the jump table.
|
|
|
|
if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
|
2010-01-26 21:40:54 +01:00
|
|
|
MAI->hasSetDirective()) {
|
2010-01-26 07:42:44 +01:00
|
|
|
SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
|
|
|
|
const TargetLowering *TLI = TM.getTargetLowering();
|
2010-01-28 02:02:27 +01:00
|
|
|
const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext);
|
2010-01-26 07:42:44 +01:00
|
|
|
for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
|
|
|
|
const MachineBasicBlock *MBB = JTBBs[ii];
|
|
|
|
if (!EmittedSets.insert(MBB)) continue;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-26 22:53:08 +01:00
|
|
|
// .set LJTSet, LBB32-base
|
|
|
|
const MCExpr *LHS =
|
2010-03-13 22:04:28 +01:00
|
|
|
MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
|
2010-01-26 22:53:08 +01:00
|
|
|
OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
|
|
|
|
MCBinaryExpr::CreateSub(LHS, Base, OutContext));
|
2010-01-26 07:42:44 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
}
|
|
|
|
|
2011-02-15 10:23:02 +01:00
|
|
|
// On some targets (e.g. Darwin) we want to emit two consecutive labels
|
2007-01-18 02:12:56 +01:00
|
|
|
// before each jump table. The first label is never referenced, but tells
|
|
|
|
// the assembler and linker the extents of the jump table object. The
|
|
|
|
// second label is actually referenced by the code.
|
2010-01-23 06:19:23 +01:00
|
|
|
if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
|
2010-01-26 06:58:28 +01:00
|
|
|
// FIXME: This doesn't have to have any specific name, just any randomly
|
|
|
|
// named and numbered 'l' label would work. Simplify GetJTISymbol.
|
2010-01-26 07:42:44 +01:00
|
|
|
OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
|
2010-01-23 06:19:23 +01:00
|
|
|
|
2010-01-26 07:42:44 +01:00
|
|
|
OutStreamer.EmitLabel(GetJTISymbol(JTI));
|
2010-01-23 06:19:23 +01:00
|
|
|
|
2010-01-26 06:10:10 +01:00
|
|
|
for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
|
2010-01-26 07:42:44 +01:00
|
|
|
EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
|
2006-04-22 20:53:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-26 06:10:10 +01:00
|
|
|
/// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
|
|
|
|
/// current stream.
|
|
|
|
void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
|
|
|
|
const MachineBasicBlock *MBB,
|
|
|
|
unsigned UID) const {
|
2011-02-09 22:52:06 +01:00
|
|
|
assert(MBB && MBB->getNumber() >= 0 && "Invalid basic block");
|
2010-01-26 04:43:22 +01:00
|
|
|
const MCExpr *Value = 0;
|
|
|
|
switch (MJTI->getEntryKind()) {
|
2010-03-11 15:58:16 +01:00
|
|
|
case MachineJumpTableInfo::EK_Inline:
|
|
|
|
llvm_unreachable("Cannot emit EK_Inline jump table entry"); break;
|
2010-01-26 05:05:28 +01:00
|
|
|
case MachineJumpTableInfo::EK_Custom32:
|
2010-01-26 06:10:10 +01:00
|
|
|
Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
|
2010-01-26 05:05:28 +01:00
|
|
|
OutContext);
|
|
|
|
break;
|
2010-01-26 04:43:22 +01:00
|
|
|
case MachineJumpTableInfo::EK_BlockAddress:
|
|
|
|
// EK_BlockAddress - Each entry is a plain address of block, e.g.:
|
|
|
|
// .word LBB123
|
2010-03-13 22:04:28 +01:00
|
|
|
Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
|
2010-01-26 04:43:22 +01:00
|
|
|
break;
|
|
|
|
case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
|
|
|
|
// EK_GPRel32BlockAddress - Each entry is an address of block, encoded
|
|
|
|
// with a relocation as gp-relative, e.g.:
|
|
|
|
// .gprel32 LBB123
|
2010-03-13 22:04:28 +01:00
|
|
|
MCSymbol *MBBSym = MBB->getSymbol();
|
2010-01-25 22:28:50 +01:00
|
|
|
OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
|
2010-01-25 22:10:10 +01:00
|
|
|
return;
|
2007-11-14 10:18:41 +01:00
|
|
|
}
|
2010-01-26 05:05:28 +01:00
|
|
|
|
2010-01-26 04:43:22 +01:00
|
|
|
case MachineJumpTableInfo::EK_LabelDifference32: {
|
|
|
|
// EK_LabelDifference32 - Each entry is the address of the block minus
|
|
|
|
// the address of the jump table. This is used for PIC jump tables where
|
|
|
|
// gprel32 is not supported. e.g.:
|
|
|
|
// .word LBB123 - LJTI1_2
|
|
|
|
// If the .set directive is supported, this is emitted as:
|
|
|
|
// .set L4_5_set_123, LBB123 - LJTI1_2
|
|
|
|
// .word L4_5_set_123
|
2011-03-30 01:20:22 +02:00
|
|
|
|
|
|
|
// If we have emitted set directives for the jump table entries, print
|
2010-01-26 04:43:22 +01:00
|
|
|
// them rather than the entries themselves. If we're emitting PIC, then
|
|
|
|
// emit the table entries as differences between two text section labels.
|
2010-01-26 21:40:54 +01:00
|
|
|
if (MAI->hasSetDirective()) {
|
2010-01-26 04:43:22 +01:00
|
|
|
// If we used .set, reference the .set's symbol.
|
2010-01-26 06:10:10 +01:00
|
|
|
Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
|
2010-01-26 04:43:22 +01:00
|
|
|
OutContext);
|
|
|
|
break;
|
|
|
|
}
|
2010-01-25 22:22:22 +01:00
|
|
|
// Otherwise, use the difference as the jump table entry.
|
2010-03-13 22:04:28 +01:00
|
|
|
Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
|
2010-01-26 06:10:10 +01:00
|
|
|
const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
|
2010-01-26 04:43:22 +01:00
|
|
|
Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
|
|
|
|
break;
|
|
|
|
}
|
2007-11-14 10:18:41 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-26 04:43:22 +01:00
|
|
|
assert(Value && "Unknown entry kind!");
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-26 00:26:13 +01:00
|
|
|
unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
|
2010-01-26 04:43:22 +01:00
|
|
|
OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0);
|
2007-11-14 10:18:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-13 07:32:10 +01:00
|
|
|
/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
|
|
|
|
/// special global used by LLVM. If so, emit it and return true, otherwise
|
|
|
|
/// do nothing and return false.
|
|
|
|
bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
|
2009-07-26 01:55:21 +02:00
|
|
|
if (GV->getName() == "llvm.used") {
|
2010-01-23 06:51:36 +01:00
|
|
|
if (MAI->hasNoDeadStrip()) // No need to emit this at all.
|
2007-08-22 21:33:11 +02:00
|
|
|
EmitLLVMUsedList(GV->getInitializer());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-20 08:14:25 +02:00
|
|
|
// Ignore debug and non-emitted data. This handles llvm.compiler.used.
|
2009-04-13 07:44:34 +02:00
|
|
|
if (GV->getSection() == "llvm.metadata" ||
|
|
|
|
GV->hasAvailableExternallyLinkage())
|
|
|
|
return true;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2006-03-07 23:00:35 +01:00
|
|
|
if (!GV->hasAppendingLinkage()) return false;
|
|
|
|
|
|
|
|
assert(GV->hasInitializer() && "Not a special LLVM global!");
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2007-06-04 22:39:18 +02:00
|
|
|
const TargetData *TD = TM.getTargetData();
|
|
|
|
unsigned Align = Log2_32(TD->getPointerPrefAlignment());
|
2009-03-09 06:52:15 +01:00
|
|
|
if (GV->getName() == "llvm.global_ctors") {
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
|
2010-04-28 21:58:07 +02:00
|
|
|
EmitAlignment(Align);
|
2009-03-09 09:18:48 +01:00
|
|
|
EmitXXStructorList(GV->getInitializer());
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 05:34:02 +01:00
|
|
|
if (TM.getRelocationModel() == Reloc::Static &&
|
2010-01-23 06:51:36 +01:00
|
|
|
MAI->hasStaticCtorDtorReferenceInStaticMode()) {
|
|
|
|
StringRef Sym(".constructors_used");
|
|
|
|
OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
|
2010-01-23 07:39:22 +01:00
|
|
|
MCSA_Reference);
|
2010-01-23 06:51:36 +01:00
|
|
|
}
|
2009-03-09 09:18:48 +01:00
|
|
|
return true;
|
2011-03-30 01:20:22 +02:00
|
|
|
}
|
|
|
|
|
2009-03-09 06:52:15 +01:00
|
|
|
if (GV->getName() == "llvm.global_dtors") {
|
2009-08-19 07:49:37 +02:00
|
|
|
OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
|
2010-04-28 21:58:07 +02:00
|
|
|
EmitAlignment(Align);
|
2009-03-09 09:18:48 +01:00
|
|
|
EmitXXStructorList(GV->getInitializer());
|
2010-01-19 05:34:02 +01:00
|
|
|
|
|
|
|
if (TM.getRelocationModel() == Reloc::Static &&
|
2010-01-23 06:51:36 +01:00
|
|
|
MAI->hasStaticCtorDtorReferenceInStaticMode()) {
|
|
|
|
StringRef Sym(".destructors_used");
|
|
|
|
OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
|
2010-01-23 07:39:22 +01:00
|
|
|
MCSA_Reference);
|
2010-01-23 06:51:36 +01:00
|
|
|
}
|
2009-03-09 09:18:48 +01:00
|
|
|
return true;
|
2005-12-13 07:32:10 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2005-12-13 07:32:10 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-22 23:43:10 +02:00
|
|
|
/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
|
2008-09-10 00:29:13 +02:00
|
|
|
/// global in the specified llvm.used list for which emitUsedDirectiveFor
|
|
|
|
/// is true, as being used with this directive.
|
2011-06-19 20:37:11 +02:00
|
|
|
void AsmPrinter::EmitLLVMUsedList(const Constant *List) {
|
2009-06-15 01:30:43 +02:00
|
|
|
// Should be an array of 'i8*'.
|
2011-06-19 20:37:11 +02:00
|
|
|
const ConstantArray *InitList = dyn_cast<ConstantArray>(List);
|
2006-09-26 05:38:18 +02:00
|
|
|
if (InitList == 0) return;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2006-09-26 05:38:18 +02:00
|
|
|
for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
|
2009-07-18 00:00:23 +02:00
|
|
|
const GlobalValue *GV =
|
|
|
|
dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
|
2010-01-23 06:51:36 +01:00
|
|
|
if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
|
2010-03-12 22:09:07 +01:00
|
|
|
OutStreamer.EmitSymbolAttribute(Mang->getSymbol(GV), MCSA_NoDeadStrip);
|
2006-09-26 05:38:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-28 15:17:22 +02:00
|
|
|
typedef std::pair<int, Constant*> Structor;
|
|
|
|
|
|
|
|
static bool priority_order(const Structor& lhs, const Structor& rhs)
|
|
|
|
{
|
|
|
|
return lhs.first < rhs.first;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitXXStructorList - Emit the ctor or dtor list taking into account the init
|
|
|
|
/// priority.
|
2011-06-19 20:37:11 +02:00
|
|
|
void AsmPrinter::EmitXXStructorList(const Constant *List) {
|
2005-12-13 07:32:10 +01:00
|
|
|
// Should be an array of '{ int, void ()* }' structs. The first value is the
|
2011-08-28 15:17:22 +02:00
|
|
|
// init priority.
|
2005-12-13 07:32:10 +01:00
|
|
|
if (!isa<ConstantArray>(List)) return;
|
2011-08-28 15:17:22 +02:00
|
|
|
|
|
|
|
// Sanity check the structors list.
|
|
|
|
const ConstantArray *InitList = dyn_cast<ConstantArray>(List);
|
|
|
|
if (!InitList) return; // Not an array!
|
|
|
|
StructType *ETy = dyn_cast<StructType>(InitList->getType()->getElementType());
|
|
|
|
if (!ETy || ETy->getNumElements() != 2) return; // Not an array of pairs!
|
|
|
|
if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) ||
|
|
|
|
!isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr).
|
|
|
|
|
|
|
|
// Gather the structors in a form that's convenient for sorting by priority.
|
|
|
|
SmallVector<Structor, 8> Structors;
|
|
|
|
for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
|
|
|
|
ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i));
|
|
|
|
if (!CS) continue; // Malformed.
|
|
|
|
if (CS->getOperand(1)->isNullValue())
|
|
|
|
break; // Found a null terminator, skip the rest.
|
|
|
|
ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
|
|
|
|
if (!Priority) continue; // Malformed.
|
|
|
|
Structors.push_back(std::make_pair(Priority->getLimitedValue(65535),
|
|
|
|
CS->getOperand(1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Emit the function pointers in reverse priority order.
|
2011-09-02 20:07:19 +02:00
|
|
|
switch (MAI->getStructorOutputOrder()) {
|
|
|
|
case Structors::None:
|
|
|
|
break;
|
|
|
|
case Structors::PriorityOrder:
|
|
|
|
std::sort(Structors.begin(), Structors.end(), priority_order);
|
|
|
|
break;
|
|
|
|
case Structors::ReversePriorityOrder:
|
|
|
|
std::sort(Structors.rbegin(), Structors.rend(), priority_order);
|
|
|
|
break;
|
|
|
|
}
|
2011-08-28 15:17:22 +02:00
|
|
|
for (unsigned i = 0, e = Structors.size(); i != e; ++i)
|
|
|
|
EmitGlobalConstant(Structors[i].second);
|
2005-12-13 07:32:10 +01:00
|
|
|
}
|
2005-11-21 09:25:09 +01:00
|
|
|
|
2007-01-25 16:12:02 +01:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Emission and print routines
|
|
|
|
//
|
|
|
|
|
|
|
|
/// EmitInt8 - Emit a byte directive and value.
|
|
|
|
///
|
|
|
|
void AsmPrinter::EmitInt8(int Value) const {
|
2010-01-20 07:45:39 +01:00
|
|
|
OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
|
2007-01-25 16:12:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitInt16 - Emit a short directive and value.
|
|
|
|
///
|
|
|
|
void AsmPrinter::EmitInt16(int Value) const {
|
2010-01-20 07:45:39 +01:00
|
|
|
OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
|
2007-01-25 16:12:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitInt32 - Emit a long directive and value.
|
|
|
|
///
|
|
|
|
void AsmPrinter::EmitInt32(int Value) const {
|
2010-01-20 07:45:39 +01:00
|
|
|
OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
|
2007-01-25 16:12:02 +01:00
|
|
|
}
|
|
|
|
|
2010-03-09 00:58:37 +01:00
|
|
|
/// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size
|
|
|
|
/// in bytes of the directive is specified by Size and Hi/Lo specify the
|
|
|
|
/// labels. This implicitly uses .set if it is available.
|
|
|
|
void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo,
|
|
|
|
unsigned Size) const {
|
|
|
|
// Get the Hi-Lo expression.
|
2011-03-30 01:20:22 +02:00
|
|
|
const MCExpr *Diff =
|
2010-03-09 00:58:37 +01:00
|
|
|
MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(Hi, OutContext),
|
|
|
|
MCSymbolRefExpr::Create(Lo, OutContext),
|
|
|
|
OutContext);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-03-09 00:58:37 +01:00
|
|
|
if (!MAI->hasSetDirective()) {
|
|
|
|
OutStreamer.EmitValue(Diff, Size, 0/*AddrSpace*/);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, emit with .set (aka assignment).
|
2010-04-04 21:25:43 +02:00
|
|
|
MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++);
|
2010-03-09 00:58:37 +01:00
|
|
|
OutStreamer.EmitAssignment(SetLabel, Diff);
|
2010-03-09 01:39:24 +01:00
|
|
|
OutStreamer.EmitSymbolValue(SetLabel, Size, 0/*AddrSpace*/);
|
2010-03-09 00:58:37 +01:00
|
|
|
}
|
|
|
|
|
2011-03-30 01:20:22 +02:00
|
|
|
/// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo"
|
2010-04-17 01:33:45 +02:00
|
|
|
/// where the size in bytes of the directive is specified by Size and Hi/Lo
|
|
|
|
/// specify the labels. This implicitly uses .set if it is available.
|
|
|
|
void AsmPrinter::EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset,
|
2011-03-30 01:20:22 +02:00
|
|
|
const MCSymbol *Lo, unsigned Size)
|
2010-04-17 01:33:45 +02:00
|
|
|
const {
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-17 01:33:45 +02:00
|
|
|
// Emit Hi+Offset - Lo
|
|
|
|
// Get the Hi+Offset expression.
|
|
|
|
const MCExpr *Plus =
|
2011-03-30 01:20:22 +02:00
|
|
|
MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Hi, OutContext),
|
2010-04-17 01:33:45 +02:00
|
|
|
MCConstantExpr::Create(Offset, OutContext),
|
|
|
|
OutContext);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-17 01:33:45 +02:00
|
|
|
// Get the Hi+Offset-Lo expression.
|
2011-03-30 01:20:22 +02:00
|
|
|
const MCExpr *Diff =
|
2010-04-17 01:33:45 +02:00
|
|
|
MCBinaryExpr::CreateSub(Plus,
|
|
|
|
MCSymbolRefExpr::Create(Lo, OutContext),
|
|
|
|
OutContext);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
|
|
|
if (!MAI->hasSetDirective())
|
2010-04-17 01:33:45 +02:00
|
|
|
OutStreamer.EmitValue(Diff, 4, 0/*AddrSpace*/);
|
|
|
|
else {
|
|
|
|
// Otherwise, emit with .set (aka assignment).
|
|
|
|
MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++);
|
|
|
|
OutStreamer.EmitAssignment(SetLabel, Diff);
|
|
|
|
OutStreamer.EmitSymbolValue(SetLabel, 4, 0/*AddrSpace*/);
|
|
|
|
}
|
|
|
|
}
|
2010-09-02 18:43:44 +02:00
|
|
|
|
2011-03-30 01:20:22 +02:00
|
|
|
/// EmitLabelPlusOffset - Emit something like ".long Label+Offset"
|
2010-09-02 18:43:44 +02:00
|
|
|
/// where the size in bytes of the directive is specified by Size and Label
|
|
|
|
/// specifies the label. This implicitly uses .set if it is available.
|
|
|
|
void AsmPrinter::EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset,
|
2011-03-30 01:20:22 +02:00
|
|
|
unsigned Size)
|
2010-09-02 18:43:44 +02:00
|
|
|
const {
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-09-02 18:43:44 +02:00
|
|
|
// Emit Label+Offset
|
|
|
|
const MCExpr *Plus =
|
2011-03-30 01:20:22 +02:00
|
|
|
MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Label, OutContext),
|
2010-09-02 18:43:44 +02:00
|
|
|
MCConstantExpr::Create(Offset, OutContext),
|
|
|
|
OutContext);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-09-03 01:01:10 +02:00
|
|
|
OutStreamer.EmitValue(Plus, 4, 0/*AddrSpace*/);
|
2010-09-02 18:43:44 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-03-09 00:58:37 +01:00
|
|
|
|
2007-01-25 16:12:02 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-05-31 20:57:45 +02:00
|
|
|
// EmitAlignment - Emit an alignment directive to the specified power of
|
|
|
|
// two boundary. For example, if you pass in 3 here, you will get an 8
|
|
|
|
// byte alignment. If a global value is specified, and if that global has
|
2010-04-28 21:58:07 +02:00
|
|
|
// an explicit alignment requested, it will override the alignment request
|
|
|
|
// if required for correctness.
|
2007-05-31 20:57:45 +02:00
|
|
|
//
|
2010-04-28 03:08:40 +02:00
|
|
|
void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
|
2010-04-28 21:58:07 +02:00
|
|
|
if (GV) NumBits = getGVAlignmentLog2(GV, *TM.getTargetData(), NumBits);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-28 21:58:07 +02:00
|
|
|
if (NumBits == 0) return; // 1-byte aligned: no need to emit alignment.
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-08-18 08:15:16 +02:00
|
|
|
if (getCurrentSection()->getKind().isText())
|
2010-02-23 19:46:22 +01:00
|
|
|
OutStreamer.EmitCodeAlignment(1 << NumBits);
|
|
|
|
else
|
|
|
|
OutStreamer.EmitValueToAlignment(1 << NumBits, 0, 1, 0);
|
2004-08-17 21:14:29 +02:00
|
|
|
}
|
2009-08-05 23:00:52 +02:00
|
|
|
|
2010-04-20 08:20:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Constant emission.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-01-23 07:17:14 +01:00
|
|
|
/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
|
|
|
|
///
|
|
|
|
static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
|
|
|
|
MCContext &Ctx = AP.OutContext;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-23 07:17:14 +01:00
|
|
|
if (CV->isNullValue() || isa<UndefValue>(CV))
|
|
|
|
return MCConstantExpr::Create(0, Ctx);
|
|
|
|
|
|
|
|
if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
|
|
|
|
return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-23 07:17:14 +01:00
|
|
|
if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
|
2010-03-12 22:09:07 +01:00
|
|
|
return MCSymbolRefExpr::Create(AP.Mang->getSymbol(GV), Ctx);
|
2010-08-18 20:41:13 +02:00
|
|
|
|
2010-01-23 07:17:14 +01:00
|
|
|
if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
|
|
|
|
return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-13 05:29:19 +01:00
|
|
|
const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
|
|
|
|
if (CE == 0) {
|
2010-01-23 07:17:14 +01:00
|
|
|
llvm_unreachable("Unknown constant value to lower!");
|
|
|
|
return MCConstantExpr::Create(0, Ctx);
|
2010-01-13 05:29:19 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-13 05:29:19 +01:00
|
|
|
switch (CE->getOpcode()) {
|
2010-02-08 23:02:38 +01:00
|
|
|
default:
|
|
|
|
// If the code isn't optimized, there may be outstanding folding
|
|
|
|
// opportunities. Attempt to fold the expression using TargetData as a
|
|
|
|
// last resort before giving up.
|
2010-02-08 23:19:11 +01:00
|
|
|
if (Constant *C =
|
|
|
|
ConstantFoldConstantExpression(CE, AP.TM.getTargetData()))
|
|
|
|
if (C != CE)
|
|
|
|
return LowerConstant(C, AP);
|
2010-08-04 20:51:09 +02:00
|
|
|
|
|
|
|
// Otherwise report the problem to the user.
|
|
|
|
{
|
|
|
|
std::string S;
|
|
|
|
raw_string_ostream OS(S);
|
|
|
|
OS << "Unsupported expression in static initializer: ";
|
|
|
|
WriteAsOperand(OS, CE, /*PrintType=*/false,
|
|
|
|
!AP.MF ? 0 : AP.MF->getFunction()->getParent());
|
|
|
|
report_fatal_error(OS.str());
|
|
|
|
}
|
|
|
|
return MCConstantExpr::Create(0, Ctx);
|
2010-01-13 05:29:19 +01:00
|
|
|
case Instruction::GetElementPtr: {
|
2010-01-23 07:17:14 +01:00
|
|
|
const TargetData &TD = *AP.TM.getTargetData();
|
|
|
|
// Generate a symbolic expression for the byte address
|
|
|
|
const Constant *PtrVal = CE->getOperand(0);
|
|
|
|
SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
|
2011-07-19 16:01:37 +02:00
|
|
|
int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), IdxVec);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-23 07:17:14 +01:00
|
|
|
const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
|
2010-01-13 05:29:19 +01:00
|
|
|
if (Offset == 0)
|
2010-01-23 07:17:14 +01:00
|
|
|
return Base;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-13 05:29:19 +01:00
|
|
|
// Truncate/sext the offset to the pointer size.
|
2010-01-23 07:17:14 +01:00
|
|
|
if (TD.getPointerSizeInBits() != 64) {
|
|
|
|
int SExtAmount = 64-TD.getPointerSizeInBits();
|
2010-01-13 05:29:19 +01:00
|
|
|
Offset = (Offset << SExtAmount) >> SExtAmount;
|
2004-08-17 01:15:22 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-23 07:17:14 +01:00
|
|
|
return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
|
|
|
|
Ctx);
|
2010-01-13 05:29:19 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-23 07:17:14 +01:00
|
|
|
case Instruction::Trunc:
|
|
|
|
// We emit the value and depend on the assembler to truncate the generated
|
|
|
|
// expression properly. This is important for differences between
|
|
|
|
// blockaddress labels. Since the two labels are in the same function, it
|
|
|
|
// is reasonable to treat their delta as a 32-bit value.
|
|
|
|
// FALL THROUGH.
|
2010-01-13 05:29:19 +01:00
|
|
|
case Instruction::BitCast:
|
2010-01-23 07:17:14 +01:00
|
|
|
return LowerConstant(CE->getOperand(0), AP);
|
2010-01-13 05:29:19 +01:00
|
|
|
|
|
|
|
case Instruction::IntToPtr: {
|
2010-01-23 07:17:14 +01:00
|
|
|
const TargetData &TD = *AP.TM.getTargetData();
|
2010-01-13 05:29:19 +01:00
|
|
|
// Handle casts to pointers by changing them into casts to the appropriate
|
|
|
|
// integer type. This promotes constant folding and simplifies this code.
|
|
|
|
Constant *Op = CE->getOperand(0);
|
2010-01-23 07:17:14 +01:00
|
|
|
Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
|
2010-01-13 05:29:19 +01:00
|
|
|
false/*ZExt*/);
|
2010-01-23 07:17:14 +01:00
|
|
|
return LowerConstant(Op, AP);
|
2010-01-13 05:29:19 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-13 05:29:19 +01:00
|
|
|
case Instruction::PtrToInt: {
|
2010-01-23 07:17:14 +01:00
|
|
|
const TargetData &TD = *AP.TM.getTargetData();
|
2010-01-13 05:29:19 +01:00
|
|
|
// Support only foldable casts to/from pointers that can be eliminated by
|
|
|
|
// changing the pointer to the appropriately sized integer type.
|
|
|
|
Constant *Op = CE->getOperand(0);
|
2011-07-18 06:54:35 +02:00
|
|
|
Type *Ty = CE->getType();
|
2010-01-23 07:17:14 +01:00
|
|
|
|
|
|
|
const MCExpr *OpExpr = LowerConstant(Op, AP);
|
2010-01-13 05:29:19 +01:00
|
|
|
|
|
|
|
// We can emit the pointer value into this slot if the slot is an
|
2010-01-23 07:17:14 +01:00
|
|
|
// integer slot equal to the size of the pointer.
|
|
|
|
if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
|
|
|
|
return OpExpr;
|
|
|
|
|
|
|
|
// Otherwise the pointer is smaller than the resultant integer, mask off
|
|
|
|
// the high bits so we are sure to get a proper truncation if the input is
|
|
|
|
// a constant expr.
|
|
|
|
unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
|
|
|
|
const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
|
|
|
|
return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
|
2010-01-13 05:29:19 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-09 01:02:37 +01:00
|
|
|
// The MC library also has a right-shift operator, but it isn't consistently
|
|
|
|
// signed or unsigned between different targets.
|
2010-01-13 05:29:19 +01:00
|
|
|
case Instruction::Add:
|
|
|
|
case Instruction::Sub:
|
2010-02-09 01:02:37 +01:00
|
|
|
case Instruction::Mul:
|
|
|
|
case Instruction::SDiv:
|
|
|
|
case Instruction::SRem:
|
|
|
|
case Instruction::Shl:
|
2010-01-13 05:29:19 +01:00
|
|
|
case Instruction::And:
|
|
|
|
case Instruction::Or:
|
2010-01-23 07:17:14 +01:00
|
|
|
case Instruction::Xor: {
|
|
|
|
const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
|
|
|
|
const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
|
2010-01-13 05:29:19 +01:00
|
|
|
switch (CE->getOpcode()) {
|
2010-01-23 07:17:14 +01:00
|
|
|
default: llvm_unreachable("Unknown binary operator constant cast expr");
|
|
|
|
case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
|
|
|
|
case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
|
2010-02-09 01:02:37 +01:00
|
|
|
case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx);
|
|
|
|
case Instruction::SDiv: return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx);
|
|
|
|
case Instruction::SRem: return MCBinaryExpr::CreateMod(LHS, RHS, Ctx);
|
|
|
|
case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
|
2010-01-23 07:17:14 +01:00
|
|
|
case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
|
|
|
|
case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
|
|
|
|
case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
|
2004-08-17 01:15:22 +02:00
|
|
|
}
|
2010-01-23 07:17:14 +01:00
|
|
|
}
|
2004-08-17 01:15:22 +02:00
|
|
|
}
|
|
|
|
}
|
2004-08-17 08:36:49 +02:00
|
|
|
|
2010-04-20 08:20:21 +02:00
|
|
|
static void EmitGlobalConstantImpl(const Constant *C, unsigned AddrSpace,
|
|
|
|
AsmPrinter &AP);
|
|
|
|
|
2011-08-31 19:30:56 +02:00
|
|
|
/// isRepeatedByteSequence - Determine whether the given value is
|
|
|
|
/// composed of a repeated sequence of identical bytes and return the
|
|
|
|
/// byte value. If it is not a repeated sequence, return -1.
|
|
|
|
static int isRepeatedByteSequence(const Value *V, TargetMachine &TM) {
|
|
|
|
|
|
|
|
if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
|
|
|
|
if (CI->getBitWidth() > 64) return -1;
|
|
|
|
|
|
|
|
uint64_t Size = TM.getTargetData()->getTypeAllocSize(V->getType());
|
|
|
|
uint64_t Value = CI->getZExtValue();
|
|
|
|
|
|
|
|
// Make sure the constant is at least 8 bits long and has a power
|
|
|
|
// of 2 bit width. This guarantees the constant bit width is
|
|
|
|
// always a multiple of 8 bits, avoiding issues with padding out
|
|
|
|
// to Size and other such corner cases.
|
|
|
|
if (CI->getBitWidth() < 8 || !isPowerOf2_64(CI->getBitWidth())) return -1;
|
|
|
|
|
|
|
|
uint8_t Byte = static_cast<uint8_t>(Value);
|
|
|
|
|
|
|
|
for (unsigned i = 1; i < Size; ++i) {
|
|
|
|
Value >>= 8;
|
|
|
|
if (static_cast<uint8_t>(Value) != Byte) return -1;
|
|
|
|
}
|
|
|
|
return Byte;
|
|
|
|
}
|
|
|
|
if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) {
|
|
|
|
// Make sure all array elements are sequences of the same repeated
|
|
|
|
// byte.
|
|
|
|
if (CA->getNumOperands() == 0) return -1;
|
|
|
|
|
|
|
|
int Byte = isRepeatedByteSequence(CA->getOperand(0), TM);
|
|
|
|
if (Byte == -1) return -1;
|
|
|
|
|
|
|
|
for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
|
|
|
|
int ThisByte = isRepeatedByteSequence(CA->getOperand(i), TM);
|
|
|
|
if (ThisByte == -1) return -1;
|
|
|
|
if (Byte != ThisByte) return -1;
|
|
|
|
}
|
|
|
|
return Byte;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-01-19 20:10:44 +01:00
|
|
|
static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
|
|
|
|
AsmPrinter &AP) {
|
2010-01-23 05:54:10 +01:00
|
|
|
if (AddrSpace != 0 || !CA->isString()) {
|
2011-08-31 19:30:56 +02:00
|
|
|
// Not a string. Print the values in successive locations.
|
|
|
|
|
|
|
|
// See if we can aggregate some values. Make sure it can be
|
|
|
|
// represented as a series of bytes of the constant value.
|
|
|
|
int Value = isRepeatedByteSequence(CA, AP.TM);
|
|
|
|
|
|
|
|
if (Value != -1) {
|
2011-08-31 23:34:20 +02:00
|
|
|
uint64_t Bytes = AP.TM.getTargetData()->getTypeAllocSize(CA->getType());
|
2011-08-31 19:30:56 +02:00
|
|
|
AP.OutStreamer.EmitFill(Bytes, Value, AddrSpace);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
|
|
|
|
EmitGlobalConstantImpl(CA->getOperand(i), AddrSpace, AP);
|
|
|
|
}
|
2010-01-23 05:54:10 +01:00
|
|
|
return;
|
2008-12-22 22:14:27 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-23 05:54:10 +01:00
|
|
|
// Otherwise, it can be emitted as .ascii.
|
|
|
|
SmallVector<char, 128> TmpVec;
|
|
|
|
TmpVec.reserve(CA->getNumOperands());
|
|
|
|
for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
|
|
|
|
TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
|
|
|
|
|
|
|
|
AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
|
2008-12-22 22:14:27 +01:00
|
|
|
}
|
|
|
|
|
2010-01-19 20:10:44 +01:00
|
|
|
static void EmitGlobalConstantVector(const ConstantVector *CV,
|
|
|
|
unsigned AddrSpace, AsmPrinter &AP) {
|
2010-01-20 08:41:15 +01:00
|
|
|
for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
|
2010-04-20 08:20:21 +02:00
|
|
|
EmitGlobalConstantImpl(CV->getOperand(i), AddrSpace, AP);
|
2011-06-22 20:55:03 +02:00
|
|
|
|
|
|
|
const TargetData &TD = *AP.TM.getTargetData();
|
|
|
|
unsigned Size = TD.getTypeAllocSize(CV->getType());
|
|
|
|
unsigned EmittedSize = TD.getTypeAllocSize(CV->getType()->getElementType()) *
|
|
|
|
CV->getType()->getNumElements();
|
|
|
|
if (unsigned Padding = Size - EmittedSize)
|
|
|
|
AP.OutStreamer.EmitZeros(Padding, AddrSpace);
|
2008-12-22 22:14:27 +01:00
|
|
|
}
|
|
|
|
|
2010-01-19 20:10:44 +01:00
|
|
|
static void EmitGlobalConstantStruct(const ConstantStruct *CS,
|
|
|
|
unsigned AddrSpace, AsmPrinter &AP) {
|
2008-12-22 22:14:27 +01:00
|
|
|
// Print the fields in successive locations. Pad to align if needed!
|
2010-01-19 20:10:44 +01:00
|
|
|
const TargetData *TD = AP.TM.getTargetData();
|
|
|
|
unsigned Size = TD->getTypeAllocSize(CS->getType());
|
2010-01-20 08:11:32 +01:00
|
|
|
const StructLayout *Layout = TD->getStructLayout(CS->getType());
|
2010-01-19 20:10:44 +01:00
|
|
|
uint64_t SizeSoFar = 0;
|
|
|
|
for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
|
2010-01-20 08:41:15 +01:00
|
|
|
const Constant *Field = CS->getOperand(i);
|
2008-12-22 22:14:27 +01:00
|
|
|
|
|
|
|
// Check if padding is needed and insert one or more 0s.
|
2010-01-20 08:41:15 +01:00
|
|
|
uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
|
2010-01-20 08:11:32 +01:00
|
|
|
uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
|
|
|
|
- Layout->getElementOffset(i)) - FieldSize;
|
|
|
|
SizeSoFar += FieldSize + PadSize;
|
2008-12-22 22:14:27 +01:00
|
|
|
|
|
|
|
// Now print the actual field value.
|
2010-04-20 08:20:21 +02:00
|
|
|
EmitGlobalConstantImpl(Field, AddrSpace, AP);
|
2008-12-22 22:14:27 +01:00
|
|
|
|
|
|
|
// Insert padding - this may include padding to increase the size of the
|
|
|
|
// current field up to the ABI size (if the struct is not packed) as well
|
|
|
|
// as padding to ensure that the next field starts at the right offset.
|
2010-01-20 08:11:32 +01:00
|
|
|
AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
|
2008-12-22 22:14:27 +01:00
|
|
|
}
|
2010-01-20 08:11:32 +01:00
|
|
|
assert(SizeSoFar == Layout->getSizeInBytes() &&
|
2008-12-22 22:14:27 +01:00
|
|
|
"Layout of constant struct may be incorrect!");
|
|
|
|
}
|
|
|
|
|
2010-01-20 08:11:32 +01:00
|
|
|
static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
|
|
|
|
AsmPrinter &AP) {
|
2008-12-22 22:14:27 +01:00
|
|
|
// FP Constants are printed as integer constants to avoid losing
|
2010-01-20 07:53:37 +01:00
|
|
|
// precision.
|
2009-10-05 07:54:46 +02:00
|
|
|
if (CFP->getType()->isDoubleTy()) {
|
2010-04-04 20:52:31 +02:00
|
|
|
if (AP.isVerbose()) {
|
2010-01-22 20:17:48 +01:00
|
|
|
double Val = CFP->getValueAPF().convertToDouble();
|
|
|
|
AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
|
2010-01-19 23:16:33 +01:00
|
|
|
}
|
|
|
|
|
2010-01-20 08:11:32 +01:00
|
|
|
uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
|
|
|
|
AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
|
2008-12-22 22:14:27 +01:00
|
|
|
return;
|
2009-10-05 07:54:46 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-10-05 07:54:46 +02:00
|
|
|
if (CFP->getType()->isFloatTy()) {
|
2010-04-04 20:52:31 +02:00
|
|
|
if (AP.isVerbose()) {
|
2010-01-22 20:52:01 +01:00
|
|
|
float Val = CFP->getValueAPF().convertToFloat();
|
|
|
|
AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
|
2009-08-12 20:32:22 +02:00
|
|
|
}
|
2010-01-20 08:11:32 +01:00
|
|
|
uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
|
|
|
|
AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
|
2008-12-22 22:14:27 +01:00
|
|
|
return;
|
2009-10-05 07:54:46 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2009-10-05 07:54:46 +02:00
|
|
|
if (CFP->getType()->isX86_FP80Ty()) {
|
2008-12-22 22:14:27 +01:00
|
|
|
// all long double variants are printed as hex
|
2010-04-07 03:15:14 +02:00
|
|
|
// API needed to prevent premature destruction
|
2010-01-19 23:16:33 +01:00
|
|
|
APInt API = CFP->getValueAPF().bitcastToAPInt();
|
|
|
|
const uint64_t *p = API.getRawData();
|
2010-04-04 20:52:31 +02:00
|
|
|
if (AP.isVerbose()) {
|
2010-01-19 23:11:05 +01:00
|
|
|
// Convert to double so we can print the approximate val as a comment.
|
|
|
|
APFloat DoubleVal = CFP->getValueAPF();
|
|
|
|
bool ignored;
|
|
|
|
DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
|
|
|
|
&ignored);
|
2010-01-22 20:52:01 +01:00
|
|
|
AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
|
|
|
|
<< DoubleVal.convertToDouble() << '\n';
|
2010-01-19 23:11:05 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-20 08:11:32 +01:00
|
|
|
if (AP.TM.getTargetData()->isBigEndian()) {
|
|
|
|
AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
|
|
|
|
AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
|
2010-01-19 23:11:05 +01:00
|
|
|
} else {
|
2010-01-20 08:11:32 +01:00
|
|
|
AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
|
|
|
|
AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
|
2008-12-22 22:14:27 +01:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-20 07:53:37 +01:00
|
|
|
// Emit the tail padding for the long double.
|
2010-01-20 08:11:32 +01:00
|
|
|
const TargetData &TD = *AP.TM.getTargetData();
|
|
|
|
AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
|
|
|
|
TD.getTypeStoreSize(CFP->getType()), AddrSpace);
|
2008-12-22 22:14:27 +01:00
|
|
|
return;
|
2009-10-05 07:54:46 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 23:16:33 +01:00
|
|
|
assert(CFP->getType()->isPPC_FP128Ty() &&
|
|
|
|
"Floating point constant type not handled");
|
2010-04-07 03:15:14 +02:00
|
|
|
// All long double variants are printed as hex
|
|
|
|
// API needed to prevent premature destruction.
|
2010-01-19 23:16:33 +01:00
|
|
|
APInt API = CFP->getValueAPF().bitcastToAPInt();
|
|
|
|
const uint64_t *p = API.getRawData();
|
2010-01-20 08:11:32 +01:00
|
|
|
if (AP.TM.getTargetData()->isBigEndian()) {
|
|
|
|
AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
|
|
|
|
AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
|
2010-01-20 07:53:37 +01:00
|
|
|
} else {
|
2010-01-20 08:11:32 +01:00
|
|
|
AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
|
|
|
|
AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
|
2010-01-19 23:16:33 +01:00
|
|
|
}
|
2008-12-22 22:14:27 +01:00
|
|
|
}
|
|
|
|
|
2010-01-20 08:11:32 +01:00
|
|
|
static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
|
|
|
|
unsigned AddrSpace, AsmPrinter &AP) {
|
|
|
|
const TargetData *TD = AP.TM.getTargetData();
|
2008-12-22 22:14:27 +01:00
|
|
|
unsigned BitWidth = CI->getBitWidth();
|
2010-01-13 05:39:46 +01:00
|
|
|
assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
|
2008-12-22 22:14:27 +01:00
|
|
|
|
|
|
|
// We don't expect assemblers to support integer data directives
|
|
|
|
// for more than 64 bits, so we emit the data in at most 64-bit
|
|
|
|
// quantities at a time.
|
|
|
|
const uint64_t *RawData = CI->getValue().getRawData();
|
|
|
|
for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
|
2010-01-20 08:11:32 +01:00
|
|
|
uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
|
|
|
|
AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
|
2008-12-22 22:14:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-20 08:20:21 +02:00
|
|
|
static void EmitGlobalConstantImpl(const Constant *CV, unsigned AddrSpace,
|
|
|
|
AsmPrinter &AP) {
|
2010-01-20 08:19:19 +01:00
|
|
|
if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
|
2010-04-20 08:20:21 +02:00
|
|
|
uint64_t Size = AP.TM.getTargetData()->getTypeAllocSize(CV->getType());
|
|
|
|
return AP.OutStreamer.EmitZeros(Size, AddrSpace);
|
2010-01-20 08:11:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
|
2010-04-20 08:20:21 +02:00
|
|
|
unsigned Size = AP.TM.getTargetData()->getTypeAllocSize(CV->getType());
|
2010-01-20 08:11:32 +01:00
|
|
|
switch (Size) {
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 4:
|
|
|
|
case 8:
|
2010-04-20 08:20:21 +02:00
|
|
|
if (AP.isVerbose())
|
|
|
|
AP.OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
|
2010-08-18 20:41:13 +02:00
|
|
|
AP.OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
|
2010-01-20 08:11:32 +01:00
|
|
|
return;
|
|
|
|
default:
|
2010-04-20 08:20:21 +02:00
|
|
|
EmitGlobalConstantLargeInt(CI, AddrSpace, AP);
|
2010-01-20 08:11:32 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 20:10:44 +01:00
|
|
|
if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
|
2010-04-20 08:20:21 +02:00
|
|
|
return EmitGlobalConstantArray(CVA, AddrSpace, AP);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-19 20:10:44 +01:00
|
|
|
if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
|
2010-04-20 08:20:21 +02:00
|
|
|
return EmitGlobalConstantStruct(CVS, AddrSpace, AP);
|
2010-01-13 05:34:19 +01:00
|
|
|
|
2010-01-19 20:10:44 +01:00
|
|
|
if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
|
2010-04-20 08:20:21 +02:00
|
|
|
return EmitGlobalConstantFP(CFP, AddrSpace, AP);
|
2004-08-17 08:36:49 +02:00
|
|
|
|
2010-01-20 18:57:50 +01:00
|
|
|
if (isa<ConstantPointerNull>(CV)) {
|
2010-04-20 08:20:21 +02:00
|
|
|
unsigned Size = AP.TM.getTargetData()->getTypeAllocSize(CV->getType());
|
|
|
|
AP.OutStreamer.EmitIntValue(0, Size, AddrSpace);
|
2010-01-20 18:57:50 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-03-16 22:25:55 +01:00
|
|
|
if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
|
2010-04-20 08:20:21 +02:00
|
|
|
return EmitGlobalConstantVector(V, AddrSpace, AP);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-23 07:17:14 +01:00
|
|
|
// Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
|
|
|
|
// thread the streamer with EmitValue.
|
2010-04-20 08:20:21 +02:00
|
|
|
AP.OutStreamer.EmitValue(LowerConstant(CV, AP),
|
|
|
|
AP.TM.getTargetData()->getTypeAllocSize(CV->getType()),
|
|
|
|
AddrSpace);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
|
|
|
|
void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
|
|
|
|
uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
|
|
|
|
if (Size)
|
|
|
|
EmitGlobalConstantImpl(CV, AddrSpace, *this);
|
|
|
|
else if (MAI->hasSubsectionsViaSymbols()) {
|
|
|
|
// If the global has zero size, emit a single byte so that two labels don't
|
|
|
|
// look like they are at the same location.
|
|
|
|
OutStreamer.EmitIntValue(0, 1, AddrSpace);
|
|
|
|
}
|
2004-08-17 08:36:49 +02:00
|
|
|
}
|
2006-01-27 03:10:10 +01:00
|
|
|
|
2008-08-17 09:19:36 +02:00
|
|
|
void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
|
2006-09-12 23:00:35 +02:00
|
|
|
// Target doesn't support this yet!
|
2009-07-14 18:55:14 +02:00
|
|
|
llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
|
2006-09-12 23:00:35 +02:00
|
|
|
}
|
|
|
|
|
2010-04-04 20:16:38 +02:00
|
|
|
void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const {
|
|
|
|
if (Offset > 0)
|
|
|
|
OS << '+' << Offset;
|
|
|
|
else if (Offset < 0)
|
|
|
|
OS << Offset;
|
|
|
|
}
|
|
|
|
|
2010-04-04 21:25:43 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Symbol Lowering Routines.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// GetTempSymbol - Return the MCSymbol corresponding to the assembler
|
|
|
|
/// temporary label with the specified stem and unique ID.
|
|
|
|
MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name, unsigned ID) const {
|
2010-04-04 21:28:59 +02:00
|
|
|
return OutContext.GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) +
|
2010-04-04 21:25:43 +02:00
|
|
|
Name + Twine(ID));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// GetTempSymbol - Return an assembler temporary label with the specified
|
|
|
|
/// stem.
|
|
|
|
MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name) const {
|
|
|
|
return OutContext.GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix())+
|
|
|
|
Name);
|
|
|
|
}
|
|
|
|
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
llvm-svn: 25886
2006-02-01 23:41:11 +01:00
|
|
|
|
2010-02-09 00:10:08 +01:00
|
|
|
MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const {
|
2010-03-14 18:53:23 +01:00
|
|
|
return MMI->getAddrLabelSymbol(BA->getBasicBlock());
|
2009-10-30 02:27:03 +01:00
|
|
|
}
|
|
|
|
|
2010-03-14 18:53:23 +01:00
|
|
|
MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BasicBlock *BB) const {
|
|
|
|
return MMI->getAddrLabelSymbol(BB);
|
2009-10-30 02:27:03 +01:00
|
|
|
}
|
|
|
|
|
2010-01-23 06:19:23 +01:00
|
|
|
/// GetCPISymbol - Return the symbol for the specified constant pool entry.
|
|
|
|
MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
|
2010-03-30 20:10:53 +02:00
|
|
|
return OutContext.GetOrCreateSymbol
|
2010-03-10 03:25:11 +01:00
|
|
|
(Twine(MAI->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber())
|
|
|
|
+ "_" + Twine(CPID));
|
2010-01-23 06:19:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// GetJTISymbol - Return the symbol for the specified jump table entry.
|
2010-06-30 00:34:52 +02:00
|
|
|
MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
|
|
|
|
return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
|
2009-09-13 01:02:08 +02:00
|
|
|
}
|
|
|
|
|
2010-01-25 22:17:10 +01:00
|
|
|
/// GetJTSetSymbol - Return the symbol for the specified jump table .set
|
|
|
|
/// FIXME: privatize to AsmPrinter.
|
|
|
|
MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
|
2010-03-30 20:10:53 +02:00
|
|
|
return OutContext.GetOrCreateSymbol
|
2010-03-10 03:25:11 +01:00
|
|
|
(Twine(MAI->getPrivateGlobalPrefix()) + Twine(getFunctionNumber()) + "_" +
|
|
|
|
Twine(UID) + "_set_" + Twine(MBBID));
|
2010-01-25 22:17:10 +01:00
|
|
|
}
|
|
|
|
|
2010-01-16 19:37:32 +01:00
|
|
|
/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
|
2010-01-16 00:25:11 +01:00
|
|
|
/// global value name as its base, with the specified suffix, and where the
|
2010-01-16 19:37:32 +01:00
|
|
|
/// symbol is forced to have private linkage if ForcePrivate is true.
|
|
|
|
MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
|
|
|
|
StringRef Suffix,
|
|
|
|
bool ForcePrivate) const {
|
2010-01-16 00:25:11 +01:00
|
|
|
SmallString<60> NameStr;
|
2010-01-16 19:37:32 +01:00
|
|
|
Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
|
2010-01-16 00:25:11 +01:00
|
|
|
NameStr.append(Suffix.begin(), Suffix.end());
|
2010-03-30 20:10:53 +02:00
|
|
|
return OutContext.GetOrCreateSymbol(NameStr.str());
|
2010-01-16 00:25:11 +01:00
|
|
|
}
|
|
|
|
|
2010-01-16 00:18:17 +01:00
|
|
|
/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
|
|
|
|
/// ExternalSymbol.
|
|
|
|
MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
|
|
|
|
SmallString<60> NameStr;
|
|
|
|
Mang->getNameWithPrefix(NameStr, Sym);
|
|
|
|
return OutContext.GetOrCreateSymbol(NameStr.str());
|
2011-03-30 01:20:22 +02:00
|
|
|
}
|
2010-01-16 00:18:17 +01:00
|
|
|
|
2009-09-13 01:02:08 +02:00
|
|
|
|
2010-01-22 22:50:41 +01:00
|
|
|
|
|
|
|
/// PrintParentLoopComment - Print comments about parent loops of this one.
|
|
|
|
static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
|
|
|
|
unsigned FunctionNumber) {
|
|
|
|
if (Loop == 0) return;
|
|
|
|
PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
|
|
|
|
OS.indent(Loop->getLoopDepth()*2)
|
|
|
|
<< "Parent Loop BB" << FunctionNumber << "_"
|
|
|
|
<< Loop->getHeader()->getNumber()
|
|
|
|
<< " Depth=" << Loop->getLoopDepth() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// PrintChildLoopComment - Print comments about child loops within
|
|
|
|
/// the loop for this basic block, with nesting.
|
|
|
|
static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
|
|
|
|
unsigned FunctionNumber) {
|
|
|
|
// Add child loop information
|
|
|
|
for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
|
|
|
|
OS.indent((*CL)->getLoopDepth()*2)
|
|
|
|
<< "Child Loop BB" << FunctionNumber << "_"
|
|
|
|
<< (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
|
|
|
|
<< '\n';
|
|
|
|
PrintChildLoopComment(OS, *CL, FunctionNumber);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-04 20:16:38 +02:00
|
|
|
/// EmitBasicBlockLoopComments - Pretty-print comments for basic blocks.
|
|
|
|
static void EmitBasicBlockLoopComments(const MachineBasicBlock &MBB,
|
|
|
|
const MachineLoopInfo *LI,
|
|
|
|
const AsmPrinter &AP) {
|
2010-01-22 22:50:41 +01:00
|
|
|
// Add loop depth information
|
|
|
|
const MachineLoop *Loop = LI->getLoopFor(&MBB);
|
|
|
|
if (Loop == 0) return;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-22 22:50:41 +01:00
|
|
|
MachineBasicBlock *Header = Loop->getHeader();
|
|
|
|
assert(Header && "No header for loop");
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-22 22:50:41 +01:00
|
|
|
// If this block is not a loop header, just print out what is the loop header
|
|
|
|
// and return.
|
|
|
|
if (Header != &MBB) {
|
|
|
|
AP.OutStreamer.AddComment(" in Loop: Header=BB" +
|
|
|
|
Twine(AP.getFunctionNumber())+"_" +
|
|
|
|
Twine(Loop->getHeader()->getNumber())+
|
|
|
|
" Depth="+Twine(Loop->getLoopDepth()));
|
|
|
|
return;
|
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-22 22:50:41 +01:00
|
|
|
// Otherwise, it is a loop header. Print out information about child and
|
|
|
|
// parent loops.
|
|
|
|
raw_ostream &OS = AP.OutStreamer.GetCommentOS();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
|
|
|
PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
|
|
|
|
|
2010-01-22 22:50:41 +01:00
|
|
|
OS << "=>";
|
|
|
|
OS.indent(Loop->getLoopDepth()*2-2);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-22 22:50:41 +01:00
|
|
|
OS << "This ";
|
|
|
|
if (Loop->empty())
|
|
|
|
OS << "Inner ";
|
|
|
|
OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-22 22:50:41 +01:00
|
|
|
PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-13 20:25:37 +02:00
|
|
|
/// EmitBasicBlockStart - This method prints the label for the specified
|
|
|
|
/// MachineBasicBlock, an alignment (if present) and a comment describing
|
|
|
|
/// it if appropriate.
|
2009-09-14 05:15:54 +02:00
|
|
|
void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
|
2009-10-30 02:34:35 +01:00
|
|
|
// Emit an alignment directive for this block, if needed.
|
2009-09-13 20:25:37 +02:00
|
|
|
if (unsigned Align = MBB->getAlignment())
|
|
|
|
EmitAlignment(Log2_32(Align));
|
2008-02-28 01:43:03 +01:00
|
|
|
|
2010-03-16 01:29:39 +01:00
|
|
|
// If the block has its address taken, emit any labels that were used to
|
|
|
|
// reference the block. It is possible that there is more than one label
|
|
|
|
// here, because multiple LLVM BB's may have been RAUW'd to this block after
|
|
|
|
// the references were generated.
|
2009-10-30 02:27:03 +01:00
|
|
|
if (MBB->hasAddressTaken()) {
|
2010-01-20 08:24:05 +01:00
|
|
|
const BasicBlock *BB = MBB->getBasicBlock();
|
2010-04-04 20:52:31 +02:00
|
|
|
if (isVerbose())
|
2010-03-16 01:29:39 +01:00
|
|
|
OutStreamer.AddComment("Block address taken");
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-03-16 01:29:39 +01:00
|
|
|
std::vector<MCSymbol*> Syms = MMI->getAddrLabelSymbolToEmit(BB);
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = Syms.size(); i != e; ++i)
|
|
|
|
OutStreamer.EmitLabel(Syms[i]);
|
2009-10-30 02:27:03 +01:00
|
|
|
}
|
|
|
|
|
2009-10-30 02:34:35 +01:00
|
|
|
// Print the main label for the block.
|
2010-02-17 19:52:56 +01:00
|
|
|
if (MBB->pred_empty() || isBlockOnlyReachableByFallthrough(MBB)) {
|
2010-04-04 20:52:31 +02:00
|
|
|
if (isVerbose() && OutStreamer.hasRawTextSupport()) {
|
2010-01-22 20:52:01 +01:00
|
|
|
if (const BasicBlock *BB = MBB->getBasicBlock())
|
|
|
|
if (BB->hasName())
|
|
|
|
OutStreamer.AddComment("%" + BB->getName());
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-04 20:16:38 +02:00
|
|
|
EmitBasicBlockLoopComments(*MBB, LI, *this);
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-04 00:12:35 +02:00
|
|
|
// NOTE: Want this comment at start of line, don't emit with AddComment.
|
|
|
|
OutStreamer.EmitRawText(Twine(MAI->getCommentString()) + " BB#" +
|
|
|
|
Twine(MBB->getNumber()) + ":");
|
2010-01-22 20:52:01 +01:00
|
|
|
}
|
2009-10-06 19:38:38 +02:00
|
|
|
} else {
|
2010-04-04 20:52:31 +02:00
|
|
|
if (isVerbose()) {
|
2010-01-22 20:52:01 +01:00
|
|
|
if (const BasicBlock *BB = MBB->getBasicBlock())
|
|
|
|
if (BB->hasName())
|
|
|
|
OutStreamer.AddComment("%" + BB->getName());
|
2010-04-04 20:16:38 +02:00
|
|
|
EmitBasicBlockLoopComments(*MBB, LI, *this);
|
2010-01-22 20:52:01 +01:00
|
|
|
}
|
2010-01-22 22:00:45 +01:00
|
|
|
|
2010-03-13 22:04:28 +01:00
|
|
|
OutStreamer.EmitLabel(MBB->getSymbol());
|
2009-10-06 19:38:38 +02:00
|
|
|
}
|
2006-04-22 20:53:45 +02:00
|
|
|
}
|
2006-08-12 23:29:52 +02:00
|
|
|
|
2011-02-23 03:27:05 +01:00
|
|
|
void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility,
|
|
|
|
bool IsDefinition) const {
|
2010-01-23 07:53:23 +01:00
|
|
|
MCSymbolAttr Attr = MCSA_Invalid;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-01-23 07:53:23 +01:00
|
|
|
switch (Visibility) {
|
|
|
|
default: break;
|
|
|
|
case GlobalValue::HiddenVisibility:
|
2011-02-23 03:27:05 +01:00
|
|
|
if (IsDefinition)
|
|
|
|
Attr = MAI->getHiddenVisibilityAttr();
|
|
|
|
else
|
|
|
|
Attr = MAI->getHiddenDeclarationVisibilityAttr();
|
2010-01-23 07:53:23 +01:00
|
|
|
break;
|
|
|
|
case GlobalValue::ProtectedVisibility:
|
|
|
|
Attr = MAI->getProtectedVisibilityAttr();
|
|
|
|
break;
|
2010-01-16 00:38:51 +01:00
|
|
|
}
|
2010-01-23 07:53:23 +01:00
|
|
|
|
|
|
|
if (Attr != MCSA_Invalid)
|
|
|
|
OutStreamer.EmitSymbolAttribute(Sym, Attr);
|
2010-01-16 00:38:51 +01:00
|
|
|
}
|
|
|
|
|
2010-02-17 19:52:56 +01:00
|
|
|
/// isBlockOnlyReachableByFallthough - Return true if the basic block has
|
|
|
|
/// exactly one predecessor and the control transfer mechanism between
|
|
|
|
/// the predecessor and this block is a fall-through.
|
2010-04-04 19:57:56 +02:00
|
|
|
bool AsmPrinter::
|
|
|
|
isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const {
|
2010-02-17 19:52:56 +01:00
|
|
|
// If this is a landing pad, it isn't a fall through. If it has no preds,
|
|
|
|
// then nothing falls through to it.
|
|
|
|
if (MBB->isLandingPad() || MBB->pred_empty())
|
|
|
|
return false;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-17 19:52:56 +01:00
|
|
|
// If there isn't exactly one predecessor, it can't be a fall through.
|
|
|
|
MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), PI2 = PI;
|
|
|
|
++PI2;
|
|
|
|
if (PI2 != MBB->pred_end())
|
|
|
|
return false;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-17 19:52:56 +01:00
|
|
|
// The predecessor has to be immediately before this block.
|
2011-06-14 21:30:33 +02:00
|
|
|
MachineBasicBlock *Pred = *PI;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-17 19:52:56 +01:00
|
|
|
if (!Pred->isLayoutSuccessor(MBB))
|
|
|
|
return false;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-02-17 19:52:56 +01:00
|
|
|
// If the block is completely empty, then it definitely does fall through.
|
|
|
|
if (Pred->empty())
|
|
|
|
return true;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2011-06-14 21:30:33 +02:00
|
|
|
// Check the terminators in the previous blocks
|
|
|
|
for (MachineBasicBlock::iterator II = Pred->getFirstTerminator(),
|
|
|
|
IE = Pred->end(); II != IE; ++II) {
|
|
|
|
MachineInstr &MI = *II;
|
|
|
|
|
|
|
|
// If it is not a simple branch, we are in a table somewhere.
|
|
|
|
if (!MI.getDesc().isBranch() || MI.getDesc().isIndirectBranch())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// If we are the operands of one of the branches, this is not
|
|
|
|
// a fall through.
|
|
|
|
for (MachineInstr::mop_iterator OI = MI.operands_begin(),
|
|
|
|
OE = MI.operands_end(); OI != OE; ++OI) {
|
|
|
|
const MachineOperand& OP = *OI;
|
2011-06-15 23:00:28 +02:00
|
|
|
if (OP.isJTI())
|
|
|
|
return false;
|
2011-06-14 21:30:33 +02:00
|
|
|
if (OP.isMBB() && OP.getMBB() == MBB)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2010-02-17 19:52:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
|
|
|
|
if (!S->usesMetadata())
|
2008-08-17 14:08:44 +02:00
|
|
|
return 0;
|
2010-04-04 19:57:56 +02:00
|
|
|
|
|
|
|
gcp_map_type &GCMap = getGCMap(GCMetadataPrinters);
|
|
|
|
gcp_map_type::iterator GCPI = GCMap.find(S);
|
|
|
|
if (GCPI != GCMap.end())
|
2008-08-17 14:08:44 +02:00
|
|
|
return GCPI->second;
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
const char *Name = S->getName().c_str();
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2008-08-17 14:08:44 +02:00
|
|
|
for (GCMetadataPrinterRegistry::iterator
|
|
|
|
I = GCMetadataPrinterRegistry::begin(),
|
|
|
|
E = GCMetadataPrinterRegistry::end(); I != E; ++I)
|
|
|
|
if (strcmp(Name, I->getName()) == 0) {
|
2008-08-17 20:44:35 +02:00
|
|
|
GCMetadataPrinter *GMP = I->instantiate();
|
|
|
|
GMP->S = S;
|
2010-04-04 19:57:56 +02:00
|
|
|
GCMap.insert(std::make_pair(S, GMP));
|
2008-08-17 20:44:35 +02:00
|
|
|
return GMP;
|
2008-08-17 14:08:44 +02:00
|
|
|
}
|
2011-03-30 01:20:22 +02:00
|
|
|
|
2010-04-08 00:58:41 +02:00
|
|
|
report_fatal_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
|
2010-01-23 07:17:14 +01:00
|
|
|
return 0;
|
2008-08-17 14:08:44 +02:00
|
|
|
}
|
2009-07-13 22:25:48 +02:00
|
|
|
|