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

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: Fix integer overflow. 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
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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 IS_UNOP_MATCHER(ChangeFloat64ToInt32) 884 IS_UNOP_MATCHER(ChangeFloat64ToInt32)
885 IS_UNOP_MATCHER(ChangeFloat64ToUint32) 885 IS_UNOP_MATCHER(ChangeFloat64ToUint32)
886 IS_UNOP_MATCHER(ChangeInt32ToFloat64) 886 IS_UNOP_MATCHER(ChangeInt32ToFloat64)
887 IS_UNOP_MATCHER(ChangeInt32ToInt64) 887 IS_UNOP_MATCHER(ChangeInt32ToInt64)
888 IS_UNOP_MATCHER(ChangeUint32ToFloat64) 888 IS_UNOP_MATCHER(ChangeUint32ToFloat64)
889 IS_UNOP_MATCHER(ChangeUint32ToUint64) 889 IS_UNOP_MATCHER(ChangeUint32ToUint64)
890 IS_UNOP_MATCHER(TruncateFloat64ToFloat32) 890 IS_UNOP_MATCHER(TruncateFloat64ToFloat32)
891 IS_UNOP_MATCHER(TruncateFloat64ToInt32) 891 IS_UNOP_MATCHER(TruncateFloat64ToInt32)
892 IS_UNOP_MATCHER(TruncateInt64ToInt32) 892 IS_UNOP_MATCHER(TruncateInt64ToInt32)
893 IS_UNOP_MATCHER(Float64Sqrt) 893 IS_UNOP_MATCHER(Float64Sqrt)
894 IS_UNOP_MATCHER(Float64Floor)
895 IS_UNOP_MATCHER(Float64Ceil)
896 IS_UNOP_MATCHER(Float64RoundTruncate)
897 IS_UNOP_MATCHER(Float64RoundTiesAway)
894 #undef IS_UNOP_MATCHER 898 #undef IS_UNOP_MATCHER
895 899
896 } // namespace compiler 900 } // namespace compiler
897 } // namespace internal 901 } // namespace internal
898 } // namespace v8 902 } // namespace v8
OLDNEW
« src/compiler/instruction-selector.cc ('K') | « 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