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

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

Issue 1245133002: [interpreter] Add Interpreter{Entry,Exit}Trampoline builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth_bytecode_array
Patch Set: Adding MIPS based on https://codereview.chromium.org/1257953002/ Created 5 years, 4 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 1875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1886 IS_BINOP_MATCHER(Word64Equal) 1886 IS_BINOP_MATCHER(Word64Equal)
1887 IS_BINOP_MATCHER(Int32AddWithOverflow) 1887 IS_BINOP_MATCHER(Int32AddWithOverflow)
1888 IS_BINOP_MATCHER(Int32Add) 1888 IS_BINOP_MATCHER(Int32Add)
1889 IS_BINOP_MATCHER(Int32Sub) 1889 IS_BINOP_MATCHER(Int32Sub)
1890 IS_BINOP_MATCHER(Int32Mul) 1890 IS_BINOP_MATCHER(Int32Mul)
1891 IS_BINOP_MATCHER(Int32MulHigh) 1891 IS_BINOP_MATCHER(Int32MulHigh)
1892 IS_BINOP_MATCHER(Int32LessThan) 1892 IS_BINOP_MATCHER(Int32LessThan)
1893 IS_BINOP_MATCHER(Uint32LessThan) 1893 IS_BINOP_MATCHER(Uint32LessThan)
1894 IS_BINOP_MATCHER(Uint32LessThanOrEqual) 1894 IS_BINOP_MATCHER(Uint32LessThanOrEqual)
1895 IS_BINOP_MATCHER(Int64Add) 1895 IS_BINOP_MATCHER(Int64Add)
1896 IS_BINOP_MATCHER(Int64Sub)
1896 IS_BINOP_MATCHER(Float32Max) 1897 IS_BINOP_MATCHER(Float32Max)
1897 IS_BINOP_MATCHER(Float32Min) 1898 IS_BINOP_MATCHER(Float32Min)
1898 IS_BINOP_MATCHER(Float32Equal) 1899 IS_BINOP_MATCHER(Float32Equal)
1899 IS_BINOP_MATCHER(Float32LessThan) 1900 IS_BINOP_MATCHER(Float32LessThan)
1900 IS_BINOP_MATCHER(Float32LessThanOrEqual) 1901 IS_BINOP_MATCHER(Float32LessThanOrEqual)
1901 IS_BINOP_MATCHER(Float64Max) 1902 IS_BINOP_MATCHER(Float64Max)
1902 IS_BINOP_MATCHER(Float64Min) 1903 IS_BINOP_MATCHER(Float64Min)
1903 IS_BINOP_MATCHER(Float64Sub) 1904 IS_BINOP_MATCHER(Float64Sub)
1904 IS_BINOP_MATCHER(Float64InsertLowWord32) 1905 IS_BINOP_MATCHER(Float64InsertLowWord32)
1905 IS_BINOP_MATCHER(Float64InsertHighWord32) 1906 IS_BINOP_MATCHER(Float64InsertHighWord32)
(...skipping 25 matching lines...) Expand all
1931 IS_UNOP_MATCHER(NumberToInt32) 1932 IS_UNOP_MATCHER(NumberToInt32)
1932 IS_UNOP_MATCHER(NumberToUint32) 1933 IS_UNOP_MATCHER(NumberToUint32)
1933 IS_UNOP_MATCHER(ObjectIsSmi) 1934 IS_UNOP_MATCHER(ObjectIsSmi)
1934 IS_UNOP_MATCHER(ObjectIsNonNegativeSmi) 1935 IS_UNOP_MATCHER(ObjectIsNonNegativeSmi)
1935 IS_UNOP_MATCHER(Word32Clz) 1936 IS_UNOP_MATCHER(Word32Clz)
1936 #undef IS_UNOP_MATCHER 1937 #undef IS_UNOP_MATCHER
1937 1938
1938 } // namespace compiler 1939 } // namespace compiler
1939 } // namespace internal 1940 } // namespace internal
1940 } // namespace v8 1941 } // 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