summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/heap/thread_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/platform/heap/thread_state.h')
-rw-r--r--chromium/third_party/blink/renderer/platform/heap/thread_state.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/chromium/third_party/blink/renderer/platform/heap/thread_state.h b/chromium/third_party/blink/renderer/platform/heap/thread_state.h
index c7b4b643946..d04c2b07051 100644
--- a/chromium/third_party/blink/renderer/platform/heap/thread_state.h
+++ b/chromium/third_party/blink/renderer/platform/heap/thread_state.h
@@ -147,6 +147,7 @@ class PLATFORM_EXPORT ThreadState final
enum GCState {
kNoGCScheduled,
kIdleGCScheduled,
+ kIncrementalMarkingStepPaused,
kIncrementalMarkingStepScheduled,
kIncrementalMarkingFinalizeScheduled,
kPreciseGCScheduled,
@@ -419,11 +420,6 @@ class PLATFORM_EXPORT ThreadState final
void SafePoint(BlinkGC::StackState);
void RecordStackEnd(intptr_t* end_of_stack) { end_of_stack_ = end_of_stack; }
-#if HAS_FEATURE(safe_stack)
- void RecordUnsafeStackEnd(intptr_t* end_of_unsafe_stack) {
- end_of_unsafe_stack_ = end_of_unsafe_stack;
- }
-#endif
void PushRegistersAndVisitStack();
@@ -699,11 +695,6 @@ class PLATFORM_EXPORT ThreadState final
intptr_t* start_of_stack_;
intptr_t* end_of_stack_;
-#if HAS_FEATURE(safe_stack)
- intptr_t* start_of_unsafe_stack_;
- intptr_t* end_of_unsafe_stack_;
-#endif
-
bool sweep_forbidden_;
size_t no_allocation_count_;
size_t gc_forbidden_count_;