OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 3745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3756 *map_or_index_field = heap()->fixed_array_map(); | 3756 *map_or_index_field = heap()->fixed_array_map(); |
3757 Map* prev = current->map(); | 3757 Map* prev = current->map(); |
3758 current->set_map(meta_map); | 3758 current->set_map(meta_map); |
3759 callback(current, data); | 3759 callback(current, data); |
3760 current = prev; | 3760 current = prev; |
3761 } | 3761 } |
3762 } | 3762 } |
3763 | 3763 |
3764 | 3764 |
3765 MaybeObject* CodeCache::Update(String* name, Code* code) { | 3765 MaybeObject* CodeCache::Update(String* name, Code* code) { |
3766 ASSERT(code->ic_state() == MONOMORPHIC); | |
3767 | |
3768 // The number of monomorphic stubs for normal load/store/call IC's can grow to | 3766 // The number of monomorphic stubs for normal load/store/call IC's can grow to |
3769 // a large number and therefore they need to go into a hash table. They are | 3767 // a large number and therefore they need to go into a hash table. They are |
3770 // used to load global properties from cells. | 3768 // used to load global properties from cells. |
3771 if (code->type() == NORMAL) { | 3769 if (code->type() == NORMAL) { |
3772 // Make sure that a hash table is allocated for the normal load code cache. | 3770 // Make sure that a hash table is allocated for the normal load code cache. |
3773 if (normal_type_cache()->IsUndefined()) { | 3771 if (normal_type_cache()->IsUndefined()) { |
3774 Object* result; | 3772 Object* result; |
3775 { MaybeObject* maybe_result = | 3773 { MaybeObject* maybe_result = |
3776 CodeCacheHashTable::Allocate(CodeCacheHashTable::kInitialSize); | 3774 CodeCacheHashTable::Allocate(CodeCacheHashTable::kInitialSize); |
3777 if (!maybe_result->ToObject(&result)) return maybe_result; | 3775 if (!maybe_result->ToObject(&result)) return maybe_result; |
(...skipping 2722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6500 | 6498 |
6501 // Identify kind of code. | 6499 // Identify kind of code. |
6502 const char* Code::Kind2String(Kind kind) { | 6500 const char* Code::Kind2String(Kind kind) { |
6503 switch (kind) { | 6501 switch (kind) { |
6504 case FUNCTION: return "FUNCTION"; | 6502 case FUNCTION: return "FUNCTION"; |
6505 case OPTIMIZED_FUNCTION: return "OPTIMIZED_FUNCTION"; | 6503 case OPTIMIZED_FUNCTION: return "OPTIMIZED_FUNCTION"; |
6506 case STUB: return "STUB"; | 6504 case STUB: return "STUB"; |
6507 case BUILTIN: return "BUILTIN"; | 6505 case BUILTIN: return "BUILTIN"; |
6508 case LOAD_IC: return "LOAD_IC"; | 6506 case LOAD_IC: return "LOAD_IC"; |
6509 case KEYED_LOAD_IC: return "KEYED_LOAD_IC"; | 6507 case KEYED_LOAD_IC: return "KEYED_LOAD_IC"; |
6510 case KEYED_EXTERNAL_ARRAY_LOAD_IC: return "KEYED_EXTERNAL_ARRAY_LOAD_IC"; | |
6511 case STORE_IC: return "STORE_IC"; | 6508 case STORE_IC: return "STORE_IC"; |
6512 case KEYED_STORE_IC: return "KEYED_STORE_IC"; | 6509 case KEYED_STORE_IC: return "KEYED_STORE_IC"; |
6513 case KEYED_EXTERNAL_ARRAY_STORE_IC: return "KEYED_EXTERNAL_ARRAY_STORE_IC"; | |
6514 case CALL_IC: return "CALL_IC"; | 6510 case CALL_IC: return "CALL_IC"; |
6515 case KEYED_CALL_IC: return "KEYED_CALL_IC"; | 6511 case KEYED_CALL_IC: return "KEYED_CALL_IC"; |
6516 case TYPE_RECORDING_UNARY_OP_IC: return "TYPE_RECORDING_UNARY_OP_IC"; | 6512 case TYPE_RECORDING_UNARY_OP_IC: return "TYPE_RECORDING_UNARY_OP_IC"; |
6517 case TYPE_RECORDING_BINARY_OP_IC: return "TYPE_RECORDING_BINARY_OP_IC"; | 6513 case TYPE_RECORDING_BINARY_OP_IC: return "TYPE_RECORDING_BINARY_OP_IC"; |
6518 case COMPARE_IC: return "COMPARE_IC"; | 6514 case COMPARE_IC: return "COMPARE_IC"; |
6519 } | 6515 } |
6520 UNREACHABLE(); | 6516 UNREACHABLE(); |
6521 return NULL; | 6517 return NULL; |
6522 } | 6518 } |
6523 | 6519 |
(...skipping 3897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10421 if (break_point_objects()->IsUndefined()) return 0; | 10417 if (break_point_objects()->IsUndefined()) return 0; |
10422 // Single beak point. | 10418 // Single beak point. |
10423 if (!break_point_objects()->IsFixedArray()) return 1; | 10419 if (!break_point_objects()->IsFixedArray()) return 1; |
10424 // Multiple break points. | 10420 // Multiple break points. |
10425 return FixedArray::cast(break_point_objects())->length(); | 10421 return FixedArray::cast(break_point_objects())->length(); |
10426 } | 10422 } |
10427 #endif | 10423 #endif |
10428 | 10424 |
10429 | 10425 |
10430 } } // namespace v8::internal | 10426 } } // namespace v8::internal |
OLD | NEW |