Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 1 | //===-- RISCVAsmBackend.h - RISCV Assembler Backend -----------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_LIB_TARGET_RISCV_MCTARGETDESC_RISCVASMBACKEND_H |
| 10 | #define LLVM_LIB_TARGET_RISCV_MCTARGETDESC_RISCVASMBACKEND_H |
| 11 | |
| 12 | #include "MCTargetDesc/RISCVFixupKinds.h" |
| 13 | #include "MCTargetDesc/RISCVMCTargetDesc.h" |
Alex Bradbury | fea4957 | 2019-03-09 09:28:06 +0000 | [diff] [blame] | 14 | #include "Utils/RISCVBaseInfo.h" |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCAsmBackend.h" |
| 16 | #include "llvm/MC/MCFixupKindInfo.h" |
| 17 | #include "llvm/MC/MCSubtargetInfo.h" |
| 18 | |
| 19 | namespace llvm { |
| 20 | class MCAssembler; |
| 21 | class MCObjectTargetWriter; |
| 22 | class raw_ostream; |
| 23 | |
| 24 | class RISCVAsmBackend : public MCAsmBackend { |
| 25 | const MCSubtargetInfo &STI; |
| 26 | uint8_t OSABI; |
| 27 | bool Is64Bit; |
| 28 | bool ForceRelocs = false; |
Alex Bradbury | fea4957 | 2019-03-09 09:28:06 +0000 | [diff] [blame] | 29 | const MCTargetOptions &TargetOptions; |
| 30 | RISCVABI::ABI TargetABI = RISCVABI::ABI_Unknown; |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 31 | |
| 32 | public: |
Alex Bradbury | fea4957 | 2019-03-09 09:28:06 +0000 | [diff] [blame] | 33 | RISCVAsmBackend(const MCSubtargetInfo &STI, uint8_t OSABI, bool Is64Bit, |
| 34 | const MCTargetOptions &Options) |
| 35 | : MCAsmBackend(support::little), STI(STI), OSABI(OSABI), Is64Bit(Is64Bit), |
| 36 | TargetOptions(Options) { |
| 37 | TargetABI = RISCVABI::computeTargetABI( |
| 38 | STI.getTargetTriple(), STI.getFeatureBits(), Options.getABIName()); |
Alex Bradbury | dab1f6f | 2019-03-22 11:21:40 +0000 | [diff] [blame] | 39 | RISCVFeatures::validate(STI.getTargetTriple(), STI.getFeatureBits()); |
Alex Bradbury | fea4957 | 2019-03-09 09:28:06 +0000 | [diff] [blame] | 40 | } |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 41 | ~RISCVAsmBackend() override {} |
| 42 | |
| 43 | void setForceRelocs() { ForceRelocs = true; } |
| 44 | |
Alex Bradbury | ca81a56 | 2019-04-01 02:38:27 +0000 | [diff] [blame] | 45 | // Returns true if relocations will be forced for shouldForceRelocation by |
| 46 | // default. This will be true if relaxation is enabled or had previously |
| 47 | // been enabled. |
| 48 | bool willForceRelocations() const { |
| 49 | return ForceRelocs || STI.getFeatureBits()[RISCV::FeatureRelax]; |
| 50 | } |
| 51 | |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 52 | // Generate diff expression relocations if the relax feature is enabled or had |
| 53 | // previously been enabled, otherwise it is safe for the assembler to |
| 54 | // calculate these internally. |
| 55 | bool requiresDiffExpressionRelocations() const override { |
Alex Bradbury | ca81a56 | 2019-04-01 02:38:27 +0000 | [diff] [blame] | 56 | return willForceRelocations(); |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 57 | } |
Shiva Chen | 5af037f | 2019-01-30 11:16:59 +0000 | [diff] [blame] | 58 | |
| 59 | // Return Size with extra Nop Bytes for alignment directive in code section. |
| 60 | bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, |
| 61 | unsigned &Size) override; |
| 62 | |
| 63 | // Insert target specific fixup type for alignment directive in code section. |
| 64 | bool shouldInsertFixupForCodeAlign(MCAssembler &Asm, |
| 65 | const MCAsmLayout &Layout, |
| 66 | MCAlignFragment &AF) override; |
| 67 | |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 68 | void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, |
| 69 | const MCValue &Target, MutableArrayRef<char> Data, |
| 70 | uint64_t Value, bool IsResolved, |
| 71 | const MCSubtargetInfo *STI) const override; |
| 72 | |
| 73 | std::unique_ptr<MCObjectTargetWriter> |
| 74 | createObjectTargetWriter() const override; |
| 75 | |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 76 | bool shouldForceRelocation(const MCAssembler &Asm, const MCFixup &Fixup, |
Alex Bradbury | eb3a64a | 2018-12-20 14:52:15 +0000 | [diff] [blame] | 77 | const MCValue &Target) override; |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 78 | |
| 79 | bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value, |
| 80 | const MCRelaxableFragment *DF, |
| 81 | const MCAsmLayout &Layout) const override { |
| 82 | llvm_unreachable("Handled by fixupNeedsRelaxationAdvanced"); |
| 83 | } |
| 84 | |
| 85 | bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved, |
| 86 | uint64_t Value, |
| 87 | const MCRelaxableFragment *DF, |
| 88 | const MCAsmLayout &Layout, |
| 89 | const bool WasForced) const override; |
| 90 | |
| 91 | unsigned getNumFixupKinds() const override { |
| 92 | return RISCV::NumTargetFixupKinds; |
| 93 | } |
| 94 | |
| 95 | const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const override { |
| 96 | const static MCFixupKindInfo Infos[] = { |
| 97 | // This table *must* be in the order that the fixup_* kinds are defined in |
| 98 | // RISCVFixupKinds.h. |
| 99 | // |
| 100 | // name offset bits flags |
| 101 | { "fixup_riscv_hi20", 12, 20, 0 }, |
| 102 | { "fixup_riscv_lo12_i", 20, 12, 0 }, |
| 103 | { "fixup_riscv_lo12_s", 0, 32, 0 }, |
| 104 | { "fixup_riscv_pcrel_hi20", 12, 20, MCFixupKindInfo::FKF_IsPCRel }, |
| 105 | { "fixup_riscv_pcrel_lo12_i", 20, 12, MCFixupKindInfo::FKF_IsPCRel }, |
| 106 | { "fixup_riscv_pcrel_lo12_s", 0, 32, MCFixupKindInfo::FKF_IsPCRel }, |
Alex Bradbury | 8eb87e5 | 2019-02-15 09:43:46 +0000 | [diff] [blame] | 107 | { "fixup_riscv_got_hi20", 12, 20, MCFixupKindInfo::FKF_IsPCRel }, |
Lewis Revill | aa79a3f | 2019-04-04 14:13:37 +0000 | [diff] [blame] | 108 | { "fixup_riscv_tprel_hi20", 12, 20, 0 }, |
| 109 | { "fixup_riscv_tprel_lo12_i", 20, 12, 0 }, |
| 110 | { "fixup_riscv_tprel_lo12_s", 0, 32, 0 }, |
| 111 | { "fixup_riscv_tprel_add", 0, 0, 0 }, |
Lewis Revill | df3cb47 | 2019-04-23 14:46:13 +0000 | [diff] [blame] | 112 | { "fixup_riscv_tls_got_hi20", 12, 20, MCFixupKindInfo::FKF_IsPCRel }, |
| 113 | { "fixup_riscv_tls_gd_hi20", 12, 20, MCFixupKindInfo::FKF_IsPCRel }, |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 114 | { "fixup_riscv_jal", 12, 20, MCFixupKindInfo::FKF_IsPCRel }, |
| 115 | { "fixup_riscv_branch", 0, 32, MCFixupKindInfo::FKF_IsPCRel }, |
| 116 | { "fixup_riscv_rvc_jump", 2, 11, MCFixupKindInfo::FKF_IsPCRel }, |
| 117 | { "fixup_riscv_rvc_branch", 0, 16, MCFixupKindInfo::FKF_IsPCRel }, |
| 118 | { "fixup_riscv_call", 0, 64, MCFixupKindInfo::FKF_IsPCRel }, |
Alex Bradbury | f8078f6 | 2019-04-02 12:47:20 +0000 | [diff] [blame] | 119 | { "fixup_riscv_call_plt", 0, 64, MCFixupKindInfo::FKF_IsPCRel }, |
Shiva Chen | 5af037f | 2019-01-30 11:16:59 +0000 | [diff] [blame] | 120 | { "fixup_riscv_relax", 0, 0, 0 }, |
| 121 | { "fixup_riscv_align", 0, 0, 0 } |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 122 | }; |
| 123 | static_assert((array_lengthof(Infos)) == RISCV::NumTargetFixupKinds, |
| 124 | "Not all fixup kinds added to Infos array"); |
| 125 | |
| 126 | if (Kind < FirstTargetFixupKind) |
| 127 | return MCAsmBackend::getFixupKindInfo(Kind); |
| 128 | |
| 129 | assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() && |
| 130 | "Invalid kind!"); |
| 131 | return Infos[Kind - FirstTargetFixupKind]; |
| 132 | } |
| 133 | |
| 134 | bool mayNeedRelaxation(const MCInst &Inst, |
| 135 | const MCSubtargetInfo &STI) const override; |
| 136 | unsigned getRelaxedOpcode(unsigned Op) const; |
| 137 | |
| 138 | void relaxInstruction(const MCInst &Inst, const MCSubtargetInfo &STI, |
| 139 | MCInst &Res) const override; |
| 140 | |
| 141 | |
| 142 | bool writeNopData(raw_ostream &OS, uint64_t Count) const override; |
Alex Bradbury | fea4957 | 2019-03-09 09:28:06 +0000 | [diff] [blame] | 143 | |
| 144 | const MCTargetOptions &getTargetOptions() const { return TargetOptions; } |
| 145 | RISCVABI::ABI getTargetABI() const { return TargetABI; } |
Alex Bradbury | 9c03e4c | 2018-11-12 14:25:07 +0000 | [diff] [blame] | 146 | }; |
| 147 | } |
| 148 | |
| 149 | #endif |