| 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/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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 switch (opcode()) { | 769 switch (opcode()) { |
| 770 case HValue::kAbnormalExit: | 770 case HValue::kAbnormalExit: |
| 771 case HValue::kAccessArgumentsAt: | 771 case HValue::kAccessArgumentsAt: |
| 772 case HValue::kAllocate: | 772 case HValue::kAllocate: |
| 773 case HValue::kArgumentsElements: | 773 case HValue::kArgumentsElements: |
| 774 case HValue::kArgumentsLength: | 774 case HValue::kArgumentsLength: |
| 775 case HValue::kArgumentsObject: | 775 case HValue::kArgumentsObject: |
| 776 case HValue::kBlockEntry: | 776 case HValue::kBlockEntry: |
| 777 case HValue::kBoundsCheckBaseIndexInformation: | 777 case HValue::kBoundsCheckBaseIndexInformation: |
| 778 case HValue::kCallFunction: | 778 case HValue::kCallFunction: |
| 779 case HValue::kCallNew: | |
| 780 case HValue::kCallNewArray: | 779 case HValue::kCallNewArray: |
| 781 case HValue::kCallStub: | 780 case HValue::kCallStub: |
| 782 case HValue::kCapturedObject: | 781 case HValue::kCapturedObject: |
| 783 case HValue::kClassOfTestAndBranch: | 782 case HValue::kClassOfTestAndBranch: |
| 784 case HValue::kCompareGeneric: | 783 case HValue::kCompareGeneric: |
| 785 case HValue::kCompareHoleAndBranch: | 784 case HValue::kCompareHoleAndBranch: |
| 786 case HValue::kCompareMap: | 785 case HValue::kCompareMap: |
| 787 case HValue::kCompareMinusZeroAndBranch: | 786 case HValue::kCompareMinusZeroAndBranch: |
| 788 case HValue::kCompareNumericAndBranch: | 787 case HValue::kCompareNumericAndBranch: |
| 789 case HValue::kCompareObjectEqAndBranch: | 788 case HValue::kCompareObjectEqAndBranch: |
| (...skipping 3905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |