comparison src/share/vm/c1/c1_LIRAssembler.cpp @ 1783:d5d065957597

6953144: Tiered compilation Summary: Infrastructure for tiered compilation support (interpreter + c1 + c2) for 32 and 64 bit. Simple tiered policy implementation. Reviewed-by: kvn, never, phh, twisti
author iveresov
date Fri, 03 Sep 2010 17:51:07 -0700
parents 4a665be40fd3
children f02a8bbe6ed4
comparison
equal deleted inserted replaced
1782:f353275af40e 1783:d5d065957597
546 546
547 case lir_monaddr: 547 case lir_monaddr:
548 monitor_address(op->in_opr()->as_constant_ptr()->as_jint(), op->result_opr()); 548 monitor_address(op->in_opr()->as_constant_ptr()->as_jint(), op->result_opr());
549 break; 549 break;
550 550
551 #ifdef SPARC
552 case lir_pack64:
553 pack64(op->in_opr(), op->result_opr());
554 break;
555
556 case lir_unpack64:
557 unpack64(op->in_opr(), op->result_opr());
558 break;
559 #endif
560
551 case lir_unwind: 561 case lir_unwind:
552 unwind_op(op->in_opr()); 562 unwind_op(op->in_opr());
553 break; 563 break;
554 564
555 default: 565 default: