| OLD | NEW |
| 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/compiler.h" | 10 #include "src/compiler.h" |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 JSFunction* IC::GetRootConstructor(Map* receiver_map, Context* native_context) { | 166 JSFunction* IC::GetRootConstructor(Map* receiver_map, Context* native_context) { |
| 167 Isolate* isolate = receiver_map->GetIsolate(); | 167 Isolate* isolate = receiver_map->GetIsolate(); |
| 168 if (receiver_map == isolate->heap()->boolean_map()) { | 168 if (receiver_map == isolate->heap()->boolean_map()) { |
| 169 return native_context->boolean_function(); | 169 return native_context->boolean_function(); |
| 170 } else if (receiver_map->instance_type() == HEAP_NUMBER_TYPE) { | 170 } else if (receiver_map->instance_type() == HEAP_NUMBER_TYPE) { |
| 171 return native_context->number_function(); | 171 return native_context->number_function(); |
| 172 } else if (receiver_map->instance_type() < FIRST_NONSTRING_TYPE) { | 172 } else if (receiver_map->instance_type() < FIRST_NONSTRING_TYPE) { |
| 173 return native_context->string_function(); | 173 return native_context->string_function(); |
| 174 } else if (receiver_map->instance_type() == SYMBOL_TYPE) { | 174 } else if (receiver_map->instance_type() == SYMBOL_TYPE) { |
| 175 return native_context->symbol_function(); | 175 return native_context->symbol_function(); |
| 176 } else if (receiver_map->instance_type() == FLOAT32X4_TYPE) { |
| 177 return native_context->float32x4_function(); |
| 176 } else { | 178 } else { |
| 177 return NULL; | 179 return NULL; |
| 178 } | 180 } |
| 179 } | 181 } |
| 180 | 182 |
| 181 | 183 |
| 182 Handle<Map> IC::GetHandlerCacheHolder(Handle<Map> receiver_map, | 184 Handle<Map> IC::GetHandlerCacheHolder(Handle<Map> receiver_map, |
| 183 bool receiver_is_holder, Isolate* isolate, | 185 bool receiver_is_holder, Isolate* isolate, |
| 184 CacheHolderFlag* flag) { | 186 CacheHolderFlag* flag) { |
| 185 if (receiver_is_holder) { | 187 if (receiver_is_holder) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 bool IC::AddressIsDeoptimizedCode(Isolate* isolate, Address address) { | 231 bool IC::AddressIsDeoptimizedCode(Isolate* isolate, Address address) { |
| 230 Code* host = | 232 Code* host = |
| 231 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code; | 233 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code; |
| 232 return (host->kind() == Code::OPTIMIZED_FUNCTION && | 234 return (host->kind() == Code::OPTIMIZED_FUNCTION && |
| 233 host->marked_for_deoptimization()); | 235 host->marked_for_deoptimization()); |
| 234 } | 236 } |
| 235 } | 237 } |
| 236 } // namespace v8::internal | 238 } // namespace v8::internal |
| 237 | 239 |
| 238 #endif // V8_IC_INL_H_ | 240 #endif // V8_IC_INL_H_ |
| OLD | NEW |