comparison src/share/vm/opto/loopnode.cpp @ 6614:006050192a5a

6340864: Implement vectorization optimizations in hotspot-server Summary: Added asm encoding and mach nodes for vector arithmetic instructions on x86. Reviewed-by: roland
author kvn
date Mon, 20 Aug 2012 09:07:21 -0700
parents 8c92982cbbc4
children 0acd345fd810
comparison
equal deleted inserted replaced
6594:d5ec46c7da5c 6614:006050192a5a
1771 tty->print("int),"); 1771 tty->print("int),");
1772 int stride_con = cl->stride_con(); 1772 int stride_con = cl->stride_con();
1773 if (stride_con > 0) tty->print("+"); 1773 if (stride_con > 0) tty->print("+");
1774 tty->print("%d", stride_con); 1774 tty->print("%d", stride_con);
1775 1775
1776 tty->print(" (%d iters) ", (int)cl->profile_trip_cnt());
1777
1776 if (cl->is_pre_loop ()) tty->print(" pre" ); 1778 if (cl->is_pre_loop ()) tty->print(" pre" );
1777 if (cl->is_main_loop()) tty->print(" main"); 1779 if (cl->is_main_loop()) tty->print(" main");
1778 if (cl->is_post_loop()) tty->print(" post"); 1780 if (cl->is_post_loop()) tty->print(" post");
1779 } 1781 }
1780 tty->cr(); 1782 tty->cr();