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

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

Issue 1468003002: [Interpreter] Add support for cast operators to bytecode graph builder and (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased the patch and removed unused definitions of matcher classes in unittests Created 5 years 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
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 <vector> 7 #include <vector>
8 8
9 #include "src/assembler.h" 9 #include "src/assembler.h"
10 #include "src/compiler/common-operator.h" 10 #include "src/compiler/common-operator.h"
(...skipping 2057 matching lines...) Expand 10 before | Expand all | Expand 10 after
2068 IS_UNOP_MATCHER(Float64Sqrt) 2068 IS_UNOP_MATCHER(Float64Sqrt)
2069 IS_UNOP_MATCHER(Float64RoundDown) 2069 IS_UNOP_MATCHER(Float64RoundDown)
2070 IS_UNOP_MATCHER(Float64RoundTruncate) 2070 IS_UNOP_MATCHER(Float64RoundTruncate)
2071 IS_UNOP_MATCHER(Float64RoundTiesAway) 2071 IS_UNOP_MATCHER(Float64RoundTiesAway)
2072 IS_UNOP_MATCHER(Float64ExtractLowWord32) 2072 IS_UNOP_MATCHER(Float64ExtractLowWord32)
2073 IS_UNOP_MATCHER(Float64ExtractHighWord32) 2073 IS_UNOP_MATCHER(Float64ExtractHighWord32)
2074 IS_UNOP_MATCHER(NumberToInt32) 2074 IS_UNOP_MATCHER(NumberToInt32)
2075 IS_UNOP_MATCHER(NumberToUint32) 2075 IS_UNOP_MATCHER(NumberToUint32)
2076 IS_UNOP_MATCHER(ObjectIsSmi) 2076 IS_UNOP_MATCHER(ObjectIsSmi)
2077 IS_UNOP_MATCHER(Word32Clz) 2077 IS_UNOP_MATCHER(Word32Clz)
2078 IS_UNOP_MATCHER(JSUnaryNot)
2079 IS_UNOP_MATCHER(JSTypeOf)
2080 #undef IS_UNOP_MATCHER 2078 #undef IS_UNOP_MATCHER
2081 2079
2082 } // namespace compiler 2080 } // namespace compiler
2083 } // namespace internal 2081 } // namespace internal
2084 } // namespace v8 2082 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698