Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:Value

160   uint32_t Value = Writer->getSymbolAddress(*A, Layout);
239 MRE.r_word1 = Value;
265 uint32_t Value = Writer->getSymbolAddress(*A, Layout);
306 MRE.r_word1 = Value;
319 int64_t Value = (int64_t)FixedValue; // The displacement is signed.
326 Value -= 8;
332 Value -= 4;
339 Value += Writer->getSectionAddress(&S.getSection());
340 Value -= Writer->getSectionAddress(Fragment.getParent());
341 // If the resultant value would be out of range for an internal relocation,
343 if (Value > Range || Value < -(Range + 1))
423 // For external relocations, make sure to offset the fixup value to
450 // The other-half value only gets populated for the movt and movw
452 uint32_t Value = 0;
457 Value = (FixedValue >> 16) & 0xffff;
461 Value = FixedValue & 0xffff;
465 MREPair.r_word0 = Value;