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

Side by Side Diff: test/unittests/compiler/node-test-utils.cc

Issue 677433002: Add floor, ceil, round (truncate) instructions for ia32, x64 (if SSE4.1) and (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address changes and fix compilation on mac. Created 6 years, 1 month 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 | « test/unittests/compiler/node-test-utils.h ('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 "test/unittests/compiler/node-test-utils.h" 5 #include "test/unittests/compiler/node-test-utils.h"
6 6
7 #include "src/compiler/node-properties-inl.h" 7 #include "src/compiler/node-properties-inl.h"
8 #include "src/compiler/simplified-operator.h" 8 #include "src/compiler/simplified-operator.h"
9 9
10 using testing::_; 10 using testing::_;
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 IS_UNOP_MATCHER(ChangeFloat64ToInt32) 942 IS_UNOP_MATCHER(ChangeFloat64ToInt32)
943 IS_UNOP_MATCHER(ChangeFloat64ToUint32) 943 IS_UNOP_MATCHER(ChangeFloat64ToUint32)
944 IS_UNOP_MATCHER(ChangeInt32ToFloat64) 944 IS_UNOP_MATCHER(ChangeInt32ToFloat64)
945 IS_UNOP_MATCHER(ChangeInt32ToInt64) 945 IS_UNOP_MATCHER(ChangeInt32ToInt64)
946 IS_UNOP_MATCHER(ChangeUint32ToFloat64) 946 IS_UNOP_MATCHER(ChangeUint32ToFloat64)
947 IS_UNOP_MATCHER(ChangeUint32ToUint64) 947 IS_UNOP_MATCHER(ChangeUint32ToUint64)
948 IS_UNOP_MATCHER(TruncateFloat64ToFloat32) 948 IS_UNOP_MATCHER(TruncateFloat64ToFloat32)
949 IS_UNOP_MATCHER(TruncateFloat64ToInt32) 949 IS_UNOP_MATCHER(TruncateFloat64ToInt32)
950 IS_UNOP_MATCHER(TruncateInt64ToInt32) 950 IS_UNOP_MATCHER(TruncateInt64ToInt32)
951 IS_UNOP_MATCHER(Float64Sqrt) 951 IS_UNOP_MATCHER(Float64Sqrt)
952 IS_UNOP_MATCHER(Float64Floor)
953 IS_UNOP_MATCHER(Float64Ceil)
954 IS_UNOP_MATCHER(Float64RoundTruncate)
955 IS_UNOP_MATCHER(Float64RoundTiesAway)
952 #undef IS_UNOP_MATCHER 956 #undef IS_UNOP_MATCHER
953 957
954 } // namespace compiler 958 } // namespace compiler
955 } // namespace internal 959 } // namespace internal
956 } // namespace v8 960 } // namespace v8
OLDNEW
« no previous file with comments | « test/unittests/compiler/node-test-utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698