comparison src/share/vm/runtime/arguments.cpp @ 681:fbde8ec322d0

6761600: Use sse 4.2 in intrinsics Summary: Use SSE 4.2 in intrinsics for String.{compareTo/equals/indexOf} and Arrays.equals. Reviewed-by: kvn, never, jrose
author cfang
date Tue, 31 Mar 2009 14:07:08 -0700
parents bd441136a5ce
children 2c1dbb844832 e5b0439ef4ae
comparison
equal deleted inserted replaced
676:d3676b4cb78c 681:fbde8ec322d0
1363 sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax); 1363 sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
1364 add_property(buffer); 1364 add_property(buffer);
1365 } 1365 }
1366 if (AggressiveOpts && FLAG_IS_DEFAULT(DoEscapeAnalysis)) { 1366 if (AggressiveOpts && FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
1367 FLAG_SET_DEFAULT(DoEscapeAnalysis, true); 1367 FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
1368 }
1369 if (AggressiveOpts && FLAG_IS_DEFAULT(SpecialArraysEquals)) {
1370 FLAG_SET_DEFAULT(SpecialArraysEquals, true);
1371 } 1368 }
1372 if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) { 1369 if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
1373 FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500); 1370 FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
1374 } 1371 }
1375 #endif 1372 #endif