Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:Value

50                   uint64_t Value, bool IsPCRel) const override;
51 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
90 unsigned DataSize, uint64_t Value,
96 *Dst = (Value - 4) / 4;
117 // add 4 to the fixup value before applying it.
118 *Dst = Value + 4;
124 if (!Value)
128 // Shift the value into position.
129 Value <<= Info.TargetOffset;
135 // bits from the fixup value.
137 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);