| 905 | } |
| 906 | |
| 907 | void |
| 908 | ReducerOutputMgr::output_memory_addrs(const Statement* stm, std::ostream& out, int indent) |
| 909 | { |
| 910 | size_t i; |
| 911 | vector<Variable*> all_vars = VariableSelector::find_all_visible_vars(stm->parent); |
| 912 | //combine_variable_sets(beffect.get_read_vars(), beffect.get_write_vars(), all_vars); |
| 913 | //remove_field_vars(all_vars); |
| 914 | output_print_str(out, "begin memory dump \\n", "", indent); |
| 915 | outputln(out); |
| 916 | for (i=0; i<all_vars.size(); i++) { |
| 917 | const Variable* v = all_vars[i]; |
| 918 | if (reducer->is_var_used(v)) { |
| 919 | v->output_addressable_name(out, indent); |
| 920 | } |
| 921 | } |
| 922 | output_print_str(out, "end memory dump \\n", "", indent); |
| 923 | outputln(out); |
| 924 | } |
| 925 | |
| 926 | void |
| 927 | ReducerOutputMgr::output_global_values(string header, std::ostream& out, int indent) |
nothing calls this directly
no test coverage detected