blob: cadc93d3a2e4cd6f27108eff7c8f3eedd7cc840e [file] [log] [blame]
Rui Ueyamaf5febef2016-05-24 02:55:45 +00001//===- EhFrame.h ------------------------------------------------*- C++ -*-===//
2//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLD_ELF_EHFRAME_H
11#define LLD_ELF_EHFRAME_H
12
13#include "lld/Core/LLVM.h"
14
15namespace lld {
16namespace elf {
Eugene Leviant531df4f2016-11-23 09:45:17 +000017template <class ELFT> class InputSectionBase;
18struct EhSectionPiece;
19
20template <class ELFT>
21size_t readEhRecordSize(InputSectionBase<ELFT> *S, size_t Off);
22template <class ELFT> uint8_t getFdeEncoding(EhSectionPiece *P);
Rui Ueyamaf5febef2016-05-24 02:55:45 +000023}
24}
25
26#endif