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

Side by Side Diff: src/ic/ic-inl.h

Issue 2534613002: [ic] Use validity cells to protect keyed element stores against object's prototype chain modificati… (Closed)
Patch Set: The fix Created 4 years 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_IC_INL_H_ 5 #ifndef V8_IC_INL_H_
6 #define V8_IC_INL_H_ 6 #define V8_IC_INL_H_
7 7
8 #include "src/ic/ic.h" 8 #include "src/ic/ic.h"
9 9
10 #include "src/debug/debug.h" 10 #include "src/debug/debug.h"
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 void IC::set_target(Code* code) { 87 void IC::set_target(Code* code) {
88 SetTargetAtAddress(address(), code, constant_pool()); 88 SetTargetAtAddress(address(), code, constant_pool());
89 } 89 }
90 90
91 Code* IC::target() const { 91 Code* IC::target() const {
92 return GetTargetAtAddress(address(), constant_pool()); 92 return GetTargetAtAddress(address(), constant_pool());
93 } 93 }
94 94
95 bool IC::IsHandler(Object* object) { 95 bool IC::IsHandler(Object* object) {
96 return (object->IsSmi() && (object != nullptr)) || object->IsTuple3() || 96 return (object->IsSmi() && (object != nullptr)) || object->IsTuple2() ||
97 object->IsFixedArray() || 97 object->IsTuple3() || object->IsFixedArray() ||
98 (object->IsCode() && Code::cast(object)->is_handler()); 98 (object->IsCode() && Code::cast(object)->is_handler());
99 } 99 }
100 100
101 Handle<Map> IC::GetHandlerCacheHolder(Handle<Map> receiver_map, 101 Handle<Map> IC::GetHandlerCacheHolder(Handle<Map> receiver_map,
102 bool receiver_is_holder, Isolate* isolate, 102 bool receiver_is_holder, Isolate* isolate,
103 CacheHolderFlag* flag) { 103 CacheHolderFlag* flag) {
104 if (receiver_is_holder) { 104 if (receiver_is_holder) {
105 *flag = kCacheOnReceiver; 105 *flag = kCacheOnReceiver;
106 return receiver_map; 106 return receiver_map;
107 } 107 }
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 bool IC::AddressIsDeoptimizedCode(Isolate* isolate, Address address) { 148 bool IC::AddressIsDeoptimizedCode(Isolate* isolate, Address address) {
149 Code* host = 149 Code* host =
150 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code; 150 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code;
151 return (host->kind() == Code::OPTIMIZED_FUNCTION && 151 return (host->kind() == Code::OPTIMIZED_FUNCTION &&
152 host->marked_for_deoptimization()); 152 host->marked_for_deoptimization());
153 } 153 }
154 } // namespace internal 154 } // namespace internal
155 } // namespace v8 155 } // namespace v8
156 156
157 #endif // V8_IC_INL_H_ 157 #endif // V8_IC_INL_H_
OLDNEW
« src/ic/accessor-assembler.cc ('K') | « src/ic/ic-compiler.cc ('k') | src/lookup.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698