comparison src/share/vm/opto/regmask.hpp @ 7636:a7114d3d712e

8005055: pass outputStream to more opto debug routines Summary: pass the output stream to node->dump() and everything reachable from there Reviewed-by: kvn Contributed-by: goetz.lindenmaier@sap.com
author kvn
date Tue, 22 Jan 2013 11:31:25 -0800
parents 8c92982cbbc4
children 2c673161698a
comparison
equal deleted inserted replaced
7619:46e60405583b 7636:a7114d3d712e
308 // Compute size of register mask: number of bits 308 // Compute size of register mask: number of bits
309 uint Size() const; 309 uint Size() const;
310 310
311 #ifndef PRODUCT 311 #ifndef PRODUCT
312 void print() const { dump(); } 312 void print() const { dump(); }
313 void dump() const; // Print a mask 313 void dump(outputStream *st = tty) const; // Print a mask
314 #endif 314 #endif
315 315
316 static const RegMask Empty; // Common empty mask 316 static const RegMask Empty; // Common empty mask
317 317
318 static bool can_represent(OptoReg::Name reg) { 318 static bool can_represent(OptoReg::Name reg) {