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

Side by Side Diff: src/objects.h

Issue 2324803002: [Parser] Avoid on-the-fly internalization for natives_syntax. (Closed)
Patch Set: Created 4 years, 3 months 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/heap/object-stats.cc ('k') | src/parsing/parser.cc » ('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 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 V(ENUM_CACHE_SUB_TYPE) \ 782 V(ENUM_CACHE_SUB_TYPE) \
783 V(ENUM_INDICES_CACHE_SUB_TYPE) \ 783 V(ENUM_INDICES_CACHE_SUB_TYPE) \
784 V(DEPENDENT_CODE_SUB_TYPE) \ 784 V(DEPENDENT_CODE_SUB_TYPE) \
785 V(DICTIONARY_ELEMENTS_SUB_TYPE) \ 785 V(DICTIONARY_ELEMENTS_SUB_TYPE) \
786 V(DICTIONARY_PROPERTIES_SUB_TYPE) \ 786 V(DICTIONARY_PROPERTIES_SUB_TYPE) \
787 V(EMPTY_PROPERTIES_DICTIONARY_SUB_TYPE) \ 787 V(EMPTY_PROPERTIES_DICTIONARY_SUB_TYPE) \
788 V(FAST_ELEMENTS_SUB_TYPE) \ 788 V(FAST_ELEMENTS_SUB_TYPE) \
789 V(FAST_PROPERTIES_SUB_TYPE) \ 789 V(FAST_PROPERTIES_SUB_TYPE) \
790 V(FAST_TEMPLATE_INSTANTIATIONS_CACHE_SUB_TYPE) \ 790 V(FAST_TEMPLATE_INSTANTIATIONS_CACHE_SUB_TYPE) \
791 V(HANDLER_TABLE_SUB_TYPE) \ 791 V(HANDLER_TABLE_SUB_TYPE) \
792 V(INTRINSIC_FUNCTION_NAMES_SUB_TYPE) \
793 V(JS_COLLECTION_SUB_TYPE) \ 792 V(JS_COLLECTION_SUB_TYPE) \
794 V(JS_WEAK_COLLECTION_SUB_TYPE) \ 793 V(JS_WEAK_COLLECTION_SUB_TYPE) \
795 V(LITERALS_ARRAY_SUB_TYPE) \ 794 V(LITERALS_ARRAY_SUB_TYPE) \
796 V(MAP_CODE_CACHE_SUB_TYPE) \ 795 V(MAP_CODE_CACHE_SUB_TYPE) \
797 V(NOSCRIPT_SHARED_FUNCTION_INFOS_SUB_TYPE) \ 796 V(NOSCRIPT_SHARED_FUNCTION_INFOS_SUB_TYPE) \
798 V(NUMBER_STRING_CACHE_SUB_TYPE) \ 797 V(NUMBER_STRING_CACHE_SUB_TYPE) \
799 V(OBJECT_TO_CODE_SUB_TYPE) \ 798 V(OBJECT_TO_CODE_SUB_TYPE) \
800 V(OPTIMIZED_CODE_LITERALS_SUB_TYPE) \ 799 V(OPTIMIZED_CODE_LITERALS_SUB_TYPE) \
801 V(OPTIMIZED_CODE_MAP_SUB_TYPE) \ 800 V(OPTIMIZED_CODE_MAP_SUB_TYPE) \
802 V(PROTOTYPE_USERS_SUB_TYPE) \ 801 V(PROTOTYPE_USERS_SUB_TYPE) \
(...skipping 10423 matching lines...) Expand 10 before | Expand all | Expand 10 after
11226 } 11225 }
11227 return value; 11226 return value;
11228 } 11227 }
11229 }; 11228 };
11230 11229
11231 11230
11232 } // NOLINT, false-positive due to second-order macros. 11231 } // NOLINT, false-positive due to second-order macros.
11233 } // NOLINT, false-positive due to second-order macros. 11232 } // NOLINT, false-positive due to second-order macros.
11234 11233
11235 #endif // V8_OBJECTS_H_ 11234 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/heap/object-stats.cc ('k') | src/parsing/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698