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

Side by Side Diff: src/compiler/escape-analysis.cc

Issue 2962853002: [turbofan] Add toLowerCase, toUpperCase operators to the infamous escape analysis list. (Closed)
Patch Set: Created 3 years, 5 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 | « no previous file | test/mjsunit/compiler/regress-733181.js » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/escape-analysis.h" 5 #include "src/compiler/escape-analysis.h"
6 6
7 #include <limits> 7 #include <limits>
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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 case IrOpcode::kStringLessThan: 831 case IrOpcode::kStringLessThan:
832 case IrOpcode::kStringLessThanOrEqual: 832 case IrOpcode::kStringLessThanOrEqual:
833 case IrOpcode::kTypeGuard: 833 case IrOpcode::kTypeGuard:
834 case IrOpcode::kPlainPrimitiveToNumber: 834 case IrOpcode::kPlainPrimitiveToNumber:
835 case IrOpcode::kPlainPrimitiveToWord32: 835 case IrOpcode::kPlainPrimitiveToWord32:
836 case IrOpcode::kPlainPrimitiveToFloat64: 836 case IrOpcode::kPlainPrimitiveToFloat64:
837 case IrOpcode::kStringCharAt: 837 case IrOpcode::kStringCharAt:
838 case IrOpcode::kStringCharCodeAt: 838 case IrOpcode::kStringCharCodeAt:
839 case IrOpcode::kSeqStringCharCodeAt: 839 case IrOpcode::kSeqStringCharCodeAt:
840 case IrOpcode::kStringIndexOf: 840 case IrOpcode::kStringIndexOf:
841 case IrOpcode::kStringToLowerCaseIntl:
842 case IrOpcode::kStringToUpperCaseIntl:
841 case IrOpcode::kObjectIsDetectableCallable: 843 case IrOpcode::kObjectIsDetectableCallable:
842 case IrOpcode::kObjectIsNaN: 844 case IrOpcode::kObjectIsNaN:
843 case IrOpcode::kObjectIsNonCallable: 845 case IrOpcode::kObjectIsNonCallable:
844 case IrOpcode::kObjectIsNumber: 846 case IrOpcode::kObjectIsNumber:
845 case IrOpcode::kObjectIsReceiver: 847 case IrOpcode::kObjectIsReceiver:
846 case IrOpcode::kObjectIsString: 848 case IrOpcode::kObjectIsString:
847 case IrOpcode::kObjectIsSymbol: 849 case IrOpcode::kObjectIsSymbol:
848 case IrOpcode::kObjectIsUndetectable: 850 case IrOpcode::kObjectIsUndetectable:
849 case IrOpcode::kNumberLessThan: 851 case IrOpcode::kNumberLessThan:
850 case IrOpcode::kNumberLessThanOrEqual: 852 case IrOpcode::kNumberLessThanOrEqual:
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
1784 } 1786 }
1785 } 1787 }
1786 return false; 1788 return false;
1787 } 1789 }
1788 1790
1789 Graph* EscapeAnalysis::graph() const { return status_analysis_->graph(); } 1791 Graph* EscapeAnalysis::graph() const { return status_analysis_->graph(); }
1790 1792
1791 } // namespace compiler 1793 } // namespace compiler
1792 } // namespace internal 1794 } // namespace internal
1793 } // namespace v8 1795 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | test/mjsunit/compiler/regress-733181.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698