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

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

Issue 1971163002: [turbofan] Fix optimized lowering of Math.imul. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix unittests. Reorder as pointed out by Michi. Created 4 years, 7 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
« 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 <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 2178 matching lines...) Expand 10 before | Expand all | Expand 10 after
2189 return MakeMatcher( \ 2189 return MakeMatcher( \
2190 new IsBinopMatcher(IrOpcode::k##Name, lhs_matcher, rhs_matcher)); \ 2190 new IsBinopMatcher(IrOpcode::k##Name, lhs_matcher, rhs_matcher)); \
2191 } 2191 }
2192 IS_BINOP_MATCHER(NumberEqual) 2192 IS_BINOP_MATCHER(NumberEqual)
2193 IS_BINOP_MATCHER(NumberLessThan) 2193 IS_BINOP_MATCHER(NumberLessThan)
2194 IS_BINOP_MATCHER(NumberSubtract) 2194 IS_BINOP_MATCHER(NumberSubtract)
2195 IS_BINOP_MATCHER(NumberMultiply) 2195 IS_BINOP_MATCHER(NumberMultiply)
2196 IS_BINOP_MATCHER(NumberShiftLeft) 2196 IS_BINOP_MATCHER(NumberShiftLeft)
2197 IS_BINOP_MATCHER(NumberShiftRight) 2197 IS_BINOP_MATCHER(NumberShiftRight)
2198 IS_BINOP_MATCHER(NumberShiftRightLogical) 2198 IS_BINOP_MATCHER(NumberShiftRightLogical)
2199 IS_BINOP_MATCHER(NumberImul)
2199 IS_BINOP_MATCHER(Word32And) 2200 IS_BINOP_MATCHER(Word32And)
2200 IS_BINOP_MATCHER(Word32Or) 2201 IS_BINOP_MATCHER(Word32Or)
2201 IS_BINOP_MATCHER(Word32Xor) 2202 IS_BINOP_MATCHER(Word32Xor)
2202 IS_BINOP_MATCHER(Word32Sar) 2203 IS_BINOP_MATCHER(Word32Sar)
2203 IS_BINOP_MATCHER(Word32Shl) 2204 IS_BINOP_MATCHER(Word32Shl)
2204 IS_BINOP_MATCHER(Word32Shr) 2205 IS_BINOP_MATCHER(Word32Shr)
2205 IS_BINOP_MATCHER(Word32Ror) 2206 IS_BINOP_MATCHER(Word32Ror)
2206 IS_BINOP_MATCHER(Word32Equal) 2207 IS_BINOP_MATCHER(Word32Equal)
2207 IS_BINOP_MATCHER(Word64And) 2208 IS_BINOP_MATCHER(Word64And)
2208 IS_BINOP_MATCHER(Word64Or) 2209 IS_BINOP_MATCHER(Word64Or)
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
2260 IS_UNOP_MATCHER(ObjectIsReceiver) 2261 IS_UNOP_MATCHER(ObjectIsReceiver)
2261 IS_UNOP_MATCHER(ObjectIsSmi) 2262 IS_UNOP_MATCHER(ObjectIsSmi)
2262 IS_UNOP_MATCHER(Word32Clz) 2263 IS_UNOP_MATCHER(Word32Clz)
2263 IS_UNOP_MATCHER(Word32Ctz) 2264 IS_UNOP_MATCHER(Word32Ctz)
2264 IS_UNOP_MATCHER(Word32Popcnt) 2265 IS_UNOP_MATCHER(Word32Popcnt)
2265 #undef IS_UNOP_MATCHER 2266 #undef IS_UNOP_MATCHER
2266 2267
2267 } // namespace compiler 2268 } // namespace compiler
2268 } // namespace internal 2269 } // namespace internal
2269 } // namespace v8 2270 } // 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