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

Side by Side Diff: src/objects.h

Issue 6894003: Better support for 'polymorphic' JS and external arrays (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: merge with latest Created 9 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 12 matching lines...) Expand all
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 #ifndef V8_OBJECTS_H_ 28 #ifndef V8_OBJECTS_H_
29 #define V8_OBJECTS_H_ 29 #define V8_OBJECTS_H_
30 30
31 #include "allocation.h" 31 #include "allocation.h"
32 #include "builtins.h" 32 #include "builtins.h"
33 #include "list.h"
33 #include "smart-pointer.h" 34 #include "smart-pointer.h"
34 #include "unicode-inl.h" 35 #include "unicode-inl.h"
35 #if V8_TARGET_ARCH_ARM 36 #if V8_TARGET_ARCH_ARM
36 #include "arm/constants-arm.h" 37 #include "arm/constants-arm.h"
37 #elif V8_TARGET_ARCH_MIPS 38 #elif V8_TARGET_ARCH_MIPS
38 #include "mips/constants-mips.h" 39 #include "mips/constants-mips.h"
39 #endif 40 #endif
40 41
41 // 42 //
42 // Most object types in the V8 JavaScript are described in this file. 43 // Most object types in the V8 JavaScript are described in this file.
(...skipping 3221 matching lines...) Expand 10 before | Expand all | Expand 10 after
3264 FLAGS_MAX_VALUE = kMaxInt 3265 FLAGS_MAX_VALUE = kMaxInt
3265 }; 3266 };
3266 3267
3267 enum Kind { 3268 enum Kind {
3268 FUNCTION, 3269 FUNCTION,
3269 OPTIMIZED_FUNCTION, 3270 OPTIMIZED_FUNCTION,
3270 STUB, 3271 STUB,
3271 BUILTIN, 3272 BUILTIN,
3272 LOAD_IC, 3273 LOAD_IC,
3273 KEYED_LOAD_IC, 3274 KEYED_LOAD_IC,
3274 KEYED_EXTERNAL_ARRAY_LOAD_IC,
3275 CALL_IC, 3275 CALL_IC,
3276 KEYED_CALL_IC, 3276 KEYED_CALL_IC,
3277 STORE_IC, 3277 STORE_IC,
3278 KEYED_STORE_IC, 3278 KEYED_STORE_IC,
3279 KEYED_EXTERNAL_ARRAY_STORE_IC,
3280 TYPE_RECORDING_UNARY_OP_IC, 3279 TYPE_RECORDING_UNARY_OP_IC,
3281 TYPE_RECORDING_BINARY_OP_IC, 3280 TYPE_RECORDING_BINARY_OP_IC,
3282 COMPARE_IC, 3281 COMPARE_IC,
3283 // No more than 16 kinds. The value currently encoded in four bits in 3282 // No more than 16 kinds. The value currently encoded in four bits in
3284 // Flags. 3283 // Flags.
3285 3284
3286 // Pseudo-kinds. 3285 // Pseudo-kinds.
3287 REGEXP = BUILTIN, 3286 REGEXP = BUILTIN,
3288 FIRST_IC_KIND = LOAD_IC, 3287 FIRST_IC_KIND = LOAD_IC,
3289 LAST_IC_KIND = COMPARE_IC 3288 LAST_IC_KIND = COMPARE_IC
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
3346 inline bool is_keyed_store_stub() { return kind() == KEYED_STORE_IC; } 3345 inline bool is_keyed_store_stub() { return kind() == KEYED_STORE_IC; }
3347 inline bool is_call_stub() { return kind() == CALL_IC; } 3346 inline bool is_call_stub() { return kind() == CALL_IC; }
3348 inline bool is_keyed_call_stub() { return kind() == KEYED_CALL_IC; } 3347 inline bool is_keyed_call_stub() { return kind() == KEYED_CALL_IC; }
3349 inline bool is_type_recording_unary_op_stub() { 3348 inline bool is_type_recording_unary_op_stub() {
3350 return kind() == TYPE_RECORDING_UNARY_OP_IC; 3349 return kind() == TYPE_RECORDING_UNARY_OP_IC;
3351 } 3350 }
3352 inline bool is_type_recording_binary_op_stub() { 3351 inline bool is_type_recording_binary_op_stub() {
3353 return kind() == TYPE_RECORDING_BINARY_OP_IC; 3352 return kind() == TYPE_RECORDING_BINARY_OP_IC;
3354 } 3353 }
3355 inline bool is_compare_ic_stub() { return kind() == COMPARE_IC; } 3354 inline bool is_compare_ic_stub() { return kind() == COMPARE_IC; }
3356 inline bool is_external_array_load_stub() {
3357 return kind() == KEYED_EXTERNAL_ARRAY_LOAD_IC;
3358 }
3359 inline bool is_external_array_store_stub() {
3360 return kind() == KEYED_EXTERNAL_ARRAY_STORE_IC;
3361 }
3362 3355
3363 // [major_key]: For kind STUB or BINARY_OP_IC, the major key. 3356 // [major_key]: For kind STUB or BINARY_OP_IC, the major key.
3364 inline int major_key(); 3357 inline int major_key();
3365 inline void set_major_key(int value); 3358 inline void set_major_key(int value);
3366 3359
3367 // [optimizable]: For FUNCTION kind, tells if it is optimizable. 3360 // [optimizable]: For FUNCTION kind, tells if it is optimizable.
3368 inline bool optimizable(); 3361 inline bool optimizable();
3369 inline void set_optimizable(bool value); 3362 inline void set_optimizable(bool value);
3370 3363
3371 // [has_deoptimization_support]: For FUNCTION kind, tells if it has 3364 // [has_deoptimization_support]: For FUNCTION kind, tells if it has
(...skipping 3340 matching lines...) Expand 10 before | Expand all | Expand 10 after
6712 static inline int set(int value, int bit_position, bool v) { 6705 static inline int set(int value, int bit_position, bool v) {
6713 if (v) { 6706 if (v) {
6714 value |= (1 << bit_position); 6707 value |= (1 << bit_position);
6715 } else { 6708 } else {
6716 value &= ~(1 << bit_position); 6709 value &= ~(1 << bit_position);
6717 } 6710 }
6718 return value; 6711 return value;
6719 } 6712 }
6720 }; 6713 };
6721 6714
6715 class Map;
6716 class Code;
6717 typedef List<Map*> MapList;
6718 typedef List<Code*> CodeList;
6719
6722 } } // namespace v8::internal 6720 } } // namespace v8::internal
6723 6721
6724 #endif // V8_OBJECTS_H_ 6722 #endif // V8_OBJECTS_H_
OLDNEW
« src/ic.cc ('K') | « src/mark-compact.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698