From: Richard Jones <rich@annexia.org>
To: caml-list@inria.fr
Subject: Re: [Caml-list] ocamlc.opt tries to allocate 34 GB of RAM ... and fails
Date: Thu, 8 May 2008 11:14:13 +0100 [thread overview]
Message-ID: <20080508101413.GA18974@annexia.org> (raw)
In-Reply-To: <20080508091449.GA16556@annexia.org>
OK I've found out where it's going wrong and I have a theory, ill-informed
probably, about the problem.
Firstly when I run the compiler with OCAMLRUNPARAM=v=0x1ff, just
before the error I see:
Growing heap to 4320k bytes
Growing page table to 34359705221 entries
No room for growing page table
Fatal error: out of memory.
and running it under gdb seems to indicate that the problem is a
massive malloc() request, the second call to malloc in the function
caml_add_to_heap.
Now my uninformed theory: The preceeding mmap (from caml_aligned_mmap)
returned a very high memory address:
mmap(0x722020, 495648, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7ffff7f83000
and the runtime is trying to construct a page table (bitmap, right?)
to track both very low and very high addresses. That's failing,
badly.
Does this sound right?
Unfortunately I have no idea how to solve this, certainly it seems
there is no simple fix ... (I tried to set vm.overcommit_memory
policy, but that doesn't work because the page table is initialized
right after allocation).
Rich.
--
Richard Jones
Red Hat
next prev parent reply other threads:[~2008-05-08 10:14 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-07 17:01 Richard Jones
2008-05-07 17:35 ` [Caml-list] " Romain Beauxis
2008-05-07 18:34 ` Richard Jones
2008-05-07 18:46 ` Markus Mottl
2008-05-07 18:49 ` Richard Jones
2008-05-07 19:24 ` Markus Mottl
2008-05-07 19:29 ` Brian Hurt
2008-05-08 9:14 ` Richard Jones
2008-05-08 10:14 ` Richard Jones [this message]
2008-05-08 13:40 ` Markus Mottl
2008-05-08 13:55 ` Richard Jones
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080508101413.GA18974@annexia.org \
--to=rich@annexia.org \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox