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

Unified Diff: src/heap/objects-visiting-inl.h

Issue 2644523002: [heap] Provide ObjectMarking with marking transitions (Closed)
Patch Set: Fix markbit clearing for LO Created 3 years, 11 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
Index: src/heap/objects-visiting-inl.h
diff --git a/src/heap/objects-visiting-inl.h b/src/heap/objects-visiting-inl.h
index d86406bf5f77c204957dce60d4125974eff17f0e..6ed9c2cdd5cf5579fbb6be2a4486336b83423ae8 100644
--- a/src/heap/objects-visiting-inl.h
+++ b/src/heap/objects-visiting-inl.h
@@ -526,8 +526,7 @@ bool StaticMarkingVisitor<StaticVisitor>::IsFlushable(Heap* heap,
// Code is either on stack, in compilation cache or referenced
// by optimized version of function.
- MarkBit code_mark = ObjectMarking::MarkBitFrom(function->code());
- if (Marking::IsBlackOrGrey(code_mark)) {
+ if (ObjectMarking::IsBlackOrGrey(function->code())) {
return false;
}
@@ -550,8 +549,7 @@ bool StaticMarkingVisitor<StaticVisitor>::IsFlushable(
Heap* heap, SharedFunctionInfo* shared_info) {
// Code is either on stack, in compilation cache or referenced
// by optimized version of function.
- MarkBit code_mark = ObjectMarking::MarkBitFrom(shared_info->code());
- if (Marking::IsBlackOrGrey(code_mark)) {
+ if (ObjectMarking::IsBlackOrGrey(shared_info->code())) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698