comparison src/share/vm/code/codeCache.hpp @ 1907:1e9a9d2e6509

6970683: improvements to hs_err output Reviewed-by: kvn, jrose, dholmes, coleenp
author never
date Thu, 21 Oct 2010 11:55:10 -0700
parents 2a47bd84841f
children f95d63e2154a
comparison
equal deleted inserted replaced
1906:f8aaf8522a6b 1907:1e9a9d2e6509
135 // Printing/debugging 135 // Printing/debugging
136 static void print() PRODUCT_RETURN; // prints summary 136 static void print() PRODUCT_RETURN; // prints summary
137 static void print_internals(); 137 static void print_internals();
138 static void verify(); // verifies the code cache 138 static void verify(); // verifies the code cache
139 static void print_trace(const char* event, CodeBlob* cb, int size = 0) PRODUCT_RETURN; 139 static void print_trace(const char* event, CodeBlob* cb, int size = 0) PRODUCT_RETURN;
140 static void print_bounds(outputStream* st); // Prints a summary of the bounds of the code cache
140 141
141 // The full limits of the codeCache 142 // The full limits of the codeCache
142 static address low_bound() { return (address) _heap->low_boundary(); } 143 static address low_bound() { return (address) _heap->low_boundary(); }
143 static address high_bound() { return (address) _heap->high_boundary(); } 144 static address high_bound() { return (address) _heap->high_boundary(); }
144 145