2011-03-05 19:43:15 +01:00
|
|
|
//===-- CodeGen/AsmPrinter/ARMException.cpp - ARM EHABI 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 17:50:05 +01:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2011-03-05 19:43:15 +01:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2014-01-07 22:19:40 +01:00
|
|
|
#include "llvm/IR/Mangler.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Module.h"
|
2011-03-05 19:43:15 +01: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 17:50:05 +01:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Dwarf.h"
|
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2011-03-05 19:43:15 +01:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2015-03-09 19:29:12 +01:00
|
|
|
ARMException::ARMException(AsmPrinter *A) : DwarfCFIExceptionBase(A) {}
|
2011-03-05 19:43:15 +01:00
|
|
|
|
|
|
|
ARMException::~ARMException() {}
|
|
|
|
|
2013-10-08 15:08:17 +02:00
|
|
|
ARMTargetStreamer &ARMException::getTargetStreamer() {
|
2015-04-24 21:11:51 +02:00
|
|
|
MCTargetStreamer &TS = *Asm->OutStreamer->getTargetStreamer();
|
2013-10-08 15:08:17 +02:00
|
|
|
return static_cast<ARMTargetStreamer &>(TS);
|
|
|
|
}
|
|
|
|
|
2014-02-14 18:19:07 +01:00
|
|
|
/// endModule - Emit all exception information that should come after the
|
|
|
|
/// content.
|
2013-11-26 14:34:55 +01:00
|
|
|
void ARMException::endModule() {
|
2014-02-14 18:19:07 +01:00
|
|
|
if (shouldEmitCFI)
|
2015-04-24 21:11:51 +02:00
|
|
|
Asm->OutStreamer->EmitCFISections(false, true);
|
2011-03-05 19:43:15 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 14:34:55 +01:00
|
|
|
void ARMException::beginFunction(const MachineFunction *MF) {
|
2014-05-01 00:43:13 +02:00
|
|
|
if (Asm->MAI->getExceptionHandlingType() == ExceptionHandling::ARM)
|
|
|
|
getTargetStreamer().emitFnStart();
|
2014-02-14 18:19:07 +01:00
|
|
|
// See if we need call frame info.
|
|
|
|
AsmPrinter::CFIMoveType MoveType = Asm->needsCFIMoves();
|
|
|
|
assert(MoveType != AsmPrinter::CFI_M_EH &&
|
|
|
|
"non-EH CFI not yet supported in prologue with EHABI lowering");
|
|
|
|
if (MoveType == AsmPrinter::CFI_M_Debug) {
|
|
|
|
shouldEmitCFI = true;
|
2015-04-24 21:11:51 +02:00
|
|
|
Asm->OutStreamer->EmitCFIStartProc(false);
|
2014-02-14 18:19:07 +01:00
|
|
|
}
|
2011-03-05 19:43:15 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 14:34:55 +01:00
|
|
|
/// endFunction - Gather and emit post-function exception information.
|
2011-03-05 19:43:15 +01:00
|
|
|
///
|
2015-03-09 19:29:12 +01:00
|
|
|
void ARMException::endFunction(const MachineFunction *MF) {
|
2013-10-08 15:08:17 +02:00
|
|
|
ARMTargetStreamer &ATS = getTargetStreamer();
|
2014-05-14 18:38:30 +02:00
|
|
|
if (!Asm->MF->getFunction()->needsUnwindTableEntry() &&
|
|
|
|
MMI->getLandingPads().empty())
|
2013-10-08 15:08:17 +02:00
|
|
|
ATS.emitCantUnwind();
|
2011-03-05 19:43:15 +01:00
|
|
|
else {
|
2014-01-29 12:50:56 +01:00
|
|
|
if (!MMI->getLandingPads().empty()) {
|
|
|
|
// Emit references to personality.
|
2015-01-14 23:47:54 +01:00
|
|
|
if (const Function *Personality = MMI->getPersonality()) {
|
2014-01-29 12:50:56 +01:00
|
|
|
MCSymbol *PerSym = Asm->getSymbol(Personality);
|
2015-04-24 21:11:51 +02:00
|
|
|
Asm->OutStreamer->EmitSymbolAttribute(PerSym, MCSA_Global);
|
2014-01-29 12:50:56 +01:00
|
|
|
ATS.emitPersonality(PerSym);
|
|
|
|
}
|
2012-11-14 20:13:30 +01:00
|
|
|
|
2014-01-29 12:50:56 +01:00
|
|
|
// Emit .handlerdata directive.
|
|
|
|
ATS.emitHandlerData();
|
2011-03-05 19:43:15 +01:00
|
|
|
|
2014-01-29 12:50:56 +01:00
|
|
|
// Emit actual exception table
|
2014-06-11 03:19:03 +02:00
|
|
|
emitExceptionTable();
|
2012-01-24 14:05:33 +01:00
|
|
|
}
|
2011-03-05 19:43:15 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 00:43:13 +02:00
|
|
|
if (Asm->MAI->getExceptionHandlingType() == ExceptionHandling::ARM)
|
|
|
|
ATS.emitFnEnd();
|
2011-03-05 19:43:15 +01:00
|
|
|
}
|
2012-11-19 22:06:26 +01:00
|
|
|
|
2014-06-11 03:19:03 +02:00
|
|
|
void ARMException::emitTypeInfos(unsigned TTypeEncoding) {
|
2014-11-14 01:35:50 +01:00
|
|
|
const std::vector<const GlobalValue *> &TypeInfos = MMI->getTypeInfos();
|
2012-11-19 22:06:26 +01:00
|
|
|
const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
|
|
|
|
|
2015-04-24 21:11:51 +02:00
|
|
|
bool VerboseAsm = Asm->OutStreamer->isVerboseAsm();
|
2012-11-19 22:06:26 +01:00
|
|
|
|
|
|
|
int Entry = 0;
|
|
|
|
// Emit the Catch TypeInfos.
|
|
|
|
if (VerboseAsm && !TypeInfos.empty()) {
|
2015-04-24 21:11:51 +02:00
|
|
|
Asm->OutStreamer->AddComment(">> Catch TypeInfos <<");
|
|
|
|
Asm->OutStreamer->AddBlankLine();
|
2012-11-19 22:06:26 +01:00
|
|
|
Entry = TypeInfos.size();
|
|
|
|
}
|
|
|
|
|
2014-11-14 01:35:50 +01:00
|
|
|
for (std::vector<const GlobalValue *>::const_reverse_iterator
|
2012-11-19 22:06:26 +01:00
|
|
|
I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) {
|
2014-11-14 01:35:50 +01:00
|
|
|
const GlobalValue *GV = *I;
|
2012-11-19 22:06:26 +01:00
|
|
|
if (VerboseAsm)
|
2015-04-24 21:11:51 +02:00
|
|
|
Asm->OutStreamer->AddComment("TypeInfo " + Twine(Entry--));
|
2012-11-19 22:17:20 +01:00
|
|
|
Asm->EmitTTypeReference(GV, TTypeEncoding);
|
2012-11-19 22:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Emit the Exception Specifications.
|
|
|
|
if (VerboseAsm && !FilterIds.empty()) {
|
2015-04-24 21:11:51 +02:00
|
|
|
Asm->OutStreamer->AddComment(">> Filter TypeInfos <<");
|
|
|
|
Asm->OutStreamer->AddBlankLine();
|
2012-11-19 22:06:26 +01:00
|
|
|
Entry = 0;
|
|
|
|
}
|
|
|
|
for (std::vector<unsigned>::const_iterator
|
|
|
|
I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) {
|
|
|
|
unsigned TypeID = *I;
|
|
|
|
if (VerboseAsm) {
|
|
|
|
--Entry;
|
|
|
|
if (TypeID != 0)
|
2015-04-24 21:11:51 +02:00
|
|
|
Asm->OutStreamer->AddComment("FilterInfo " + Twine(Entry));
|
2012-11-19 22:06:26 +01:00
|
|
|
}
|
|
|
|
|
2014-04-24 08:44:33 +02:00
|
|
|
Asm->EmitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]),
|
2012-11-19 22:17:20 +01:00
|
|
|
TTypeEncoding);
|
2012-11-19 22:06:26 +01:00
|
|
|
}
|
|
|
|
}
|