Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Side by Side Diff: test/cctest/compiler/test-run-machops.cc

Issue 1051393003: Removed src/{isolate,property-details,utils}-inl.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/cctest/cctest.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include <cmath> 5 #include <cmath>
6 #include <functional> 6 #include <functional>
7 #include <limits> 7 #include <limits>
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/base/utils/random-number-generator.h"
10 #include "src/codegen.h" 11 #include "src/codegen.h"
11 #include "test/cctest/cctest.h" 12 #include "test/cctest/cctest.h"
12 #include "test/cctest/compiler/codegen-tester.h" 13 #include "test/cctest/compiler/codegen-tester.h"
13 #include "test/cctest/compiler/value-helper.h" 14 #include "test/cctest/compiler/value-helper.h"
14 15
15 #if V8_TURBOFAN_TARGET 16 #if V8_TURBOFAN_TARGET
16 17
17 using namespace v8::base; 18 using namespace v8::base;
18 using namespace v8::internal; 19 using namespace v8::internal;
19 using namespace v8::internal::compiler; 20 using namespace v8::internal::compiler;
(...skipping 5123 matching lines...) Expand 10 before | Expand all | Expand 10 after
5143 m.Return(m.Int32Constant(0)); 5144 m.Return(m.Int32Constant(0));
5144 for (size_t i = 0; i < arraysize(kValues); ++i) { 5145 for (size_t i = 0; i < arraysize(kValues); ++i) {
5145 input = kValues[i]; 5146 input = kValues[i];
5146 CHECK_EQ(0, m.Call()); 5147 CHECK_EQ(0, m.Call());
5147 double expected = round(kValues[i]); 5148 double expected = round(kValues[i]);
5148 CHECK_EQ(expected, result); 5149 CHECK_EQ(expected, result);
5149 } 5150 }
5150 } 5151 }
5151 5152
5152 #endif // V8_TURBOFAN_TARGET 5153 #endif // V8_TURBOFAN_TARGET
OLDNEW
« no previous file with comments | « test/cctest/cctest.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698