Open ssandler opened 3 years ago
Thanks; filed internally and assigned to on-call - T90315482 for our reference
The memory regression is not related to reify and/or jit/interp. I simplified your above code and executed with and without reify keyword, as well as, trying with and without jit. The memory regression is identical/comparable.
<?hh
class Foo {}
function get_classname_wrapper<reify T>(T $obj) {
return 1;
}
<<__EntryPoint>>
function main(): void {
$obj = new Foo();
echo "memory usage: ".memory_get_usage(true)."\n";
for ($i=0; $i<10000; $i++) {
get_classname_wrapper<Foo>($obj);
}
echo "memory usage: ".memory_get_usage(true)."\n";
}
Sorry, we don't really have good next steps: the leak is very small, which makes it difficult to track down; it's unlikely we're going to be able to dedicate more time to this, especially as the memory should be freed between requests.
Describe the bug Each call to a function that uses reified generics appears to increase the memory usage of hhvm. This memory doesn't get reclaimed and this can continue until the program crashes.
Standalone code, or other way to reproduce the problem
Steps to reproduce the behavior:
Expected behavior
Memory usage stays constant with repeated calls.
Actual behavior
Memory usage increases with each call.
Environment We first observed this with HHVM 4.56 on Ubuntu 18.04, but reproduced it on the latest public hhvm docker container
hhvm/hhvm:4.108-latest