| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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) { | 139 } else if (receiver_map->instance_type() == FLOAT32X4_TYPE) { |
| 140 return native_context->float32x4_function(); | 140 return native_context->float32x4_function(); |
| 141 } else if (receiver_map->instance_type() == INT32X4_TYPE) { |
| 142 return native_context->int32x4_function(); |
| 143 } else if (receiver_map->instance_type() == BOOL32X4_TYPE) { |
| 144 return native_context->bool32x4_function(); |
| 145 } else if (receiver_map->instance_type() == INT16X8_TYPE) { |
| 146 return native_context->int16x8_function(); |
| 147 } else if (receiver_map->instance_type() == BOOL16X8_TYPE) { |
| 148 return native_context->bool16x8_function(); |
| 149 } else if (receiver_map->instance_type() == INT8X16_TYPE) { |
| 150 return native_context->int8x16_function(); |
| 151 } else if (receiver_map->instance_type() == BOOL8X16_TYPE) { |
| 152 return native_context->bool8x16_function(); |
| 141 } else { | 153 } else { |
| 142 return NULL; | 154 return NULL; |
| 143 } | 155 } |
| 144 } | 156 } |
| 145 | 157 |
| 146 | 158 |
| 147 Handle<Map> IC::GetHandlerCacheHolder(Handle<Map> receiver_map, | 159 Handle<Map> IC::GetHandlerCacheHolder(Handle<Map> receiver_map, |
| 148 bool receiver_is_holder, Isolate* isolate, | 160 bool receiver_is_holder, Isolate* isolate, |
| 149 CacheHolderFlag* flag) { | 161 CacheHolderFlag* flag) { |
| 150 if (receiver_is_holder) { | 162 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) { | 206 bool IC::AddressIsDeoptimizedCode(Isolate* isolate, Address address) { |
| 195 Code* host = | 207 Code* host = |
| 196 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code; | 208 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code; |
| 197 return (host->kind() == Code::OPTIMIZED_FUNCTION && | 209 return (host->kind() == Code::OPTIMIZED_FUNCTION && |
| 198 host->marked_for_deoptimization()); | 210 host->marked_for_deoptimization()); |
| 199 } | 211 } |
| 200 } | 212 } |
| 201 } // namespace v8::internal | 213 } // namespace v8::internal |
| 202 | 214 |
| 203 #endif // V8_IC_INL_H_ | 215 #endif // V8_IC_INL_H_ |
| OLD | NEW |