| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 JSFunction* IC::GetRootConstructor(Map* receiver_map, Context* native_context) { | 129 JSFunction* IC::GetRootConstructor(Map* receiver_map, Context* native_context) { |
| 130 Isolate* isolate = receiver_map->GetIsolate(); | 130 Isolate* isolate = receiver_map->GetIsolate(); |
| 131 if (receiver_map == isolate->heap()->boolean_map()) { | 131 if (receiver_map == isolate->heap()->boolean_map()) { |
| 132 return native_context->boolean_function(); | 132 return native_context->boolean_function(); |
| 133 } else if (receiver_map->instance_type() == HEAP_NUMBER_TYPE) { | 133 } else if (receiver_map->instance_type() == HEAP_NUMBER_TYPE) { |
| 134 return native_context->number_function(); | 134 return native_context->number_function(); |
| 135 } else if (receiver_map->instance_type() < FIRST_NONSTRING_TYPE) { | 135 } else if (receiver_map->instance_type() < FIRST_NONSTRING_TYPE) { |
| 136 return native_context->string_function(); | 136 return native_context->string_function(); |
| 137 } else if (receiver_map->instance_type() == SYMBOL_TYPE) { | 137 } else if (receiver_map->instance_type() == SYMBOL_TYPE) { |
| 138 return native_context->symbol_function(); | 138 return native_context->symbol_function(); |
| 139 } else if (receiver_map->instance_type() == FLOAT32X4_TYPE) { | |
| 140 return native_context->float32x4_function(); | |
| 141 } else { | 139 } else { |
| 142 return NULL; | 140 return NULL; |
| 143 } | 141 } |
| 144 } | 142 } |
| 145 | 143 |
| 146 | 144 |
| 147 Handle<Map> IC::GetHandlerCacheHolder(Handle<Map> receiver_map, | 145 Handle<Map> IC::GetHandlerCacheHolder(Handle<Map> receiver_map, |
| 148 bool receiver_is_holder, Isolate* isolate, | 146 bool receiver_is_holder, Isolate* isolate, |
| 149 CacheHolderFlag* flag) { | 147 CacheHolderFlag* flag) { |
| 150 if (receiver_is_holder) { | 148 if (receiver_is_holder) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 bool IC::AddressIsDeoptimizedCode(Isolate* isolate, Address address) { | 192 bool IC::AddressIsDeoptimizedCode(Isolate* isolate, Address address) { |
| 195 Code* host = | 193 Code* host = |
| 196 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code; | 194 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code; |
| 197 return (host->kind() == Code::OPTIMIZED_FUNCTION && | 195 return (host->kind() == Code::OPTIMIZED_FUNCTION && |
| 198 host->marked_for_deoptimization()); | 196 host->marked_for_deoptimization()); |
| 199 } | 197 } |
| 200 } | 198 } |
| 201 } // namespace v8::internal | 199 } // namespace v8::internal |
| 202 | 200 |
| 203 #endif // V8_IC_INL_H_ | 201 #endif // V8_IC_INL_H_ |
| OLD | NEW |