| 74 | } |
| 75 | } |
| 76 | virtual void sp ( uint32_t stackTop, const char * op ) override { |
| 77 | SimVisitor::sp(stackTop,op); |
| 78 | // hash |
| 79 | write(&stackTop, sizeof(stackTop)); |
| 80 | write(op); |
| 81 | // regular print |
| 82 | crlf(); |
| 83 | ss << "#" << stackTop; |
| 84 | } |
| 85 | virtual void arg ( Func fun, const char * mangledName, const char * argN ) override { |
| 86 | SimVisitor::arg(fun, mangledName, argN); |
| 87 | // hash |
no test coverage detected