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

Side by Side Diff: src/compiler/frame-states.cc

Issue 1283033003: Remove inline header includes from non-inline headers (1). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix GCC for realz. 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 | « src/compiler/frame-states.h ('k') | src/cpu-profiler.h » ('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/base/functional.h" 5 #include "src/base/functional.h"
6 #include "src/compiler/frame-states.h" 6 #include "src/compiler/frame-states.h"
7 #include "src/handles-inl.h"
7 8
8 namespace v8 { 9 namespace v8 {
9 namespace internal { 10 namespace internal {
10 namespace compiler { 11 namespace compiler {
11 12
12 size_t hash_value(OutputFrameStateCombine const& sc) { 13 size_t hash_value(OutputFrameStateCombine const& sc) {
13 return base::hash_combine(sc.kind_, sc.parameter_); 14 return base::hash_combine(sc.kind_, sc.parameter_);
14 } 15 }
15 16
16 17
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 Handle<SharedFunctionInfo> shared_info; 65 Handle<SharedFunctionInfo> shared_info;
65 if (info.shared_info().ToHandle(&shared_info)) { 66 if (info.shared_info().ToHandle(&shared_info)) {
66 os << ", " << Brief(*shared_info); 67 os << ", " << Brief(*shared_info);
67 } 68 }
68 return os; 69 return os;
69 } 70 }
70 71
71 } // namespace compiler 72 } // namespace compiler
72 } // namespace internal 73 } // namespace internal
73 } // namespace v8 74 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/frame-states.h ('k') | src/cpu-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698