( Node n, SB sb )
| 413 | sb.clear(); |
| 414 | } |
| 415 | static void traceData( Node n, SB sb ) { |
| 416 | if( sb==null ) return; |
| 417 | IRPrinter.printLine(n,sb).unchar(); |
| 418 | _print( n._type, F.get(n), sb.p('\t'), VISIT ); |
| 419 | System.out.println(sb); |
| 420 | sb.clear(); |
| 421 | VISIT.clear(); |
| 422 | } |
| 423 | |
| 424 | // Use type to print x as a string. Uses a new VISIT table so the debugger |
| 425 | // doesn't try to reuse VISIT if stopping mid-print. The trace code reuses |