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

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

Issue 1479233002: Deprecate the %IsConstructCall intrinsic completely. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_js-use-new-target-3
Patch Set: Rebased. Created 5 years 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.h » ('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 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 case HValue::kDummyUse: 795 case HValue::kDummyUse:
796 case HValue::kEnterInlined: 796 case HValue::kEnterInlined:
797 case HValue::kEnvironmentMarker: 797 case HValue::kEnvironmentMarker:
798 case HValue::kForceRepresentation: 798 case HValue::kForceRepresentation:
799 case HValue::kGetCachedArrayIndex: 799 case HValue::kGetCachedArrayIndex:
800 case HValue::kGoto: 800 case HValue::kGoto:
801 case HValue::kHasCachedArrayIndexAndBranch: 801 case HValue::kHasCachedArrayIndexAndBranch:
802 case HValue::kHasInstanceTypeAndBranch: 802 case HValue::kHasInstanceTypeAndBranch:
803 case HValue::kInnerAllocatedObject: 803 case HValue::kInnerAllocatedObject:
804 case HValue::kInstanceOf: 804 case HValue::kInstanceOf:
805 case HValue::kIsConstructCallAndBranch:
806 case HValue::kHasInPrototypeChainAndBranch: 805 case HValue::kHasInPrototypeChainAndBranch:
807 case HValue::kIsSmiAndBranch: 806 case HValue::kIsSmiAndBranch:
808 case HValue::kIsStringAndBranch: 807 case HValue::kIsStringAndBranch:
809 case HValue::kIsUndetectableAndBranch: 808 case HValue::kIsUndetectableAndBranch:
810 case HValue::kLeaveInlined: 809 case HValue::kLeaveInlined:
811 case HValue::kLoadFieldByIndex: 810 case HValue::kLoadFieldByIndex:
812 case HValue::kLoadGlobalGeneric: 811 case HValue::kLoadGlobalGeneric:
813 case HValue::kLoadNamedField: 812 case HValue::kLoadNamedField:
814 case HValue::kLoadNamedGeneric: 813 case HValue::kLoadNamedGeneric:
815 case HValue::kLoadRoot: 814 case HValue::kLoadRoot:
(...skipping 3879 matching lines...) Expand 10 before | Expand all | Expand 10 after
4695 case HObjectAccess::kExternalMemory: 4694 case HObjectAccess::kExternalMemory:
4696 os << "[external-memory]"; 4695 os << "[external-memory]";
4697 break; 4696 break;
4698 } 4697 }
4699 4698
4700 return os << "@" << access.offset(); 4699 return os << "@" << access.offset();
4701 } 4700 }
4702 4701
4703 } // namespace internal 4702 } // namespace internal
4704 } // namespace v8 4703 } // namespace v8
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen-instructions.h ('k') | src/crankshaft/ia32/lithium-codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698