Skip to content

Remove max heap size for Julia-style GC trigger #134

Open
@qinsoon

Description

@qinsoon

/// Is current heap full?
fn is_heap_full(&self, plan: &dyn Plan<VM = JuliaVM>) -> bool {
plan.get_reserved_pages()
>= conversions::bytes_to_pages_up(self.max_total_memory.load(Ordering::Relaxed))
}

/// Return the upper bound of heap size
fn get_max_heap_size_in_pages(&self) -> usize {
conversions::bytes_to_pages_up(self.max_total_memory.load(Ordering::Relaxed))
}

These lines still uses max_total_memory as a hard limit for MMTk, while Julia treats max_total_memory as a soft limit. So we may still see MMTk OOM. We should simply use usize::MAX in those lines.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingv1.9.2+RAIIssues about the branch v1.9.2+RAI

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions