0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-24 15:19:31 -05:00

feat: Isolate::memory_pressure_notification() (#1139)

Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
Ryan Dahl 2022-11-30 08:25:10 -08:00 committed by GitHub
parent e57c3ec90f
commit 3783a5c725
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 0 deletions

View file

@ -142,6 +142,11 @@ void v8__Isolate__Enter(v8::Isolate* isolate) { isolate->Enter(); }
void v8__Isolate__Exit(v8::Isolate* isolate) { isolate->Exit(); }
void v8__Isolate__MemoryPressureNotification(v8::Isolate* isolate,
v8::MemoryPressureLevel level) {
isolate->MemoryPressureNotification(level);
}
void v8__Isolate__ClearKeptObjects(v8::Isolate* isolate) {
isolate->ClearKeptObjects();
}

View file

@ -70,6 +70,18 @@ pub enum MicrotasksPolicy {
Auto = 2,
}
/// Memory pressure level for the MemoryPressureNotification.
/// None hints V8 that there is no memory pressure.
/// Moderate hints V8 to speed up incremental garbage collection at the cost
/// of higher latency due to garbage collection pauses.
/// Critical hints V8 to free memory as soon as possible. Garbage collection
/// pauses at this level will be large.
pub enum MemoryPressureLevel {
None = 0,
Moderate = 1,
Critical = 2,
}
/// PromiseHook with type Init is called when a new promise is
/// created. When a new promise is created as part of the chain in the
/// case of Promise.then or in the intermediate promises created by
@ -348,6 +360,7 @@ extern "C" {
fn v8__Isolate__GetNumberOfDataSlots(this: *const Isolate) -> u32;
fn v8__Isolate__Enter(this: *mut Isolate);
fn v8__Isolate__Exit(this: *mut Isolate);
fn v8__Isolate__MemoryPressureNotification(this: *mut Isolate, level: u8);
fn v8__Isolate__ClearKeptObjects(isolate: *mut Isolate);
fn v8__Isolate__LowMemoryNotification(isolate: *mut Isolate);
fn v8__Isolate__GetHeapStatistics(this: *mut Isolate, s: *mut HeapStatistics);
@ -772,6 +785,15 @@ impl Isolate {
v8__Isolate__Exit(self)
}
/// Optional notification that the system is running low on memory.
/// V8 uses these notifications to guide heuristics.
/// It is allowed to call this function from another thread while
/// the isolate is executing long running JavaScript code.
#[inline(always)]
pub fn memory_pressure_notification(&mut self, level: MemoryPressureLevel) {
unsafe { v8__Isolate__MemoryPressureNotification(self, level as u8) }
}
/// Clears the set of objects held strongly by the heap. This set of
/// objects are originally built when a WeakRef is created or
/// successfully dereferenced.

View file

@ -101,6 +101,7 @@ pub use isolate::HostImportModuleDynamicallyCallback;
pub use isolate::HostInitializeImportMetaObjectCallback;
pub use isolate::Isolate;
pub use isolate::IsolateHandle;
pub use isolate::MemoryPressureLevel;
pub use isolate::MessageCallback;
pub use isolate::MicrotasksPolicy;
pub use isolate::NearHeapLimitCallback;

View file

@ -6355,6 +6355,15 @@ fn value_serializer_not_implemented() {
);
}
#[test]
fn memory_pressure_notification() {
let _setup_guard = setup();
let isolate = &mut v8::Isolate::new(Default::default());
isolate.memory_pressure_notification(v8::MemoryPressureLevel::Moderate);
isolate.memory_pressure_notification(v8::MemoryPressureLevel::Critical);
isolate.memory_pressure_notification(v8::MemoryPressureLevel::None);
}
// Flaky on aarch64-qemu (Stack corruption).
#[cfg(not(target_os = "android"))]
#[test]