Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[surf] Remove sg_cabinet_cb
[simgrid.git] / src / mc / mc_member.cpp
1 /* Copyright (c) 2014-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <xbt/misc.h>
8
9 #include "src/mc/mc_object_info.h"
10 #include "src/mc/mc_private.h"
11 #include "src/mc/Type.hpp"
12
13 namespace simgrid {
14 namespace dwarf {
15
16 /** Resolve snapshot in the process address space
17  *
18  * @param object   Process address of the struct/class
19  * @param type     Type of the struct/class
20  * @param member   Member description
21  * @param snapshot Snapshot (or NULL)
22  * @return Process address of the given member of the 'object' struct/class
23  */
24 void *resolve_member(
25     const void *base, simgrid::mc::Type* type, simgrid::mc::Member* member,
26     simgrid::mc::AddressSpace* address_space, int process_index)
27 {
28   // TODO, get rid of this?
29   if (!member->has_offset_location())
30     return ((char *) base) + member->offset();
31
32   ExpressionContext state;
33   state.frame_base = NULL;
34   state.cursor = NULL;
35   state.address_space = address_space;
36   state.process_index = process_index;
37
38   ExpressionStack stack;
39   stack.push((ExpressionStack::value_type) base);
40   simgrid::dwarf::execute(member->location_expression, state, stack);
41   return (void*) stack.top();
42 }
43
44 }
45 }