ROSE  0.9.6a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
functionLevelTraversal.h
Go to the documentation of this file.
1 
2 #ifndef PARALLEL_COMPASS_FUNCTIONLEVEL_H
3 #define PARALLEL_COMPASS_FUNCTIONLEVEL_H
4 
5 // LOAD THIS FILE ONLY IF ROSE_MPI IS ENABLED
6 #include <string>
8 
9 // ************************************************************
10 // Use this class to run on function granulty instead of files
11 // ************************************************************
12 class MyAnalysis: public DistributedMemoryTraversal<int, std::string>
13 {
14 protected:
15  std::string analyzeSubtree(SgFunctionDeclaration *funcDecl, int depth)
16  {
17  std::string funcName = funcDecl->get_name().str();
18  std::stringstream s;
19  s << "process " << myID() << ": at depth " << depth << ": function " << funcName;
20  return s.str();
21  }
22 
23  // The user must implement this method to pack a synthesized attribute (a string in this case) into an array of bytes
24  // for communication. The first component of the pair is the number of bytes in the buffer.
25  std::pair<int, void *> serializeAttribute(std::string attribute) const
26  {
27  int len = attribute.size() + 1;
28  char *str = strdup(attribute.c_str());
29  return std::make_pair(len, str);
30  }
31 
32  // This method must be implemented to convert the serialized data to the application's synthesized attribute type.
33  std::string deserializeAttribute(std::pair<int, void *> serializedAttribute) const
34  {
35  return std::string((const char *) serializedAttribute.second);
36  }
37 
38  // This method is optional (the default implementation is empty). Its job is to free memory that may have been
39  // allocated by the serializeAttribute() method.
40  void deleteSerializedAttribute(std::pair<int, void *> serializedAttribute) const
41  {
42  std::free(serializedAttribute.second);
43  }
44 };
45 
46 #endif