You should be able to control it with the `--wasm_max_mem_pages=...`
flag (expressed in multiples of 64k) that you can set with
`v8::V8::SetFlagsFromString()`. I don't think there is currently any
other way to configure it.
WASM allocations should be observable when you return a custom
`v8::PageAllocator*` from `v8::Platform::GetPageAllocator()`. Maybe
not ideal but hopefully workable.
You can probably also limit memory growth that way, by returning
nullptr when it's past a threshold, although not on a per-isolate
basis.