Lines Matching defs:Fixup
32 uint64_t adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
40 void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup,
51 const MCFixup &Fixup, bool Resolved,
91 uint64_t MSP430AsmBackend::adjustFixupValue(const MCFixup &Fixup,
94 unsigned Kind = Fixup.getKind();
98 Ctx.reportError(Fixup.getLoc(), "fixup value must be 2-byte aligned");
108 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
120 void MSP430AsmBackend::applyFixup(const MCAssembler &Asm, const MCFixup &Fixup,
125 Value = adjustFixupValue(Fixup, Value, Asm.getContext());
126 MCFixupKindInfo Info = getFixupKindInfo(Fixup.getKind());
133 unsigned Offset = Fixup.getOffset();