| 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 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 case HValue::kCallWithDescriptor: | 842 case HValue::kCallWithDescriptor: |
| 843 case HValue::kChange: | 843 case HValue::kChange: |
| 844 case HValue::kCheckArrayBufferNotNeutered: | 844 case HValue::kCheckArrayBufferNotNeutered: |
| 845 case HValue::kCheckHeapObject: | 845 case HValue::kCheckHeapObject: |
| 846 case HValue::kCheckInstanceType: | 846 case HValue::kCheckInstanceType: |
| 847 case HValue::kCheckMapValue: | 847 case HValue::kCheckMapValue: |
| 848 case HValue::kCheckMaps: | 848 case HValue::kCheckMaps: |
| 849 case HValue::kCheckSmi: | 849 case HValue::kCheckSmi: |
| 850 case HValue::kCheckValue: | 850 case HValue::kCheckValue: |
| 851 case HValue::kClampToUint8: | 851 case HValue::kClampToUint8: |
| 852 case HValue::kDateField: | |
| 853 case HValue::kDeoptimize: | 852 case HValue::kDeoptimize: |
| 854 case HValue::kDiv: | 853 case HValue::kDiv: |
| 855 case HValue::kForInCacheArray: | 854 case HValue::kForInCacheArray: |
| 856 case HValue::kForInPrepareMap: | 855 case HValue::kForInPrepareMap: |
| 857 case HValue::kHasInPrototypeChainAndBranch: | 856 case HValue::kHasInPrototypeChainAndBranch: |
| 858 case HValue::kInvokeFunction: | 857 case HValue::kInvokeFunction: |
| 859 case HValue::kLoadContextSlot: | 858 case HValue::kLoadContextSlot: |
| 860 case HValue::kLoadFunctionPrototype: | 859 case HValue::kLoadFunctionPrototype: |
| 861 case HValue::kLoadKeyed: | 860 case HValue::kLoadKeyed: |
| 862 case HValue::kLoadKeyedGeneric: | 861 case HValue::kLoadKeyedGeneric: |
| (...skipping 3831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4694 case HObjectAccess::kExternalMemory: | 4693 case HObjectAccess::kExternalMemory: |
| 4695 os << "[external-memory]"; | 4694 os << "[external-memory]"; |
| 4696 break; | 4695 break; |
| 4697 } | 4696 } |
| 4698 | 4697 |
| 4699 return os << "@" << access.offset(); | 4698 return os << "@" << access.offset(); |
| 4700 } | 4699 } |
| 4701 | 4700 |
| 4702 } // namespace internal | 4701 } // namespace internal |
| 4703 } // namespace v8 | 4702 } // namespace v8 |
| OLD | NEW |