| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_CCTEST_COMPILER_VALUE_HELPER_H_ | 5 #ifndef V8_CCTEST_COMPILER_VALUE_HELPER_H_ |
| 6 #define V8_CCTEST_COMPILER_VALUE_HELPER_H_ | 6 #define V8_CCTEST_COMPILER_VALUE_HELPER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "src/compiler/common-operator.h" | 10 #include "src/compiler/common-operator.h" |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 -1.0, | 193 -1.0, |
| 194 -0.5, | 194 -0.5, |
| 195 -0.0, | 195 -0.0, |
| 196 0.0, | 196 0.0, |
| 197 3e-88, | 197 3e-88, |
| 198 0.125, | 198 0.125, |
| 199 0.25, | 199 0.25, |
| 200 0.375, | 200 0.375, |
| 201 0.5, | 201 0.5, |
| 202 1.0, | 202 1.0, |
| 203 1.17549e-38, |
| 204 1.56657e-37, |
| 205 1.0000001, |
| 203 1.25, | 206 1.25, |
| 204 2, | 207 2, |
| 205 3.1e7, | 208 3.1e7, |
| 206 5.125, | 209 5.125, |
| 207 6.25, | 210 6.25, |
| 208 888, | 211 888, |
| 209 982983.25, | 212 982983.25, |
| 210 2147483647.0, | 213 2147483647.0, |
| 211 2147483647.375, | 214 2147483647.375, |
| 212 2147483647.75, | 215 2147483647.75, |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 do { \ | 344 do { \ |
| 342 volatile double tmp = lhs; \ | 345 volatile double tmp = lhs; \ |
| 343 CheckDoubleEq(tmp, rhs); \ | 346 CheckDoubleEq(tmp, rhs); \ |
| 344 } while (0) | 347 } while (0) |
| 345 | 348 |
| 346 } // namespace compiler | 349 } // namespace compiler |
| 347 } // namespace internal | 350 } // namespace internal |
| 348 } // namespace v8 | 351 } // namespace v8 |
| 349 | 352 |
| 350 #endif // V8_CCTEST_COMPILER_VALUE_HELPER_H_ | 353 #endif // V8_CCTEST_COMPILER_VALUE_HELPER_H_ |
| OLD | NEW |