reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86
   87
   88
   89
   90
   91
   92
   93
   94
   95
   96
   97
   98
   99
  100
  101
  102
  103
  104
  105
  106
//===- lib/ReaderWriter/MachO/File.h ----------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLD_READER_WRITER_MACHO_DEBUGINFO_H
#define LLD_READER_WRITER_MACHO_DEBUGINFO_H

#include "lld/Core/Atom.h"
#include <vector>

#include "llvm/Support/Allocator.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_ostream.h"


namespace lld {
namespace mach_o {

class DebugInfo {
public:
  enum class Kind {
    Dwarf,
    Stabs
  };

  Kind kind() const { return _kind; }

  void setAllocator(std::unique_ptr<llvm::BumpPtrAllocator> allocator) {
    _allocator = std::move(allocator);
  }

protected:
  DebugInfo(Kind kind) : _kind(kind) {}

private:
  std::unique_ptr<llvm::BumpPtrAllocator> _allocator;
  Kind _kind;
};

struct TranslationUnitSource {
  StringRef name;
  StringRef path;
};

class DwarfDebugInfo : public DebugInfo {
public:
  DwarfDebugInfo(TranslationUnitSource tu)
    : DebugInfo(Kind::Dwarf), _tu(std::move(tu)) {}

  static inline bool classof(const DebugInfo *di) {
    return di->kind() == Kind::Dwarf;
  }

  const TranslationUnitSource &translationUnitSource() const { return _tu; }

private:
  TranslationUnitSource _tu;
};

struct Stab {
  Stab(const Atom* atom, uint8_t type, uint8_t other, uint16_t desc,
       uint32_t value, StringRef str)
    : atom(atom), type(type), other(other), desc(desc), value(value),
      str(str) {}

  const class Atom*   atom;
  uint8_t             type;
  uint8_t             other;
  uint16_t            desc;
  uint32_t            value;
  StringRef           str;
};

inline raw_ostream& operator<<(raw_ostream &os, Stab &s) {
  os << "Stab -- atom: " << llvm::format("%p", s.atom) << ", type: " << (uint32_t)s.type
     << ", other: " << (uint32_t)s.other << ", desc: " << s.desc << ", value: " << s.value
     << ", str: '" << s.str << "'";
  return os;
}

class StabsDebugInfo : public DebugInfo {
public:

  typedef std::vector<Stab> StabsList;

  StabsDebugInfo(StabsList stabs)
    : DebugInfo(Kind::Stabs), _stabs(std::move(stabs)) {}

  static inline bool classof(const DebugInfo *di) {
    return di->kind() == Kind::Stabs;
  }

  const StabsList& stabs() const { return _stabs; }

public:
  StabsList _stabs;
};

} // end namespace mach_o
} // end namespace lld

#endif // LLD_READER_WRITER_MACHO_DEBUGINFO_H