comparison src/share/vm/interpreter/templateTable.cpp @ 4980:1c7c5be93e84

More diff vs hsx24 clean up.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 27 Feb 2012 21:49:51 +0100
parents 06f017f7daa7
children 957c266d8bc5
comparison
equal deleted inserted replaced
4979:18a5539bf19b 4980:1c7c5be93e84
427 def(Bytecodes::_if_acmpne , ubcp|____|clvm|____, atos, vtos, if_acmp , not_equal ); 427 def(Bytecodes::_if_acmpne , ubcp|____|clvm|____, atos, vtos, if_acmp , not_equal );
428 def(Bytecodes::_goto , ubcp|disp|clvm|____, vtos, vtos, _goto , _ ); 428 def(Bytecodes::_goto , ubcp|disp|clvm|____, vtos, vtos, _goto , _ );
429 def(Bytecodes::_jsr , ubcp|disp|____|____, vtos, vtos, jsr , _ ); // result is not an oop, so do not transition to atos 429 def(Bytecodes::_jsr , ubcp|disp|____|____, vtos, vtos, jsr , _ ); // result is not an oop, so do not transition to atos
430 def(Bytecodes::_ret , ubcp|disp|____|____, vtos, vtos, ret , _ ); 430 def(Bytecodes::_ret , ubcp|disp|____|____, vtos, vtos, ret , _ );
431 def(Bytecodes::_tableswitch , ubcp|disp|____|____, itos, vtos, tableswitch , _ ); 431 def(Bytecodes::_tableswitch , ubcp|disp|____|____, itos, vtos, tableswitch , _ );
432 // def(Bytecodes::_lookupswitch , ubcp|disp|____|____, itos, itos, lookupswitch , _ ); 432 #ifdef GRAAL
433 def(Bytecodes::_lookupswitch , ubcp|disp|____|____, itos, vtos, fast_linearswitch , _ ); 433 def(Bytecodes::_lookupswitch , ubcp|disp|____|____, itos, vtos, fast_linearswitch , _ );
434 #else
435 def(Bytecodes::_lookupswitch , ubcp|disp|____|____, itos, itos, lookupswitch , _ );
436 #endif
434 def(Bytecodes::_ireturn , ____|disp|clvm|____, itos, itos, _return , itos ); 437 def(Bytecodes::_ireturn , ____|disp|clvm|____, itos, itos, _return , itos );
435 def(Bytecodes::_lreturn , ____|disp|clvm|____, ltos, ltos, _return , ltos ); 438 def(Bytecodes::_lreturn , ____|disp|clvm|____, ltos, ltos, _return , ltos );
436 def(Bytecodes::_freturn , ____|disp|clvm|____, ftos, ftos, _return , ftos ); 439 def(Bytecodes::_freturn , ____|disp|clvm|____, ftos, ftos, _return , ftos );
437 def(Bytecodes::_dreturn , ____|disp|clvm|____, dtos, dtos, _return , dtos ); 440 def(Bytecodes::_dreturn , ____|disp|clvm|____, dtos, dtos, _return , dtos );
438 def(Bytecodes::_areturn , ____|disp|clvm|____, atos, atos, _return , atos ); 441 def(Bytecodes::_areturn , ____|disp|clvm|____, atos, atos, _return , atos );