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

Side by Side Diff: src/code-stubs.h

Issue 23537067: Add support for keyed-call on arrays of fast elements (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ARM port and clean up frameless SP-relative argument fetching Created 7 years, 1 month 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
« no previous file with comments | « src/ast.cc ('k') | src/code-stubs.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 V(InternalArrayNoArgumentConstructor) \ 83 V(InternalArrayNoArgumentConstructor) \
84 V(InternalArraySingleArgumentConstructor) \ 84 V(InternalArraySingleArgumentConstructor) \
85 V(InternalArrayNArgumentsConstructor) \ 85 V(InternalArrayNArgumentsConstructor) \
86 V(KeyedStoreElement) \ 86 V(KeyedStoreElement) \
87 V(DebuggerStatement) \ 87 V(DebuggerStatement) \
88 V(NameDictionaryLookup) \ 88 V(NameDictionaryLookup) \
89 V(ElementsTransitionAndStore) \ 89 V(ElementsTransitionAndStore) \
90 V(TransitionElementsKind) \ 90 V(TransitionElementsKind) \
91 V(StoreArrayLiteralElement) \ 91 V(StoreArrayLiteralElement) \
92 V(StubFailureTrampoline) \ 92 V(StubFailureTrampoline) \
93 V(StubFailureTailCallTrampoline) \
93 V(ArrayConstructor) \ 94 V(ArrayConstructor) \
94 V(InternalArrayConstructor) \ 95 V(InternalArrayConstructor) \
95 V(ProfileEntryHook) \ 96 V(ProfileEntryHook) \
96 V(StoreGlobal) \ 97 V(StoreGlobal) \
97 /* IC Handler stubs */ \ 98 /* IC Handler stubs */ \
98 V(LoadField) \ 99 V(LoadField) \
99 V(KeyedLoadField) 100 V(KeyedLoadField) \
101 V(KeyedArrayCall)
100 102
101 // List of code stubs only used on ARM platforms. 103 // List of code stubs only used on ARM platforms.
102 #if V8_TARGET_ARCH_ARM 104 #if V8_TARGET_ARCH_ARM
103 #define CODE_STUB_LIST_ARM(V) \ 105 #define CODE_STUB_LIST_ARM(V) \
104 V(GetProperty) \ 106 V(GetProperty) \
105 V(SetProperty) \ 107 V(SetProperty) \
106 V(InvokeBuiltin) \ 108 V(InvokeBuiltin) \
107 V(DirectCEntry) 109 V(DirectCEntry)
108 #else 110 #else
109 #define CODE_STUB_LIST_ARM(V) 111 #define CODE_STUB_LIST_ARM(V)
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 bool is_pregenerated = IsPregenerated(isolate); 165 bool is_pregenerated = IsPregenerated(isolate);
164 Code* code = NULL; 166 Code* code = NULL;
165 CHECK(!is_pregenerated || FindCodeInCache(&code, isolate)); 167 CHECK(!is_pregenerated || FindCodeInCache(&code, isolate));
166 return is_pregenerated; 168 return is_pregenerated;
167 } 169 }
168 170
169 // See comment above, where Instanceof is defined. 171 // See comment above, where Instanceof is defined.
170 virtual bool IsPregenerated(Isolate* isolate) { return false; } 172 virtual bool IsPregenerated(Isolate* isolate) { return false; }
171 173
172 static void GenerateStubsAheadOfTime(Isolate* isolate); 174 static void GenerateStubsAheadOfTime(Isolate* isolate);
175 static void GenerateStubsRequiringBuiltinsAheadOfTime(Isolate* isolate);
173 static void GenerateFPStubs(Isolate* isolate); 176 static void GenerateFPStubs(Isolate* isolate);
174 177
175 // Some stubs put untagged junk on the stack that cannot be scanned by the 178 // Some stubs put untagged junk on the stack that cannot be scanned by the
176 // GC. This means that we must be statically sure that no GC can occur while 179 // GC. This means that we must be statically sure that no GC can occur while
177 // they are running. If that is the case they should override this to return 180 // they are running. If that is the case they should override this to return
178 // true, which will cause an assertion if we try to call something that can 181 // true, which will cause an assertion if we try to call something that can
179 // GC or if we try to put a stack frame on top of the junk, which would not 182 // GC or if we try to put a stack frame on top of the junk, which would not
180 // result in a traversable stack. 183 // result in a traversable stack.
181 virtual bool SometimesSetsUpAFrame() { return true; } 184 virtual bool SometimesSetsUpAFrame() { return true; }
182 185
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 275
273 protected: 276 protected:
274 // Generates the assembler code for the stub. 277 // Generates the assembler code for the stub.
275 virtual void Generate(MacroAssembler* masm) = 0; 278 virtual void Generate(MacroAssembler* masm) = 0;
276 }; 279 };
277 280
278 281
279 enum StubFunctionMode { NOT_JS_FUNCTION_STUB_MODE, JS_FUNCTION_STUB_MODE }; 282 enum StubFunctionMode { NOT_JS_FUNCTION_STUB_MODE, JS_FUNCTION_STUB_MODE };
280 enum HandlerArgumentsMode { DONT_PASS_ARGUMENTS, PASS_ARGUMENTS }; 283 enum HandlerArgumentsMode { DONT_PASS_ARGUMENTS, PASS_ARGUMENTS };
281 284
285 enum ContinuationType { NORMAL_CONTINUATION, TAIL_CALL_CONTINUATION };
286
287
282 struct CodeStubInterfaceDescriptor { 288 struct CodeStubInterfaceDescriptor {
283 CodeStubInterfaceDescriptor(); 289 CodeStubInterfaceDescriptor();
284 int register_param_count_; 290 int register_param_count_;
285 291
286 Register stack_parameter_count_; 292 Register stack_parameter_count_;
287 // if hint_stack_parameter_count_ > 0, the code stub can optimize the 293 // if hint_stack_parameter_count_ > 0, the code stub can optimize the
288 // return sequence. Default value is -1, which means it is ignored. 294 // return sequence. Default value is -1, which means it is ignored.
289 int hint_stack_parameter_count_; 295 int hint_stack_parameter_count_;
296 ContinuationType continuation_type_;
290 StubFunctionMode function_mode_; 297 StubFunctionMode function_mode_;
291 Register* register_params_; 298 Register* register_params_;
292 299
293 Address deoptimization_handler_; 300 Address deoptimization_handler_;
294 HandlerArgumentsMode handler_arguments_mode_; 301 HandlerArgumentsMode handler_arguments_mode_;
295 302
303 bool initialized() const { return register_param_count_ >= 0; }
304
305 bool HasTailCallContinuation() const {
306 return continuation_type_ == TAIL_CALL_CONTINUATION;
307 }
308
296 int environment_length() const { 309 int environment_length() const {
297 return register_param_count_; 310 return register_param_count_;
298 } 311 }
299 312
300 bool initialized() const { return register_param_count_ >= 0; }
301
302 void SetMissHandler(ExternalReference handler) { 313 void SetMissHandler(ExternalReference handler) {
303 miss_handler_ = handler; 314 miss_handler_ = handler;
304 has_miss_handler_ = true; 315 has_miss_handler_ = true;
305 // Our miss handler infrastructure doesn't currently support 316 // Our miss handler infrastructure doesn't currently support
306 // variable stack parameter counts. 317 // variable stack parameter counts.
307 ASSERT(!stack_parameter_count_.is_valid()); 318 ASSERT(!stack_parameter_count_.is_valid());
308 } 319 }
309 320
310 ExternalReference miss_handler() { 321 ExternalReference miss_handler() {
311 ASSERT(has_miss_handler_); 322 ASSERT(has_miss_handler_);
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
869 protected: 880 protected:
870 class KindBits: public BitField<Code::Kind, 0, 4> {}; 881 class KindBits: public BitField<Code::Kind, 0, 4> {};
871 virtual Code::Kind kind() const = 0; 882 virtual Code::Kind kind() const = 0;
872 }; 883 };
873 884
874 885
875 class HandlerStub: public HICStub { 886 class HandlerStub: public HICStub {
876 public: 887 public:
877 virtual Code::Kind GetCodeKind() const { return Code::HANDLER; } 888 virtual Code::Kind GetCodeKind() const { return Code::HANDLER; }
878 virtual int GetStubFlags() { return kind(); } 889 virtual int GetStubFlags() { return kind(); }
890
891 protected:
892 HandlerStub() : HICStub() { }
893 virtual int NotMissMinorKey() { return bit_field_; }
894 int bit_field_;
879 }; 895 };
880 896
881 897
882 class LoadFieldStub: public HandlerStub { 898 class LoadFieldStub: public HandlerStub {
883 public: 899 public:
884 LoadFieldStub(bool inobject, int index, Representation representation) { 900 LoadFieldStub(bool inobject, int index, Representation representation) {
885 Initialize(Code::LOAD_IC, inobject, index, representation); 901 Initialize(Code::LOAD_IC, inobject, index, representation);
886 } 902 }
887 903
888 virtual Handle<Code> GenerateCode(Isolate* isolate); 904 virtual Handle<Code> GenerateCode(Isolate* isolate);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 | IndexBits::encode(index) 946 | IndexBits::encode(index)
931 | UnboxedDoubleBits::encode(unboxed_double); 947 | UnboxedDoubleBits::encode(unboxed_double);
932 } 948 }
933 949
934 private: 950 private:
935 STATIC_ASSERT(KindBits::kSize == 4); 951 STATIC_ASSERT(KindBits::kSize == 4);
936 class InobjectBits: public BitField<bool, 4, 1> {}; 952 class InobjectBits: public BitField<bool, 4, 1> {};
937 class IndexBits: public BitField<int, 5, 11> {}; 953 class IndexBits: public BitField<int, 5, 11> {};
938 class UnboxedDoubleBits: public BitField<bool, 16, 1> {}; 954 class UnboxedDoubleBits: public BitField<bool, 16, 1> {};
939 virtual CodeStub::Major MajorKey() { return LoadField; } 955 virtual CodeStub::Major MajorKey() { return LoadField; }
940 virtual int NotMissMinorKey() { return bit_field_; }
941
942 int bit_field_;
943 }; 956 };
944 957
945 958
946 class StoreGlobalStub : public HandlerStub { 959 class StoreGlobalStub : public HandlerStub {
947 public: 960 public:
948 StoreGlobalStub(StrictModeFlag strict_mode, bool is_constant) { 961 StoreGlobalStub(StrictModeFlag strict_mode, bool is_constant) {
949 bit_field_ = StrictModeBits::encode(strict_mode) | 962 bit_field_ = StrictModeBits::encode(strict_mode) |
950 IsConstantBits::encode(is_constant); 963 IsConstantBits::encode(is_constant);
951 } 964 }
952 965
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 Isolate* isolate, 1024 Isolate* isolate,
1012 CodeStubInterfaceDescriptor* descriptor); 1025 CodeStubInterfaceDescriptor* descriptor);
1013 1026
1014 virtual Handle<Code> GenerateCode(Isolate* isolate); 1027 virtual Handle<Code> GenerateCode(Isolate* isolate);
1015 1028
1016 private: 1029 private:
1017 virtual CodeStub::Major MajorKey() { return KeyedLoadField; } 1030 virtual CodeStub::Major MajorKey() { return KeyedLoadField; }
1018 }; 1031 };
1019 1032
1020 1033
1034 class KeyedArrayCallStub: public HICStub {
1035 public:
1036 KeyedArrayCallStub(bool holey, int argc) : HICStub(), argc_(argc) {
1037 bit_field_ = KindBits::encode(Code::KEYED_CALL_IC)
1038 | HoleyBits::encode(holey);
1039 }
1040
1041 virtual Code::Kind kind() const {
1042 return KindBits::decode(bit_field_);
1043 }
1044
1045 virtual Code::ExtraICState GetExtraICState() { return bit_field_; }
1046
1047 ElementsKind elements_kind() {
1048 return HoleyBits::decode(bit_field_) ? FAST_HOLEY_ELEMENTS : FAST_ELEMENTS;
1049 }
1050
1051 int argc() { return argc_; }
1052 virtual int GetStubFlags() { return argc(); }
1053
1054 static bool IsHoley(Handle<Code> code) {
1055 Code::ExtraICState state = code->extra_ic_state();
1056 return HoleyBits::decode(state);
1057 }
1058
1059 virtual void InitializeInterfaceDescriptor(
1060 Isolate* isolate,
1061 CodeStubInterfaceDescriptor* descriptor);
1062
1063 virtual Handle<Code> GenerateCode(Isolate* isolate);
1064
1065 private:
1066 virtual int NotMissMinorKey() {
1067 return GetExtraICState() | ArgcBits::encode(argc_);
1068 }
1069
1070 STATIC_ASSERT(KindBits::kSize == 4);
1071 class HoleyBits: public BitField<bool, 4, 1> {};
1072 STATIC_ASSERT(Code::kArgumentsBits <= kStubMinorKeyBits - 5);
1073 class ArgcBits: public BitField<int, 5, Code::kArgumentsBits> {};
1074 virtual CodeStub::Major MajorKey() { return KeyedArrayCall; }
1075 int bit_field_;
1076 int argc_;
1077 };
1078
1079
1021 class BinaryOpStub: public HydrogenCodeStub { 1080 class BinaryOpStub: public HydrogenCodeStub {
1022 public: 1081 public:
1023 BinaryOpStub(Token::Value op, OverwriteMode mode) 1082 BinaryOpStub(Token::Value op, OverwriteMode mode)
1024 : HydrogenCodeStub(UNINITIALIZED), op_(op), mode_(mode) { 1083 : HydrogenCodeStub(UNINITIALIZED), op_(op), mode_(mode) {
1025 ASSERT(op <= LAST_TOKEN && op >= FIRST_TOKEN); 1084 ASSERT(op <= LAST_TOKEN && op >= FIRST_TOKEN);
1026 Initialize(); 1085 Initialize();
1027 } 1086 }
1028 1087
1029 explicit BinaryOpStub(Code::ExtraICState state) 1088 explicit BinaryOpStub(Code::ExtraICState state)
1030 : op_(decode_token(OpBits::decode(state))), 1089 : op_(decode_token(OpBits::decode(state))),
(...skipping 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after
2392 2451
2393 void Generate(MacroAssembler* masm); 2452 void Generate(MacroAssembler* masm);
2394 2453
2395 bool fp_registers_; 2454 bool fp_registers_;
2396 StubFunctionMode function_mode_; 2455 StubFunctionMode function_mode_;
2397 2456
2398 DISALLOW_COPY_AND_ASSIGN(StubFailureTrampolineStub); 2457 DISALLOW_COPY_AND_ASSIGN(StubFailureTrampolineStub);
2399 }; 2458 };
2400 2459
2401 2460
2461 class StubFailureTailCallTrampolineStub : public PlatformCodeStub {
2462 public:
2463 StubFailureTailCallTrampolineStub() : fp_registers_(CanUseFPRegisters()) {}
2464
2465 virtual bool IsPregenerated(Isolate* isolate) V8_OVERRIDE { return true; }
2466
2467 static void GenerateAheadOfTime(Isolate* isolate);
2468
2469 private:
2470 class FPRegisters: public BitField<bool, 0, 1> {};
2471 Major MajorKey() { return StubFailureTailCallTrampoline; }
2472 int MinorKey() { return FPRegisters::encode(fp_registers_); }
2473
2474 void Generate(MacroAssembler* masm);
2475
2476 bool fp_registers_;
2477
2478 DISALLOW_COPY_AND_ASSIGN(StubFailureTailCallTrampolineStub);
2479 };
2480
2481
2402 class ProfileEntryHookStub : public PlatformCodeStub { 2482 class ProfileEntryHookStub : public PlatformCodeStub {
2403 public: 2483 public:
2404 explicit ProfileEntryHookStub() {} 2484 explicit ProfileEntryHookStub() {}
2405 2485
2406 // The profile entry hook function is not allowed to cause a GC. 2486 // The profile entry hook function is not allowed to cause a GC.
2407 virtual bool SometimesSetsUpAFrame() { return false; } 2487 virtual bool SometimesSetsUpAFrame() { return false; }
2408 2488
2409 // Generates a call to the entry hook if it's enabled. 2489 // Generates a call to the entry hook if it's enabled.
2410 static void MaybeCallEntryHook(MacroAssembler* masm); 2490 static void MaybeCallEntryHook(MacroAssembler* masm);
2411 2491
2412 private: 2492 private:
2413 static void EntryHookTrampoline(intptr_t function, 2493 static void EntryHookTrampoline(intptr_t function,
2414 intptr_t stack_pointer, 2494 intptr_t stack_pointer,
2415 Isolate* isolate); 2495 Isolate* isolate);
2416 2496
2417 Major MajorKey() { return ProfileEntryHook; } 2497 Major MajorKey() { return ProfileEntryHook; }
2418 int MinorKey() { return 0; } 2498 int MinorKey() { return 0; }
2419 2499
2420 void Generate(MacroAssembler* masm); 2500 void Generate(MacroAssembler* masm);
2421 2501
2422 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); 2502 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub);
2423 }; 2503 };
2424 2504
2425 } } // namespace v8::internal 2505 } } // namespace v8::internal
2426 2506
2427 #endif // V8_CODE_STUBS_H_ 2507 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/code-stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698