| 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 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 case HValue::kParameter: | 866 case HValue::kParameter: |
| 867 case HValue::kPhi: | 867 case HValue::kPhi: |
| 868 case HValue::kPushArgument: | 868 case HValue::kPushArgument: |
| 869 case HValue::kRegExpLiteral: | 869 case HValue::kRegExpLiteral: |
| 870 case HValue::kReturn: | 870 case HValue::kReturn: |
| 871 case HValue::kRor: | 871 case HValue::kRor: |
| 872 case HValue::kSar: | 872 case HValue::kSar: |
| 873 case HValue::kSeqStringGetChar: | 873 case HValue::kSeqStringGetChar: |
| 874 case HValue::kStoreCodeEntry: | 874 case HValue::kStoreCodeEntry: |
| 875 case HValue::kStoreKeyed: | 875 case HValue::kStoreKeyed: |
| 876 case HValue::kStoreNamedField: |
| 876 case HValue::kStoreNamedGeneric: | 877 case HValue::kStoreNamedGeneric: |
| 877 case HValue::kStringCharCodeAt: | 878 case HValue::kStringCharCodeAt: |
| 878 case HValue::kStringCharFromCode: | 879 case HValue::kStringCharFromCode: |
| 879 case HValue::kThisFunction: | 880 case HValue::kThisFunction: |
| 880 case HValue::kTypeofIsAndBranch: | 881 case HValue::kTypeofIsAndBranch: |
| 881 case HValue::kUnknownOSRValue: | 882 case HValue::kUnknownOSRValue: |
| 882 case HValue::kUseConst: | 883 case HValue::kUseConst: |
| 883 return false; | 884 return false; |
| 884 | 885 |
| 885 case HValue::kAdd: | 886 case HValue::kAdd: |
| (...skipping 28 matching lines...) Expand all Loading... |
| 914 case HValue::kOsrEntry: | 915 case HValue::kOsrEntry: |
| 915 case HValue::kPower: | 916 case HValue::kPower: |
| 916 case HValue::kSeqStringSetChar: | 917 case HValue::kSeqStringSetChar: |
| 917 case HValue::kShl: | 918 case HValue::kShl: |
| 918 case HValue::kShr: | 919 case HValue::kShr: |
| 919 case HValue::kSimulate: | 920 case HValue::kSimulate: |
| 920 case HValue::kStackCheck: | 921 case HValue::kStackCheck: |
| 921 case HValue::kStoreContextSlot: | 922 case HValue::kStoreContextSlot: |
| 922 case HValue::kStoreGlobalCell: | 923 case HValue::kStoreGlobalCell: |
| 923 case HValue::kStoreKeyedGeneric: | 924 case HValue::kStoreKeyedGeneric: |
| 924 case HValue::kStoreNamedField: | |
| 925 case HValue::kStringAdd: | 925 case HValue::kStringAdd: |
| 926 case HValue::kStringCompareAndBranch: | 926 case HValue::kStringCompareAndBranch: |
| 927 case HValue::kSub: | 927 case HValue::kSub: |
| 928 case HValue::kToFastProperties: | 928 case HValue::kToFastProperties: |
| 929 case HValue::kTransitionElementsKind: | 929 case HValue::kTransitionElementsKind: |
| 930 case HValue::kTrapAllocationMemento: | 930 case HValue::kTrapAllocationMemento: |
| 931 case HValue::kTypeof: | 931 case HValue::kTypeof: |
| 932 case HValue::kUnaryMathOperation: | 932 case HValue::kUnaryMathOperation: |
| 933 case HValue::kWrapReceiver: | 933 case HValue::kWrapReceiver: |
| 934 return true; | 934 return true; |
| (...skipping 3817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4752 break; | 4752 break; |
| 4753 case kExternalMemory: | 4753 case kExternalMemory: |
| 4754 stream->Add("[external-memory]"); | 4754 stream->Add("[external-memory]"); |
| 4755 break; | 4755 break; |
| 4756 } | 4756 } |
| 4757 | 4757 |
| 4758 stream->Add("@%d", offset()); | 4758 stream->Add("@%d", offset()); |
| 4759 } | 4759 } |
| 4760 | 4760 |
| 4761 } } // namespace v8::internal | 4761 } } // namespace v8::internal |
| OLD | NEW |