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

Side by Side Diff: src/compiler/simplified-lowering.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/simplified-lowering.h" 5 #include "src/compiler/simplified-lowering.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "src/address-map.h" 9 #include "src/address-map.h"
10 #include "src/base/bits.h" 10 #include "src/base/bits.h"
11 #include "src/code-factory.h" 11 #include "src/code-factory.h"
12 #include "src/compiler/access-builder.h" 12 #include "src/compiler/access-builder.h"
13 #include "src/compiler/common-operator.h" 13 #include "src/compiler/common-operator.h"
14 #include "src/compiler/compiler-source-position-table.h"
14 #include "src/compiler/diamond.h" 15 #include "src/compiler/diamond.h"
15 #include "src/compiler/linkage.h" 16 #include "src/compiler/linkage.h"
16 #include "src/compiler/node-matchers.h" 17 #include "src/compiler/node-matchers.h"
17 #include "src/compiler/node-properties.h" 18 #include "src/compiler/node-properties.h"
18 #include "src/compiler/operation-typer.h" 19 #include "src/compiler/operation-typer.h"
19 #include "src/compiler/operator-properties.h" 20 #include "src/compiler/operator-properties.h"
20 #include "src/compiler/representation-change.h" 21 #include "src/compiler/representation-change.h"
21 #include "src/compiler/simplified-operator.h" 22 #include "src/compiler/simplified-operator.h"
22 #include "src/compiler/source-position.h"
23 #include "src/compiler/type-cache.h" 23 #include "src/compiler/type-cache.h"
24 #include "src/conversions-inl.h" 24 #include "src/conversions-inl.h"
25 #include "src/objects.h" 25 #include "src/objects.h"
26 26
27 namespace v8 { 27 namespace v8 {
28 namespace internal { 28 namespace internal {
29 namespace compiler { 29 namespace compiler {
30 30
31 // Macro for outputting trace information from representation inference. 31 // Macro for outputting trace information from representation inference.
32 #define TRACE(...) \ 32 #define TRACE(...) \
(...skipping 3367 matching lines...) Expand 10 before | Expand all | Expand 10 after
3400 isolate(), graph()->zone(), callable.descriptor(), 0, flags, 3400 isolate(), graph()->zone(), callable.descriptor(), 0, flags,
3401 Operator::kNoProperties); 3401 Operator::kNoProperties);
3402 to_number_operator_.set(common()->Call(desc)); 3402 to_number_operator_.set(common()->Call(desc));
3403 } 3403 }
3404 return to_number_operator_.get(); 3404 return to_number_operator_.get();
3405 } 3405 }
3406 3406
3407 } // namespace compiler 3407 } // namespace compiler
3408 } // namespace internal 3408 } // namespace internal
3409 } // namespace v8 3409 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698