2015-05-29 00:47:01 +02:00
|
|
|
//===-- WinException.h - Windows Exception Handling ----------*- C++ -*--===//
|
2014-09-02 01:48:34 +02:00
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2014-09-02 01:48:34 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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 19:00:57 +02:00
|
|
|
class Function;
|
2015-10-23 17:06:05 +02:00
|
|
|
class GlobalValue;
|
2014-09-02 01:48:34 +02:00
|
|
|
class MachineFunction;
|
2015-03-31 00:58:10 +02:00
|
|
|
class MCExpr;
|
2016-12-28 20:05:12 +01:00
|
|
|
class MCSection;
|
2015-08-18 21:07:12 +02:00
|
|
|
class Value;
|
2015-05-29 19:00:57 +02:00
|
|
|
struct WinEHFuncInfo;
|
2014-09-02 01:48:34 +02:00
|
|
|
|
2015-07-01 18:18:16 +02:00
|
|
|
class LLVM_LIBRARY_VISIBILITY WinException : public EHStreamer {
|
2014-09-02 01:48:34 +02:00
|
|
|
/// Per-function flag to indicate if personality info should be emitted.
|
2015-05-29 19:00:57 +02:00
|
|
|
bool shouldEmitPersonality = false;
|
2014-09-02 01:48:34 +02:00
|
|
|
|
|
|
|
/// Per-function flag to indicate if the LSDA should be emitted.
|
2015-05-29 19:00:57 +02:00
|
|
|
bool shouldEmitLSDA = false;
|
2014-09-02 01:48:34 +02:00
|
|
|
|
|
|
|
/// Per-function flag to indicate if frame moves info should be emitted.
|
2015-05-29 19:00:57 +02:00
|
|
|
bool shouldEmitMoves = false;
|
|
|
|
|
|
|
|
/// True if this is a 64-bit target and we should use image relative offsets.
|
|
|
|
bool useImageRel32 = false;
|
2014-09-02 01:48:34 +02:00
|
|
|
|
2018-10-27 08:13:06 +02:00
|
|
|
/// True if we are generating exception handling on Windows for ARM64.
|
|
|
|
bool isAArch64 = false;
|
|
|
|
|
2015-09-29 22:12:33 +02:00
|
|
|
/// Pointer to the current funclet entry BB.
|
|
|
|
const MachineBasicBlock *CurrentFuncletEntry = nullptr;
|
|
|
|
|
2016-12-28 20:05:12 +01:00
|
|
|
/// The section of the last funclet start.
|
|
|
|
MCSection *CurrentFuncletTextSection = nullptr;
|
|
|
|
|
2015-09-09 23:10:03 +02:00
|
|
|
void emitCSpecificHandlerTable(const MachineFunction *MF);
|
2015-01-14 02:05:27 +01:00
|
|
|
|
2015-11-17 22:10:25 +01:00
|
|
|
void emitSEHActionsForRange(const WinEHFuncInfo &FuncInfo,
|
2015-10-13 18:44:30 +02:00
|
|
|
const MCSymbol *BeginLabel,
|
|
|
|
const MCSymbol *EndLabel, int State);
|
2015-10-09 22:39:39 +02:00
|
|
|
|
2015-06-09 23:42:19 +02:00
|
|
|
/// Emit the EH table data for 32-bit and 64-bit functions using
|
|
|
|
/// the __CxxFrameHandler3 personality.
|
2015-03-31 00:58:10 +02:00
|
|
|
void emitCXXFrameHandler3Table(const MachineFunction *MF);
|
|
|
|
|
2015-06-09 23:42:19 +02: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 22:18:27 +02:00
|
|
|
void emitCLRExceptionTable(const MachineFunction *MF);
|
|
|
|
|
2015-09-29 01:56:30 +02:00
|
|
|
void computeIP2StateTable(
|
2015-11-17 22:10:25 +01:00
|
|
|
const MachineFunction *MF, const WinEHFuncInfo &FuncInfo,
|
2015-09-29 01:56:30 +02:00
|
|
|
SmallVectorImpl<std::pair<const MCExpr *, int>> &IPToStateTable);
|
2015-05-29 19:00:57 +02:00
|
|
|
|
2019-01-16 01:37:13 +01:00
|
|
|
/// Emits the label used with llvm.eh.recoverfp, which is used by
|
2015-07-01 00:46:59 +02:00
|
|
|
/// outlined funclets.
|
|
|
|
void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo,
|
|
|
|
StringRef FLinkageName);
|
|
|
|
|
2015-05-29 19:00:57 +02:00
|
|
|
const MCExpr *create32bitRef(const MCSymbol *Value);
|
2015-10-23 17:06:05 +02:00
|
|
|
const MCExpr *create32bitRef(const GlobalValue *GV);
|
2018-10-27 08:13:06 +02:00
|
|
|
const MCExpr *getLabel(const MCSymbol *Label);
|
2015-10-13 22:18:27 +02:00
|
|
|
const MCExpr *getOffset(const MCSymbol *OffsetOf, const MCSymbol *OffsetFrom);
|
|
|
|
const MCExpr *getOffsetPlusOne(const MCSymbol *OffsetOf,
|
|
|
|
const MCSymbol *OffsetFrom);
|
2015-01-14 02:05:27 +01:00
|
|
|
|
2015-10-07 23:13:15 +02: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 22:10:25 +01:00
|
|
|
int getFrameIndexOffset(int FrameIndex, const WinEHFuncInfo &FuncInfo);
|
2015-10-07 23:13:15 +02:00
|
|
|
|
2019-05-03 02:10:45 +02:00
|
|
|
void endFuncletImpl();
|
2014-09-02 01:48:34 +02:00
|
|
|
public:
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Main entry points.
|
|
|
|
//
|
2015-05-29 00:47:01 +02:00
|
|
|
WinException(AsmPrinter *A);
|
|
|
|
~WinException() override;
|
2014-09-02 01:48:34 +02: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;
|
|
|
|
|
2019-05-03 02:10:45 +02:00
|
|
|
void markFunctionEnd() override;
|
|
|
|
|
2014-09-02 01:48:34 +02:00
|
|
|
/// Gather and emit post-function exception information.
|
|
|
|
void endFunction(const MachineFunction *) override;
|
2015-09-29 22:12:33 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Emit target-specific EH funclet machinery.
|
2015-09-29 22:12:33 +02:00
|
|
|
void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override;
|
|
|
|
void endFunclet() override;
|
2014-09-02 01:48:34 +02:00
|
|
|
};
|
2015-06-23 11:49:53 +02:00
|
|
|
}
|
2014-09-02 01:48:34 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|