blob: 6a86921a415759c40ee0eaf60ed882b62c1981be [file] [log] [blame]
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001// Copyright 2012 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// 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_INL_H_
29#define V8_IC_INL_H_
30
31#include "ic.h"
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000032
33#include "compiler.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000034#include "debug.h"
35#include "macro-assembler.h"
36
kasperl@chromium.org71affb52009-05-26 05:44:31 +000037namespace v8 {
38namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039
40
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000041Address IC::address() const {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042 // Get the address of the call.
ager@chromium.org4af710e2009-09-15 12:20:11 +000043 Address result = pc() - Assembler::kCallTargetAddressOffset;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000044
ager@chromium.org65dad4b2009-04-23 08:48:43 +000045#ifdef ENABLE_DEBUGGER_SUPPORT
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000046 Debug* debug = Isolate::Current()->debug();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000047 // First check if any break points are active if not just return the address
48 // of the call.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000049 if (!debug->has_break_points()) return result;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000050
51 // At least one break point is active perform additional test to ensure that
52 // break point locations are updated correctly.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000053 if (debug->IsDebugBreak(Assembler::target_address_at(result))) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000054 // If the call site is a call to debug break then return the address in
55 // the original code instead of the address in the running code. This will
56 // cause the original code to be updated and keeps the breakpoint active in
57 // the running code.
58 return OriginalCodeAddress();
59 } else {
60 // No break point here just return the address of the call.
61 return result;
62 }
ager@chromium.org65dad4b2009-04-23 08:48:43 +000063#else
64 return result;
65#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000066}
67
68
69Code* IC::GetTargetAtAddress(Address address) {
ager@chromium.org8bb60582008-12-11 12:02:20 +000070 // Get the target address of the IC.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000071 Address target = Assembler::target_address_at(address);
ager@chromium.org8bb60582008-12-11 12:02:20 +000072 // Convert target address to the code object. Code::GetCodeFromTargetAddress
73 // is safe for use during GC where the map might be marked.
74 Code* result = Code::GetCodeFromTargetAddress(target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000075 ASSERT(result->is_inline_cache_stub());
76 return result;
77}
78
79
80void IC::SetTargetAtAddress(Address address, Code* target) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +000081 ASSERT(target->is_inline_cache_stub() || target->is_compare_ic_stub());
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +000082 Code* old_target = GetTargetAtAddress(address);
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000083#ifdef DEBUG
84 // STORE_IC and KEYED_STORE_IC use Code::extra_ic_state() to mark
85 // ICs as strict mode. The strict-ness of the IC must be preserved.
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000086 if (old_target->kind() == Code::STORE_IC ||
87 old_target->kind() == Code::KEYED_STORE_IC) {
ulan@chromium.org65a89c22012-02-14 11:46:07 +000088 ASSERT(Code::GetStrictMode(old_target->extra_ic_state()) ==
89 Code::GetStrictMode(target->extra_ic_state()));
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000090 }
91#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000092 Assembler::set_target_address_at(address, target->instruction_start());
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000093 target->GetHeap()->incremental_marking()->RecordCodeTargetPatch(address,
94 target);
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +000095 PostPatching(address, target, old_target);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000096}
97
98
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +000099InlineCacheHolderFlag IC::GetCodeCacheForObject(Object* object,
100 JSObject* holder) {
101 if (object->IsJSObject()) {
102 return GetCodeCacheForObject(JSObject::cast(object), holder);
103 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000104 // If the object is a value, we use the prototype map for the cache.
105 ASSERT(object->IsString() || object->IsNumber() || object->IsBoolean());
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000106 return PROTOTYPE_MAP;
107}
108
109
110InlineCacheHolderFlag IC::GetCodeCacheForObject(JSObject* object,
111 JSObject* holder) {
112 // Fast-properties and global objects store stubs in their own maps.
113 // Slow properties objects use prototype's map (unless the property is its own
114 // when holder == object). It works because slow properties objects having
115 // the same prototype (or a prototype with the same map) and not having
116 // the property are interchangeable for such a stub.
117 if (holder != object &&
118 !object->HasFastProperties() &&
119 !object->IsJSGlobalProxy() &&
120 !object->IsJSGlobalObject()) {
121 return PROTOTYPE_MAP;
122 }
123 return OWN_MAP;
124}
125
126
ricow@chromium.org65fae842010-08-25 15:26:24 +0000127JSObject* IC::GetCodeCacheHolder(Object* object, InlineCacheHolderFlag holder) {
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000128 Object* map_owner = (holder == OWN_MAP ? object : object->GetPrototype());
129 ASSERT(map_owner->IsJSObject());
ricow@chromium.org65fae842010-08-25 15:26:24 +0000130 return JSObject::cast(map_owner);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000131}
132
133
134} } // namespace v8::internal
135
136#endif // V8_IC_INL_H_