Lines Matching refs: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, in fixupNeedsRelaxationAdvanced() argument
91 uint64_t MSP430AsmBackend::adjustFixupValue(const MCFixup &Fixup, in adjustFixupValue() argument
94 unsigned Kind = Fixup.getKind(); in adjustFixupValue()
98 Ctx.reportError(Fixup.getLoc(), "fixup value must be 2-byte aligned"); in adjustFixupValue()
108 Ctx.reportError(Fixup.getLoc(), "fixup value out of range"); in adjustFixupValue()
120 void MSP430AsmBackend::applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, in applyFixup() argument
125 Value = adjustFixupValue(Fixup, Value, Asm.getContext()); in applyFixup()
126 MCFixupKindInfo Info = getFixupKindInfo(Fixup.getKind()); in applyFixup()
133 unsigned Offset = Fixup.getOffset(); in applyFixup()