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