( Node n, SB sb )
| 391 | sb.clear(); |
| 392 | } |
| 393 | static void traceData( Node n, SB sb ) { |
| 394 | if( sb==null ) return; |
| 395 | IRPrinter.printLine(n,sb).unchar(); |
| 396 | _print( n._type, F.get(n), sb.p('\t'), VISIT ); |
| 397 | System.out.println(sb); |
| 398 | sb.clear(); |
| 399 | VISIT.clear(); |
| 400 | } |
| 401 | |
| 402 | // Use type to print x as a string. Uses a new VISIT table so the debugger |
| 403 | // doesn't try to reuse VISIT if stopping mid-print. The trace code reuses |