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

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

Issue 442253002: Add deoptimization translations. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressing review comments. Created 6 years, 4 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/opcodes.h ('k') | test/cctest/cctest.status » ('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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
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::TypeFrameState(Node* node) { 270 Bounds Typer::Visitor::TypeFrameState(Node* node) {
271 return Bounds(Type::None(zone())); 271 return Bounds(Type::None(zone()));
272 } 272 }
273 273
274 274
275 Bounds Typer::Visitor::TypeStateValues(Node* node) {
276 return Bounds(Type::None(zone()));
277 }
278
279
275 Bounds Typer::Visitor::TypeCall(Node* node) { 280 Bounds Typer::Visitor::TypeCall(Node* node) {
276 return Bounds::Unbounded(zone()); 281 return Bounds::Unbounded(zone());
277 } 282 }
278 283
279 284
280 Bounds Typer::Visitor::TypeProjection(Node* node) { 285 Bounds Typer::Visitor::TypeProjection(Node* node) {
281 // TODO(titzer): use the output type of the input to determine the bounds. 286 // TODO(titzer): use the output type of the input to determine the bounds.
282 return Bounds::Unbounded(zone()); 287 return Bounds::Unbounded(zone());
283 } 288 }
284 289
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 } 833 }
829 834
830 835
831 void Typer::DecorateGraph(Graph* graph) { 836 void Typer::DecorateGraph(Graph* graph) {
832 graph->AddDecorator(new (zone()) TyperDecorator(this)); 837 graph->AddDecorator(new (zone()) TyperDecorator(this));
833 } 838 }
834 839
835 } 840 }
836 } 841 }
837 } // namespace v8::internal::compiler 842 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/opcodes.h ('k') | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698