reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  494   Value += Addend;
  499                     << " Value: " << format("%x", Value)
  513         ((Value - FinalAddress) & ~0x80000000);
  517     support::ulittle32_t::ref{TargetPtr} = Value;
  524       Value = Value & 0xFFFF;
  524       Value = Value & 0xFFFF;
  526       Value = (Value >> 16) & 0xFFFF;
  526       Value = (Value >> 16) & 0xFFFF;
  528         (support::ulittle32_t::ref{TargetPtr} & ~0x000F0FFF) | (Value & 0xFFF) |
  529         (((Value >> 12) & 0xF) << 16);
  535     int32_t RelValue = static_cast<int32_t>(Value - FinalAddress - 8);