| 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 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 case HValue::kSeqStringSetChar: | 866 case HValue::kSeqStringSetChar: |
| 867 case HValue::kShl: | 867 case HValue::kShl: |
| 868 case HValue::kShr: | 868 case HValue::kShr: |
| 869 case HValue::kSimulate: | 869 case HValue::kSimulate: |
| 870 case HValue::kStackCheck: | 870 case HValue::kStackCheck: |
| 871 case HValue::kStoreContextSlot: | 871 case HValue::kStoreContextSlot: |
| 872 case HValue::kStoreKeyedGeneric: | 872 case HValue::kStoreKeyedGeneric: |
| 873 case HValue::kStringAdd: | 873 case HValue::kStringAdd: |
| 874 case HValue::kStringCompareAndBranch: | 874 case HValue::kStringCompareAndBranch: |
| 875 case HValue::kSub: | 875 case HValue::kSub: |
| 876 case HValue::kToFastProperties: | |
| 877 case HValue::kTransitionElementsKind: | 876 case HValue::kTransitionElementsKind: |
| 878 case HValue::kTrapAllocationMemento: | 877 case HValue::kTrapAllocationMemento: |
| 879 case HValue::kTypeof: | 878 case HValue::kTypeof: |
| 880 case HValue::kUnaryMathOperation: | 879 case HValue::kUnaryMathOperation: |
| 881 case HValue::kWrapReceiver: | 880 case HValue::kWrapReceiver: |
| 882 return true; | 881 return true; |
| 883 } | 882 } |
| 884 UNREACHABLE(); | 883 UNREACHABLE(); |
| 885 return true; | 884 return true; |
| 886 } | 885 } |
| (...skipping 3735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4622 case HObjectAccess::kExternalMemory: | 4621 case HObjectAccess::kExternalMemory: |
| 4623 os << "[external-memory]"; | 4622 os << "[external-memory]"; |
| 4624 break; | 4623 break; |
| 4625 } | 4624 } |
| 4626 | 4625 |
| 4627 return os << "@" << access.offset(); | 4626 return os << "@" << access.offset(); |
| 4628 } | 4627 } |
| 4629 | 4628 |
| 4630 } // namespace internal | 4629 } // namespace internal |
| 4631 } // namespace v8 | 4630 } // namespace v8 |
| OLD | NEW |