Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(742)

Unified Diff: src/objects.cc

Issue 2401653002: [turbofan] Discard the shared code entry in the optimized code map. (Closed)
Patch Set: Comments and REBASE. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index b77093c85b63188b33bd243b3b83813c0471eedc..d542f985c39cf852737c730a8319b0e13f0a3902 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -12135,22 +12135,6 @@ Handle<LiteralsArray> SharedFunctionInfo::FindOrCreateLiterals(
return literals;
}
-void SharedFunctionInfo::AddSharedCodeToOptimizedCodeMap(
- Handle<SharedFunctionInfo> shared, Handle<Code> code) {
- Isolate* isolate = shared->GetIsolate();
- if (isolate->serializer_enabled()) return;
- DCHECK(code->kind() == Code::OPTIMIZED_FUNCTION);
- // Empty code maps are unsupported.
- if (!shared->OptimizedCodeMapIsCleared()) {
- Handle<WeakCell> cell = isolate->factory()->NewWeakCell(code);
- // A collection may have occured and cleared the optimized code map in the
- // allocation above.
- if (!shared->OptimizedCodeMapIsCleared()) {
- shared->optimized_code_map()->set(kSharedCodeIndex, *cell);
- }
- }
-}
-
// static
void SharedFunctionInfo::AddToOptimizedCodeMap(
Handle<SharedFunctionInfo> shared, Handle<Context> native_context,
@@ -12167,13 +12151,11 @@ void SharedFunctionInfo::AddToOptimizedCodeMap(
if (shared->OptimizedCodeMapIsCleared()) {
new_code_map = isolate->factory()->NewFixedArray(kInitialLength, TENURED);
- new_code_map->set(kSharedCodeIndex, *isolate->factory()->empty_weak_cell(),
- SKIP_WRITE_BARRIER);
entry = kEntriesStart;
} else {
Handle<FixedArray> old_code_map(shared->optimized_code_map(), isolate);
entry = shared->SearchOptimizedCodeMapEntry(*native_context, osr_ast_id);
- if (entry > kSharedCodeIndex) {
+ if (entry >= kEntriesStart) {
// Just set the code and literals of the entry.
if (!code.is_null()) {
Handle<WeakCell> code_cell =
@@ -12243,8 +12225,8 @@ void SharedFunctionInfo::AddToOptimizedCodeMap(
void SharedFunctionInfo::ClearOptimizedCodeMap() {
- FixedArray* cleared_map = GetHeap()->cleared_optimized_code_map();
- set_optimized_code_map(cleared_map, SKIP_WRITE_BARRIER);
+ FixedArray* empty_fixed_array = GetHeap()->empty_fixed_array();
+ set_optimized_code_map(empty_fixed_array, SKIP_WRITE_BARRIER);
}
@@ -12294,23 +12276,11 @@ void SharedFunctionInfo::EvictFromOptimizedCodeMap(Code* optimized_code,
}
dst += kEntryLength;
}
- if (WeakCell::cast(code_map->get(kSharedCodeIndex))->value() ==
- optimized_code) {
- // Evict context-independent code as well.
- code_map->set(kSharedCodeIndex, heap->empty_weak_cell(),
- SKIP_WRITE_BARRIER);
- if (FLAG_trace_opt) {
- PrintF("[evicting entry from optimizing code map (%s) for ", reason);
- ShortPrint();
- PrintF(" (context-independent code)]\n");
- }
- }
if (dst != length) {
// Always trim even when array is cleared because of heap verifier.
heap->RightTrimFixedArray<Heap::CONCURRENT_TO_SWEEPER>(code_map,
length - dst);
- if (code_map->length() == kEntriesStart &&
- WeakCell::cast(code_map->get(kSharedCodeIndex))->cleared()) {
+ if (code_map->length() == kEntriesStart) {
ClearOptimizedCodeMap();
}
}
@@ -12324,8 +12294,7 @@ void SharedFunctionInfo::TrimOptimizedCodeMap(int shrink_by) {
// Always trim even when array is cleared because of heap verifier.
GetHeap()->RightTrimFixedArray<Heap::SEQUENTIAL_TO_SWEEPER>(code_map,
shrink_by);
- if (code_map->length() == kEntriesStart &&
- WeakCell::cast(code_map->get(kSharedCodeIndex))->cleared()) {
+ if (code_map->length() == kEntriesStart) {
ClearOptimizedCodeMap();
}
}
@@ -13838,11 +13807,6 @@ int SharedFunctionInfo::SearchOptimizedCodeMapEntry(Context* native_context,
return i;
}
}
- Object* shared_code =
- WeakCell::cast(optimized_code_map->get(kSharedCodeIndex))->value();
- if (shared_code->IsCode() && osr_ast_id.IsNone()) {
- return kSharedCodeIndex;
- }
}
return -1;
}
@@ -13856,8 +13820,6 @@ void SharedFunctionInfo::ClearCodeFromOptimizedCodeMap() {
optimized_code_map->set(i + kCachedCodeOffset, empty_weak_cell,
SKIP_WRITE_BARRIER);
}
- optimized_code_map->set(kSharedCodeIndex, empty_weak_cell,
- SKIP_WRITE_BARRIER);
}
}
@@ -13867,24 +13829,14 @@ CodeAndLiterals SharedFunctionInfo::SearchOptimizedCodeMap(
int entry = SearchOptimizedCodeMapEntry(native_context, osr_ast_id);
if (entry != kNotFound) {
FixedArray* code_map = optimized_code_map();
- if (entry == kSharedCodeIndex) {
- // We know the weak cell isn't cleared because we made sure of it in
- // SearchOptimizedCodeMapEntry and performed no allocations since that
- // call.
- result = {
- Code::cast(WeakCell::cast(code_map->get(kSharedCodeIndex))->value()),
- nullptr};
- } else {
- DCHECK_LE(entry + kEntryLength, code_map->length());
- WeakCell* cell = WeakCell::cast(code_map->get(entry + kCachedCodeOffset));
- WeakCell* literals_cell =
- WeakCell::cast(code_map->get(entry + kLiteralsOffset));
-
- result = {cell->cleared() ? nullptr : Code::cast(cell->value()),
- literals_cell->cleared()
- ? nullptr
- : LiteralsArray::cast(literals_cell->value())};
- }
+ DCHECK_LE(entry + kEntryLength, code_map->length());
+ WeakCell* cell = WeakCell::cast(code_map->get(entry + kCachedCodeOffset));
+ WeakCell* literals_cell =
+ WeakCell::cast(code_map->get(entry + kLiteralsOffset));
+
+ result = {cell->cleared() ? nullptr : Code::cast(cell->value()),
+ literals_cell->cleared() ? nullptr : LiteralsArray::cast(
+ literals_cell->value())};
}
return result;
}
« no previous file with comments | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698