00001 // ---------------------------------------------------------------------- 00002 // 00003 // C-Breeze 00004 // C Compiler Framework 00005 // 00006 // Copyright (c) 2000 University of Texas at Austin 00007 // 00008 // Samuel Z. Guyer 00009 // Daniel A. Jimenez 00010 // Calvin Lin 00011 // 00012 // Permission is hereby granted, free of charge, to any person 00013 // obtaining a copy of this software and associated documentation 00014 // files (the "Software"), to deal in the Software without 00015 // restriction, including without limitation the rights to use, copy, 00016 // modify, merge, publish, distribute, sublicense, and/or sell copies 00017 // of the Software, and to permit persons to whom the Software is 00018 // furnished to do so, subject to the following conditions: 00019 // 00020 // The above copyright notice and this permission notice shall be 00021 // included in all copies or substantial portions of the Software. 00022 // 00023 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 00024 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00025 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 00026 // NONINFRINGEMENT. IN NO EVENT SHALL THE UNIVERSITY OF TEXAS AT 00027 // AUSTIN BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 00028 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 00029 // OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 00030 // THE SOFTWARE. 00031 // 00032 // We acknowledge the C-to-C Translator from MIT Laboratory for 00033 // Computer Science for inspiring parts of the C-Breeze design. 00034 // 00035 // ---------------------------------------------------------------------- 00036 00037 #ifndef CBZ_CALLGRAPH_H 00038 #define CBZ_CALLGRAPH_H 00039 00040 #include "linker.h" 00041 #include <set> 00042 00043 class callGraphNode; 00044 00045 typedef list< callGraphNode * > callgraph_edge_list; 00046 typedef callgraph_edge_list::iterator callgraph_edge_list_p; 00047 typedef callgraph_edge_list::const_iterator callgraph_edge_list_cp; 00048 00049 typedef set< callGraphNode * > callgraph_node_set; 00050 typedef callgraph_node_set::iterator callgraph_node_set_p; 00051 00052 class callGraphNode 00053 { 00054 private: 00055 00056 procNode * _proc; 00057 callgraph_edge_list _calls; 00058 callgraph_edge_list _called_by; 00059 int _times_called; 00060 00061 public: 00062 00063 callGraphNode(procNode * proc) 00064 : _proc(proc), 00065 _calls(), 00066 _called_by(), 00067 _times_called(-1) 00068 {} 00069 00070 procNode * proc() const { return _proc; } 00071 00072 void add_edge(callGraphNode * to); 00073 00074 const callgraph_edge_list & calls() const { return _calls; } 00075 00076 const callgraph_edge_list & called_by() const { return _called_by; } 00077 00078 int times_called(); 00079 00080 void ancestors(callgraph_node_set & ancestors_set); 00081 00082 private: 00083 00084 int times_called(callgraph_node_set & visited); 00085 00086 }; 00087 00088 typedef map< procNode *, callGraphNode *> callgraph_map; 00089 typedef callgraph_map::iterator callgraph_map_p; 00090 00091 class callGraph : public Walker 00092 { 00093 private: 00094 00095 callgraph_map _callgraph; 00096 procNode * _root; 00097 Linker & _linker; 00098 callGraphNode * _current; 00099 00100 public: 00101 00102 callGraph(procNode * root, Linker & linker); 00103 00104 ~callGraph(); 00105 00106 virtual void at_id(idNode * the_id, Order ord); 00107 00108 callGraphNode * lookup(procNode * proc); 00109 00110 void show_all_contexts(); 00111 00112 private: 00113 00114 void show_all_contexts(callGraphNode * cur, 00115 callgraph_edge_list & stack, 00116 int & count); 00117 }; 00118 00119 00120 #endif // CBZ_CALLGRAPH_H 00121