| 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 14 matching lines...) Expand all Loading... |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #include <iostream> // NOLINT(readability/streams) | 28 #include <iostream> // NOLINT(readability/streams) |
| 29 | 29 |
| 30 #include "src/v8.h" | 30 #include "src/v8.h" |
| 31 #include "test/cctest/cctest.h" | 31 #include "test/cctest/cctest.h" |
| 32 | 32 |
| 33 #include "src/arm/assembler-arm-inl.h" | 33 #include "src/arm/assembler-arm-inl.h" |
| 34 #include "src/arm/simulator-arm.h" | 34 #include "src/arm/simulator-arm.h" |
| 35 #include "src/base/utils/random-number-generator.h" |
| 35 #include "src/disassembler.h" | 36 #include "src/disassembler.h" |
| 36 #include "src/factory.h" | 37 #include "src/factory.h" |
| 37 #include "src/ostreams.h" | 38 #include "src/ostreams.h" |
| 38 | 39 |
| 39 using namespace v8::base; | 40 using namespace v8::base; |
| 40 using namespace v8::internal; | 41 using namespace v8::internal; |
| 41 | 42 |
| 42 | 43 |
| 43 // Define these function prototypes to match JSEntryFunction in execution.cc. | 44 // Define these function prototypes to match JSEntryFunction in execution.cc. |
| 44 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4); | 45 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4); |
| (...skipping 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1974 CHECK_VRINT(inf, inf, inf, inf, inf, inf) | 1975 CHECK_VRINT(inf, inf, inf, inf, inf, inf) |
| 1975 CHECK_VRINT(-inf, -inf, -inf, -inf, -inf, -inf) | 1976 CHECK_VRINT(-inf, -inf, -inf, -inf, -inf, -inf) |
| 1976 CHECK_VRINT(-0.0, -0.0, -0.0, -0.0, -0.0, -0.0) | 1977 CHECK_VRINT(-0.0, -0.0, -0.0, -0.0, -0.0, -0.0) |
| 1977 double nan = std::numeric_limits<double>::quiet_NaN(); | 1978 double nan = std::numeric_limits<double>::quiet_NaN(); |
| 1978 CHECK_VRINT(nan, nan, nan, nan, nan, nan) | 1979 CHECK_VRINT(nan, nan, nan, nan, nan, nan) |
| 1979 | 1980 |
| 1980 #undef CHECK_VRINT | 1981 #undef CHECK_VRINT |
| 1981 } | 1982 } |
| 1982 } | 1983 } |
| 1983 #undef __ | 1984 #undef __ |
| OLD | NEW |