comparison src/share/vm/opto/output.cpp @ 6620:f7cd53cedd78

7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets Summary: Change pair check to vector check in RA bias coloring code. Reviewed-by: jrose, twisti
author kvn
date Thu, 23 Aug 2012 09:13:16 -0700
parents fd8114661503
children c38f13903fdf da91efe96a93
comparison
equal deleted inserted replaced
6619:5af51c882207 6620:f7cd53cedd78
1869 1869
1870 // Don't optimize this if scheduling is disabled 1870 // Don't optimize this if scheduling is disabled
1871 if (!do_scheduling()) 1871 if (!do_scheduling())
1872 return; 1872 return;
1873 1873
1874 assert(MaxVectorSize <= 8, "scheduling code works only with pairs");
1875
1874 NOT_PRODUCT( TracePhase t2("isched", &_t_instrSched, TimeCompiler); ) 1876 NOT_PRODUCT( TracePhase t2("isched", &_t_instrSched, TimeCompiler); )
1875 1877
1876 // Create a data structure for all the scheduling information 1878 // Create a data structure for all the scheduling information
1877 Scheduling scheduling(Thread::current()->resource_area(), *this); 1879 Scheduling scheduling(Thread::current()->resource_area(), *this);
1878 1880