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/bootstrapper.h" | 5 #include "src/bootstrapper.h" |
6 #include "src/compiler/graph-inl.h" | |
7 #include "src/compiler/graph-reducer.h" | 6 #include "src/compiler/graph-reducer.h" |
8 #include "src/compiler/js-operator.h" | 7 #include "src/compiler/js-operator.h" |
9 #include "src/compiler/node.h" | 8 #include "src/compiler/node.h" |
10 #include "src/compiler/node-properties.h" | 9 #include "src/compiler/node-properties.h" |
11 #include "src/compiler/simplified-operator.h" | 10 #include "src/compiler/simplified-operator.h" |
12 #include "src/compiler/typer.h" | 11 #include "src/compiler/typer.h" |
13 | 12 |
14 namespace v8 { | 13 namespace v8 { |
15 namespace internal { | 14 namespace internal { |
16 namespace compiler { | 15 namespace compiler { |
(...skipping 2119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2136 TYPED_ARRAYS(TYPED_ARRAY_CASE) | 2135 TYPED_ARRAYS(TYPED_ARRAY_CASE) |
2137 #undef TYPED_ARRAY_CASE | 2136 #undef TYPED_ARRAY_CASE |
2138 } | 2137 } |
2139 } | 2138 } |
2140 return Type::Constant(value, zone()); | 2139 return Type::Constant(value, zone()); |
2141 } | 2140 } |
2142 | 2141 |
2143 } // namespace compiler | 2142 } // namespace compiler |
2144 } // namespace internal | 2143 } // namespace internal |
2145 } // namespace v8 | 2144 } // namespace v8 |
OLD | NEW |