LLVM 20.0.0git
AVRAsmBackend.cpp
Go to the documentation of this file.
1//===-- AVRAsmBackend.cpp - AVR Asm Backend ------------------------------===//
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//===----------------------------------------------------------------------===//
8//
9// This file implements the AVRAsmBackend class.
10//
11//===----------------------------------------------------------------------===//
12
18#include "llvm/MC/MCAssembler.h"
19#include "llvm/MC/MCContext.h"
21#include "llvm/MC/MCExpr.h"
25#include "llvm/MC/MCValue.h"
29
30// FIXME: we should be doing checks to make sure asm operands
31// are not out of bounds.
32
33namespace adjust {
34
35using namespace llvm;
36
37static void signed_width(unsigned Width, uint64_t Value,
38 std::string Description, const MCFixup &Fixup,
39 MCContext *Ctx = nullptr) {
40 if (!isIntN(Width, Value)) {
41 std::string Diagnostic = "out of range " + Description;
42
43 int64_t Min = minIntN(Width);
44 int64_t Max = maxIntN(Width);
45
46 Diagnostic += " (expected an integer in the range " + std::to_string(Min) +
47 " to " + std::to_string(Max) + ")";
48
49 if (Ctx) {
50 Ctx->reportError(Fixup.getLoc(), Diagnostic);
51 } else {
52 llvm_unreachable(Diagnostic.c_str());
53 }
54 }
55}
56
57static void unsigned_width(unsigned Width, uint64_t Value,
58 std::string Description, const MCFixup &Fixup,
59 MCContext *Ctx = nullptr) {
60 if (!isUIntN(Width, Value)) {
61 std::string Diagnostic = "out of range " + Description;
62
63 int64_t Max = maxUIntN(Width);
64
65 Diagnostic +=
66 " (expected an integer in the range 0 to " + std::to_string(Max) + ")";
67
68 if (Ctx) {
69 Ctx->reportError(Fixup.getLoc(), Diagnostic);
70 } else {
71 llvm_unreachable(Diagnostic.c_str());
72 }
73 }
74}
75
76/// Adjusts the value of a branch target before fixup application.
77static void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
78 MCContext *Ctx = nullptr) {
79 // We have one extra bit of precision because the value is rightshifted by
80 // one.
81 unsigned_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx);
82
83 // Rightshifts the value by one.
85}
86
87/// Adjusts the value of a relative branch target before fixup application.
88static void adjustRelativeBranch(unsigned Size, const MCFixup &Fixup,
89 uint64_t &Value, MCContext *Ctx = nullptr) {
90 // Jumps are relative to the current instruction.
91 Value -= 2;
92
93 // We have one extra bit of precision because the value is rightshifted by
94 // one.
95 signed_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx);
96
97 // Rightshifts the value by one.
99}
100
101/// 22-bit absolute fixup.
102///
103/// Resolves to:
104/// 1001 kkkk 010k kkkk kkkk kkkk 111k kkkk
105///
106/// Offset of 0 (so the result is left shifted by 3 bits before application).
107static void fixup_call(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
108 MCContext *Ctx = nullptr) {
110
111 auto top = Value & (0xf00000 << 6); // the top four bits
112 auto middle = Value & (0x1ffff << 5); // the middle 13 bits
113 auto bottom = Value & 0x1f; // end bottom 5 bits
114
115 Value = (top << 6) | (middle << 3) | (bottom << 0);
116}
117
118/// 7-bit PC-relative fixup.
119///
120/// Resolves to:
121/// 0000 00kk kkkk k000
122/// Offset of 0 (so the result is left shifted by 3 bits before application).
123static void fixup_7_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
124 MCContext *Ctx = nullptr) {
126
127 // Because the value may be negative, we must mask out the sign bits
128 Value &= 0x7f;
129}
130
131/// 12-bit PC-relative fixup.
132/// Yes, the fixup is 12 bits even though the name says otherwise.
133///
134/// Resolves to:
135/// 0000 kkkk kkkk kkkk
136/// Offset of 0 (so the result isn't left-shifted before application).
137static void fixup_13_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
138 MCContext *Ctx = nullptr) {
140
141 // Because the value may be negative, we must mask out the sign bits
142 Value &= 0xfff;
143}
144
145/// 6-bit fixup for the immediate operand of the STD/LDD family of
146/// instructions.
147///
148/// Resolves to:
149/// 10q0 qq10 0000 1qqq
150static void fixup_6(const MCFixup &Fixup, uint64_t &Value,
151 MCContext *Ctx = nullptr) {
152 unsigned_width(6, Value, std::string("immediate"), Fixup, Ctx);
153
154 Value = ((Value & 0x20) << 8) | ((Value & 0x18) << 7) | (Value & 0x07);
155}
156
157/// 6-bit fixup for the immediate operand of the ADIW family of
158/// instructions.
159///
160/// Resolves to:
161/// 0000 0000 kk00 kkkk
163 MCContext *Ctx = nullptr) {
164 unsigned_width(6, Value, std::string("immediate"), Fixup, Ctx);
165
166 Value = ((Value & 0x30) << 2) | (Value & 0x0f);
167}
168
169/// 5-bit port number fixup on the SBIC family of instructions.
170///
171/// Resolves to:
172/// 0000 0000 AAAA A000
174 MCContext *Ctx = nullptr) {
175 unsigned_width(5, Value, std::string("port number"), Fixup, Ctx);
176
177 Value &= 0x1f;
178
179 Value <<= 3;
180}
181
182/// 6-bit port number fixup on the `IN` family of instructions.
183///
184/// Resolves to:
185/// 1011 0AAd dddd AAAA
187 MCContext *Ctx = nullptr) {
188 unsigned_width(6, Value, std::string("port number"), Fixup, Ctx);
189
190 Value = ((Value & 0x30) << 5) | (Value & 0x0f);
191}
192
193/// 7-bit data space address fixup for the LDS/STS instructions on AVRTiny.
194///
195/// Resolves to:
196/// 1010 ikkk dddd kkkk
198 MCContext *Ctx = nullptr) {
199 unsigned_width(7, Value, std::string("immediate"), Fixup, Ctx);
200 Value = ((Value & 0x70) << 8) | (Value & 0x0f);
201}
202
203/// Adjusts a program memory address.
204/// This is a simple right-shift.
205static void pm(uint64_t &Value) { Value >>= 1; }
206
207/// Fixups relating to the LDI instruction.
208namespace ldi {
209
210/// Adjusts a value to fix up the immediate of an `LDI Rd, K` instruction.
211///
212/// Resolves to:
213/// 0000 KKKK 0000 KKKK
214/// Offset of 0 (so the result isn't left-shifted before application).
215static void fixup(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
216 MCContext *Ctx = nullptr) {
217 uint64_t upper = Value & 0xf0;
218 uint64_t lower = Value & 0x0f;
219
220 Value = (upper << 4) | lower;
221}
222
223static void neg(uint64_t &Value) { Value *= -1; }
224
225static void lo8(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
226 MCContext *Ctx = nullptr) {
227 Value &= 0xff;
228 ldi::fixup(Size, Fixup, Value, Ctx);
229}
230
231static void hi8(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
232 MCContext *Ctx = nullptr) {
233 Value = (Value & 0xff00) >> 8;
234 ldi::fixup(Size, Fixup, Value, Ctx);
235}
236
237static void hh8(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
238 MCContext *Ctx = nullptr) {
239 Value = (Value & 0xff0000) >> 16;
240 ldi::fixup(Size, Fixup, Value, Ctx);
241}
242
243static void ms8(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
244 MCContext *Ctx = nullptr) {
245 Value = (Value & 0xff000000) >> 24;
246 ldi::fixup(Size, Fixup, Value, Ctx);
247}
248
249} // namespace ldi
250} // namespace adjust
251
252namespace llvm {
253
254// Prepare value for the target space for it
256 const MCValue &Target, uint64_t &Value,
257 MCContext *Ctx) const {
258 // The size of the fixup in bits.
260
261 unsigned Kind = Fixup.getKind();
262 switch (Kind) {
263 default:
264 llvm_unreachable("unhandled fixup");
267 break;
270 break;
271 case AVR::fixup_call:
273 break;
274 case AVR::fixup_ldi:
276 break;
279 break;
284 break;
287 break;
292 break;
295 if (Kind == AVR::fixup_hh8_ldi_pm)
297
299 break;
302 break;
303
306 if (Kind == AVR::fixup_lo8_ldi_pm_neg)
308
311 break;
314 if (Kind == AVR::fixup_hi8_ldi_pm_neg)
316
319 break;
322 if (Kind == AVR::fixup_hh8_ldi_pm_neg)
324
327 break;
331 break;
332 case AVR::fixup_16:
333 adjust::unsigned_width(16, Value, std::string("port number"), Fixup, Ctx);
334
335 Value &= 0xffff;
336 break;
337 case AVR::fixup_16_pm:
338 Value >>= 1; // Flash addresses are always shifted.
339 adjust::unsigned_width(16, Value, std::string("port number"), Fixup, Ctx);
340
341 Value &= 0xffff;
342 break;
343
344 case AVR::fixup_6:
346 break;
349 break;
350
351 case AVR::fixup_port5:
353 break;
354
355 case AVR::fixup_port6:
357 break;
358
361 break;
362
363 // Fixups which do not require adjustments.
364 case FK_Data_1:
365 case FK_Data_2:
366 case FK_Data_4:
367 case FK_Data_8:
368 break;
369
370 case FK_GPRel_4:
371 llvm_unreachable("don't know how to adjust this fixup");
372 break;
373 }
374}
375
376std::unique_ptr<MCObjectTargetWriter>
379}
380
382 const MCValue &Target,
384 bool IsResolved,
385 const MCSubtargetInfo *STI) const {
386 if (Fixup.getKind() >= FirstLiteralRelocationKind)
387 return;
388 adjustFixupValue(Fixup, Target, Value, &Asm.getContext());
389 if (Value == 0)
390 return; // Doesn't change encoding.
391
393
394 // The number of bits in the fixup mask
395 auto NumBits = Info.TargetSize + Info.TargetOffset;
396 auto NumBytes = (NumBits / 8) + ((NumBits % 8) == 0 ? 0 : 1);
397
398 // Shift the value into position.
399 Value <<= Info.TargetOffset;
400
401 unsigned Offset = Fixup.getOffset();
402 assert(Offset + NumBytes <= Data.size() && "Invalid fixup offset!");
403
404 // For each byte of the fragment that the fixup touches, mask in the
405 // bits from the fixup value.
406 for (unsigned i = 0; i < NumBytes; ++i) {
407 uint8_t mask = (((Value >> (i * 8)) & 0xff));
408 Data[Offset + i] |= mask;
409 }
410}
411
412std::optional<MCFixupKind> AVRAsmBackend::getFixupKind(StringRef Name) const {
413 unsigned Type;
415#define ELF_RELOC(X, Y) .Case(#X, Y)
416#include "llvm/BinaryFormat/ELFRelocs/AVR.def"
417#undef ELF_RELOC
418 .Case("BFD_RELOC_NONE", ELF::R_AVR_NONE)
419 .Case("BFD_RELOC_16", ELF::R_AVR_16)
420 .Case("BFD_RELOC_32", ELF::R_AVR_32)
421 .Default(-1u);
422 if (Type != -1u)
423 return static_cast<MCFixupKind>(FirstLiteralRelocationKind + Type);
424 return std::nullopt;
425}
426
428 // NOTE: Many AVR fixups work on sets of non-contignous bits. We work around
429 // this by saying that the fixup is the size of the entire instruction.
430 const static MCFixupKindInfo Infos[AVR::NumTargetFixupKinds] = {
431 // This table *must* be in same the order of fixup_* kinds in
432 // AVRFixupKinds.h.
433 //
434 // name offset bits flags
435 {"fixup_32", 0, 32, 0},
436
437 {"fixup_7_pcrel", 3, 7, MCFixupKindInfo::FKF_IsPCRel},
438 {"fixup_13_pcrel", 0, 12, MCFixupKindInfo::FKF_IsPCRel},
439
440 {"fixup_16", 0, 16, 0},
441 {"fixup_16_pm", 0, 16, 0},
442
443 {"fixup_ldi", 0, 8, 0},
444
445 {"fixup_lo8_ldi", 0, 8, 0},
446 {"fixup_hi8_ldi", 0, 8, 0},
447 {"fixup_hh8_ldi", 0, 8, 0},
448 {"fixup_ms8_ldi", 0, 8, 0},
449
450 {"fixup_lo8_ldi_neg", 0, 8, 0},
451 {"fixup_hi8_ldi_neg", 0, 8, 0},
452 {"fixup_hh8_ldi_neg", 0, 8, 0},
453 {"fixup_ms8_ldi_neg", 0, 8, 0},
454
455 {"fixup_lo8_ldi_pm", 0, 8, 0},
456 {"fixup_hi8_ldi_pm", 0, 8, 0},
457 {"fixup_hh8_ldi_pm", 0, 8, 0},
458
459 {"fixup_lo8_ldi_pm_neg", 0, 8, 0},
460 {"fixup_hi8_ldi_pm_neg", 0, 8, 0},
461 {"fixup_hh8_ldi_pm_neg", 0, 8, 0},
462
463 {"fixup_call", 0, 22, 0},
464
465 {"fixup_6", 0, 16, 0}, // non-contiguous
466 {"fixup_6_adiw", 0, 6, 0},
467
468 {"fixup_lo8_ldi_gs", 0, 8, 0},
469 {"fixup_hi8_ldi_gs", 0, 8, 0},
470
471 {"fixup_8", 0, 8, 0},
472 {"fixup_8_lo8", 0, 8, 0},
473 {"fixup_8_hi8", 0, 8, 0},
474 {"fixup_8_hlo8", 0, 8, 0},
475
476 {"fixup_diff8", 0, 8, 0},
477 {"fixup_diff16", 0, 16, 0},
478 {"fixup_diff32", 0, 32, 0},
479
480 {"fixup_lds_sts_16", 0, 16, 0},
481
482 {"fixup_port6", 0, 16, 0}, // non-contiguous
483 {"fixup_port5", 3, 5, 0},
484 };
485
486 // Fixup kinds from .reloc directive are like R_AVR_NONE. They do not require
487 // any extra processing.
488 if (Kind >= FirstLiteralRelocationKind)
490
491 if (Kind < FirstTargetFixupKind)
493
494 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
495 "Invalid kind!");
496
497 return Infos[Kind - FirstTargetFixupKind];
498}
499
501 const MCSubtargetInfo *STI) const {
502 // If the count is not 2-byte aligned, we must be writing data into the text
503 // section (otherwise we have unaligned instructions, and thus have far
504 // bigger problems), so just write zeros instead.
505 assert((Count % 2) == 0 && "NOP instructions must be 2 bytes");
506
507 OS.write_zeros(Count);
508 return true;
509}
510
512 const MCFixup &Fixup,
513 const MCValue &Target,
514 const MCSubtargetInfo *STI) {
515 switch ((unsigned)Fixup.getKind()) {
516 default:
517 return Fixup.getKind() >= FirstLiteralRelocationKind;
520 // Always resolve relocations for PC-relative branches
521 return false;
522 case AVR::fixup_call:
523 return true;
524 }
525}
526
528 const MCRegisterInfo &MRI,
529 const llvm::MCTargetOptions &TO) {
530 return new AVRAsmBackend(STI.getTargetTriple().getOS());
531}
532
533} // end of namespace llvm
unsigned const MachineRegisterInfo * MRI
Analysis containing CSE Info
Definition: CSEInfo.cpp:27
std::string Name
uint64_t Size
PowerPC TLS Dynamic Call Fixup
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
raw_pwrite_stream & OS
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
Utilities for manipulating generated AVR machine code.
Definition: AVRAsmBackend.h:29
const MCFixupKindInfo & getFixupKindInfo(MCFixupKind Kind) const override
Get information on a fixup kind.
std::unique_ptr< MCObjectTargetWriter > createObjectTargetWriter() const override
void adjustFixupValue(const MCFixup &Fixup, const MCValue &Target, uint64_t &Value, MCContext *Ctx=nullptr) const
void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef< char > Data, uint64_t Value, bool IsResolved, const MCSubtargetInfo *STI) const override
Apply the Value for given Fixup into the provided data fragment, at the offset specified by the fixup...
std::optional< MCFixupKind > getFixupKind(StringRef Name) const override
Map a relocation name used in .reloc to a fixup kind.
bool writeNopData(raw_ostream &OS, uint64_t Count, const MCSubtargetInfo *STI) const override
Write an (optimal) nop sequence of Count bytes to the given output.
unsigned getNumFixupKinds() const override
Get the number of target specific fixup kinds.
Definition: AVRAsmBackend.h:48
bool shouldForceRelocation(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, const MCSubtargetInfo *STI) override
Hook to check if a relocation is needed for some target specific reason.
Generic interface to target specific assembler backends.
Definition: MCAsmBackend.h:42
virtual const MCFixupKindInfo & getFixupKindInfo(MCFixupKind Kind) const
Get information on a fixup kind.
Context object for machine code objects.
Definition: MCContext.h:83
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
Definition: MCFixup.h:71
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Generic base class for all target subtargets.
const Triple & getTargetTriple() const
This represents an "assembler immediate".
Definition: MCValue.h:36
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition: ArrayRef.h:310
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
A switch()-like statement whose cases are string literals.
Definition: StringSwitch.h:44
StringSwitch & Case(StringLiteral S, T Value)
Definition: StringSwitch.h:69
R Default(T Value)
Definition: StringSwitch.h:182
Target - Wrapper for Target specific information.
OSType getOS() const
Get the parsed operating system type of this triple.
Definition: Triple.h:392
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
LLVM Value Representation.
Definition: Value.h:74
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static void hi8(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
static void neg(uint64_t &Value)
static void hh8(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
static void fixup(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
Adjusts a value to fix up the immediate of an LDI Rd, K instruction.
static void lo8(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
static void ms8(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
static void unsigned_width(unsigned Width, uint64_t Value, std::string Description, const MCFixup &Fixup, MCContext *Ctx=nullptr)
static void fixup_6(const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
6-bit fixup for the immediate operand of the STD/LDD family of instructions.
static void fixup_13_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
12-bit PC-relative fixup.
static void fixup_port6(const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
6-bit port number fixup on the IN family of instructions.
static void fixup_lds_sts_16(const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
7-bit data space address fixup for the LDS/STS instructions on AVRTiny.
static void signed_width(unsigned Width, uint64_t Value, std::string Description, const MCFixup &Fixup, MCContext *Ctx=nullptr)
static void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
Adjusts the value of a branch target before fixup application.
static void pm(uint64_t &Value)
Adjusts a program memory address.
static void fixup_call(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
22-bit absolute fixup.
static void fixup_6_adiw(const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
6-bit fixup for the immediate operand of the ADIW family of instructions.
static void adjustRelativeBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
Adjusts the value of a relative branch target before fixup application.
static void fixup_7_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
7-bit PC-relative fixup.
static void fixup_port5(const MCFixup &Fixup, uint64_t &Value, MCContext *Ctx=nullptr)
5-bit port number fixup on the SBIC family of instructions.
void adjustBranchTarget(T &val)
Adjusts the value of a branch target.
@ fixup_16_pm
A 16-bit program memory address.
Definition: AVRFixupKinds.h:46
@ fixup_16
A 16-bit address.
Definition: AVRFixupKinds.h:44
@ fixup_call
A 22-bit fixup for the target of a CALL k or JMP k instruction.
@ fixup_hh8_ldi
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a 24-bit value ...
Definition: AVRFixupKinds.h:59
@ fixup_ms8_ldi_neg
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a negated 32-bi...
Definition: AVRFixupKinds.h:75
@ fixup_lo8_ldi_neg
Replaces the immediate operand of a 16-bit Rd, K instruction with the lower 8 bits of a negated 16-bi...
Definition: AVRFixupKinds.h:66
@ fixup_6_adiw
A symbol+addr fixup for the `LDD <x>+<n>, <r>" family of instructions.
@ fixup_ms8_ldi
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a 32-bit value ...
Definition: AVRFixupKinds.h:62
@ fixup_7_pcrel
A 7-bit PC-relative fixup for the family of conditional branches which take 7-bit targets (BRNE,...
Definition: AVRFixupKinds.h:32
@ NumTargetFixupKinds
@ fixup_ldi
Replaces the 8-bit immediate with another value.
Definition: AVRFixupKinds.h:49
@ fixup_lo8_ldi
Replaces the immediate operand of a 16-bit Rd, K instruction with the lower 8 bits of a 16-bit value ...
Definition: AVRFixupKinds.h:53
@ fixup_hi8_ldi_pm_neg
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a negated 16-bi...
Definition: AVRFixupKinds.h:96
@ fixup_hi8_ldi
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a 16-bit value ...
Definition: AVRFixupKinds.h:56
@ fixup_lo8_ldi_pm
Replaces the immediate operand of a 16-bit Rd, K instruction with the lower 8 bits of a 16-bit progra...
Definition: AVRFixupKinds.h:79
@ fixup_port6
A 6-bit port address.
@ fixup_hh8_ldi_neg
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a negated 24-bi...
Definition: AVRFixupKinds.h:72
@ fixup_hh8_ldi_pm
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a 24-bit progra...
Definition: AVRFixupKinds.h:87
@ fixup_port5
A 5-bit port address.
@ fixup_lo8_ldi_pm_neg
Replaces the immediate operand of a 16-bit Rd, K instruction with the lower 8 bits of a negated 16-bi...
Definition: AVRFixupKinds.h:92
@ fixup_hi8_ldi_pm
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a 16-bit progra...
Definition: AVRFixupKinds.h:83
@ fixup_hh8_ldi_pm_neg
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a negated 24-bi...
@ fixup_13_pcrel
A 12-bit PC-relative fixup for the family of branches which take 12-bit targets (RJMP,...
Definition: AVRFixupKinds.h:41
@ fixup_hi8_ldi_neg
Replaces the immediate operand of a 16-bit Rd, K instruction with the upper 8 bits of a negated 16-bi...
Definition: AVRFixupKinds.h:69
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:480
int64_t maxIntN(int64_t N)
Gets the maximum value for a N-bit signed integer.
Definition: MathExtras.h:244
bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
Definition: MathExtras.h:255
MCFixupKind
Extensible enumeration to represent the type of a fixup.
Definition: MCFixup.h:21
@ FirstTargetFixupKind
Definition: MCFixup.h:45
@ FirstLiteralRelocationKind
The range [FirstLiteralRelocationKind, MaxTargetFixupKind) is used for relocations coming from ....
Definition: MCFixup.h:50
@ FK_Data_8
A eight-byte fixup.
Definition: MCFixup.h:26
@ FK_Data_1
A one-byte fixup.
Definition: MCFixup.h:23
@ FK_Data_4
A four-byte fixup.
Definition: MCFixup.h:25
@ FK_NONE
A no-op fixup.
Definition: MCFixup.h:22
@ FK_GPRel_4
A four-byte gp relative fixup.
Definition: MCFixup.h:34
@ FK_Data_2
A two-byte fixup.
Definition: MCFixup.h:24
std::unique_ptr< MCObjectTargetWriter > createAVRELFObjectWriter(uint8_t OSABI)
Creates an ELF object writer for AVR.
bool isIntN(unsigned N, int64_t x)
Checks if an signed integer fits into the given (dynamic) bit width.
Definition: MathExtras.h:260
int64_t minIntN(int64_t N)
Gets the minimum value for a N-bit signed integer.
Definition: MathExtras.h:235
MCAsmBackend * createAVRAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const llvm::MCTargetOptions &TO)
Creates an assembly backend for AVR.
uint64_t maxUIntN(uint64_t N)
Gets the maximum value for a N-bit unsigned integer.
Definition: MathExtras.h:219
Target independent information on a fixup kind.
@ FKF_IsPCRel
Is this fixup kind PCrelative? This is used by the assembler backend to evaluate fixup values in a ta...
unsigned TargetSize
The number of bits written by this fixup.