2011-05-27 23:47:32 +00:00
|
|
|
//===-- CodeGen/AsmPrinter/Win64Exception.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 Win64 exception info into asm files.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-09-01 23:48:34 +00:00
|
|
|
#include "Win64Exception.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-05-27 23:47:32 +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-05-27 23:47:32 +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/Support/Dwarf.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2011-05-27 23:47:32 +00:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
Win64Exception::Win64Exception(AsmPrinter *A)
|
2014-06-11 01:19:03 +00:00
|
|
|
: EHStreamer(A), shouldEmitPersonality(false), shouldEmitLSDA(false),
|
|
|
|
shouldEmitMoves(false) {}
|
2011-05-27 23:47:32 +00:00
|
|
|
|
|
|
|
Win64Exception::~Win64Exception() {}
|
|
|
|
|
2013-11-26 13:34:55 +00:00
|
|
|
/// endModule - Emit all exception information that should come after the
|
2011-05-27 23:47:32 +00:00
|
|
|
/// content.
|
2013-11-26 13:34:55 +00:00
|
|
|
void Win64Exception::endModule() {
|
2011-05-27 23:47:32 +00:00
|
|
|
}
|
|
|
|
|
2013-11-26 13:34:55 +00:00
|
|
|
/// beginFunction - Gather pre-function exception information. Assumes it's
|
2011-05-27 23:47:32 +00:00
|
|
|
/// being emitted immediately after the function entry point.
|
2013-11-26 13:34:55 +00:00
|
|
|
void Win64Exception::beginFunction(const MachineFunction *MF) {
|
2011-05-28 04:21:04 +00:00
|
|
|
shouldEmitMoves = shouldEmitPersonality = shouldEmitLSDA = false;
|
|
|
|
|
|
|
|
// If any landing pads survive, we need an EH table.
|
|
|
|
bool hasLandingPads = !MMI->getLandingPads().empty();
|
|
|
|
|
|
|
|
shouldEmitMoves = Asm->needsSEHMoves();
|
|
|
|
|
|
|
|
const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
|
|
|
|
unsigned PerEncoding = TLOF.getPersonalityEncoding();
|
|
|
|
const Function *Per = MMI->getPersonalities()[MMI->getPersonalityIndex()];
|
|
|
|
|
|
|
|
shouldEmitPersonality = hasLandingPads &&
|
|
|
|
PerEncoding != dwarf::DW_EH_PE_omit && Per;
|
|
|
|
|
|
|
|
unsigned LSDAEncoding = TLOF.getLSDAEncoding();
|
|
|
|
shouldEmitLSDA = shouldEmitPersonality &&
|
|
|
|
LSDAEncoding != dwarf::DW_EH_PE_omit;
|
|
|
|
|
|
|
|
if (!shouldEmitPersonality && !shouldEmitMoves)
|
|
|
|
return;
|
|
|
|
|
2014-06-29 01:52:01 +00:00
|
|
|
Asm->OutStreamer.EmitWinCFIStartProc(Asm->CurrentFnSym);
|
2011-05-29 04:28:35 +00:00
|
|
|
|
|
|
|
if (!shouldEmitPersonality)
|
|
|
|
return;
|
|
|
|
|
2014-06-25 12:41:52 +00:00
|
|
|
const MCSymbol *PersHandlerSym =
|
|
|
|
TLOF.getCFIPersonalitySymbol(Per, *Asm->Mang, Asm->TM, MMI);
|
2014-06-29 01:52:01 +00:00
|
|
|
Asm->OutStreamer.EmitWinEHHandler(PersHandlerSym, true, true);
|
2011-05-30 00:13:34 +00:00
|
|
|
|
|
|
|
Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_func_begin",
|
|
|
|
Asm->getFunctionNumber()));
|
2011-05-27 23:47:32 +00:00
|
|
|
}
|
|
|
|
|
2013-11-26 13:34:55 +00:00
|
|
|
/// endFunction - Gather and emit post-function exception information.
|
2011-05-27 23:47:32 +00:00
|
|
|
///
|
2013-12-03 15:10:23 +00:00
|
|
|
void Win64Exception::endFunction(const MachineFunction *) {
|
2011-05-28 04:21:04 +00:00
|
|
|
if (!shouldEmitPersonality && !shouldEmitMoves)
|
|
|
|
return;
|
|
|
|
|
2011-05-30 00:13:34 +00:00
|
|
|
Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_func_end",
|
|
|
|
Asm->getFunctionNumber()));
|
|
|
|
|
|
|
|
// Map all labels and get rid of any dead landing pads.
|
|
|
|
MMI->TidyLandingPads();
|
|
|
|
|
|
|
|
if (shouldEmitPersonality) {
|
|
|
|
Asm->OutStreamer.PushSection();
|
2014-06-29 01:52:01 +00:00
|
|
|
Asm->OutStreamer.EmitWinEHHandlerData();
|
2014-06-11 01:19:03 +00:00
|
|
|
emitExceptionTable();
|
2011-05-30 00:13:34 +00:00
|
|
|
Asm->OutStreamer.PopSection();
|
|
|
|
}
|
2014-06-29 01:52:01 +00:00
|
|
|
Asm->OutStreamer.EmitWinCFIEndProc();
|
2011-05-27 23:47:32 +00:00
|
|
|
}
|