[InstCombine] Signed saturation patterns
[llvm-complete.git] / lib / Target / AArch64 / AArch64TargetObjectFile.h
blob1cb4c028c80d234a7be16d31d4937912d3223b7c
1 //===-- AArch64TargetObjectFile.h - AArch64 Object Info -*- C++ ---------*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIB_TARGET_AARCH64_AARCH64TARGETOBJECTFILE_H
10 #define LLVM_LIB_TARGET_AARCH64_AARCH64TARGETOBJECTFILE_H
12 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
13 #include "llvm/Target/TargetLoweringObjectFile.h"
15 namespace llvm {
16 class AArch64TargetMachine;
18 /// This implementation is used for AArch64 ELF targets (Linux in particular).
19 class AArch64_ELFTargetObjectFile : public TargetLoweringObjectFileELF {
20 void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
23 /// AArch64_MachoTargetObjectFile - This TLOF implementation is used for Darwin.
24 class AArch64_MachoTargetObjectFile : public TargetLoweringObjectFileMachO {
25 public:
26 AArch64_MachoTargetObjectFile();
28 const MCExpr *getTTypeGlobalReference(const GlobalValue *GV,
29 unsigned Encoding,
30 const TargetMachine &TM,
31 MachineModuleInfo *MMI,
32 MCStreamer &Streamer) const override;
34 MCSymbol *getCFIPersonalitySymbol(const GlobalValue *GV,
35 const TargetMachine &TM,
36 MachineModuleInfo *MMI) const override;
38 const MCExpr *getIndirectSymViaGOTPCRel(const GlobalValue *GV,
39 const MCSymbol *Sym,
40 const MCValue &MV, int64_t Offset,
41 MachineModuleInfo *MMI,
42 MCStreamer &Streamer) const override;
44 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
45 const TargetMachine &TM) const override;
48 /// This implementation is used for AArch64 COFF targets.
49 class AArch64_COFFTargetObjectFile : public TargetLoweringObjectFileCOFF {};
51 } // end namespace llvm
53 #endif