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

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

Issue 2114613002: [intrinsics] Drop the now obsolete %_DoubleHi and %_DoubleLo intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | « 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/ieee754.h" 8 #include "src/base/ieee754.h"
9 #include "src/base/safe_math.h" 9 #include "src/base/safe_math.h"
10 #include "src/crankshaft/hydrogen-infer-representation.h" 10 #include "src/crankshaft/hydrogen-infer-representation.h"
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 case HValue::kClassOfTestAndBranch: 781 case HValue::kClassOfTestAndBranch:
782 case HValue::kCompareGeneric: 782 case HValue::kCompareGeneric:
783 case HValue::kCompareHoleAndBranch: 783 case HValue::kCompareHoleAndBranch:
784 case HValue::kCompareMap: 784 case HValue::kCompareMap:
785 case HValue::kCompareNumericAndBranch: 785 case HValue::kCompareNumericAndBranch:
786 case HValue::kCompareObjectEqAndBranch: 786 case HValue::kCompareObjectEqAndBranch:
787 case HValue::kConstant: 787 case HValue::kConstant:
788 case HValue::kContext: 788 case HValue::kContext:
789 case HValue::kDebugBreak: 789 case HValue::kDebugBreak:
790 case HValue::kDeclareGlobals: 790 case HValue::kDeclareGlobals:
791 case HValue::kDoubleBits:
792 case HValue::kDummyUse: 791 case HValue::kDummyUse:
793 case HValue::kEnterInlined: 792 case HValue::kEnterInlined:
794 case HValue::kEnvironmentMarker: 793 case HValue::kEnvironmentMarker:
795 case HValue::kForceRepresentation: 794 case HValue::kForceRepresentation:
796 case HValue::kGetCachedArrayIndex: 795 case HValue::kGetCachedArrayIndex:
797 case HValue::kGoto: 796 case HValue::kGoto:
798 case HValue::kHasCachedArrayIndexAndBranch: 797 case HValue::kHasCachedArrayIndexAndBranch:
799 case HValue::kHasInstanceTypeAndBranch: 798 case HValue::kHasInstanceTypeAndBranch:
800 case HValue::kInnerAllocatedObject: 799 case HValue::kInnerAllocatedObject:
801 case HValue::kIsSmiAndBranch: 800 case HValue::kIsSmiAndBranch:
(...skipping 3239 matching lines...) Expand 10 before | Expand all | Expand 10 after
4041 case HObjectAccess::kExternalMemory: 4040 case HObjectAccess::kExternalMemory:
4042 os << "[external-memory]"; 4041 os << "[external-memory]";
4043 break; 4042 break;
4044 } 4043 }
4045 4044
4046 return os << "@" << access.offset(); 4045 return os << "@" << access.offset();
4047 } 4046 }
4048 4047
4049 } // namespace internal 4048 } // namespace internal
4050 } // namespace v8 4049 } // 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