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

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

Issue 2139733003: [turbofan] Strength reduction for Int32MulWithOverflow. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2101123005
Patch Set: Created 4 years, 5 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 2215 matching lines...) Expand 10 before | Expand all | Expand 10 after
2226 IS_BINOP_MATCHER(Word32Shl) 2226 IS_BINOP_MATCHER(Word32Shl)
2227 IS_BINOP_MATCHER(Word32Shr) 2227 IS_BINOP_MATCHER(Word32Shr)
2228 IS_BINOP_MATCHER(Word32Ror) 2228 IS_BINOP_MATCHER(Word32Ror)
2229 IS_BINOP_MATCHER(Word32Equal) 2229 IS_BINOP_MATCHER(Word32Equal)
2230 IS_BINOP_MATCHER(Word64And) 2230 IS_BINOP_MATCHER(Word64And)
2231 IS_BINOP_MATCHER(Word64Or) 2231 IS_BINOP_MATCHER(Word64Or)
2232 IS_BINOP_MATCHER(Word64Sar) 2232 IS_BINOP_MATCHER(Word64Sar)
2233 IS_BINOP_MATCHER(Word64Shl) 2233 IS_BINOP_MATCHER(Word64Shl)
2234 IS_BINOP_MATCHER(Word64Equal) 2234 IS_BINOP_MATCHER(Word64Equal)
2235 IS_BINOP_MATCHER(Int32AddWithOverflow) 2235 IS_BINOP_MATCHER(Int32AddWithOverflow)
2236 IS_BINOP_MATCHER(Int32SubWithOverflow)
2236 IS_BINOP_MATCHER(Int32Add) 2237 IS_BINOP_MATCHER(Int32Add)
2237 IS_BINOP_MATCHER(Int32Sub) 2238 IS_BINOP_MATCHER(Int32Sub)
2238 IS_BINOP_MATCHER(Int32Mul) 2239 IS_BINOP_MATCHER(Int32Mul)
2239 IS_BINOP_MATCHER(Int32MulHigh) 2240 IS_BINOP_MATCHER(Int32MulHigh)
2240 IS_BINOP_MATCHER(Int32LessThan) 2241 IS_BINOP_MATCHER(Int32LessThan)
2241 IS_BINOP_MATCHER(Uint32LessThan) 2242 IS_BINOP_MATCHER(Uint32LessThan)
2242 IS_BINOP_MATCHER(Uint32LessThanOrEqual) 2243 IS_BINOP_MATCHER(Uint32LessThanOrEqual)
2243 IS_BINOP_MATCHER(Int64Add) 2244 IS_BINOP_MATCHER(Int64Add)
2244 IS_BINOP_MATCHER(Int64Sub) 2245 IS_BINOP_MATCHER(Int64Sub)
2245 IS_BINOP_MATCHER(JSAdd) 2246 IS_BINOP_MATCHER(JSAdd)
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
2313 IS_UNOP_MATCHER(ObjectIsSmi) 2314 IS_UNOP_MATCHER(ObjectIsSmi)
2314 IS_UNOP_MATCHER(StringFromCharCode) 2315 IS_UNOP_MATCHER(StringFromCharCode)
2315 IS_UNOP_MATCHER(Word32Clz) 2316 IS_UNOP_MATCHER(Word32Clz)
2316 IS_UNOP_MATCHER(Word32Ctz) 2317 IS_UNOP_MATCHER(Word32Ctz)
2317 IS_UNOP_MATCHER(Word32Popcnt) 2318 IS_UNOP_MATCHER(Word32Popcnt)
2318 #undef IS_UNOP_MATCHER 2319 #undef IS_UNOP_MATCHER
2319 2320
2320 } // namespace compiler 2321 } // namespace compiler
2321 } // namespace internal 2322 } // namespace internal
2322 } // namespace v8 2323 } // 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