OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 3855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3866 return H_CONSTANT_DOUBLE(d); | 3866 return H_CONSTANT_DOUBLE(d); |
3867 default: | 3867 default: |
3868 UNREACHABLE(); | 3868 UNREACHABLE(); |
3869 break; | 3869 break; |
3870 } | 3870 } |
3871 } | 3871 } |
3872 switch (op) { | 3872 switch (op) { |
3873 case kMathExp: | 3873 case kMathExp: |
3874 return H_CONSTANT_DOUBLE(fast_exp(d)); | 3874 return H_CONSTANT_DOUBLE(fast_exp(d)); |
3875 case kMathLog: | 3875 case kMathLog: |
3876 return H_CONSTANT_DOUBLE(fast_log(d)); | 3876 return H_CONSTANT_DOUBLE(log(d)); |
3877 case kMathSqrt: | 3877 case kMathSqrt: |
3878 return H_CONSTANT_DOUBLE(fast_sqrt(d)); | 3878 return H_CONSTANT_DOUBLE(fast_sqrt(d)); |
3879 case kMathPowHalf: | 3879 case kMathPowHalf: |
3880 return H_CONSTANT_DOUBLE(power_double_double(d, 0.5)); | 3880 return H_CONSTANT_DOUBLE(power_double_double(d, 0.5)); |
3881 case kMathAbs: | 3881 case kMathAbs: |
3882 return H_CONSTANT_DOUBLE((d >= 0.0) ? d + 0.0 : -d); | 3882 return H_CONSTANT_DOUBLE((d >= 0.0) ? d + 0.0 : -d); |
3883 case kMathRound: | 3883 case kMathRound: |
3884 // -0.5 .. -0.0 round to -0.0. | 3884 // -0.5 .. -0.0 round to -0.0. |
3885 if ((d >= -0.5 && Double(d).Sign() < 0)) return H_CONSTANT_DOUBLE(-0.0); | 3885 if ((d >= -0.5 && Double(d).Sign() < 0)) return H_CONSTANT_DOUBLE(-0.0); |
3886 // Doubles are represented as Significant * 2 ^ Exponent. If the | 3886 // Doubles are represented as Significant * 2 ^ Exponent. If the |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4422 break; | 4422 break; |
4423 case kExternalMemory: | 4423 case kExternalMemory: |
4424 stream->Add("[external-memory]"); | 4424 stream->Add("[external-memory]"); |
4425 break; | 4425 break; |
4426 } | 4426 } |
4427 | 4427 |
4428 stream->Add("@%d", offset()); | 4428 stream->Add("@%d", offset()); |
4429 } | 4429 } |
4430 | 4430 |
4431 } } // namespace v8::internal | 4431 } } // namespace v8::internal |
OLD | NEW |