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: | |
877 case HValue::kStoreNamedGeneric: | 876 case HValue::kStoreNamedGeneric: |
878 case HValue::kStringCharCodeAt: | 877 case HValue::kStringCharCodeAt: |
879 case HValue::kStringCharFromCode: | 878 case HValue::kStringCharFromCode: |
880 case HValue::kThisFunction: | 879 case HValue::kThisFunction: |
881 case HValue::kTypeofIsAndBranch: | 880 case HValue::kTypeofIsAndBranch: |
882 case HValue::kUnknownOSRValue: | 881 case HValue::kUnknownOSRValue: |
883 case HValue::kUseConst: | 882 case HValue::kUseConst: |
884 return false; | 883 return false; |
885 | 884 |
886 case HValue::kAdd: | 885 case HValue::kAdd: |
(...skipping 28 matching lines...) Expand all Loading... |
915 case HValue::kOsrEntry: | 914 case HValue::kOsrEntry: |
916 case HValue::kPower: | 915 case HValue::kPower: |
917 case HValue::kSeqStringSetChar: | 916 case HValue::kSeqStringSetChar: |
918 case HValue::kShl: | 917 case HValue::kShl: |
919 case HValue::kShr: | 918 case HValue::kShr: |
920 case HValue::kSimulate: | 919 case HValue::kSimulate: |
921 case HValue::kStackCheck: | 920 case HValue::kStackCheck: |
922 case HValue::kStoreContextSlot: | 921 case HValue::kStoreContextSlot: |
923 case HValue::kStoreGlobalCell: | 922 case HValue::kStoreGlobalCell: |
924 case HValue::kStoreKeyedGeneric: | 923 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 |