2011-01-14 21:57:53 +00:00
|
|
|
//===-- CodeGen/AsmPrinter/DwarfException.cpp - Dwarf Exception Impl ------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains support for writing DWARF exception info into asm files.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "DwarfException.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2011-01-14 21:57:53 +00:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2014-01-07 21:19:40 +00:00
|
|
|
#include "llvm/IR/Mangler.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
2011-01-14 21:57:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCSection.h"
|
|
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/MC/MachineLocation.h"
|
|
|
|
#include "llvm/Support/Dwarf.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2011-01-14 21:57:53 +00:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
DwarfCFIException::DwarfCFIException(AsmPrinter *A)
|
2014-06-11 01:19:03 +00:00
|
|
|
: EHStreamer(A), shouldEmitPersonality(false), shouldEmitLSDA(false),
|
|
|
|
shouldEmitMoves(false), moveTypeModule(AsmPrinter::CFI_M_None) {}
|
2011-01-14 21:57:53 +00:00
|
|
|
|
|
|
|
DwarfCFIException::~DwarfCFIException() {}
|
|
|
|
|
2013-11-26 13:34:55 +00:00
|
|
|
/// endModule - Emit all exception information that should come after the
|
2011-01-14 21:57:53 +00:00
|
|
|
/// content.
|
2013-11-26 13:34:55 +00:00
|
|
|
void DwarfCFIException::endModule() {
|
2011-05-10 18:39:09 +00:00
|
|
|
if (moveTypeModule == AsmPrinter::CFI_M_Debug)
|
|
|
|
Asm->OutStreamer.EmitCFISections(false, true);
|
|
|
|
|
2014-11-14 23:31:07 +00:00
|
|
|
if (!Asm->MAI->usesItaniumLSDAForExceptions())
|
2011-01-14 21:57:53 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
|
2011-04-29 15:09:53 +00:00
|
|
|
|
2011-01-14 21:57:53 +00:00
|
|
|
unsigned PerEncoding = TLOF.getPersonalityEncoding();
|
|
|
|
|
2014-05-30 16:48:56 +00:00
|
|
|
if ((PerEncoding & 0x80) != dwarf::DW_EH_PE_indirect)
|
2011-04-15 15:11:06 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-14 21:57:53 +00:00
|
|
|
// Emit references to all used personality functions
|
|
|
|
const std::vector<const Function*> &Personalities = MMI->getPersonalities();
|
|
|
|
for (size_t i = 0, e = Personalities.size(); i != e; ++i) {
|
2011-04-29 14:48:51 +00:00
|
|
|
if (!Personalities[i])
|
|
|
|
continue;
|
2013-10-29 17:07:16 +00:00
|
|
|
MCSymbol *Sym = Asm->getSymbol(Personalities[i]);
|
2011-04-16 03:51:21 +00:00
|
|
|
TLOF.emitPersonalityValue(Asm->OutStreamer, Asm->TM, Sym);
|
2011-01-14 21:57:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-26 13:34:55 +00:00
|
|
|
/// beginFunction - Gather pre-function exception information. Assumes it's
|
2011-01-14 21:57:53 +00:00
|
|
|
/// being emitted immediately after the function entry point.
|
2013-11-26 13:34:55 +00:00
|
|
|
void DwarfCFIException::beginFunction(const MachineFunction *MF) {
|
2011-04-29 14:48:51 +00:00
|
|
|
shouldEmitMoves = shouldEmitPersonality = shouldEmitLSDA = false;
|
2011-01-14 21:57:53 +00:00
|
|
|
|
|
|
|
// If any landing pads survive, we need an EH table.
|
2011-04-29 14:48:51 +00:00
|
|
|
bool hasLandingPads = !MMI->getLandingPads().empty();
|
2011-01-14 21:57:53 +00:00
|
|
|
|
|
|
|
// See if we need frame move info.
|
2011-05-10 18:39:09 +00:00
|
|
|
AsmPrinter::CFIMoveType MoveType = Asm->needsCFIMoves();
|
|
|
|
if (MoveType == AsmPrinter::CFI_M_EH ||
|
|
|
|
(MoveType == AsmPrinter::CFI_M_Debug &&
|
|
|
|
moveTypeModule == AsmPrinter::CFI_M_None))
|
|
|
|
moveTypeModule = MoveType;
|
|
|
|
|
|
|
|
shouldEmitMoves = MoveType != AsmPrinter::CFI_M_None;
|
2011-01-14 21:57:53 +00:00
|
|
|
|
2011-04-29 14:48:51 +00:00
|
|
|
const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
|
|
|
|
unsigned PerEncoding = TLOF.getPersonalityEncoding();
|
|
|
|
const Function *Per = MMI->getPersonalities()[MMI->getPersonalityIndex()];
|
2011-01-14 21:57:53 +00:00
|
|
|
|
2011-04-29 14:48:51 +00:00
|
|
|
shouldEmitPersonality = hasLandingPads &&
|
|
|
|
PerEncoding != dwarf::DW_EH_PE_omit && Per;
|
2011-01-14 21:57:53 +00:00
|
|
|
|
2011-04-29 14:48:51 +00:00
|
|
|
unsigned LSDAEncoding = TLOF.getLSDAEncoding();
|
|
|
|
shouldEmitLSDA = shouldEmitPersonality &&
|
|
|
|
LSDAEncoding != dwarf::DW_EH_PE_omit;
|
2011-01-14 21:57:53 +00:00
|
|
|
|
2011-04-29 14:48:51 +00:00
|
|
|
if (!shouldEmitPersonality && !shouldEmitMoves)
|
2011-01-14 21:57:53 +00:00
|
|
|
return;
|
|
|
|
|
2014-11-03 12:19:03 +00:00
|
|
|
Asm->OutStreamer.EmitCFIStartProc(/*IsSimple=*/false);
|
2011-01-14 21:57:53 +00:00
|
|
|
|
|
|
|
// Indicate personality routine, if any.
|
2011-04-29 14:48:51 +00:00
|
|
|
if (!shouldEmitPersonality)
|
2011-04-15 15:11:06 +00:00
|
|
|
return;
|
|
|
|
|
2014-02-19 17:23:20 +00:00
|
|
|
const MCSymbol *Sym =
|
|
|
|
TLOF.getCFIPersonalitySymbol(Per, *Asm->Mang, Asm->TM, MMI);
|
2011-04-15 15:11:06 +00:00
|
|
|
Asm->OutStreamer.EmitCFIPersonality(Sym, PerEncoding);
|
2011-04-29 14:48:51 +00:00
|
|
|
|
2014-06-24 22:45:16 +00:00
|
|
|
MCSymbol *EHBegin =
|
|
|
|
Asm->GetTempSymbol("eh_func_begin", Asm->getFunctionNumber());
|
|
|
|
if (Asm->MAI->useAssignmentForEHBegin()) {
|
|
|
|
MCContext &Ctx = Asm->OutContext;
|
|
|
|
MCSymbol *CurPos = Ctx.CreateTempSymbol();
|
|
|
|
Asm->OutStreamer.EmitLabel(CurPos);
|
|
|
|
Asm->OutStreamer.EmitAssignment(EHBegin,
|
|
|
|
MCSymbolRefExpr::Create(CurPos, Ctx));
|
|
|
|
} else {
|
|
|
|
Asm->OutStreamer.EmitLabel(EHBegin);
|
|
|
|
}
|
2011-04-29 14:48:51 +00:00
|
|
|
|
|
|
|
// Provide LSDA information.
|
|
|
|
if (!shouldEmitLSDA)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Asm->OutStreamer.EmitCFILsda(Asm->GetTempSymbol("exception",
|
|
|
|
Asm->getFunctionNumber()),
|
|
|
|
LSDAEncoding);
|
2011-01-14 21:57:53 +00:00
|
|
|
}
|
|
|
|
|
2013-11-26 13:34:55 +00:00
|
|
|
/// endFunction - Gather and emit post-function exception information.
|
2011-01-14 21:57:53 +00:00
|
|
|
///
|
2013-12-03 15:10:23 +00:00
|
|
|
void DwarfCFIException::endFunction(const MachineFunction *) {
|
2011-04-29 14:48:51 +00:00
|
|
|
if (!shouldEmitPersonality && !shouldEmitMoves)
|
|
|
|
return;
|
2011-01-14 21:57:53 +00:00
|
|
|
|
2011-04-24 19:55:34 +00:00
|
|
|
Asm->OutStreamer.EmitCFIEndProc();
|
2011-01-14 21:57:53 +00:00
|
|
|
|
2012-01-17 04:19:20 +00:00
|
|
|
if (!shouldEmitPersonality)
|
|
|
|
return;
|
|
|
|
|
2012-01-13 23:28:50 +00:00
|
|
|
Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_func_end",
|
|
|
|
Asm->getFunctionNumber()));
|
|
|
|
|
2011-01-14 21:57:53 +00:00
|
|
|
// Map all labels and get rid of any dead landing pads.
|
|
|
|
MMI->TidyLandingPads();
|
|
|
|
|
2014-06-11 01:19:03 +00:00
|
|
|
emitExceptionTable();
|
2011-01-14 21:57:53 +00:00
|
|
|
}
|