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

Side by Side Diff: src/compiler/common-operator.cc

Issue 2622503002: include fixing: api.h shouldn't include objects-inl.h (Closed)
Patch Set: static type check Created 3 years, 11 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 | « src/compiler/ast-loop-assignment-analyzer.cc ('k') | src/compiler/control-builders.cc » ('j') | 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 "src/compiler/common-operator.h" 5 #include "src/compiler/common-operator.h"
6 6
7 #include "src/assembler.h" 7 #include "src/assembler.h"
8 #include "src/base/lazy-instance.h" 8 #include "src/base/lazy-instance.h"
9 #include "src/compiler/linkage.h" 9 #include "src/compiler/linkage.h"
10 #include "src/compiler/node.h" 10 #include "src/compiler/node.h"
11 #include "src/compiler/opcodes.h" 11 #include "src/compiler/opcodes.h"
12 #include "src/compiler/operator.h" 12 #include "src/compiler/operator.h"
13 #include "src/handles-inl.h" 13 #include "src/handles-inl.h"
14 #include "src/objects-inl.h"
14 #include "src/zone/zone.h" 15 #include "src/zone/zone.h"
15 16
16 namespace v8 { 17 namespace v8 {
17 namespace internal { 18 namespace internal {
18 namespace compiler { 19 namespace compiler {
19 20
20 std::ostream& operator<<(std::ostream& os, BranchHint hint) { 21 std::ostream& operator<<(std::ostream& os, BranchHint hint) {
21 switch (hint) { 22 switch (hint) {
22 case BranchHint::kNone: 23 case BranchHint::kNone:
23 return os << "None"; 24 return os << "None";
(...skipping 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 CommonOperatorBuilder::CreateFrameStateFunctionInfo( 1388 CommonOperatorBuilder::CreateFrameStateFunctionInfo(
1388 FrameStateType type, int parameter_count, int local_count, 1389 FrameStateType type, int parameter_count, int local_count,
1389 Handle<SharedFunctionInfo> shared_info) { 1390 Handle<SharedFunctionInfo> shared_info) {
1390 return new (zone()->New(sizeof(FrameStateFunctionInfo))) 1391 return new (zone()->New(sizeof(FrameStateFunctionInfo)))
1391 FrameStateFunctionInfo(type, parameter_count, local_count, shared_info); 1392 FrameStateFunctionInfo(type, parameter_count, local_count, shared_info);
1392 } 1393 }
1393 1394
1394 } // namespace compiler 1395 } // namespace compiler
1395 } // namespace internal 1396 } // namespace internal
1396 } // namespace v8 1397 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/ast-loop-assignment-analyzer.cc ('k') | src/compiler/control-builders.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698