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

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

Issue 2729163002: [turbofan] compute arguments length in deoptimizer (Closed)
Patch Set: fix comment Created 3 years, 9 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
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/verifier.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/typer.h" 5 #include "src/compiler/typer.h"
6 6
7 #include <iomanip> 7 #include <iomanip>
8 8
9 #include "src/base/flags.h" 9 #include "src/base/flags.h"
10 #include "src/bootstrapper.h" 10 #include "src/bootstrapper.h"
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 Type* Typer::Visitor::TypeStateValues(Node* node) { return Type::Internal(); } 841 Type* Typer::Visitor::TypeStateValues(Node* node) { return Type::Internal(); }
842 842
843 Type* Typer::Visitor::TypeTypedStateValues(Node* node) { 843 Type* Typer::Visitor::TypeTypedStateValues(Node* node) {
844 return Type::Internal(); 844 return Type::Internal();
845 } 845 }
846 846
847 Type* Typer::Visitor::TypeArgumentsElementsState(Node* node) { 847 Type* Typer::Visitor::TypeArgumentsElementsState(Node* node) {
848 return Type::Internal(); 848 return Type::Internal();
849 } 849 }
850 850
851 Type* Typer::Visitor::TypeArgumentsLengthState(Node* node) {
852 return Type::Internal();
853 }
854
851 Type* Typer::Visitor::TypeObjectState(Node* node) { return Type::Internal(); } 855 Type* Typer::Visitor::TypeObjectState(Node* node) { return Type::Internal(); }
852 856
853 Type* Typer::Visitor::TypeTypedObjectState(Node* node) { 857 Type* Typer::Visitor::TypeTypedObjectState(Node* node) {
854 return Type::Internal(); 858 return Type::Internal();
855 } 859 }
856 860
857 Type* Typer::Visitor::TypeCall(Node* node) { return Type::Any(); } 861 Type* Typer::Visitor::TypeCall(Node* node) { return Type::Any(); }
858 862
859 863
860 Type* Typer::Visitor::TypeProjection(Node* node) { 864 Type* Typer::Visitor::TypeProjection(Node* node) {
(...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1984 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { 1988 Type* Typer::Visitor::TypeConstant(Handle<Object> value) {
1985 if (Type::IsInteger(*value)) { 1989 if (Type::IsInteger(*value)) {
1986 return Type::Range(value->Number(), value->Number(), zone()); 1990 return Type::Range(value->Number(), value->Number(), zone());
1987 } 1991 }
1988 return Type::NewConstant(value, zone()); 1992 return Type::NewConstant(value, zone());
1989 } 1993 }
1990 1994
1991 } // namespace compiler 1995 } // namespace compiler
1992 } // namespace internal 1996 } // namespace internal
1993 } // namespace v8 1997 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698