blob: 3b10d064f6878ff4852f26e630fd8f1dbb540f22 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2006-2009 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
27
28#ifndef V8_IC_H_
29#define V8_IC_H_
30
Ben Murdochb0fe1622011-05-05 13:52:32 +010031#include "macro-assembler.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000032
33namespace v8 {
34namespace internal {
35
Leon Clarkee46be812010-01-19 14:06:41 +000036
Steve Blocka7e24c12009-10-30 11:49:00 +000037// IC_UTIL_LIST defines all utility functions called from generated
38// inline caching code. The argument for the macro, ICU, is the function name.
39#define IC_UTIL_LIST(ICU) \
40 ICU(LoadIC_Miss) \
41 ICU(KeyedLoadIC_Miss) \
42 ICU(CallIC_Miss) \
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010043 ICU(KeyedCallIC_Miss) \
Steve Blocka7e24c12009-10-30 11:49:00 +000044 ICU(StoreIC_Miss) \
Steve Block6ded16b2010-05-10 14:33:55 +010045 ICU(StoreIC_ArrayLength) \
Steve Blocka7e24c12009-10-30 11:49:00 +000046 ICU(SharedStoreIC_ExtendStorage) \
47 ICU(KeyedStoreIC_Miss) \
48 /* Utilities for IC stubs. */ \
49 ICU(LoadCallbackProperty) \
50 ICU(StoreCallbackProperty) \
51 ICU(LoadPropertyWithInterceptorOnly) \
52 ICU(LoadPropertyWithInterceptorForLoad) \
53 ICU(LoadPropertyWithInterceptorForCall) \
Andrei Popescu402d9372010-02-26 13:31:12 +000054 ICU(KeyedLoadPropertyWithInterceptor) \
Steve Block6ded16b2010-05-10 14:33:55 +010055 ICU(StoreInterceptorProperty) \
Ben Murdochb0fe1622011-05-05 13:52:32 +010056 ICU(BinaryOp_Patch) \
57 ICU(TypeRecordingBinaryOp_Patch) \
58 ICU(CompareIC_Miss)
Steve Blocka7e24c12009-10-30 11:49:00 +000059//
60// IC is the base class for LoadIC, StoreIC, CallIC, KeyedLoadIC,
61// and KeyedStoreIC.
62//
63class IC {
64 public:
65
66 // The ids for utility called from the generated code.
67 enum UtilityId {
68 #define CONST_NAME(name) k##name,
69 IC_UTIL_LIST(CONST_NAME)
70 #undef CONST_NAME
71 kUtilityCount
72 };
73
74 // Looks up the address of the named utility.
75 static Address AddressFromUtilityId(UtilityId id);
76
77 // Alias the inline cache state type to make the IC code more readable.
78 typedef InlineCacheState State;
79
80 // The IC code is either invoked with no extra frames on the stack
81 // or with a single extra frame for supporting calls.
82 enum FrameDepth {
83 NO_EXTRA_FRAME = 0,
84 EXTRA_CALL_FRAME = 1
85 };
86
87 // Construct the IC structure with the given number of extra
88 // JavaScript frames on the stack.
89 explicit IC(FrameDepth depth);
90
91 // Get the call-site target; used for determining the state.
92 Code* target() { return GetTargetAtAddress(address()); }
93 inline Address address();
94
Steve Block6ded16b2010-05-10 14:33:55 +010095 // Compute the current IC state based on the target stub, receiver and name.
96 static State StateFrom(Code* target, Object* receiver, Object* name);
Steve Blocka7e24c12009-10-30 11:49:00 +000097
98 // Clear the inline cache to initial state.
99 static void Clear(Address address);
100
101 // Computes the reloc info for this IC. This is a fairly expensive
102 // operation as it has to search through the heap to find the code
103 // object that contains this IC site.
104 RelocInfo::Mode ComputeMode();
105
106 // Returns if this IC is for contextual (no explicit receiver)
107 // access to properties.
Leon Clarkee46be812010-01-19 14:06:41 +0000108 bool IsContextual(Handle<Object> receiver) {
109 if (receiver->IsGlobalObject()) {
110 return SlowIsContextual();
111 } else {
112 ASSERT(!SlowIsContextual());
113 return false;
114 }
115 }
116
117 bool SlowIsContextual() {
Steve Blocka7e24c12009-10-30 11:49:00 +0000118 return ComputeMode() == RelocInfo::CODE_TARGET_CONTEXT;
119 }
120
Steve Block8defd9f2010-07-08 12:39:36 +0100121 // Determines which map must be used for keeping the code stub.
122 // These methods should not be called with undefined or null.
123 static inline InlineCacheHolderFlag GetCodeCacheForObject(Object* object,
124 JSObject* holder);
125 static inline InlineCacheHolderFlag GetCodeCacheForObject(JSObject* object,
126 JSObject* holder);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100127 static inline JSObject* GetCodeCacheHolder(Object* object,
128 InlineCacheHolderFlag holder);
Steve Blocka7e24c12009-10-30 11:49:00 +0000129
130 protected:
131 Address fp() const { return fp_; }
132 Address pc() const { return *pc_address_; }
133
134#ifdef ENABLE_DEBUGGER_SUPPORT
135 // Computes the address in the original code when the code running is
136 // containing break points (calls to DebugBreakXXX builtins).
137 Address OriginalCodeAddress();
138#endif
139
140 // Set the call-site target.
141 void set_target(Code* code) { SetTargetAtAddress(address(), code); }
142
143#ifdef DEBUG
144 static void TraceIC(const char* type,
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100145 Handle<Object> name,
Steve Blocka7e24c12009-10-30 11:49:00 +0000146 State old_state,
147 Code* new_target,
148 const char* extra_info = "");
149#endif
150
151 static Failure* TypeError(const char* type,
152 Handle<Object> object,
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100153 Handle<Object> key);
Steve Blocka7e24c12009-10-30 11:49:00 +0000154 static Failure* ReferenceError(const char* type, Handle<String> name);
155
156 // Access the target code for the given IC address.
157 static inline Code* GetTargetAtAddress(Address address);
158 static inline void SetTargetAtAddress(Address address, Code* target);
159
160 private:
161 // Frame pointer for the frame that uses (calls) the IC.
162 Address fp_;
163
164 // All access to the program counter of an IC structure is indirect
165 // to make the code GC safe. This feature is crucial since
166 // GetProperty and SetProperty are called and they in turn might
167 // invoke the garbage collector.
168 Address* pc_address_;
169
170 DISALLOW_IMPLICIT_CONSTRUCTORS(IC);
171};
172
173
174// An IC_Utility encapsulates IC::UtilityId. It exists mainly because you
175// cannot make forward declarations to an enum.
176class IC_Utility {
177 public:
178 explicit IC_Utility(IC::UtilityId id)
179 : address_(IC::AddressFromUtilityId(id)), id_(id) {}
180
181 Address address() const { return address_; }
182
183 IC::UtilityId id() const { return id_; }
184 private:
185 Address address_;
186 IC::UtilityId id_;
187};
188
189
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100190class CallICBase: public IC {
191 protected:
192 explicit CallICBase(Code::Kind kind) : IC(EXTRA_CALL_FRAME), kind_(kind) {}
Steve Blocka7e24c12009-10-30 11:49:00 +0000193
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100194 public:
John Reck59135872010-11-02 12:39:01 -0700195 MUST_USE_RESULT MaybeObject* LoadFunction(State state,
Ben Murdochb8e0da22011-05-16 14:20:40 +0100196 Code::ExtraICState extra_ic_state,
John Reck59135872010-11-02 12:39:01 -0700197 Handle<Object> object,
198 Handle<String> name);
Steve Blocka7e24c12009-10-30 11:49:00 +0000199
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100200 protected:
201 Code::Kind kind_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000202
Ben Murdochb8e0da22011-05-16 14:20:40 +0100203 bool TryUpdateExtraICState(LookupResult* lookup,
204 Handle<Object> object,
205 Code::ExtraICState* extra_ic_state);
206
207 MUST_USE_RESULT MaybeObject* ComputeMonomorphicStub(
208 LookupResult* lookup,
209 State state,
210 Code::ExtraICState extra_ic_state,
211 Handle<Object> object,
212 Handle<String> name);
213
Steve Blocka7e24c12009-10-30 11:49:00 +0000214 // Update the inline cache and the global stub cache based on the
215 // lookup result.
216 void UpdateCaches(LookupResult* lookup,
217 State state,
Ben Murdochb8e0da22011-05-16 14:20:40 +0100218 Code::ExtraICState extra_ic_state,
Steve Blocka7e24c12009-10-30 11:49:00 +0000219 Handle<Object> object,
220 Handle<String> name);
221
222 // Returns a JSFunction if the object can be called as a function,
223 // and patches the stack to be ready for the call.
224 // Otherwise, it returns the undefined value.
225 Object* TryCallAsFunction(Object* object);
226
Leon Clarkee46be812010-01-19 14:06:41 +0000227 void ReceiverToObject(Handle<Object> object);
228
Steve Blocka7e24c12009-10-30 11:49:00 +0000229 static void Clear(Address address, Code* target);
230 friend class IC;
231};
232
233
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100234class CallIC: public CallICBase {
235 public:
236 CallIC() : CallICBase(Code::CALL_IC) { ASSERT(target()->is_call_stub()); }
237
238 // Code generator routines.
239 static void GenerateInitialize(MacroAssembler* masm, int argc) {
240 GenerateMiss(masm, argc);
241 }
242 static void GenerateMiss(MacroAssembler* masm, int argc);
243 static void GenerateMegamorphic(MacroAssembler* masm, int argc);
244 static void GenerateNormal(MacroAssembler* masm, int argc);
245};
246
247
248class KeyedCallIC: public CallICBase {
249 public:
250 KeyedCallIC() : CallICBase(Code::KEYED_CALL_IC) {
251 ASSERT(target()->is_keyed_call_stub());
252 }
253
John Reck59135872010-11-02 12:39:01 -0700254 MUST_USE_RESULT MaybeObject* LoadFunction(State state,
255 Handle<Object> object,
256 Handle<Object> key);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100257
258 // Code generator routines.
259 static void GenerateInitialize(MacroAssembler* masm, int argc) {
260 GenerateMiss(masm, argc);
261 }
262 static void GenerateMiss(MacroAssembler* masm, int argc);
263 static void GenerateMegamorphic(MacroAssembler* masm, int argc);
264 static void GenerateNormal(MacroAssembler* masm, int argc);
265};
266
267
Steve Blocka7e24c12009-10-30 11:49:00 +0000268class LoadIC: public IC {
269 public:
270 LoadIC() : IC(NO_EXTRA_FRAME) { ASSERT(target()->is_load_stub()); }
271
John Reck59135872010-11-02 12:39:01 -0700272 MUST_USE_RESULT MaybeObject* Load(State state,
273 Handle<Object> object,
274 Handle<String> name);
Steve Blocka7e24c12009-10-30 11:49:00 +0000275
276 // Code generator routines.
Andrei Popescu402d9372010-02-26 13:31:12 +0000277 static void GenerateInitialize(MacroAssembler* masm) { GenerateMiss(masm); }
278 static void GeneratePreMonomorphic(MacroAssembler* masm) {
279 GenerateMiss(masm);
280 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000281 static void GenerateMiss(MacroAssembler* masm);
282 static void GenerateMegamorphic(MacroAssembler* masm);
283 static void GenerateNormal(MacroAssembler* masm);
284
285 // Specialized code generator routines.
286 static void GenerateArrayLength(MacroAssembler* masm);
Steve Block1e0659c2011-05-24 12:43:12 +0100287 static void GenerateStringLength(MacroAssembler* masm,
288 bool support_wrappers);
Steve Blocka7e24c12009-10-30 11:49:00 +0000289 static void GenerateFunctionPrototype(MacroAssembler* masm);
290
Kristian Monsen25f61362010-05-21 11:50:48 +0100291 // Clear the use of the inlined version.
292 static void ClearInlinedVersion(Address address);
293
Steve Blocka7e24c12009-10-30 11:49:00 +0000294 // The offset from the inlined patch site to the start of the
295 // inlined load instruction. It is architecture-dependent, and not
296 // used on ARM.
297 static const int kOffsetToLoadInstruction;
298
299 private:
Steve Blocka7e24c12009-10-30 11:49:00 +0000300 // Update the inline cache and the global stub cache based on the
301 // lookup result.
302 void UpdateCaches(LookupResult* lookup,
303 State state,
304 Handle<Object> object,
305 Handle<String> name);
306
307 // Stub accessors.
308 static Code* megamorphic_stub() {
309 return Builtins::builtin(Builtins::LoadIC_Megamorphic);
310 }
311 static Code* initialize_stub() {
312 return Builtins::builtin(Builtins::LoadIC_Initialize);
313 }
314 static Code* pre_monomorphic_stub() {
315 return Builtins::builtin(Builtins::LoadIC_PreMonomorphic);
316 }
317
318 static void Clear(Address address, Code* target);
319
Steve Blocka7e24c12009-10-30 11:49:00 +0000320 static bool PatchInlinedLoad(Address address, Object* map, int index);
321
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100322 static bool PatchInlinedContextualLoad(Address address,
323 Object* map,
Ben Murdochf87a2032010-10-22 12:50:53 +0100324 Object* cell,
325 bool is_dont_delete);
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100326
Steve Blocka7e24c12009-10-30 11:49:00 +0000327 friend class IC;
328};
329
330
331class KeyedLoadIC: public IC {
332 public:
333 KeyedLoadIC() : IC(NO_EXTRA_FRAME) { ASSERT(target()->is_keyed_load_stub()); }
334
John Reck59135872010-11-02 12:39:01 -0700335 MUST_USE_RESULT MaybeObject* Load(State state,
336 Handle<Object> object,
337 Handle<Object> key);
Steve Blocka7e24c12009-10-30 11:49:00 +0000338
339 // Code generator routines.
340 static void GenerateMiss(MacroAssembler* masm);
Andrei Popescu402d9372010-02-26 13:31:12 +0000341 static void GenerateRuntimeGetProperty(MacroAssembler* masm);
342 static void GenerateInitialize(MacroAssembler* masm) { GenerateMiss(masm); }
343 static void GeneratePreMonomorphic(MacroAssembler* masm) {
344 GenerateMiss(masm);
345 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000346 static void GenerateGeneric(MacroAssembler* masm);
Leon Clarkee46be812010-01-19 14:06:41 +0000347 static void GenerateString(MacroAssembler* masm);
Steve Blocka7e24c12009-10-30 11:49:00 +0000348
Andrei Popescu402d9372010-02-26 13:31:12 +0000349 static void GenerateIndexedInterceptor(MacroAssembler* masm);
Steve Block3ce2e202009-11-05 08:53:23 +0000350
Steve Blocka7e24c12009-10-30 11:49:00 +0000351 // Clear the use of the inlined version.
352 static void ClearInlinedVersion(Address address);
353
Leon Clarked91b9f72010-01-27 17:25:45 +0000354 // Bit mask to be tested against bit field for the cases when
355 // generic stub should go into slow case.
356 // Access check is necessary explicitly since generic stub does not perform
357 // map checks.
358 static const int kSlowCaseBitFieldMask =
359 (1 << Map::kIsAccessCheckNeeded) | (1 << Map::kHasIndexedInterceptor);
360
Steve Block6ded16b2010-05-10 14:33:55 +0100361 private:
Steve Blocka7e24c12009-10-30 11:49:00 +0000362 // Update the inline cache.
363 void UpdateCaches(LookupResult* lookup,
364 State state,
365 Handle<Object> object,
366 Handle<String> name);
367
368 // Stub accessors.
369 static Code* initialize_stub() {
370 return Builtins::builtin(Builtins::KeyedLoadIC_Initialize);
371 }
372 static Code* megamorphic_stub() {
373 return Builtins::builtin(Builtins::KeyedLoadIC_Generic);
374 }
375 static Code* generic_stub() {
376 return Builtins::builtin(Builtins::KeyedLoadIC_Generic);
377 }
378 static Code* pre_monomorphic_stub() {
379 return Builtins::builtin(Builtins::KeyedLoadIC_PreMonomorphic);
380 }
Leon Clarkee46be812010-01-19 14:06:41 +0000381 static Code* string_stub() {
382 return Builtins::builtin(Builtins::KeyedLoadIC_String);
383 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000384
Andrei Popescu402d9372010-02-26 13:31:12 +0000385 static Code* indexed_interceptor_stub() {
386 return Builtins::builtin(Builtins::KeyedLoadIC_IndexedInterceptor);
387 }
388
Steve Blocka7e24c12009-10-30 11:49:00 +0000389 static void Clear(Address address, Code* target);
390
391 // Support for patching the map that is checked in an inlined
392 // version of keyed load.
393 static bool PatchInlinedLoad(Address address, Object* map);
394
395 friend class IC;
396};
397
398
399class StoreIC: public IC {
400 public:
Steve Block1e0659c2011-05-24 12:43:12 +0100401
402 enum StoreICStrictMode {
403 kStoreICNonStrict = kNonStrictMode,
404 kStoreICStrict = kStrictMode
405 };
406
Steve Blocka7e24c12009-10-30 11:49:00 +0000407 StoreIC() : IC(NO_EXTRA_FRAME) { ASSERT(target()->is_store_stub()); }
408
John Reck59135872010-11-02 12:39:01 -0700409 MUST_USE_RESULT MaybeObject* Store(State state,
Steve Block1e0659c2011-05-24 12:43:12 +0100410 Code::ExtraICState extra_ic_state,
John Reck59135872010-11-02 12:39:01 -0700411 Handle<Object> object,
412 Handle<String> name,
413 Handle<Object> value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000414
415 // Code generators for stub routines. Only called once at startup.
Leon Clarke4515c472010-02-03 11:58:03 +0000416 static void GenerateInitialize(MacroAssembler* masm) { GenerateMiss(masm); }
Steve Blocka7e24c12009-10-30 11:49:00 +0000417 static void GenerateMiss(MacroAssembler* masm);
Steve Block1e0659c2011-05-24 12:43:12 +0100418 static void GenerateMegamorphic(MacroAssembler* masm,
419 Code::ExtraICState extra_ic_state);
Steve Block6ded16b2010-05-10 14:33:55 +0100420 static void GenerateArrayLength(MacroAssembler* masm);
Steve Block8defd9f2010-07-08 12:39:36 +0100421 static void GenerateNormal(MacroAssembler* masm);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100422 static void GenerateGlobalProxy(MacroAssembler* masm);
Steve Blocka7e24c12009-10-30 11:49:00 +0000423
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100424 // Clear the use of an inlined version.
425 static void ClearInlinedVersion(Address address);
426
427 // The offset from the inlined patch site to the start of the
428 // inlined store instruction.
429 static const int kOffsetToStoreInstruction;
430
Steve Blocka7e24c12009-10-30 11:49:00 +0000431 private:
Steve Blocka7e24c12009-10-30 11:49:00 +0000432 // Update the inline cache and the global stub cache based on the
433 // lookup result.
434 void UpdateCaches(LookupResult* lookup,
Steve Block1e0659c2011-05-24 12:43:12 +0100435 State state,
436 Code::ExtraICState extra_ic_state,
437 Handle<JSObject> receiver,
Steve Blocka7e24c12009-10-30 11:49:00 +0000438 Handle<String> name,
439 Handle<Object> value);
440
441 // Stub accessors.
442 static Code* megamorphic_stub() {
443 return Builtins::builtin(Builtins::StoreIC_Megamorphic);
444 }
Steve Block1e0659c2011-05-24 12:43:12 +0100445 static Code* megamorphic_stub_strict() {
446 return Builtins::builtin(Builtins::StoreIC_Megamorphic_Strict);
447 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000448 static Code* initialize_stub() {
449 return Builtins::builtin(Builtins::StoreIC_Initialize);
450 }
Steve Block1e0659c2011-05-24 12:43:12 +0100451 static Code* initialize_stub_strict() {
452 return Builtins::builtin(Builtins::StoreIC_Initialize_Strict);
453 }
Ben Murdochb0fe1622011-05-05 13:52:32 +0100454 static Code* global_proxy_stub() {
455 return Builtins::builtin(Builtins::StoreIC_GlobalProxy);
456 }
Steve Block1e0659c2011-05-24 12:43:12 +0100457 static Code* global_proxy_stub_strict() {
458 return Builtins::builtin(Builtins::StoreIC_GlobalProxy_Strict);
459 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000460
461 static void Clear(Address address, Code* target);
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100462
463 // Support for patching the index and the map that is checked in an
464 // inlined version of the named store.
465 static bool PatchInlinedStore(Address address, Object* map, int index);
466
Steve Blocka7e24c12009-10-30 11:49:00 +0000467 friend class IC;
468};
469
470
471class KeyedStoreIC: public IC {
472 public:
473 KeyedStoreIC() : IC(NO_EXTRA_FRAME) { }
474
John Reck59135872010-11-02 12:39:01 -0700475 MUST_USE_RESULT MaybeObject* Store(State state,
476 Handle<Object> object,
477 Handle<Object> name,
478 Handle<Object> value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000479
480 // Code generators for stub routines. Only called once at startup.
Andrei Popescu402d9372010-02-26 13:31:12 +0000481 static void GenerateInitialize(MacroAssembler* masm) { GenerateMiss(masm); }
Steve Blocka7e24c12009-10-30 11:49:00 +0000482 static void GenerateMiss(MacroAssembler* masm);
Andrei Popescu402d9372010-02-26 13:31:12 +0000483 static void GenerateRuntimeSetProperty(MacroAssembler* masm);
Steve Blocka7e24c12009-10-30 11:49:00 +0000484 static void GenerateGeneric(MacroAssembler* masm);
Steve Blocka7e24c12009-10-30 11:49:00 +0000485
486 // Clear the inlined version so the IC is always hit.
487 static void ClearInlinedVersion(Address address);
488
489 // Restore the inlined version so the fast case can get hit.
490 static void RestoreInlinedVersion(Address address);
491
492 private:
Steve Blocka7e24c12009-10-30 11:49:00 +0000493 // Update the inline cache.
494 void UpdateCaches(LookupResult* lookup,
495 State state,
496 Handle<JSObject> receiver,
497 Handle<String> name,
498 Handle<Object> value);
499
500 // Stub accessors.
501 static Code* initialize_stub() {
502 return Builtins::builtin(Builtins::KeyedStoreIC_Initialize);
503 }
504 static Code* megamorphic_stub() {
505 return Builtins::builtin(Builtins::KeyedStoreIC_Generic);
506 }
507 static Code* generic_stub() {
508 return Builtins::builtin(Builtins::KeyedStoreIC_Generic);
509 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000510
511 static void Clear(Address address, Code* target);
512
513 // Support for patching the map that is checked in an inlined
514 // version of keyed store.
515 // The address is the patch point for the IC call
516 // (Assembler::kCallTargetAddressOffset before the end of
517 // the call/return address).
518 // The map is the new map that the inlined code should check against.
519 static bool PatchInlinedStore(Address address, Object* map);
520
521 friend class IC;
522};
523
524
Steve Block6ded16b2010-05-10 14:33:55 +0100525class BinaryOpIC: public IC {
526 public:
527
528 enum TypeInfo {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100529 UNINIT_OR_SMI,
Steve Block6ded16b2010-05-10 14:33:55 +0100530 DEFAULT, // Initial state. When first executed, patches to one
531 // of the following states depending on the operands types.
532 HEAP_NUMBERS, // Both arguments are HeapNumbers.
533 STRINGS, // At least one of the arguments is String.
534 GENERIC // Non-specialized case (processes any type combination).
535 };
536
537 BinaryOpIC() : IC(NO_EXTRA_FRAME) { }
538
539 void patch(Code* code);
540
Steve Block6ded16b2010-05-10 14:33:55 +0100541 static const char* GetName(TypeInfo type_info);
542
543 static State ToState(TypeInfo type_info);
544
545 static TypeInfo GetTypeInfo(Object* left, Object* right);
546};
547
Ben Murdochb0fe1622011-05-05 13:52:32 +0100548
549// Type Recording BinaryOpIC, that records the types of the inputs and outputs.
550class TRBinaryOpIC: public IC {
551 public:
552
553 enum TypeInfo {
554 UNINITIALIZED,
555 SMI,
556 INT32,
557 HEAP_NUMBER,
558 STRING, // Only used for addition operation. At least one string operand.
559 GENERIC
560 };
561
562 TRBinaryOpIC() : IC(NO_EXTRA_FRAME) { }
563
564 void patch(Code* code);
565
566 static const char* GetName(TypeInfo type_info);
567
568 static State ToState(TypeInfo type_info);
569
570 static TypeInfo GetTypeInfo(Handle<Object> left, Handle<Object> right);
571
572 static TypeInfo JoinTypes(TypeInfo x, TypeInfo y);
573};
574
575
576class CompareIC: public IC {
577 public:
578 enum State {
579 UNINITIALIZED,
580 SMIS,
581 HEAP_NUMBERS,
582 OBJECTS,
583 GENERIC
584 };
585
586 explicit CompareIC(Token::Value op) : IC(EXTRA_CALL_FRAME), op_(op) { }
587
588 // Update the inline cache for the given operands.
589 void UpdateCaches(Handle<Object> x, Handle<Object> y);
590
591 // Factory method for getting an uninitialized compare stub.
592 static Handle<Code> GetUninitialized(Token::Value op);
593
594 // Helper function for computing the condition for a compare operation.
595 static Condition ComputeCondition(Token::Value op);
596
597 // Helper function for determining the state of a compare IC.
598 static State ComputeState(Code* target);
599
600 static const char* GetStateName(State state);
601
602 private:
603 State TargetState(State state, bool has_inlined_smi_code,
604 Handle<Object> x, Handle<Object> y);
605
606 bool strict() const { return op_ == Token::EQ_STRICT; }
607 Condition GetCondition() const { return ComputeCondition(op_); }
608 State GetState() { return ComputeState(target()); }
609
610 Token::Value op_;
611};
612
613// Helper for TRBinaryOpIC and CompareIC.
614void PatchInlinedSmiCode(Address address);
615
Steve Blocka7e24c12009-10-30 11:49:00 +0000616} } // namespace v8::internal
617
618#endif // V8_IC_H_