| 136 | static int md_printins(int ins, int mdbdot); |
| 137 | |
| 138 | db_addr_t |
| 139 | db_disasm(db_addr_t loc, bool altfmt) |
| 140 | |
| 141 | { |
| 142 | int ins; |
| 143 | |
| 144 | if (vtophys((vm_offset_t)loc)) { |
| 145 | db_read_bytes((vm_offset_t)loc, (size_t)sizeof(int), |
| 146 | (char *)&ins); |
| 147 | md_printins(ins, loc); |
| 148 | } |
| 149 | |
| 150 | return (loc + sizeof(int)); |
| 151 | } |
| 152 | |
| 153 | /* ARGSUSED */ |
| 154 | static int |
nothing calls this directly
no test coverage detected