OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 10655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10666 Code* target(Code::GetCodeFromTargetAddress(info->target_address())); | 10666 Code* target(Code::GetCodeFromTargetAddress(info->target_address())); |
10667 if (target->is_inline_cache_stub()) { | 10667 if (target->is_inline_cache_stub()) { |
10668 if (kind == NULL || *kind == target->kind()) { | 10668 if (kind == NULL || *kind == target->kind()) { |
10669 IC::Clear(this->GetIsolate(), info->pc()); | 10669 IC::Clear(this->GetIsolate(), info->pc()); |
10670 } | 10670 } |
10671 } | 10671 } |
10672 } | 10672 } |
10673 } | 10673 } |
10674 | 10674 |
10675 | 10675 |
10676 void Code::ClearTypeFeedbackCells(Heap* heap) { | 10676 void Code::ClearTypeFeedbackInfo(Heap* heap) { |
10677 if (kind() != FUNCTION) return; | 10677 if (kind() != FUNCTION) return; |
10678 Object* raw_info = type_feedback_info(); | 10678 Object* raw_info = type_feedback_info(); |
10679 if (raw_info->IsTypeFeedbackInfo()) { | 10679 if (raw_info->IsTypeFeedbackInfo()) { |
10680 TypeFeedbackCells* type_feedback_cells = | 10680 FixedArray* feedback_vector = |
10681 TypeFeedbackInfo::cast(raw_info)->type_feedback_cells(); | 10681 TypeFeedbackInfo::cast(raw_info)->feedback_vector(); |
10682 for (int i = 0; i < type_feedback_cells->CellCount(); i++) { | 10682 for (int i = 0; i < feedback_vector->length(); i++) { |
10683 Cell* cell = type_feedback_cells->GetCell(i); | 10683 Object* obj = feedback_vector->get(i); |
10684 // Don't clear AllocationSites | 10684 if (!obj->IsAllocationSite()) { |
10685 Object* value = cell->value(); | 10685 // TODO(mvstanton): Can't I avoid a write barrier for this sentinel? |
10686 if (value == NULL || !value->IsAllocationSite()) { | 10686 feedback_vector->set(i, |
10687 cell->set_value(TypeFeedbackCells::RawUninitializedSentinel(heap)); | 10687 TypeFeedbackInfo::RawUninitializedSentinel(heap)); |
10688 } | 10688 } |
10689 } | 10689 } |
10690 } | 10690 } |
10691 } | 10691 } |
10692 | 10692 |
10693 | 10693 |
10694 BailoutId Code::TranslatePcOffsetToAstId(uint32_t pc_offset) { | 10694 BailoutId Code::TranslatePcOffsetToAstId(uint32_t pc_offset) { |
10695 DisallowHeapAllocation no_gc; | 10695 DisallowHeapAllocation no_gc; |
10696 ASSERT(kind() == FUNCTION); | 10696 ASSERT(kind() == FUNCTION); |
10697 BackEdgeTable back_edges(this, &no_gc); | 10697 BackEdgeTable back_edges(this, &no_gc); |
(...skipping 5903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
16601 #define ERROR_MESSAGES_TEXTS(C, T) T, | 16601 #define ERROR_MESSAGES_TEXTS(C, T) T, |
16602 static const char* error_messages_[] = { | 16602 static const char* error_messages_[] = { |
16603 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) | 16603 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) |
16604 }; | 16604 }; |
16605 #undef ERROR_MESSAGES_TEXTS | 16605 #undef ERROR_MESSAGES_TEXTS |
16606 return error_messages_[reason]; | 16606 return error_messages_[reason]; |
16607 } | 16607 } |
16608 | 16608 |
16609 | 16609 |
16610 } } // namespace v8::internal | 16610 } } // namespace v8::internal |
OLD | NEW |