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

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

Issue 1291693004: [Interpreter] Bytecode graph builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: More fixes for bots (tests w/ ASAN and tests w/ slow asserts enabled). Created 5 years, 3 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 1990 matching lines...) Expand 10 before | Expand all | Expand 10 after
2001 IS_BINOP_MATCHER(Int32AddWithOverflow) 2001 IS_BINOP_MATCHER(Int32AddWithOverflow)
2002 IS_BINOP_MATCHER(Int32Add) 2002 IS_BINOP_MATCHER(Int32Add)
2003 IS_BINOP_MATCHER(Int32Sub) 2003 IS_BINOP_MATCHER(Int32Sub)
2004 IS_BINOP_MATCHER(Int32Mul) 2004 IS_BINOP_MATCHER(Int32Mul)
2005 IS_BINOP_MATCHER(Int32MulHigh) 2005 IS_BINOP_MATCHER(Int32MulHigh)
2006 IS_BINOP_MATCHER(Int32LessThan) 2006 IS_BINOP_MATCHER(Int32LessThan)
2007 IS_BINOP_MATCHER(Uint32LessThan) 2007 IS_BINOP_MATCHER(Uint32LessThan)
2008 IS_BINOP_MATCHER(Uint32LessThanOrEqual) 2008 IS_BINOP_MATCHER(Uint32LessThanOrEqual)
2009 IS_BINOP_MATCHER(Int64Add) 2009 IS_BINOP_MATCHER(Int64Add)
2010 IS_BINOP_MATCHER(Int64Sub) 2010 IS_BINOP_MATCHER(Int64Sub)
2011 IS_BINOP_MATCHER(JSAdd)
2011 IS_BINOP_MATCHER(Float32Max) 2012 IS_BINOP_MATCHER(Float32Max)
2012 IS_BINOP_MATCHER(Float32Min) 2013 IS_BINOP_MATCHER(Float32Min)
2013 IS_BINOP_MATCHER(Float32Equal) 2014 IS_BINOP_MATCHER(Float32Equal)
2014 IS_BINOP_MATCHER(Float32LessThan) 2015 IS_BINOP_MATCHER(Float32LessThan)
2015 IS_BINOP_MATCHER(Float32LessThanOrEqual) 2016 IS_BINOP_MATCHER(Float32LessThanOrEqual)
2016 IS_BINOP_MATCHER(Float64Max) 2017 IS_BINOP_MATCHER(Float64Max)
2017 IS_BINOP_MATCHER(Float64Min) 2018 IS_BINOP_MATCHER(Float64Min)
2018 IS_BINOP_MATCHER(Float64Sub) 2019 IS_BINOP_MATCHER(Float64Sub)
2019 IS_BINOP_MATCHER(Float64InsertLowWord32) 2020 IS_BINOP_MATCHER(Float64InsertLowWord32)
2020 IS_BINOP_MATCHER(Float64InsertHighWord32) 2021 IS_BINOP_MATCHER(Float64InsertHighWord32)
(...skipping 24 matching lines...) Expand all
2045 IS_UNOP_MATCHER(Float64ExtractHighWord32) 2046 IS_UNOP_MATCHER(Float64ExtractHighWord32)
2046 IS_UNOP_MATCHER(NumberToInt32) 2047 IS_UNOP_MATCHER(NumberToInt32)
2047 IS_UNOP_MATCHER(NumberToUint32) 2048 IS_UNOP_MATCHER(NumberToUint32)
2048 IS_UNOP_MATCHER(ObjectIsSmi) 2049 IS_UNOP_MATCHER(ObjectIsSmi)
2049 IS_UNOP_MATCHER(Word32Clz) 2050 IS_UNOP_MATCHER(Word32Clz)
2050 #undef IS_UNOP_MATCHER 2051 #undef IS_UNOP_MATCHER
2051 2052
2052 } // namespace compiler 2053 } // namespace compiler
2053 } // namespace internal 2054 } // namespace internal
2054 } // namespace v8 2055 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698