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

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

Issue 2083453002: [builtins] Introduce proper Float64Tan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 case HValue::kBlockEntry: 778 case HValue::kBlockEntry:
779 case HValue::kCallNewArray: 779 case HValue::kCallNewArray:
780 case HValue::kCapturedObject: 780 case HValue::kCapturedObject:
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::kConstructDouble:
789 case HValue::kContext: 788 case HValue::kContext:
790 case HValue::kDebugBreak: 789 case HValue::kDebugBreak:
791 case HValue::kDeclareGlobals: 790 case HValue::kDeclareGlobals:
792 case HValue::kDoubleBits: 791 case HValue::kDoubleBits:
793 case HValue::kDummyUse: 792 case HValue::kDummyUse:
794 case HValue::kEnterInlined: 793 case HValue::kEnterInlined:
795 case HValue::kEnvironmentMarker: 794 case HValue::kEnvironmentMarker:
796 case HValue::kForceRepresentation: 795 case HValue::kForceRepresentation:
797 case HValue::kGetCachedArrayIndex: 796 case HValue::kGetCachedArrayIndex:
798 case HValue::kGoto: 797 case HValue::kGoto:
(...skipping 3243 matching lines...) Expand 10 before | Expand all | Expand 10 after
4042 case HObjectAccess::kExternalMemory: 4041 case HObjectAccess::kExternalMemory:
4043 os << "[external-memory]"; 4042 os << "[external-memory]";
4044 break; 4043 break;
4045 } 4044 }
4046 4045
4047 return os << "@" << access.offset(); 4046 return os << "@" << access.offset();
4048 } 4047 }
4049 4048
4050 } // namespace internal 4049 } // namespace internal
4051 } // namespace v8 4050 } // 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