diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2017-06-26 23:43:05 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-03 17:46:39 +0100 |
commit | 4ec2eec70ad073e4aedd299eaa44cfbfba637d69 (patch) | |
tree | e86073d059762fee931d5538ee909ca417c9f5c2 /js | |
parent | 49296aa8c67a0bab3ec3e8f065d12a554413b811 (diff) | |
download | uxp-4ec2eec70ad073e4aedd299eaa44cfbfba637d69.tar.gz |
Remove computeNonIncrementalMarkingForValidation(lock) and caller
Diffstat (limited to 'js')
-rw-r--r-- | js/src/gc/GCRuntime.h | 1 | ||||
-rw-r--r-- | js/src/jsgc.cpp | 7 |
2 files changed, 0 insertions, 8 deletions
diff --git a/js/src/gc/GCRuntime.h b/js/src/gc/GCRuntime.h index 0e6969055a..b1b4ffcba4 100644 --- a/js/src/gc/GCRuntime.h +++ b/js/src/gc/GCRuntime.h @@ -977,7 +977,6 @@ class GCRuntime void releaseRelocatedArenasWithoutUnlocking(Arena* arenaList, const AutoLockGC& lock); void finishCollection(JS::gcreason::Reason reason); - void computeNonIncrementalMarkingForValidation(AutoLockForExclusiveAccess& lock); void validateIncrementalMarking(); void finishMarkingValidation(); diff --git a/js/src/jsgc.cpp b/js/src/jsgc.cpp index cf2981dbc1..5082d03713 100644 --- a/js/src/jsgc.cpp +++ b/js/src/jsgc.cpp @@ -3886,11 +3886,6 @@ GCRuntime::markAllGrayReferences(gcstats::Phase phase) } void -GCRuntime::computeNonIncrementalMarkingForValidation(AutoLockForExclusiveAccess& lock) -{ -} - -void GCRuntime::validateIncrementalMarking() { } @@ -4761,8 +4756,6 @@ GCRuntime::beginSweepPhase(bool destroyingRuntime, AutoLockForExclusiveAccess& l releaseHeldRelocatedArenas(); - computeNonIncrementalMarkingForValidation(lock); - gcstats::AutoPhase ap(stats, gcstats::PHASE_SWEEP); sweepOnBackgroundThread = |