comparison src/share/vm/compiler/oopMap.cpp @ 4979:18a5539bf19b

More diff vs hsx24 optimizations.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 27 Feb 2012 21:43:51 +0100
parents be4ca325525a
children 957c266d8bc5
comparison
equal deleted inserted replaced
4978:99d3d8a72252 4979:18a5539bf19b
253 253
254 #ifdef ASSERT 254 #ifdef ASSERT
255 if(om_count() > 0) { 255 if(om_count() > 0) {
256 OopMap* last = at(om_count()-1); 256 OopMap* last = at(om_count()-1);
257 if (last->offset() == map->offset() ) { 257 if (last->offset() == map->offset() ) {
258 fatal(err_msg("OopMap inserted twice (offset=%d)", last->offset())); 258 fatal("OopMap inserted twice");
259 } 259 }
260 if(last->offset() > map->offset()) { 260 if(last->offset() > map->offset()) {
261 tty->print_cr( "WARNING, maps not sorted: pc[%d]=%d, pc[%d]=%d", 261 tty->print_cr( "WARNING, maps not sorted: pc[%d]=%d, pc[%d]=%d",
262 om_count(),last->offset(),om_count()+1,map->offset()); 262 om_count(),last->offset(),om_count()+1,map->offset());
263 } 263 }