Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: src/objects.h

Issue 2597013004: [ic] Always use generic ICs for growing element stores on arguments (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/ic/ic.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 #ifndef V8_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 V(FixedUint32Array) \ 1036 V(FixedUint32Array) \
1037 V(FixedInt32Array) \ 1037 V(FixedInt32Array) \
1038 V(FixedFloat32Array) \ 1038 V(FixedFloat32Array) \
1039 V(FixedFloat64Array) \ 1039 V(FixedFloat64Array) \
1040 V(FixedUint8ClampedArray) \ 1040 V(FixedUint8ClampedArray) \
1041 V(ByteArray) \ 1041 V(ByteArray) \
1042 V(BytecodeArray) \ 1042 V(BytecodeArray) \
1043 V(FreeSpace) \ 1043 V(FreeSpace) \
1044 V(JSReceiver) \ 1044 V(JSReceiver) \
1045 V(JSObject) \ 1045 V(JSObject) \
1046 V(JSArgumentsObject) \
1046 V(JSContextExtensionObject) \ 1047 V(JSContextExtensionObject) \
1047 V(JSGeneratorObject) \ 1048 V(JSGeneratorObject) \
1048 V(JSModuleNamespace) \ 1049 V(JSModuleNamespace) \
1049 V(Map) \ 1050 V(Map) \
1050 V(DescriptorArray) \ 1051 V(DescriptorArray) \
1051 V(FrameArray) \ 1052 V(FrameArray) \
1052 V(TransitionArray) \ 1053 V(TransitionArray) \
1053 V(LiteralsArray) \ 1054 V(LiteralsArray) \
1054 V(TypeFeedbackMetadata) \ 1055 V(TypeFeedbackMetadata) \
1055 V(TypeFeedbackVector) \ 1056 V(TypeFeedbackVector) \
(...skipping 10651 matching lines...) Expand 10 before | Expand all | Expand 10 after
11707 } 11708 }
11708 }; 11709 };
11709 11710
11710 11711
11711 } // NOLINT, false-positive due to second-order macros. 11712 } // NOLINT, false-positive due to second-order macros.
11712 } // NOLINT, false-positive due to second-order macros. 11713 } // NOLINT, false-positive due to second-order macros.
11713 11714
11714 #include "src/objects/object-macros-undef.h" 11715 #include "src/objects/object-macros-undef.h"
11715 11716
11716 #endif // V8_OBJECTS_H_ 11717 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/ic/ic.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698