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

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

Issue 1729263002: [wasm] I added comparison operators to the Int64Lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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
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 2084 matching lines...) Expand 10 before | Expand all | Expand 10 after
2095 IS_BINOP_MATCHER(Word64Or) 2095 IS_BINOP_MATCHER(Word64Or)
2096 IS_BINOP_MATCHER(Word64Sar) 2096 IS_BINOP_MATCHER(Word64Sar)
2097 IS_BINOP_MATCHER(Word64Shl) 2097 IS_BINOP_MATCHER(Word64Shl)
2098 IS_BINOP_MATCHER(Word64Equal) 2098 IS_BINOP_MATCHER(Word64Equal)
2099 IS_BINOP_MATCHER(Int32AddWithOverflow) 2099 IS_BINOP_MATCHER(Int32AddWithOverflow)
2100 IS_BINOP_MATCHER(Int32Add) 2100 IS_BINOP_MATCHER(Int32Add)
2101 IS_BINOP_MATCHER(Int32Sub) 2101 IS_BINOP_MATCHER(Int32Sub)
2102 IS_BINOP_MATCHER(Int32Mul) 2102 IS_BINOP_MATCHER(Int32Mul)
2103 IS_BINOP_MATCHER(Int32MulHigh) 2103 IS_BINOP_MATCHER(Int32MulHigh)
2104 IS_BINOP_MATCHER(Int32LessThan) 2104 IS_BINOP_MATCHER(Int32LessThan)
2105 IS_BINOP_MATCHER(Int32LessThanOrEqual)
2105 IS_BINOP_MATCHER(Uint32LessThan) 2106 IS_BINOP_MATCHER(Uint32LessThan)
2106 IS_BINOP_MATCHER(Uint32LessThanOrEqual) 2107 IS_BINOP_MATCHER(Uint32LessThanOrEqual)
2107 IS_BINOP_MATCHER(Int64Add) 2108 IS_BINOP_MATCHER(Int64Add)
2108 IS_BINOP_MATCHER(Int64Sub) 2109 IS_BINOP_MATCHER(Int64Sub)
2109 IS_BINOP_MATCHER(JSAdd) 2110 IS_BINOP_MATCHER(JSAdd)
2110 IS_BINOP_MATCHER(Float32Max) 2111 IS_BINOP_MATCHER(Float32Max)
2111 IS_BINOP_MATCHER(Float32Min) 2112 IS_BINOP_MATCHER(Float32Min)
2112 IS_BINOP_MATCHER(Float32Equal) 2113 IS_BINOP_MATCHER(Float32Equal)
2113 IS_BINOP_MATCHER(Float32LessThan) 2114 IS_BINOP_MATCHER(Float32LessThan)
2114 IS_BINOP_MATCHER(Float32LessThanOrEqual) 2115 IS_BINOP_MATCHER(Float32LessThanOrEqual)
(...skipping 30 matching lines...) Expand all
2145 IS_UNOP_MATCHER(NumberToInt32) 2146 IS_UNOP_MATCHER(NumberToInt32)
2146 IS_UNOP_MATCHER(NumberToUint32) 2147 IS_UNOP_MATCHER(NumberToUint32)
2147 IS_UNOP_MATCHER(ObjectIsReceiver) 2148 IS_UNOP_MATCHER(ObjectIsReceiver)
2148 IS_UNOP_MATCHER(ObjectIsSmi) 2149 IS_UNOP_MATCHER(ObjectIsSmi)
2149 IS_UNOP_MATCHER(Word32Clz) 2150 IS_UNOP_MATCHER(Word32Clz)
2150 #undef IS_UNOP_MATCHER 2151 #undef IS_UNOP_MATCHER
2151 2152
2152 } // namespace compiler 2153 } // namespace compiler
2153 } // namespace internal 2154 } // namespace internal
2154 } // namespace v8 2155 } // namespace v8
OLDNEW
« src/compiler/wasm-compiler.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