| 108 | }; |
| 109 | |
| 110 | uint64_t getSemanticHash ( SimNode * node, Context * context ) { |
| 111 | debug_hash("\n"); |
| 112 | SimFnHashVisitor hashV(context); |
| 113 | node->visit(hashV); |
| 114 | debug_hash("\n"); |
| 115 | return hashV.getHash(); |
| 116 | } |
| 117 | |
| 118 | uint64_t getFunctionHash ( Function * fun, SimNode * node, Context * context ) { |
| 119 | debug_hash("\n%s\n", fun->getMangledName().c_str()); |
no test coverage detected