| 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/hydrogen-instructions.h" | 5 #include "src/hydrogen-instructions.h" |
| 6 | 6 |
| 7 #include "src/base/bits.h" | 7 #include "src/base/bits.h" |
| 8 #include "src/double.h" | 8 #include "src/double.h" |
| 9 #include "src/elements.h" | 9 #include "src/elements.h" |
| 10 #include "src/factory.h" | 10 #include "src/factory.h" |
| (...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 case HValue::kLoadContextSlot: | 873 case HValue::kLoadContextSlot: |
| 874 case HValue::kLoadFunctionPrototype: | 874 case HValue::kLoadFunctionPrototype: |
| 875 case HValue::kLoadKeyed: | 875 case HValue::kLoadKeyed: |
| 876 case HValue::kLoadKeyedGeneric: | 876 case HValue::kLoadKeyedGeneric: |
| 877 case HValue::kMathFloorOfDiv: | 877 case HValue::kMathFloorOfDiv: |
| 878 case HValue::kMaybeGrowElements: | 878 case HValue::kMaybeGrowElements: |
| 879 case HValue::kMod: | 879 case HValue::kMod: |
| 880 case HValue::kMul: | 880 case HValue::kMul: |
| 881 case HValue::kOsrEntry: | 881 case HValue::kOsrEntry: |
| 882 case HValue::kPower: | 882 case HValue::kPower: |
| 883 case HValue::kPrologue: |
| 883 case HValue::kRor: | 884 case HValue::kRor: |
| 884 case HValue::kSar: | 885 case HValue::kSar: |
| 885 case HValue::kSeqStringSetChar: | 886 case HValue::kSeqStringSetChar: |
| 886 case HValue::kShl: | 887 case HValue::kShl: |
| 887 case HValue::kShr: | 888 case HValue::kShr: |
| 888 case HValue::kSimulate: | 889 case HValue::kSimulate: |
| 889 case HValue::kStackCheck: | 890 case HValue::kStackCheck: |
| 890 case HValue::kStoreContextSlot: | 891 case HValue::kStoreContextSlot: |
| 891 case HValue::kStoreKeyedGeneric: | 892 case HValue::kStoreKeyedGeneric: |
| 892 case HValue::kStringAdd: | 893 case HValue::kStringAdd: |
| (...skipping 3827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4720 case HObjectAccess::kExternalMemory: | 4721 case HObjectAccess::kExternalMemory: |
| 4721 os << "[external-memory]"; | 4722 os << "[external-memory]"; |
| 4722 break; | 4723 break; |
| 4723 } | 4724 } |
| 4724 | 4725 |
| 4725 return os << "@" << access.offset(); | 4726 return os << "@" << access.offset(); |
| 4726 } | 4727 } |
| 4727 | 4728 |
| 4728 } // namespace internal | 4729 } // namespace internal |
| 4729 } // namespace v8 | 4730 } // namespace v8 |
| OLD | NEW |