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

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

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: rebase Created 3 years, 10 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/operator-properties.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 1667 matching lines...) Expand 10 before | Expand all | Expand 10 after
1678 Type* Typer::Visitor::TypeJSGeneratorRestoreContinuation(Node* node) { 1678 Type* Typer::Visitor::TypeJSGeneratorRestoreContinuation(Node* node) {
1679 return Type::SignedSmall(); 1679 return Type::SignedSmall();
1680 } 1680 }
1681 1681
1682 Type* Typer::Visitor::TypeJSGeneratorRestoreRegister(Node* node) { 1682 Type* Typer::Visitor::TypeJSGeneratorRestoreRegister(Node* node) {
1683 return Type::Any(); 1683 return Type::Any();
1684 } 1684 }
1685 1685
1686 Type* Typer::Visitor::TypeJSStackCheck(Node* node) { return Type::Any(); } 1686 Type* Typer::Visitor::TypeJSStackCheck(Node* node) { return Type::Any(); }
1687 1687
1688 Type* Typer::Visitor::TypeJSDebugger(Node* node) { return Type::Any(); }
1689
1688 // Simplified operators. 1690 // Simplified operators.
1689 1691
1690 Type* Typer::Visitor::TypeBooleanNot(Node* node) { return Type::Boolean(); } 1692 Type* Typer::Visitor::TypeBooleanNot(Node* node) { return Type::Boolean(); }
1691 1693
1692 Type* Typer::Visitor::TypeNumberEqual(Node* node) { return Type::Boolean(); } 1694 Type* Typer::Visitor::TypeNumberEqual(Node* node) { return Type::Boolean(); }
1693 1695
1694 Type* Typer::Visitor::TypeNumberLessThan(Node* node) { return Type::Boolean(); } 1696 Type* Typer::Visitor::TypeNumberLessThan(Node* node) { return Type::Boolean(); }
1695 1697
1696 Type* Typer::Visitor::TypeNumberLessThanOrEqual(Node* node) { 1698 Type* Typer::Visitor::TypeNumberLessThanOrEqual(Node* node) {
1697 return Type::Boolean(); 1699 return Type::Boolean();
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
1940 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { 1942 Type* Typer::Visitor::TypeConstant(Handle<Object> value) {
1941 if (Type::IsInteger(*value)) { 1943 if (Type::IsInteger(*value)) {
1942 return Type::Range(value->Number(), value->Number(), zone()); 1944 return Type::Range(value->Number(), value->Number(), zone());
1943 } 1945 }
1944 return Type::NewConstant(value, zone()); 1946 return Type::NewConstant(value, zone());
1945 } 1947 }
1946 1948
1947 } // namespace compiler 1949 } // namespace compiler
1948 } // namespace internal 1950 } // namespace internal
1949 } // namespace v8 1951 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/operator-properties.cc ('k') | src/compiler/verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698