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