Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / lib / Target / ARM / MCTargetDesc / ARMAsmBackend.h
blob52abc2f20e0692ea15b67a211f035a0392922d08
1 //===-- ARMAsmBackend.h - ARM Assembler Backend -----------------*- 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_ARM_ARMASMBACKEND_H
10 #define LLVM_LIB_TARGET_ARM_ARMASMBACKEND_H
12 #include "MCTargetDesc/ARMFixupKinds.h"
13 #include "MCTargetDesc/ARMMCTargetDesc.h"
14 #include "llvm/MC/MCAsmBackend.h"
15 #include "llvm/MC/MCSubtargetInfo.h"
16 #include "llvm/Support/TargetRegistry.h"
18 namespace llvm {
20 class ARMAsmBackend : public MCAsmBackend {
21 // The STI from the target triple the MCAsmBackend was instantiated with
22 // note that MCFragments may have a different local STI that should be
23 // used in preference.
24 const MCSubtargetInfo &STI;
25 bool isThumbMode; // Currently emitting Thumb code.
26 public:
27 ARMAsmBackend(const Target &T, const MCSubtargetInfo &STI,
28 support::endianness Endian)
29 : MCAsmBackend(Endian), STI(STI),
30 isThumbMode(STI.getTargetTriple().isThumb()) {}
32 unsigned getNumFixupKinds() const override {
33 return ARM::NumTargetFixupKinds;
36 // FIXME: this should be calculated per fragment as the STI may be
37 // different.
38 bool hasNOP() const { return STI.getFeatureBits()[ARM::HasV6T2Ops]; }
40 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const override;
42 bool shouldForceRelocation(const MCAssembler &Asm, const MCFixup &Fixup,
43 const MCValue &Target) override;
45 unsigned adjustFixupValue(const MCAssembler &Asm, const MCFixup &Fixup,
46 const MCValue &Target, uint64_t Value,
47 bool IsResolved, MCContext &Ctx,
48 const MCSubtargetInfo *STI) const;
50 void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup,
51 const MCValue &Target, MutableArrayRef<char> Data,
52 uint64_t Value, bool IsResolved,
53 const MCSubtargetInfo *STI) const override;
55 unsigned getRelaxedOpcode(unsigned Op, const MCSubtargetInfo &STI) const;
57 bool mayNeedRelaxation(const MCInst &Inst,
58 const MCSubtargetInfo &STI) const override;
60 const char *reasonForFixupRelaxation(const MCFixup &Fixup,
61 uint64_t Value) const;
63 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
64 const MCRelaxableFragment *DF,
65 const MCAsmLayout &Layout) const override;
67 void relaxInstruction(const MCInst &Inst, const MCSubtargetInfo &STI,
68 MCInst &Res) const override;
70 bool writeNopData(raw_ostream &OS, uint64_t Count) const override;
72 void handleAssemblerFlag(MCAssemblerFlag Flag) override;
74 unsigned getPointerSize() const { return 4; }
75 bool isThumb() const { return isThumbMode; }
76 void setIsThumb(bool it) { isThumbMode = it; }
78 } // end namespace llvm
80 #endif