comparison src/share/vm/memory/genCollectedHeap.cpp @ 1155:4e6abf09f540

6912062: disassembler plugin needs to produce symbolic information in product mode Summary: More informative disassembly in product mode. Also, a more consistent CompileCommand syntax. Reviewed-by: never
author jrose
date Fri, 08 Jan 2010 13:47:01 -0800
parents 148e5441d916
children c4d722788ed6
comparison
equal deleted inserted replaced
1153:bea7a22a6f79 1155:4e6abf09f540
923 bool GenCollectedHeap::is_in(const void* p) const { 923 bool GenCollectedHeap::is_in(const void* p) const {
924 #ifndef ASSERT 924 #ifndef ASSERT
925 guarantee(VerifyBeforeGC || 925 guarantee(VerifyBeforeGC ||
926 VerifyDuringGC || 926 VerifyDuringGC ||
927 VerifyBeforeExit || 927 VerifyBeforeExit ||
928 PrintAssembly ||
929 tty->count() != 0 || // already printing
928 VerifyAfterGC, "too expensive"); 930 VerifyAfterGC, "too expensive");
929 #endif 931 #endif
930 // This might be sped up with a cache of the last generation that 932 // This might be sped up with a cache of the last generation that
931 // answered yes. 933 // answered yes.
932 for (int i = 0; i < _n_gens; i++) { 934 for (int i = 0; i < _n_gens; i++) {