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

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

Issue 488363003: Correctly forward-declare inline function headers in generic-node.h (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/simplified-operator-reducer.cc ('k') | no next file » | 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 <functional> 5 #include <functional>
6 #include <limits> 6 #include <limits>
7 7
8 #include "src/base/bits.h" 8 #include "src/base/bits.h"
9 #include "src/compiler/generic-node-inl.h"
9 #include "test/cctest/cctest.h" 10 #include "test/cctest/cctest.h"
10 #include "test/cctest/compiler/codegen-tester.h" 11 #include "test/cctest/compiler/codegen-tester.h"
11 #include "test/cctest/compiler/value-helper.h" 12 #include "test/cctest/compiler/value-helper.h"
12 13
13 #if V8_TURBOFAN_TARGET 14 #if V8_TURBOFAN_TARGET
14 15
15 using namespace v8::base; 16 using namespace v8::base;
16 17
17 #define CHECK_UINT32_EQ(x, y) \ 18 #define CHECK_UINT32_EQ(x, y) \
18 CHECK_EQ(static_cast<int32_t>(x), static_cast<int32_t>(y)) 19 CHECK_EQ(static_cast<int32_t>(x), static_cast<int32_t>(y))
(...skipping 4290 matching lines...) Expand 10 before | Expand all | Expand 10 after
4309 RawMachineAssemblerTester<int32_t> m; 4310 RawMachineAssemblerTester<int32_t> m;
4310 m.Return(m.TruncateFloat64ToInt32(m.LoadFromPointer(&input, kMachFloat64))); 4311 m.Return(m.TruncateFloat64ToInt32(m.LoadFromPointer(&input, kMachFloat64)));
4311 for (size_t i = 0; i < ARRAY_SIZE(kValues); ++i) { 4312 for (size_t i = 0; i < ARRAY_SIZE(kValues); ++i) {
4312 input = kValues[i].from; 4313 input = kValues[i].from;
4313 uint64_t expected = static_cast<int64_t>(kValues[i].raw); 4314 uint64_t expected = static_cast<int64_t>(kValues[i].raw);
4314 CHECK_EQ(static_cast<int>(expected), m.Call()); 4315 CHECK_EQ(static_cast<int>(expected), m.Call());
4315 } 4316 }
4316 } 4317 }
4317 4318
4318 #endif // V8_TURBOFAN_TARGET 4319 #endif // V8_TURBOFAN_TARGET
OLDNEW
« no previous file with comments | « src/compiler/simplified-operator-reducer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698