Lines Matching defs:Fixup
31 uint64_t adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
39 void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup,
50 const MCFixup &Fixup, bool Resolved,
90 uint64_t MSP430AsmBackend::adjustFixupValue(const MCFixup &Fixup,
93 unsigned Kind = Fixup.getKind();
97 Ctx.reportError(Fixup.getLoc(), "fixup value must be 2-byte aligned");
107 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
119 void MSP430AsmBackend::applyFixup(const MCAssembler &Asm, const MCFixup &Fixup,
124 Value = adjustFixupValue(Fixup, Value, Asm.getContext());
125 MCFixupKindInfo Info = getFixupKindInfo(Fixup.getKind());
132 unsigned Offset = Fixup.getOffset();