comparison src/share/vm/opto/output.cpp @ 6646:c38f13903fdf

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/ just before the NPG (no perm gen) changeset
author Doug Simon <doug.simon@oracle.com>
date Mon, 29 Oct 2012 21:10:04 +0100
parents e1a03c81cef0 f7cd53cedd78
children e522a00b91aa
comparison
equal deleted inserted replaced
6590:dc5eec61daba 6646:c38f13903fdf
1872 1872
1873 // Don't optimize this if scheduling is disabled 1873 // Don't optimize this if scheduling is disabled
1874 if (!do_scheduling()) 1874 if (!do_scheduling())
1875 return; 1875 return;
1876 1876
1877 assert(MaxVectorSize <= 8, "scheduling code works only with pairs");
1878
1877 NOT_PRODUCT( TracePhase t2("isched", &_t_instrSched, TimeCompiler); ) 1879 NOT_PRODUCT( TracePhase t2("isched", &_t_instrSched, TimeCompiler); )
1878 1880
1879 // Create a data structure for all the scheduling information 1881 // Create a data structure for all the scheduling information
1880 Scheduling scheduling(Thread::current()->resource_area(), *this); 1882 Scheduling scheduling(Thread::current()->resource_area(), *this);
1881 1883