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

Side by Side Diff: src/compiler/frame-states.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/control-builders.cc ('k') | src/compiler/js-operator.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 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 "src/compiler/frame-states.h" 5 #include "src/compiler/frame-states.h"
6 6
7 #include "src/base/functional.h" 7 #include "src/base/functional.h"
8 #include "src/handles-inl.h" 8 #include "src/handles-inl.h"
9 #include "src/objects-inl.h"
9 10
10 namespace v8 { 11 namespace v8 {
11 namespace internal { 12 namespace internal {
12 namespace compiler { 13 namespace compiler {
13 14
14 size_t hash_value(OutputFrameStateCombine const& sc) { 15 size_t hash_value(OutputFrameStateCombine const& sc) {
15 return base::hash_combine(sc.kind_, sc.parameter_); 16 return base::hash_combine(sc.kind_, sc.parameter_);
16 } 17 }
17 18
18 19
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 Handle<SharedFunctionInfo> shared_info; 82 Handle<SharedFunctionInfo> shared_info;
82 if (info.shared_info().ToHandle(&shared_info)) { 83 if (info.shared_info().ToHandle(&shared_info)) {
83 os << ", " << Brief(*shared_info); 84 os << ", " << Brief(*shared_info);
84 } 85 }
85 return os; 86 return os;
86 } 87 }
87 88
88 } // namespace compiler 89 } // namespace compiler
89 } // namespace internal 90 } // namespace internal
90 } // namespace v8 91 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/control-builders.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698