diff options
author | win7-7 <win7-7@users.noreply.github.com> | 2019-04-29 12:02:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-29 12:02:24 +0300 |
commit | 2cb4d2ee571b91ec2480d2fba17e600a3843ddba (patch) | |
tree | 2106b80863a090b37076542c1894eca076c2dd70 /js/src/gc/GCRuntime.h | |
parent | 5a65d8739d0ad6ef446b278a25fd955f0c734fb1 (diff) | |
download | UXP-2cb4d2ee571b91ec2480d2fba17e600a3843ddba.tar UXP-2cb4d2ee571b91ec2480d2fba17e600a3843ddba.tar.gz UXP-2cb4d2ee571b91ec2480d2fba17e600a3843ddba.tar.lz UXP-2cb4d2ee571b91ec2480d2fba17e600a3843ddba.tar.xz UXP-2cb4d2ee571b91ec2480d2fba17e600a3843ddba.zip |
Improve dead compartment collection js/src/gc
Diffstat (limited to 'js/src/gc/GCRuntime.h')
-rw-r--r-- | js/src/gc/GCRuntime.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/js/src/gc/GCRuntime.h b/js/src/gc/GCRuntime.h index 5c2576efd..16260a4e3 100644 --- a/js/src/gc/GCRuntime.h +++ b/js/src/gc/GCRuntime.h @@ -900,7 +900,8 @@ class GCRuntime void requestMajorGC(JS::gcreason::Reason reason); SliceBudget defaultBudget(JS::gcreason::Reason reason, int64_t millis); - void budgetIncrementalGC(SliceBudget& budget, AutoLockForExclusiveAccess& lock); + void budgetIncrementalGC(JS::gcreason::Reason reason, SliceBudget& budget, + AutoLockForExclusiveAccess& lock); void resetIncrementalGC(AbortReason reason, AutoLockForExclusiveAccess& lock); // Assert if the system state is such that we should never @@ -915,6 +916,7 @@ class GCRuntime void collect(bool nonincrementalByAPI, SliceBudget budget, JS::gcreason::Reason reason) JS_HAZ_GC_CALL; MOZ_MUST_USE bool gcCycle(bool nonincrementalByAPI, SliceBudget& budget, JS::gcreason::Reason reason); + bool shouldRepeatForDeadZone(JS::gcreason::Reason reason); void incrementalCollectSlice(SliceBudget& budget, JS::gcreason::Reason reason, AutoLockForExclusiveAccess& lock); @@ -1348,4 +1350,4 @@ class MOZ_RAII AutoMaybeStartBackgroundAllocation } /* namespace js */ -#endif +#endif
\ No newline at end of file |