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

Side by Side Diff: src/compiler/instruction-selector.cc

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: fixed gcmole issue Created 4 years, 1 month 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/compiler/instruction-selector.h" 5 #include "src/compiler/instruction-selector.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "src/base/adapters.h" 9 #include "src/base/adapters.h"
10 #include "src/compiler/compiler-source-position-table.h"
10 #include "src/compiler/instruction-selector-impl.h" 11 #include "src/compiler/instruction-selector-impl.h"
11 #include "src/compiler/node-matchers.h" 12 #include "src/compiler/node-matchers.h"
12 #include "src/compiler/pipeline.h" 13 #include "src/compiler/pipeline.h"
13 #include "src/compiler/schedule.h" 14 #include "src/compiler/schedule.h"
14 #include "src/compiler/state-values-utils.h" 15 #include "src/compiler/state-values-utils.h"
15 #include "src/deoptimizer.h" 16 #include "src/deoptimizer.h"
16 17
17 namespace v8 { 18 namespace v8 {
18 namespace internal { 19 namespace internal {
19 namespace compiler { 20 namespace compiler {
(...skipping 2089 matching lines...) Expand 10 before | Expand all | Expand 10 after
2109 return new (instruction_zone()) FrameStateDescriptor( 2110 return new (instruction_zone()) FrameStateDescriptor(
2110 instruction_zone(), state_info.type(), state_info.bailout_id(), 2111 instruction_zone(), state_info.type(), state_info.bailout_id(),
2111 state_info.state_combine(), parameters, locals, stack, 2112 state_info.state_combine(), parameters, locals, stack,
2112 state_info.shared_info(), outer_state); 2113 state_info.shared_info(), outer_state);
2113 } 2114 }
2114 2115
2115 2116
2116 } // namespace compiler 2117 } // namespace compiler
2117 } // namespace internal 2118 } // namespace internal
2118 } // namespace v8 2119 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698