OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |