MachORelocation.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. //=== MachORelocation.h - Mach-O Relocation Info ----------------*- C++ -*-===//
  7. //
  8. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  9. // See https://llvm.org/LICENSE.txt for license information.
  10. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  11. //
  12. //===----------------------------------------------------------------------===//
  13. //
  14. // This file defines the MachORelocation class.
  15. //
  16. //===----------------------------------------------------------------------===//
  17. #ifndef LLVM_CODEGEN_MACHORELOCATION_H
  18. #define LLVM_CODEGEN_MACHORELOCATION_H
  19. #include "llvm/Support/DataTypes.h"
  20. namespace llvm {
  21. /// MachORelocation - This struct contains information about each relocation
  22. /// that needs to be emitted to the file.
  23. /// see <mach-o/reloc.h>
  24. class MachORelocation {
  25. uint32_t r_address; // offset in the section to what is being relocated
  26. uint32_t r_symbolnum; // symbol index if r_extern == 1 else section index
  27. bool r_pcrel; // was relocated pc-relative already
  28. uint8_t r_length; // length = 2 ^ r_length
  29. bool r_extern; //
  30. uint8_t r_type; // if not 0, machine-specific relocation type.
  31. bool r_scattered; // 1 = scattered, 0 = non-scattered
  32. int32_t r_value; // the value the item to be relocated is referring
  33. // to.
  34. public:
  35. uint32_t getPackedFields() const {
  36. if (r_scattered)
  37. return (1 << 31) | (r_pcrel << 30) | ((r_length & 3) << 28) |
  38. ((r_type & 15) << 24) | (r_address & 0x00FFFFFF);
  39. else
  40. return (r_symbolnum << 8) | (r_pcrel << 7) | ((r_length & 3) << 5) |
  41. (r_extern << 4) | (r_type & 15);
  42. }
  43. uint32_t getAddress() const { return r_scattered ? r_value : r_address; }
  44. uint32_t getRawAddress() const { return r_address; }
  45. MachORelocation(uint32_t addr, uint32_t index, bool pcrel, uint8_t len,
  46. bool ext, uint8_t type, bool scattered = false,
  47. int32_t value = 0) :
  48. r_address(addr), r_symbolnum(index), r_pcrel(pcrel), r_length(len),
  49. r_extern(ext), r_type(type), r_scattered(scattered), r_value(value) {}
  50. };
  51. } // end llvm namespace
  52. #endif // LLVM_CODEGEN_MACHORELOCATION_H
  53. #ifdef __GNUC__
  54. #pragma GCC diagnostic pop
  55. #endif