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/graph-inl.h" | 5 #include "src/compiler/graph-inl.h" |
6 #include "src/compiler/js-operator.h" | 6 #include "src/compiler/js-operator.h" |
7 #include "src/compiler/node.h" | 7 #include "src/compiler/node.h" |
8 #include "src/compiler/node-properties-inl.h" | 8 #include "src/compiler/node-properties-inl.h" |
9 #include "src/compiler/node-properties.h" | 9 #include "src/compiler/node-properties.h" |
10 #include "src/compiler/simplified-operator.h" | 10 #include "src/compiler/simplified-operator.h" |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 Bounds Typer::Visitor::TypeEffectPhi(Node* node) { | 265 Bounds Typer::Visitor::TypeEffectPhi(Node* node) { |
266 return Bounds(Type::None(zone())); | 266 return Bounds(Type::None(zone())); |
267 } | 267 } |
268 | 268 |
269 | 269 |
270 Bounds Typer::Visitor::TypeControlEffect(Node* node) { | 270 Bounds Typer::Visitor::TypeControlEffect(Node* node) { |
271 return Bounds(Type::None(zone())); | 271 return Bounds(Type::None(zone())); |
272 } | 272 } |
273 | 273 |
274 | 274 |
| 275 Bounds Typer::Visitor::TypeValueEffect(Node* node) { |
| 276 return Bounds(Type::None(zone())); |
| 277 } |
| 278 |
| 279 |
275 Bounds Typer::Visitor::TypeFinish(Node* node) { return OperandType(node, 0); } | 280 Bounds Typer::Visitor::TypeFinish(Node* node) { return OperandType(node, 0); } |
276 | 281 |
277 | 282 |
278 Bounds Typer::Visitor::TypeFrameState(Node* node) { | 283 Bounds Typer::Visitor::TypeFrameState(Node* node) { |
279 return Bounds(Type::None(zone())); | 284 return Bounds(Type::None(zone())); |
280 } | 285 } |
281 | 286 |
282 | 287 |
283 Bounds Typer::Visitor::TypeStateValues(Node* node) { | 288 Bounds Typer::Visitor::TypeStateValues(Node* node) { |
284 return Bounds(Type::None(zone())); | 289 return Bounds(Type::None(zone())); |
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 } | 846 } |
842 | 847 |
843 | 848 |
844 void Typer::DecorateGraph(Graph* graph) { | 849 void Typer::DecorateGraph(Graph* graph) { |
845 graph->AddDecorator(new (zone()) TyperDecorator(this)); | 850 graph->AddDecorator(new (zone()) TyperDecorator(this)); |
846 } | 851 } |
847 | 852 |
848 } | 853 } |
849 } | 854 } |
850 } // namespace v8::internal::compiler | 855 } // namespace v8::internal::compiler |
OLD | NEW |