OLD | NEW |
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 3246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3279 isolate(), graph()->zone(), callable.descriptor(), 0, flags, | 3279 isolate(), graph()->zone(), callable.descriptor(), 0, flags, |
3280 Operator::kNoProperties); | 3280 Operator::kNoProperties); |
3281 to_number_operator_.set(common()->Call(desc)); | 3281 to_number_operator_.set(common()->Call(desc)); |
3282 } | 3282 } |
3283 return to_number_operator_.get(); | 3283 return to_number_operator_.get(); |
3284 } | 3284 } |
3285 | 3285 |
3286 } // namespace compiler | 3286 } // namespace compiler |
3287 } // namespace internal | 3287 } // namespace internal |
3288 } // namespace v8 | 3288 } // namespace v8 |
OLD | NEW |