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

Side by Side Diff: src/crankshaft/hydrogen-instructions.cc

Issue 1772423002: Don't do any special normalization if a boilerplate contains function literals. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: mark osr-one/osr-two as skip on ignition/arm Created 4 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/crankshaft/hydrogen-instructions.h ('k') | src/crankshaft/ia32/lithium-codegen-ia32.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/crankshaft/hydrogen-instructions.h" 5 #include "src/crankshaft/hydrogen-instructions.h"
6 6
7 #include "src/base/bits.h" 7 #include "src/base/bits.h"
8 #include "src/base/safe_math.h" 8 #include "src/base/safe_math.h"
9 #include "src/crankshaft/hydrogen-infer-representation.h" 9 #include "src/crankshaft/hydrogen-infer-representation.h"
10 #include "src/double.h" 10 #include "src/double.h"
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 case HValue::kSeqStringSetChar: 866 case HValue::kSeqStringSetChar:
867 case HValue::kShl: 867 case HValue::kShl:
868 case HValue::kShr: 868 case HValue::kShr:
869 case HValue::kSimulate: 869 case HValue::kSimulate:
870 case HValue::kStackCheck: 870 case HValue::kStackCheck:
871 case HValue::kStoreContextSlot: 871 case HValue::kStoreContextSlot:
872 case HValue::kStoreKeyedGeneric: 872 case HValue::kStoreKeyedGeneric:
873 case HValue::kStringAdd: 873 case HValue::kStringAdd:
874 case HValue::kStringCompareAndBranch: 874 case HValue::kStringCompareAndBranch:
875 case HValue::kSub: 875 case HValue::kSub:
876 case HValue::kToFastProperties:
877 case HValue::kTransitionElementsKind: 876 case HValue::kTransitionElementsKind:
878 case HValue::kTrapAllocationMemento: 877 case HValue::kTrapAllocationMemento:
879 case HValue::kTypeof: 878 case HValue::kTypeof:
880 case HValue::kUnaryMathOperation: 879 case HValue::kUnaryMathOperation:
881 case HValue::kWrapReceiver: 880 case HValue::kWrapReceiver:
882 return true; 881 return true;
883 } 882 }
884 UNREACHABLE(); 883 UNREACHABLE();
885 return true; 884 return true;
886 } 885 }
(...skipping 3735 matching lines...) Expand 10 before | Expand all | Expand 10 after
4622 case HObjectAccess::kExternalMemory: 4621 case HObjectAccess::kExternalMemory:
4623 os << "[external-memory]"; 4622 os << "[external-memory]";
4624 break; 4623 break;
4625 } 4624 }
4626 4625
4627 return os << "@" << access.offset(); 4626 return os << "@" << access.offset();
4628 } 4627 }
4629 4628
4630 } // namespace internal 4629 } // namespace internal
4631 } // namespace v8 4630 } // namespace v8
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen-instructions.h ('k') | src/crankshaft/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698