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/instruction-selector.cc

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: fixed PodArray::copy_out 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 2127 matching lines...) Expand 10 before | Expand all | Expand 10 after
2147 return new (instruction_zone()) FrameStateDescriptor( 2148 return new (instruction_zone()) FrameStateDescriptor(
2148 instruction_zone(), state_info.type(), state_info.bailout_id(), 2149 instruction_zone(), state_info.type(), state_info.bailout_id(),
2149 state_info.state_combine(), parameters, locals, stack, 2150 state_info.state_combine(), parameters, locals, stack,
2150 state_info.shared_info(), outer_state); 2151 state_info.shared_info(), outer_state);
2151 } 2152 }
2152 2153
2153 2154
2154 } // namespace compiler 2155 } // namespace compiler
2155 } // namespace internal 2156 } // namespace internal
2156 } // namespace v8 2157 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698