comparison src/share/vm/compiler/oopMap.cpp @ 7643:3ac7d10a6572

Merge with hsx25/hotspot.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 31 Jan 2013 15:42:25 +0100
parents 1baf7f1e3f23 a7114d3d712e
children cefad50507d8
comparison
equal deleted inserted replaced
7573:17b6a63fe7c2 7643:3ac7d10a6572
543 switch( x ) { 543 switch( x ) {
544 case OopMapValue::oop_value: 544 case OopMapValue::oop_value:
545 st->print("Oop"); 545 st->print("Oop");
546 break; 546 break;
547 case OopMapValue::value_value: 547 case OopMapValue::value_value:
548 st->print("Value" ); 548 st->print("Value");
549 break; 549 break;
550 case OopMapValue::narrowoop_value: 550 case OopMapValue::narrowoop_value:
551 st->print("NarrowOop" ); 551 st->print("NarrowOop");
552 break; 552 break;
553 case OopMapValue::callee_saved_value: 553 case OopMapValue::callee_saved_value:
554 st->print("Callers_" ); 554 st->print("Callers_");
555 optional->print_on(st); 555 optional->print_on(st);
556 break; 556 break;
557 case OopMapValue::derived_oop_value: 557 case OopMapValue::derived_oop_value:
558 st->print("Derived_oop_" ); 558 st->print("Derived_oop_");
559 optional->print_on(st); 559 optional->print_on(st);
560 break; 560 break;
561 default: 561 default:
562 ShouldNotReachHere(); 562 ShouldNotReachHere();
563 } 563 }