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

Side by Side Diff: src/compiler/typer.cc

Issue 620803003: [turbofan] Add control input to Load and LoadElements. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 months 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | test/cctest/compiler/test-changes-lowering.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 return bounds; 302 return bounds;
303 } 303 }
304 304
305 305
306 Bounds Typer::Visitor::TypeEffectPhi(Node* node) { 306 Bounds Typer::Visitor::TypeEffectPhi(Node* node) {
307 UNREACHABLE(); 307 UNREACHABLE();
308 return Bounds(); 308 return Bounds();
309 } 309 }
310 310
311 311
312 Bounds Typer::Visitor::TypeControlEffect(Node* node) {
313 UNREACHABLE();
314 return Bounds();
315 }
316
317
318 Bounds Typer::Visitor::TypeValueEffect(Node* node) { 312 Bounds Typer::Visitor::TypeValueEffect(Node* node) {
319 UNREACHABLE(); 313 UNREACHABLE();
320 return Bounds(); 314 return Bounds();
321 } 315 }
322 316
323 317
324 Bounds Typer::Visitor::TypeFinish(Node* node) { 318 Bounds Typer::Visitor::TypeFinish(Node* node) {
325 return OperandType(node, 0); 319 return OperandType(node, 0);
326 } 320 }
327 321
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 } 900 }
907 901
908 902
909 void Typer::DecorateGraph(Graph* graph) { 903 void Typer::DecorateGraph(Graph* graph) {
910 graph->AddDecorator(new (zone()) TyperDecorator(this)); 904 graph->AddDecorator(new (zone()) TyperDecorator(this));
911 } 905 }
912 906
913 } 907 }
914 } 908 }
915 } // namespace v8::internal::compiler 909 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | test/cctest/compiler/test-changes-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698