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

Side by Side Diff: test/cctest/compiler/codegen-tester.cc

Issue 618043002: Remove extraneous line from CompareWrapper test (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | « no previous file | 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 "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/compiler/generic-node-inl.h" 7 #include "src/compiler/generic-node-inl.h"
8 #include "test/cctest/cctest.h" 8 #include "test/cctest/cctest.h"
9 #include "test/cctest/compiler/codegen-tester.h" 9 #include "test/cctest/compiler/codegen-tester.h"
10 #include "test/cctest/compiler/value-helper.h" 10 #include "test/cctest/compiler/value-helper.h"
11 11
12 using namespace v8::internal; 12 using namespace v8::internal;
13 using namespace v8::internal::compiler; 13 using namespace v8::internal::compiler;
14 14
15 TEST(CompareWrapper) { 15 TEST(CompareWrapper) {
16 // Who tests the testers? 16 // Who tests the testers?
17 // If CompareWrapper is broken, then test expectations will be broken. 17 // If CompareWrapper is broken, then test expectations will be broken.
18 RawMachineAssemblerTester<int32_t> m;
19 CompareWrapper wWord32Equal(IrOpcode::kWord32Equal); 18 CompareWrapper wWord32Equal(IrOpcode::kWord32Equal);
20 CompareWrapper wInt32LessThan(IrOpcode::kInt32LessThan); 19 CompareWrapper wInt32LessThan(IrOpcode::kInt32LessThan);
21 CompareWrapper wInt32LessThanOrEqual(IrOpcode::kInt32LessThanOrEqual); 20 CompareWrapper wInt32LessThanOrEqual(IrOpcode::kInt32LessThanOrEqual);
22 CompareWrapper wUint32LessThan(IrOpcode::kUint32LessThan); 21 CompareWrapper wUint32LessThan(IrOpcode::kUint32LessThan);
23 CompareWrapper wUint32LessThanOrEqual(IrOpcode::kUint32LessThanOrEqual); 22 CompareWrapper wUint32LessThanOrEqual(IrOpcode::kUint32LessThanOrEqual);
24 23
25 { 24 {
26 FOR_INT32_INPUTS(pl) { 25 FOR_INT32_INPUTS(pl) {
27 FOR_INT32_INPUTS(pr) { 26 FOR_INT32_INPUTS(pr) {
28 int32_t a = *pl; 27 int32_t a = *pl;
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 { 568 {
570 RawMachineAssemblerTester<int32_t> m; 569 RawMachineAssemblerTester<int32_t> m;
571 Float64BinopTester bt(&m); 570 Float64BinopTester bt(&m);
572 bt.AddReturn(bt.param1); 571 bt.AddReturn(bt.param1);
573 572
574 FOR_FLOAT64_INPUTS(i) { CHECK_EQ(*i, bt.call(-11.25, *i)); } 573 FOR_FLOAT64_INPUTS(i) { CHECK_EQ(*i, bt.call(-11.25, *i)); }
575 } 574 }
576 } 575 }
577 576
578 #endif // V8_TURBOFAN_TARGET 577 #endif // V8_TURBOFAN_TARGET
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698