| 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 "v8.h" | 5 #include "v8.h" |
| 6 | 6 |
| 7 #include "double.h" | 7 #include "double.h" |
| 8 #include "factory.h" | 8 #include "factory.h" |
| 9 #include "hydrogen-infer-representation.h" | 9 #include "hydrogen-infer-representation.h" |
| 10 #include "property-details-inl.h" | 10 #include "property-details-inl.h" |
| (...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 861 case HValue::kLeaveInlined: | 861 case HValue::kLeaveInlined: |
| 862 case HValue::kLoadFieldByIndex: | 862 case HValue::kLoadFieldByIndex: |
| 863 case HValue::kLoadGlobalGeneric: | 863 case HValue::kLoadGlobalGeneric: |
| 864 case HValue::kLoadNamedField: | 864 case HValue::kLoadNamedField: |
| 865 case HValue::kLoadNamedGeneric: | 865 case HValue::kLoadNamedGeneric: |
| 866 case HValue::kLoadRoot: | 866 case HValue::kLoadRoot: |
| 867 case HValue::kMapEnumLength: | 867 case HValue::kMapEnumLength: |
| 868 case HValue::kMathMinMax: | 868 case HValue::kMathMinMax: |
| 869 case HValue::kParameter: | 869 case HValue::kParameter: |
| 870 case HValue::kPhi: | 870 case HValue::kPhi: |
| 871 case HValue::kPushArgument: | 871 case HValue::kPushArguments: |
| 872 case HValue::kRegExpLiteral: | 872 case HValue::kRegExpLiteral: |
| 873 case HValue::kReturn: | 873 case HValue::kReturn: |
| 874 case HValue::kRor: | 874 case HValue::kRor: |
| 875 case HValue::kSar: | 875 case HValue::kSar: |
| 876 case HValue::kSeqStringGetChar: | 876 case HValue::kSeqStringGetChar: |
| 877 case HValue::kStoreCodeEntry: | 877 case HValue::kStoreCodeEntry: |
| 878 case HValue::kStoreKeyed: | 878 case HValue::kStoreKeyed: |
| 879 case HValue::kStoreNamedGeneric: | 879 case HValue::kStoreNamedGeneric: |
| 880 case HValue::kStringCharCodeAt: | 880 case HValue::kStringCharCodeAt: |
| 881 case HValue::kStringCharFromCode: | 881 case HValue::kStringCharFromCode: |
| (...skipping 3902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4784 break; | 4784 break; |
| 4785 case kExternalMemory: | 4785 case kExternalMemory: |
| 4786 stream->Add("[external-memory]"); | 4786 stream->Add("[external-memory]"); |
| 4787 break; | 4787 break; |
| 4788 } | 4788 } |
| 4789 | 4789 |
| 4790 stream->Add("@%d", offset()); | 4790 stream->Add("@%d", offset()); |
| 4791 } | 4791 } |
| 4792 | 4792 |
| 4793 } } // namespace v8::internal | 4793 } } // namespace v8::internal |
| OLD | NEW |