Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / mc / inspect / Frame.hpp
diff --git a/src/mc/inspect/Frame.hpp b/src/mc/inspect/Frame.hpp
deleted file mode 100644 (file)
index ee825a7..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/* Copyright (c) 2007-2020. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#ifndef SIMGRID_MC_FRAME_HPP
-#define SIMGRID_MC_FRAME_HPP
-
-#include <cstdint>
-#include <string>
-
-#include "xbt/base.h"
-#include "xbt/range.hpp"
-
-#include "src/mc/inspect/LocationList.hpp"
-#include "src/mc/inspect/Variable.hpp"
-#include "src/mc/mc_forward.hpp"
-
-namespace simgrid {
-namespace mc {
-
-/** Debug information about a given function or scope within a function */
-class Frame {
-public:
-  /** Kind of scope (DW_TAG_subprogram, DW_TAG_inlined_subroutine, etc.) */
-  int tag = DW_TAG_invalid;
-
-  /** Name of the function (if it is a function) */
-  std::string name;
-
-  /** Range of instruction addresses for which this scope is valid */
-  simgrid::xbt::Range<std::uint64_t> range{0, 0};
-
-  simgrid::dwarf::LocationList frame_base_location;
-
-  /** List of the variables (sorted by name) */
-  std::vector<Variable> variables;
-
-  /* Unique identifier for this scope (in the object_info)
-   *
-   * This is the global DWARF offset of the DIE. */
-  unsigned long int id = 0;
-
-  std::vector<Frame> scopes;
-
-  /** Value of `DW_AT_abstract_origin`
-   *
-   *  For inlined subprograms, this is the ID of the
-   *  parent function.
-   */
-  unsigned long int abstract_origin_id = 0;
-
-  simgrid::mc::ObjectInformation* object_info = nullptr;
-
-  void* frame_base(unw_cursor_t& unw_cursor) const;
-  void remove_variable(char* name);
-};
-} // namespace mc
-} // namespace simgrid
-
-#endif