8154945: Enable 8130150 and 8081778 intrinsics by default

Tue, 11 Oct 2016 18:40:11 +0300

author
vkempik
date
Tue, 11 Oct 2016 18:40:11 +0300
changeset 8637
079d89ac8f34
parent 8636
f973811078b9
child 8638
8b37c5a17316

8154945: Enable 8130150 and 8081778 intrinsics by default
Reviewed-by: kvn

src/cpu/x86/vm/vm_version_x86.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/cpu/x86/vm/vm_version_x86.cpp	Mon Oct 10 20:28:13 2016 -0700
     1.2 +++ b/src/cpu/x86/vm/vm_version_x86.cpp	Tue Oct 11 18:40:11 2016 +0300
     1.3 @@ -704,16 +704,16 @@
     1.4      UseMultiplyToLenIntrinsic = true;
     1.5    }
     1.6    if (FLAG_IS_DEFAULT(UseSquareToLenIntrinsic)) {
     1.7 -    UseSquareToLenIntrinsic = false;
     1.8 +    UseSquareToLenIntrinsic = true;
     1.9    }
    1.10    if (FLAG_IS_DEFAULT(UseMulAddIntrinsic)) {
    1.11 -    UseMulAddIntrinsic = false;
    1.12 +    UseMulAddIntrinsic = true;
    1.13    }
    1.14    if (FLAG_IS_DEFAULT(UseMontgomeryMultiplyIntrinsic)) {
    1.15 -    UseMontgomeryMultiplyIntrinsic = false;
    1.16 +    UseMontgomeryMultiplyIntrinsic = true;
    1.17    }
    1.18    if (FLAG_IS_DEFAULT(UseMontgomerySquareIntrinsic)) {
    1.19 -    UseMontgomerySquareIntrinsic = false;
    1.20 +    UseMontgomerySquareIntrinsic = true;
    1.21    }
    1.22  #else
    1.23    if (UseMultiplyToLenIntrinsic) {

mercurial