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

Side by Side Diff: test/cctest/compiler/test-linkage.cc

Issue 2284313003: Separate CompilationInfo into its own file. (Closed)
Patch Set: fix Created 4 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 "src/code-stubs.h" 5 #include "src/code-stubs.h"
6 #include "src/compilation-info.h"
6 #include "src/compiler.h" 7 #include "src/compiler.h"
7 #include "src/parsing/parse-info.h" 8 #include "src/parsing/parse-info.h"
8 #include "src/zone.h" 9 #include "src/zone.h"
9 10
10 #include "src/code-factory.h" 11 #include "src/code-factory.h"
11 #include "src/compiler/common-operator.h" 12 #include "src/compiler/common-operator.h"
12 #include "src/compiler/graph.h" 13 #include "src/compiler/graph.h"
13 #include "src/compiler/linkage.h" 14 #include "src/compiler/linkage.h"
14 #include "src/compiler/machine-operator.h" 15 #include "src/compiler/machine-operator.h"
15 #include "src/compiler/node.h" 16 #include "src/compiler/node.h"
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 CHECK_EQ(0, static_cast<int>(descriptor->StackParameterCount())); 109 CHECK_EQ(0, static_cast<int>(descriptor->StackParameterCount()));
109 CHECK_EQ(1, static_cast<int>(descriptor->ReturnCount())); 110 CHECK_EQ(1, static_cast<int>(descriptor->ReturnCount()));
110 CHECK_EQ(Operator::kNoProperties, descriptor->properties()); 111 CHECK_EQ(Operator::kNoProperties, descriptor->properties());
111 CHECK_EQ(false, descriptor->IsJSFunctionCall()); 112 CHECK_EQ(false, descriptor->IsJSFunctionCall());
112 // TODO(titzer): test linkage creation for outgoing stub calls. 113 // TODO(titzer): test linkage creation for outgoing stub calls.
113 } 114 }
114 115
115 } // namespace compiler 116 } // namespace compiler
116 } // namespace internal 117 } // namespace internal
117 } // namespace v8 118 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/compiler/graph-builder-tester.h ('k') | test/cctest/compiler/test-loop-assignment-analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698