Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "[mc] Remove remaining bits of libdw outside of mc_libdw.{h,c}pp"
authorGabriel Corona <gabriel.corona@loria.fr>
Fri, 2 Oct 2015 10:04:02 +0000 (12:04 +0200)
committerGabriel Corona <gabriel.corona@loria.fr>
Fri, 2 Oct 2015 11:15:18 +0000 (13:15 +0200)
This reverts commit 97cc0fc3eb2ed9773ecd1d612da40bee60727b32.

src/mc/mc_dwarf_expression.cpp
src/mc/mc_libdw.cpp
src/mc/mc_location.h

index bf80037..5f9e162 100644 (file)
@@ -4,12 +4,11 @@
 /* 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. */
 
 /* 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. */
 
-#include <cstdint>
-
 #include <stdint.h>
 #include <stdarg.h>
 
 #include <dwarf.h>
 #include <stdint.h>
 #include <stdarg.h>
 
 #include <dwarf.h>
+#include <elfutils/libdw.h>
 
 #include "mc_dwarf.hpp"
 #include "mc_private.h"
 
 #include "mc_dwarf.hpp"
 #include "mc_private.h"
@@ -22,7 +21,7 @@ using simgrid::mc::remote;
 
 extern "C" {
 
 
 extern "C" {
 
-static int mc_dwarf_push_value(mc_expression_state_t state, std::uint64_t value)
+static int mc_dwarf_push_value(mc_expression_state_t state, Dwarf_Off value)
 {
   if (state->stack_size >= MC_EXPRESSION_STACK_SIZE)
     return MC_EXPRESSION_E_STACK_OVERFLOW;
 {
   if (state->stack_size >= MC_EXPRESSION_STACK_SIZE)
     return MC_EXPRESSION_E_STACK_OVERFLOW;
@@ -234,7 +233,7 @@ int mc_dwarf_execute_expression(size_t n, const simgrid::mc::DwarfInstruction* o
         return MC_EXPRESSION_E_NO_BASE_ADDRESS;
       if (state->stack_size == MC_EXPRESSION_STACK_SIZE)
         return MC_EXPRESSION_E_STACK_OVERFLOW;
         return MC_EXPRESSION_E_NO_BASE_ADDRESS;
       if (state->stack_size == MC_EXPRESSION_STACK_SIZE)
         return MC_EXPRESSION_E_STACK_OVERFLOW;
-      std::uint64_t addr = (std::uint64_t) (uintptr_t)
+      Dwarf_Off addr = (Dwarf_Off) (uintptr_t)
         state->object_info->base_address() + op->number;
       error = mc_dwarf_push_value(state, addr);
       break;
         state->object_info->base_address() + op->number;
       error = mc_dwarf_push_value(state, addr);
       break;
index fcd5add..b27eb9f 100644 (file)
@@ -13,7 +13,6 @@
 #include <utility>
 
 #include <dwarf.h>
 #include <utility>
 
 #include <dwarf.h>
-#include <elfutils/libdw.h>
 
 #include <xbt/log.h>
 
 
 #include <xbt/log.h>
 
index 455a716..289cb73 100644 (file)
@@ -13,6 +13,7 @@
 
 #include <libunwind.h>
 #include <dwarf.h>
 
 #include <libunwind.h>
 #include <dwarf.h>
+#include <elfutils/libdw.h>
 
 #include <simgrid_config.h>
 #include "mc_base.h"
 
 #include <simgrid_config.h>
 #include "mc_base.h"