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

Side by Side Diff: test/unittests/compiler/interpreter-assembler-unittest.cc

Issue 1321223002: [turbofan] Remove obsolete unique.h includes in TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-isolate-2
Patch Set: Rebased. 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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/interpreter-assembler-unittest.h" 5 #include "test/unittests/compiler/interpreter-assembler-unittest.h"
6 6
7 #include "src/compiler/graph.h" 7 #include "src/compiler/graph.h"
8 #include "src/compiler/node.h" 8 #include "src/compiler/node.h"
9 #include "src/unique.h" 9 #include "src/isolate.h"
10 #include "test/unittests/compiler/compiler-test-utils.h" 10 #include "test/unittests/compiler/compiler-test-utils.h"
11 #include "test/unittests/compiler/node-test-utils.h" 11 #include "test/unittests/compiler/node-test-utils.h"
12 12
13 using ::testing::_; 13 using ::testing::_;
14 14
15 namespace v8 { 15 namespace v8 {
16 namespace internal { 16 namespace internal {
17 namespace compiler { 17 namespace compiler {
18 18
19 const interpreter::Bytecode kBytecodes[] = { 19 const interpreter::Bytecode kBytecodes[] = {
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 m.CallJSBuiltin(Context::SUB_BUILTIN_INDEX, receiver, arg1); 347 m.CallJSBuiltin(Context::SUB_BUILTIN_INDEX, receiver, arg1);
348 EXPECT_THAT(call_js_builtin_1, 348 EXPECT_THAT(call_js_builtin_1,
349 IsCall(_, function_matcher, receiver, arg1, context_matcher, 349 IsCall(_, function_matcher, receiver, arg1, context_matcher,
350 m.graph()->start(), m.graph()->start())); 350 m.graph()->start(), m.graph()->start()));
351 } 351 }
352 } 352 }
353 353
354 } // namespace compiler 354 } // namespace compiler
355 } // namespace internal 355 } // namespace internal
356 } // namespace v8 356 } // namespace v8
OLDNEW
« no previous file with comments | « test/unittests/compiler/graph-unittest.cc ('k') | test/unittests/compiler/machine-operator-reducer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698