2015-05-28 22:47:01 +00:00
|
|
|
//===-- WinException.h - Windows Exception Handling ----------*- C++ -*--===//
|
2014-09-01 23:48:34 +00:00
|
|
|
//
|
|
|
|
// 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 windows exception info into asm files.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_WIN64EXCEPTION_H
|
|
|
|
#define LLVM_LIB_CODEGEN_ASMPRINTER_WIN64EXCEPTION_H
|
|
|
|
|
|
|
|
#include "EHStreamer.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2015-05-29 17:00:57 +00:00
|
|
|
class Function;
|
2015-10-23 15:06:05 +00:00
|
|
|
class GlobalValue;
|
2014-09-01 23:48:34 +00:00
|
|
|
class MachineFunction;
|
2015-03-30 22:58:10 +00:00
|
|
|
class MCExpr;
|
2016-12-28 19:05:12 +00:00
|
|
|
class MCSection;
|
2015-08-18 19:07:12 +00:00
|
|
|
class Value;
|
2015-05-29 17:00:57 +00:00
|
|
|
struct WinEHFuncInfo;
|
2014-09-01 23:48:34 +00:00
|
|
|
|
2015-07-01 16:18:16 +00:00
|
|
|
class LLVM_LIBRARY_VISIBILITY WinException : public EHStreamer {
|
2014-09-01 23:48:34 +00:00
|
|
|
/// Per-function flag to indicate if personality info should be emitted.
|
2015-05-29 17:00:57 +00:00
|
|
|
bool shouldEmitPersonality = false;
|
2014-09-01 23:48:34 +00:00
|
|
|
|
|
|
|
/// Per-function flag to indicate if the LSDA should be emitted.
|
2015-05-29 17:00:57 +00:00
|
|
|
bool shouldEmitLSDA = false;
|
2014-09-01 23:48:34 +00:00
|
|
|
|
|
|
|
/// Per-function flag to indicate if frame moves info should be emitted.
|
2015-05-29 17:00:57 +00:00
|
|
|
bool shouldEmitMoves = false;
|
|
|
|
|
|
|
|
/// True if this is a 64-bit target and we should use image relative offsets.
|
|
|
|
bool useImageRel32 = false;
|
2014-09-01 23:48:34 +00:00
|
|
|
|
2015-09-29 20:12:33 +00:00
|
|
|
/// Pointer to the current funclet entry BB.
|
|
|
|
const MachineBasicBlock *CurrentFuncletEntry = nullptr;
|
|
|
|
|
2016-12-28 19:05:12 +00:00
|
|
|
/// The section of the last funclet start.
|
|
|
|
MCSection *CurrentFuncletTextSection = nullptr;
|
|
|
|
|
2015-09-09 21:10:03 +00:00
|
|
|
void emitCSpecificHandlerTable(const MachineFunction *MF);
|
2015-01-14 01:05:27 +00:00
|
|
|
|
2015-11-17 21:10:25 +00:00
|
|
|
void emitSEHActionsForRange(const WinEHFuncInfo &FuncInfo,
|
2015-10-13 16:44:30 +00:00
|
|
|
const MCSymbol *BeginLabel,
|
|
|
|
const MCSymbol *EndLabel, int State);
|
2015-10-09 20:39:39 +00:00
|
|
|
|
2015-06-09 21:42:19 +00:00
|
|
|
/// Emit the EH table data for 32-bit and 64-bit functions using
|
|
|
|
/// the __CxxFrameHandler3 personality.
|
2015-03-30 22:58:10 +00:00
|
|
|
void emitCXXFrameHandler3Table(const MachineFunction *MF);
|
|
|
|
|
2015-06-09 21:42:19 +00:00
|
|
|
/// Emit the EH table data for _except_handler3 and _except_handler4
|
|
|
|
/// personality functions. These are only used on 32-bit and do not use CFI
|
|
|
|
/// tables.
|
|
|
|
void emitExceptHandlerTable(const MachineFunction *MF);
|
|
|
|
|
2015-10-13 20:18:27 +00:00
|
|
|
void emitCLRExceptionTable(const MachineFunction *MF);
|
|
|
|
|
2015-09-28 23:56:30 +00:00
|
|
|
void computeIP2StateTable(
|
2015-11-17 21:10:25 +00:00
|
|
|
const MachineFunction *MF, const WinEHFuncInfo &FuncInfo,
|
2015-09-28 23:56:30 +00:00
|
|
|
SmallVectorImpl<std::pair<const MCExpr *, int>> &IPToStateTable);
|
2015-05-29 17:00:57 +00:00
|
|
|
|
2015-06-30 22:46:59 +00:00
|
|
|
/// Emits the label used with llvm.x86.seh.recoverfp, which is used by
|
|
|
|
/// outlined funclets.
|
|
|
|
void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo,
|
|
|
|
StringRef FLinkageName);
|
|
|
|
|
2015-05-29 17:00:57 +00:00
|
|
|
const MCExpr *create32bitRef(const MCSymbol *Value);
|
2015-10-23 15:06:05 +00:00
|
|
|
const MCExpr *create32bitRef(const GlobalValue *GV);
|
2015-10-13 16:44:30 +00:00
|
|
|
const MCExpr *getLabelPlusOne(const MCSymbol *Label);
|
2015-10-13 20:18:27 +00:00
|
|
|
const MCExpr *getOffset(const MCSymbol *OffsetOf, const MCSymbol *OffsetFrom);
|
|
|
|
const MCExpr *getOffsetPlusOne(const MCSymbol *OffsetOf,
|
|
|
|
const MCSymbol *OffsetFrom);
|
2015-01-14 01:05:27 +00:00
|
|
|
|
2015-10-07 21:13:15 +00:00
|
|
|
/// Gets the offset that we should use in a table for a stack object with the
|
|
|
|
/// given index. For targets using CFI (Win64, etc), this is relative to the
|
|
|
|
/// established SP at the end of the prologue. For targets without CFI (Win32
|
|
|
|
/// only), it is relative to the frame pointer.
|
2015-11-17 21:10:25 +00:00
|
|
|
int getFrameIndexOffset(int FrameIndex, const WinEHFuncInfo &FuncInfo);
|
2015-10-07 21:13:15 +00:00
|
|
|
|
2014-09-01 23:48:34 +00:00
|
|
|
public:
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Main entry points.
|
|
|
|
//
|
2015-05-28 22:47:01 +00:00
|
|
|
WinException(AsmPrinter *A);
|
|
|
|
~WinException() override;
|
2014-09-01 23:48:34 +00:00
|
|
|
|
|
|
|
/// Emit all exception information that should come after the content.
|
|
|
|
void endModule() override;
|
|
|
|
|
|
|
|
/// Gather pre-function exception information. Assumes being emitted
|
|
|
|
/// immediately after the function entry point.
|
|
|
|
void beginFunction(const MachineFunction *MF) override;
|
|
|
|
|
|
|
|
/// Gather and emit post-function exception information.
|
|
|
|
void endFunction(const MachineFunction *) override;
|
2015-09-29 20:12:33 +00:00
|
|
|
|
|
|
|
/// \brief Emit target-specific EH funclet machinery.
|
|
|
|
void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override;
|
|
|
|
void endFunclet() override;
|
2014-09-01 23:48:34 +00:00
|
|
|
};
|
2015-06-23 09:49:53 +00:00
|
|
|
}
|
2014-09-01 23:48:34 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|