jcmd VM.native_memory extremely large numbers when using ZGC
Marçal Perapoch Amadó
marcal.perapoch at gmail.com
Mon Oct 28 15:18:56 UTC 2024
Hello again, Thomas.
Attaching the NMT report we got from running our app
with -XX:NativeMemoryTracking=detail and extracted with `jcmd <PID>
VM.native_memory detail`, the GC log and a screenshot of the `top` command.
Our application is running on K8s in Google Cloud Platform using openjdk
version "21.0.4" 2024-07-16 LTS.
Unfortunately we could not get the System.map report because we are using
java 21.
Please let me know if you need more information.
Cheers,
Marçal
Missatge de Thomas Stüfe <thomas.stuefe at gmail.com> del dia dl., 28 d’oct.
2024 a les 11:11:
> Hi Marcel,
>
> Too little information to say anything - would need NMT report, possible
> jcmd System.map, and possibly the GC log. I am also not aware of any sizing
> recommendations when switching from G1 to ZGC, but they probably exist and
> the ZGC devs that normally frequent this ML know this stuff better than I
> do.
>
> Cheers, Thomas
>
> On Mon, Oct 28, 2024 at 10:58 AM Marçal Perapoch Amadó <
> marcal.perapoch at gmail.com> wrote:
>
>> Hey Thomas,
>>
>> Thanks a lot for your answer and the information you provided. I think
>> you are right about generational not using multi-mapping (
>> https://openjdk.org/jeps/439 - "No multi-mapped memory") also I didn't
>> know about the max heap size * 16, which does seems to match the numbers
>> I was seeing in my computer. Good info, thanks again!
>>
>> > As in, Java OOMEs? OOM killer? Or the pod being killed from the pod
>> management?
>> Our canary pods using ZGC were OOM killed, yes. It's also visible in our
>> metrics how the "container_memory_working_set_bytes" of the pods using zgc
>> went above 20GB even though they were set to use a max heap of 6GB.
>>
>> Also, I forgot to mention (in case it helps) we are running:
>> openjdk 21.0.4 2024-07-16 LTS
>> OpenJDK Runtime Environment Temurin-21.0.4+7 (build 21.0.4+7-LTS)
>> OpenJDK 64-Bit Server VM Temurin-21.0.4+7 (build 21.0.4+7-LTS, mixed
>> mode, sharing)
>>
>> Best,
>> Marçal
>>
>>
>> Missatge de Thomas Stüfe <thomas.stuefe at gmail.com> del dia dl., 28
>> d’oct. 2024 a les 10:25:
>>
>>> Hi Marcal,
>>>
>>> likely a red herring - "reserved" should not matter unless you
>>> artificially limit the address space size of the process (e.g. with ulimit
>>> -v). And even then, ZGC should just work around this limit. Reserved is
>>> just address space, and modern 64-bit OSes don't penalize you for
>>> allocating large swathes of address space. It should not cost any real
>>> memory.
>>>
>>> About the large number: AFAIK ZGC in generational mode does not do
>>> multi-mapping anymore. Both Generational and Single Gen, however, do
>>> over-allocate address space (max heap size * 16) - that number may be
>>> smaller if capped by whatever is physically possible on the machine. It
>>> does that because it rolls its own variant of physical-to-virtual memory
>>> mapping, and needs room to maneuver. This is done to fight fragmentation
>>> effects.
>>>
>>> If you want to know how much memory the process uses, the "committed"
>>> numbers in NMT are a lot closer to the truth. They are not the truth,
>>> however, since memory can be committed but still untouched and therefore
>>> not live, for example when pre-committing with -Xmx==-Xms. In that case,
>>> "committed" probably also overreports memory use.
>>>
>>> We are working on improving NMT; future versions will report the live
>>> memory size too, if it can be cheaply obtained. The upcoming version of
>>> Java 24 also contains an improved variant of jcmd System.map, which tells
>>> you the live size for each memory segment, and at the end the actual live
>>> size of all memory. At least on Linux.
>>>
>>> > our canary nodes were suddenly killed by OOM
>>>
>>> As in, Java OOMEs? OOM killer? Or the pod being killed from the pod
>>> management?
>>>
>>> HTH,
>>>
>>> Cheers, Thomas
>>>
>>>
>>>
>>>
>>> On Mon, Oct 28, 2024 at 9:11 AM Marçal Perapoch Amadó <
>>> marcal.perapoch at gmail.com> wrote:
>>>
>>>> Hello!
>>>> First of all, congratulations on all the hard work with ZGC!
>>>>
>>>> TLDR: Running a simple java main with generational ZGC, and NMT reports
>>>> 221GB of reserved memory on a 32GB machine.
>>>>
>>>> *Context*: at my current company, we're keen on switching from G1GC to
>>>> ZGC due to its ability to maintain very low pause times. Our problem in
>>>> particular, is that when we scale up our application, the new nodes get so
>>>> much traffic in that little time that even the node is technically ready to
>>>> accept new traffic, the amount of new allocations end up adding a lot of
>>>> pressure to g1 and that translates to multiple over the second pauses. So
>>>> we decided to give ZGC a try and although the numbers for those pauses were
>>>> looking amazing, our canary nodes were suddenly killed by OOM.
>>>> I've read about the ZGC multi-mapping technique and how that can trick
>>>> the Linux kernel. I found particularly useful this topic from this same
>>>> mailing list:
>>>> https://mail.openjdk.org/pipermail/zgc-dev/2018-November/000511.html
>>>> and also read about using the -XX:+UseLargePages flag. Even saw a mailing
>>>> topic about kubernetes and containers having issues with ZCG here:
>>>> https://mail.openjdk.org/pipermail/zgc-dev/2023-August/001259.html.
>>>> However, despite this research, I have not been able to find a solution
>>>> to the issue. So I decided to reproduce the problem locally for further
>>>> investigation. Although my local environment is quite different from our
>>>> live setup, I encountered the same high reserved memory behavior.
>>>>
>>>> I created a very simple java application (just a Main that loops
>>>> forever waiting for a number from the console and performs some allocations
>>>> based on that, but I don't think that matters that much).
>>>> I run my application with the following JVM args:
>>>> -XX:+UseZGC
>>>> -XX:+ZGenerational
>>>> -Xms12g
>>>> -Xmx12g
>>>> -XX:NativeMemoryTracking=summary
>>>> -Xlog:gc*:gc.log
>>>>
>>>> And that produces the following report on my MacBook Pro M2, 32GB.
>>>>
>>>> *Native Memory Tracking*:
>>>> (Omitting categories weighting less than 1GB)
>>>>
>>>> Total: reserved=221GB, committed=12GB
>>>> malloc: 0GB #38256
>>>> mmap: reserved=221GB, committed=12GB
>>>>
>>>> - Java Heap (reserved=192GB, committed=12GB)
>>>> (mmap: reserved=192GB, committed=12GB, at
>>>> peak)
>>>>
>>>> - Class (reserved=1GB, committed=0GB)
>>>> (classes #2376)
>>>> ( instance classes #2142, array classes
>>>> #234)
>>>> (mmap: reserved=1GB, committed=0GB, at peak)
>>>> ( Metadata: )
>>>> ( reserved=0GB, committed=0GB)
>>>> ( used=0GB)
>>>> ( waste=0GB =0.79%)
>>>> ( Class space:)
>>>> ( reserved=1GB, committed=0GB)
>>>> ( used=0GB)
>>>> ( waste=0GB =7.49%)
>>>>
>>>> - GC (reserved=16GB, committed=0GB)
>>>> (mmap: reserved=16GB, committed=0GB, at
>>>> peak)
>>>>
>>>> - Unknown (reserved=12GB, committed=0GB)
>>>> (mmap: reserved=12GB, committed=0GB,
>>>> peak=0GB)
>>>>
>>>> As you can see, it is reporting a total reserved of 221GB, which I find
>>>> very confusing. I understand it is related to the muli-mapping technique,
>>>> but my question is, how can I be sure how much memory my app is using if
>>>> even with jcmd I get reports like this one?
>>>>
>>>> Also, launching the same application with G1, reports Total:
>>>> reserved=14GB, committed=12GB.
>>>>
>>>> Sorry if that has already been reported/answered, I really tried to
>>>> inform myself before wasting your time, but I do have the impression that I
>>>> am missing something here.
>>>>
>>>> Could you please provide any insights or suggestions on what might be
>>>> happening, or how we could mitigate this issue?
>>>> If not jcmd, which tool/command would you recommend to measure
>>>> the memory consumption? We’d greatly appreciate your advice on how to move
>>>> forward.
>>>>
>>>> Thank you very much for your time and help!
>>>>
>>>>
>>>> Marçal
>>>>
>>>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/zgc-dev/attachments/20241028/16d6925c/attachment-0001.htm>
-------------- next part --------------
35:
Native Memory Tracking:
(Omitting categories weighting less than 1KB)
Total: reserved=119757686KB, committed=6950698KB
malloc: 330690KB #488383
mmap: reserved=119426996KB, committed=6620008KB
- Java Heap (reserved=100663296KB, committed=6291456KB)
(mmap: reserved=100663296KB, committed=6291456KB, at peak)
- Class (reserved=1051114KB, committed=16490KB)
(classes #21583)
( instance classes #20347, array classes #1236)
(malloc=2538KB #63956) (peak=2538KB #63952)
(mmap: reserved=1048576KB, committed=13952KB, at peak)
( Metadata: )
( reserved=131072KB, committed=95744KB)
( used=94666KB)
( waste=1078KB =1.13%)
( Class space:)
( reserved=1048576KB, committed=13952KB)
( used=12935KB)
( waste=1017KB =7.29%)
- Thread (reserved=496804KB, committed=44824KB)
(threads #482)
(stack: reserved=493568KB, committed=41588KB, peak=41588KB)
(malloc=2673KB #3685) (peak=2687KB #3696)
(arena=563KB #962) (peak=4109KB #255)
- Code (reserved=251633KB, committed=54453KB)
(malloc=3945KB #25328) (peak=4224KB #26683)
(mmap: reserved=247688KB, committed=50508KB, at peak)
(arena=0KB #0) (peak=35KB #3)
- GC (reserved=16871982KB, committed=160302KB)
(malloc=45614KB #30198) (peak=66172KB #32646)
(mmap: reserved=16826368KB, committed=114688KB, at peak)
- Compiler (reserved=1165KB, committed=1165KB)
(malloc=1001KB #1272) (peak=1001KB #1273)
(arena=164KB #4) (peak=106576KB #48)
- Internal (reserved=3070KB, committed=3070KB)
(malloc=3034KB #44247) (at peak)
(mmap: reserved=36KB, committed=36KB, at peak)
- Other (reserved=224681KB, committed=224681KB)
(malloc=224681KB #389) (peak=224681KB #390)
- Symbol (reserved=34408KB, committed=34408KB)
(malloc=31459KB #285307) (at peak)
(arena=2949KB #1) (at peak)
- Native Memory Tracking (reserved=8111KB, committed=8111KB)
(malloc=480KB #5963) (peak=480KB #5966)
(tracking overhead=7631KB)
- Shared class space (reserved=16384KB, committed=12028KB, readonly=0KB)
(mmap: reserved=16384KB, committed=12028KB, peak=12252KB)
- Arena Chunk (reserved=673KB, committed=673KB)
(malloc=673KB #1081) (peak=117447KB #2730)
- Logging (reserved=0KB, committed=0KB)
(malloc=0KB #1) (peak=1KB #2)
- Arguments (reserved=0KB, committed=0KB)
(malloc=0KB #2) (peak=10KB #3)
- Module (reserved=240KB, committed=240KB)
(malloc=240KB #3519) (at peak)
- Safepoint (reserved=8KB, committed=8KB)
(mmap: reserved=8KB, committed=8KB, at peak)
- Synchronization (reserved=2321KB, committed=2321KB)
(malloc=2321KB #22846) (peak=2321KB #22847)
- Serviceability (reserved=18KB, committed=18KB)
(malloc=18KB #44) (at peak)
- Metaspace (reserved=131777KB, committed=96449KB)
(malloc=705KB #523) (at peak)
(mmap: reserved=131072KB, committed=95744KB, at peak)
- String Deduplication (reserved=1KB, committed=1KB)
(malloc=1KB #8) (at peak)
- Object Monitors (reserved=0KB, committed=0KB)
(malloc=0KB #1) (peak=94KB #463)
- Unknown (reserved=0KB, committed=0KB)
(mmap: reserved=0KB, committed=0KB, peak=20KB)
Virtual memory map:
[0x00007d0a92941000 - 0x00007d0a92942000] reserved and committed 4KB for Internal from
[0x00007d0a91867164]initialize_assert_poison()+0x24
[0x00007d0a9213227d]Threads::create_vm(JavaVMInitArgs*, bool*)+0x4fd
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
[0x00007d0a92941000 - 0x00007d0a92942000] committed 4KB from
[0x00007d0a918671a7]initialize_assert_poison()+0x67
[0x00007d0a9213227d]Threads::create_vm(JavaVMInitArgs*, bool*)+0x4fd
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
[0x00007d0a9293f000 - 0x00007d0a92941000] reserved and committed 8KB for Safepoint from
[0x00007d0a91f64070]SafepointMechanism::default_initialize()+0x40
[0x00007d0a92131f4b]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1cb
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
[0x00007d0a9293f000 - 0x00007d0a92941000] committed 8KB from
[0x00007d0a91f64087]SafepointMechanism::default_initialize()+0x57
[0x00007d0a92131f4b]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1cb
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
[0x00007d0a90fbd000 - 0x00007d0a910bd000] reserved 1024KB for Thread Stack from
[0x00007d0a92131ffa]Threads::create_vm(JavaVMInitArgs*, bool*)+0x27a
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
[0x00007d0a9294f299]ThreadJavaMain+0x9 in libjli.so
[0x00007d0a90fbd000 - 0x00007d0a90fc1000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a92132026]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2a6
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
[0x00007d0a91091000 - 0x00007d0a910bd000] committed 176KB
[0x00007d0a90f75000 - 0x00007d0a90f7d000] reserved and committed 32KB for Internal from
[0x00007d0a91efaeca]PerfMemory::create_memory_region(unsigned long)+0x96a
[0x00007d0a91ef93b4]PerfMemory::initialize() [clone .part.0]+0x54
[0x00007d0a91a840f2]vm_init_globals()+0x22
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a90f41000 - 0x00007d0a90f51000] reserved 64KB for Code from
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a91a4a7a3]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x133
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f2486]CodeCache::initialize_heaps()+0x326
[0x00007d0a90f41000 - 0x00007d0a90f46000] committed 20KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a7c8]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x158
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f2486]CodeCache::initialize_heaps()+0x326
[0x00007d0a90f46000 - 0x00007d0a90f49000] committed 12KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4aaa5]CodeHeap::expand_by(unsigned long)+0x165
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a917e4c15]BufferBlob::create(char const*, int)+0x95
[0x00007d0a90f49000 - 0x00007d0a90f50000] committed 28KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4aaa5]CodeHeap::expand_by(unsigned long)+0x165
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a917e527d]AdapterBlob::create(CodeBuffer*)+0x8d
[0x00007d0a90e58000 - 0x00007d0a90f41000] reserved 932KB for Code from
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a91a4a7a3]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x133
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f24c5]CodeCache::initialize_heaps()+0x365
[0x00007d0a90e58000 - 0x00007d0a90e5d000] committed 20KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a7c8]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x158
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f24c5]CodeCache::initialize_heaps()+0x365
[0x00007d0a90e5d000 - 0x00007d0a90e96000] committed 228KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4aaa5]CodeHeap::expand_by(unsigned long)+0x165
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e6fc9e]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x15e
[0x00007d0a90d6f000 - 0x00007d0a90e58000] reserved 932KB for Code from
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a91a4a7a3]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x133
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f2501]CodeCache::initialize_heaps()+0x3a1
[0x00007d0a90d6f000 - 0x00007d0a90d74000] committed 20KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a7c8]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x158
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f2501]CodeCache::initialize_heaps()+0x3a1
[0x00007d0a90d74000 - 0x00007d0a90d7d000] committed 36KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4aaa5]CodeHeap::expand_by(unsigned long)+0x165
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e6fc9e]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x15e
[0x00007d0a90d7d000 - 0x00007d0a90d7e000] committed 4KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4aaa5]CodeHeap::expand_by(unsigned long)+0x165
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e72b78]nmethod::new_native_nmethod(methodHandle const&, int, CodeBuffer*, int, int, int, ByteSize, ByteSize, OopMapSet*, int)+0xa8
[0x00007d0a90d7e000 - 0x00007d0a90d85000] committed 28KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4aaa5]CodeHeap::expand_by(unsigned long)+0x165
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e6fc9e]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x15e
[0x00007d0a90c2e000 - 0x00007d0a90d2e000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a90d2c000 - 0x00007d0a90d2e000] committed 8KB
[0x00007d0a90b2d000 - 0x00007d0a90c2d000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a90c2b000 - 0x00007d0a90c2d000] committed 8KB
[0x00007d0a90a0a000 - 0x00007d0a90b0a000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a90b00000 - 0x00007d0a90b0a000] committed 40KB
[0x00007d0a90909000 - 0x00007d0a90a09000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a90a01000 - 0x00007d0a90a09000] committed 32KB
[0x00007d0a90808000 - 0x00007d0a90908000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a90906000 - 0x00007d0a90908000] committed 8KB
[0x00007d0a90707000 - 0x00007d0a90807000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a907ff000 - 0x00007d0a90807000] committed 32KB
[0x00007d0a90606000 - 0x00007d0a90706000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a90704000 - 0x00007d0a90706000] committed 8KB
[0x00007d0a90505000 - 0x00007d0a90605000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a905fb000 - 0x00007d0a90605000] committed 40KB
[0x00007d0a90404000 - 0x00007d0a90504000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a904fa000 - 0x00007d0a90504000] committed 40KB
[0x00007d0a90303000 - 0x00007d0a90403000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a90401000 - 0x00007d0a90403000] committed 8KB
[0x00007d0a90202000 - 0x00007d0a90302000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a902fa000 - 0x00007d0a90302000] committed 32KB
[0x00007d0a90101000 - 0x00007d0a90201000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a901f7000 - 0x00007d0a90201000] committed 40KB
[0x00007d0a76fd5000 - 0x00007d0a85fd5000] reserved 245760KB for Code from
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a921aa0ef]ReservedCodeSpace::ReservedCodeSpace(unsigned long, unsigned long, unsigned long)+0x5f
[0x00007d0a917f23bf]CodeCache::initialize_heaps()+0x25f
[0x00007d0a917f2a75]CodeCache::initialize()+0x55
[0x00007d0a76fd5000 - 0x00007d0a77245000] committed 2496KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a6f1]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x81
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f24c5]CodeCache::initialize_heaps()+0x365
[0x00007d0a77245000 - 0x00007d0a78eb5000] committed 29120KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e6fc9e]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x15e
[0x00007d0a7e3ec000 - 0x00007d0a7e65c000] committed 2496KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a6f1]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x81
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f2486]CodeCache::initialize_heaps()+0x326
[0x00007d0a7e65c000 - 0x00007d0a7e7ec000] committed 1600KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a917e4c15]BufferBlob::create(char const*, int)+0x95
[0x00007d0a7e7ec000 - 0x00007d0a7eafc000] committed 3136KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a917e527d]AdapterBlob::create(CodeBuffer*)+0x8d
[0x00007d0a7eafc000 - 0x00007d0a7eb2c000] committed 192KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a917e4c15]BufferBlob::create(char const*, int)+0x95
[0x00007d0a7ebbd000 - 0x00007d0a7ee2d000] committed 2496KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a6f1]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x81
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f2501]CodeCache::initialize_heaps()+0x3a1
[0x00007d0a7ee2d000 - 0x00007d0a7f2bd000] committed 4672KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e6fc9e]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x15e
[0x00007d0a7f2bd000 - 0x00007d0a7f2cd000] committed 64KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e72b78]nmethod::new_native_nmethod(methodHandle const&, int, CodeBuffer*, int, int, int, ByteSize, ByteSize, OopMapSet*, int)+0xa8
[0x00007d0a7f2cd000 - 0x00007d0a7f40d000] committed 1280KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e6fc9e]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x15e
[0x00007d0a7f40d000 - 0x00007d0a7f41d000] committed 64KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e72b78]nmethod::new_native_nmethod(methodHandle const&, int, CodeBuffer*, int, int, int, ByteSize, ByteSize, OopMapSet*, int)+0xa8
[0x00007d0a7f41d000 - 0x00007d0a7f5ad000] committed 1600KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e6fc9e]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x15e
[0x00007d0a7f5ad000 - 0x00007d0a7f5bd000] committed 64KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e72b78]nmethod::new_native_nmethod(methodHandle const&, int, CodeBuffer*, int, int, int, ByteSize, ByteSize, OopMapSet*, int)+0xa8
[0x00007d0a7f5bd000 - 0x00007d0a7f68d000] committed 832KB from
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
[0x00007d0a91a4a9d1]CodeHeap::expand_by(unsigned long)+0x91
[0x00007d0a917ee48a]CodeCache::allocate(int, CodeBlobType, bool, CodeBlobType)+0x7a
[0x00007d0a91e6fc9e]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x15e
[0x00007d0a75fd5000 - 0x00007d0a76fd5000] reserved and committed 16384KB for GC from
[0x00007d0a92274f65]ZPageTable::ZPageTable()+0x45
[0x00007d0a92252ac1]ZHeap::ZHeap()+0x61
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
[0x00007d0a75fd5000 - 0x00007d0a76fd5000] committed 16384KB from
[0x00007d0a92274f81]ZPageTable::ZPageTable()+0x61
[0x00007d0a92252ac1]ZHeap::ZHeap()+0x61
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
[0x00007d0a74fd5000 - 0x00007d0a75fd5000] reserved and committed 16384KB for GC from
[0x00007d0a9224bf80]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0x70
[0x00007d0a9224d0be]ZGenerationOld::ZGenerationOld(ZPageTable*, ZPageAllocator*)+0x1e
[0x00007d0a92252b2e]ZHeap::ZHeap()+0xce
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a74fd5000 - 0x00007d0a75fd5000] committed 16384KB from
[0x00007d0a9224bfa0]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0x90
[0x00007d0a9224d0be]ZGenerationOld::ZGenerationOld(ZPageTable*, ZPageAllocator*)+0x1e
[0x00007d0a92252b2e]ZHeap::ZHeap()+0xce
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a74ed5000 - 0x00007d0a74fd5000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a74fcb000 - 0x00007d0a74fd5000] committed 40KB
[0x00007d0a74dd4000 - 0x00007d0a74ed4000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a74eca000 - 0x00007d0a74ed4000] committed 40KB
[0x00007d0a74cd3000 - 0x00007d0a74dd3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a74dcb000 - 0x00007d0a74dd3000] committed 32KB
[0x00007d0a74bd2000 - 0x00007d0a74cd2000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a74cca000 - 0x00007d0a74cd2000] committed 32KB
[0x00007d0a74ad1000 - 0x00007d0a74bd1000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a74bc9000 - 0x00007d0a74bd1000] committed 32KB
[0x00007d0a749d0000 - 0x00007d0a74ad0000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a74ac8000 - 0x00007d0a74ad0000] committed 32KB
[0x00007d0a748cf000 - 0x00007d0a749cf000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a749cd000 - 0x00007d0a749cf000] committed 8KB
[0x00007d0a747ce000 - 0x00007d0a748ce000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a748c8000 - 0x00007d0a748ce000] committed 24KB
[0x00007d0a746cd000 - 0x00007d0a747cd000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a747cb000 - 0x00007d0a747cd000] committed 8KB
[0x00007d0a745cc000 - 0x00007d0a746cc000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a746ca000 - 0x00007d0a746cc000] committed 8KB
[0x00007d0a744cb000 - 0x00007d0a745cb000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a745c9000 - 0x00007d0a745cb000] committed 8KB
[0x00007d0a743ca000 - 0x00007d0a744ca000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a744c8000 - 0x00007d0a744ca000] committed 8KB
[0x00007d0a742c9000 - 0x00007d0a743c9000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a743c7000 - 0x00007d0a743c9000] committed 8KB
[0x00007d0a741c8000 - 0x00007d0a742c8000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a742c6000 - 0x00007d0a742c8000] committed 8KB
[0x00007d0a740c7000 - 0x00007d0a741c7000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a741c5000 - 0x00007d0a741c7000] committed 8KB
[0x00007d0a4f000000 - 0x00007d0a50000000] reserved and committed 16384KB for GC from
[0x00007d0a9224bf80]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0x70
[0x00007d0a9224c591]ZGenerationYoung::ZGenerationYoung(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x21
[0x00007d0a92252b44]ZHeap::ZHeap()+0xe4
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a4f000000 - 0x00007d0a50000000] committed 16384KB from
[0x00007d0a9224bfa0]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0x90
[0x00007d0a9224c591]ZGenerationYoung::ZGenerationYoung(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x21
[0x00007d0a92252b44]ZHeap::ZHeap()+0xe4
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a4ef00000 - 0x00007d0a4f000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4effe000 - 0x00007d0a4f000000] committed 8KB
[0x00007d0a4edff000 - 0x00007d0a4eeff000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4eefd000 - 0x00007d0a4eeff000] committed 8KB
[0x00007d0a4ecfe000 - 0x00007d0a4edfe000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4edfc000 - 0x00007d0a4edfe000] committed 8KB
[0x00007d0a4ebfd000 - 0x00007d0a4ecfd000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4ecfb000 - 0x00007d0a4ecfd000] committed 8KB
[0x00007d0a4eafc000 - 0x00007d0a4ebfc000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4ebfa000 - 0x00007d0a4ebfc000] committed 8KB
[0x00007d0a4e9fb000 - 0x00007d0a4eafb000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4eaf9000 - 0x00007d0a4eafb000] committed 8KB
[0x00007d0a4e8fa000 - 0x00007d0a4e9fa000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e9f8000 - 0x00007d0a4e9fa000] committed 8KB
[0x00007d0a4e7f9000 - 0x00007d0a4e8f9000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e8f7000 - 0x00007d0a4e8f9000] committed 8KB
[0x00007d0a4e6f8000 - 0x00007d0a4e7f8000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e7f6000 - 0x00007d0a4e7f8000] committed 8KB
[0x00007d0a4e5f7000 - 0x00007d0a4e6f7000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e6f5000 - 0x00007d0a4e6f7000] committed 8KB
[0x00007d0a4e4f6000 - 0x00007d0a4e5f6000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e5f4000 - 0x00007d0a4e5f6000] committed 8KB
[0x00007d0a4e3f5000 - 0x00007d0a4e4f5000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e4f3000 - 0x00007d0a4e4f5000] committed 8KB
[0x00007d0a4e2f4000 - 0x00007d0a4e3f4000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e3f2000 - 0x00007d0a4e3f4000] committed 8KB
[0x00007d0a4e1f3000 - 0x00007d0a4e2f3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e2f1000 - 0x00007d0a4e2f3000] committed 8KB
[0x00007d0a4e0f2000 - 0x00007d0a4e1f2000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e1f0000 - 0x00007d0a4e1f2000] committed 8KB
[0x00007d0a4df70000 - 0x00007d0a4e070000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4e06e000 - 0x00007d0a4e070000] committed 8KB
[0x00007d0a4de6f000 - 0x00007d0a4df6f000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4df6b000 - 0x00007d0a4df6f000] committed 16KB
[0x00007d0a4da83000 - 0x00007d0a4db83000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4da83000 - 0x00007d0a4da87000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4db6d000 - 0x00007d0a4db83000] committed 88KB
[0x00007d0a4d983000 - 0x00007d0a4da83000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d983000 - 0x00007d0a4d987000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4da6c000 - 0x00007d0a4da83000] committed 92KB
[0x00007d0a4d883000 - 0x00007d0a4d983000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d883000 - 0x00007d0a4d887000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d96c000 - 0x00007d0a4d983000] committed 92KB
[0x00007d0a4d783000 - 0x00007d0a4d883000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d783000 - 0x00007d0a4d787000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d881000 - 0x00007d0a4d883000] committed 8KB
[0x00007d0a4d683000 - 0x00007d0a4d783000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d683000 - 0x00007d0a4d687000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d781000 - 0x00007d0a4d783000] committed 8KB
[0x00007d0a4d583000 - 0x00007d0a4d683000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d583000 - 0x00007d0a4d587000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d679000 - 0x00007d0a4d683000] committed 40KB
[0x00007d0a4d483000 - 0x00007d0a4d583000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d483000 - 0x00007d0a4d487000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d577000 - 0x00007d0a4d583000] committed 48KB
[0x00007d0a4d2b3000 - 0x00007d0a4d3b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d2b3000 - 0x00007d0a4d2b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d39d000 - 0x00007d0a4d3b3000] committed 88KB
[0x00007d0a4d1b3000 - 0x00007d0a4d2b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d1b3000 - 0x00007d0a4d1b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d2b1000 - 0x00007d0a4d2b3000] committed 8KB
[0x00007d0a4d0b3000 - 0x00007d0a4d1b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4d0b3000 - 0x00007d0a4d0b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d19c000 - 0x00007d0a4d1b3000] committed 92KB
[0x00007d0a4cfb3000 - 0x00007d0a4d0b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4cfb3000 - 0x00007d0a4cfb7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4d09d000 - 0x00007d0a4d0b3000] committed 88KB
[0x00007d0a4ceb3000 - 0x00007d0a4cfb3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4ceb3000 - 0x00007d0a4ceb7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4cf9d000 - 0x00007d0a4cfb3000] committed 88KB
[0x00007d0a4cdb3000 - 0x00007d0a4ceb3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4cdb3000 - 0x00007d0a4cdb7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4ce9b000 - 0x00007d0a4ceb3000] committed 96KB
[0x00007d0a4ccb3000 - 0x00007d0a4cdb3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4ccb3000 - 0x00007d0a4ccb7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4cd9c000 - 0x00007d0a4cdb3000] committed 92KB
[0x00007d0a4cbb3000 - 0x00007d0a4ccb3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4cbb3000 - 0x00007d0a4cbb7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4cc99000 - 0x00007d0a4ccb3000] committed 104KB
[0x00007d0a4cab3000 - 0x00007d0a4cbb3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4cab3000 - 0x00007d0a4cab7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4cb9c000 - 0x00007d0a4cbb3000] committed 92KB
[0x00007d0a4c9b3000 - 0x00007d0a4cab3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c9b3000 - 0x00007d0a4c9b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4ca9d000 - 0x00007d0a4ca9e000] committed 4KB
[0x00007d0a4caad000 - 0x00007d0a4cab3000] committed 24KB
[0x00007d0a4c8b3000 - 0x00007d0a4c9b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c8b3000 - 0x00007d0a4c8b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c99a000 - 0x00007d0a4c9b3000] committed 100KB
[0x00007d0a4c7b3000 - 0x00007d0a4c8b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c7b3000 - 0x00007d0a4c7b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c89a000 - 0x00007d0a4c8b3000] committed 100KB
[0x00007d0a4c6b3000 - 0x00007d0a4c7b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c6b3000 - 0x00007d0a4c6b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c79d000 - 0x00007d0a4c7b3000] committed 88KB
[0x00007d0a4c5b3000 - 0x00007d0a4c6b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c5b3000 - 0x00007d0a4c5b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c696000 - 0x00007d0a4c6b3000] committed 116KB
[0x00007d0a4c4b3000 - 0x00007d0a4c5b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c4b3000 - 0x00007d0a4c4b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c59c000 - 0x00007d0a4c5b3000] committed 92KB
[0x00007d0a4c3b3000 - 0x00007d0a4c4b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c3b3000 - 0x00007d0a4c3b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c49b000 - 0x00007d0a4c4b3000] committed 96KB
[0x00007d0a4c2b3000 - 0x00007d0a4c3b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c2b3000 - 0x00007d0a4c2b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c398000 - 0x00007d0a4c3b3000] committed 108KB
[0x00007d0a4c1b3000 - 0x00007d0a4c2b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c1b3000 - 0x00007d0a4c1b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c297000 - 0x00007d0a4c2b3000] committed 112KB
[0x00007d0a4c0b3000 - 0x00007d0a4c1b3000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0a4c0b3000 - 0x00007d0a4c0b7000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a4c19d000 - 0x00007d0a4c1b3000] committed 88KB
[0x00007d0848000000 - 0x00007d0a48000000] reserved 8388608KB for GC from
[0x00007d0a92267939]ZMarkStackAllocator::ZMarkStackAllocator()+0x59
[0x00007d0a9225c087]ZMark::ZMark(ZGeneration*, ZPageTable*)+0x27
[0x00007d0a9224bfcc]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0xbc
[0x00007d0a9224d0be]ZGenerationOld::ZGenerationOld(ZPageTable*, ZPageAllocator*)+0x1e
[0x00007d0848000000 - 0x00007d084a000000] committed 32768KB from
[0x00007d0a92267dd8]ZMarkStackAllocator::alloc_magazine()+0x188
[0x00007d0a92266ed8]ZMarkThreadLocalStacks::push_slow(ZMarkStackAllocator*, ZMarkStripe*, ZStack<ZMarkStackEntry, 254ul>**, ZMarkTerminate*, ZMarkStackEntry, bool)+0x248
[0x00007d0a9228acfb]ZUncoloredRoot::process(zaddress_unsafe*, unsigned long)+0x36b
[0x00007d0a91a46b38]HandleArea::oops_do(OopClosure*)+0x48
[0x00007d0624000000 - 0x00007d0824000000] reserved 8388608KB for GC from
[0x00007d0a92267939]ZMarkStackAllocator::ZMarkStackAllocator()+0x59
[0x00007d0a9225c087]ZMark::ZMark(ZGeneration*, ZPageTable*)+0x27
[0x00007d0a9224bfcc]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0xbc
[0x00007d0a9224c591]ZGenerationYoung::ZGenerationYoung(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x21
[0x00007d0624000000 - 0x00007d0626000000] committed 32768KB from
[0x00007d0a9226799f]ZMarkStackAllocator::ZMarkStackAllocator()+0xbf
[0x00007d0a9225c087]ZMark::ZMark(ZGeneration*, ZPageTable*)+0x27
[0x00007d0a9224bfcc]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0xbc
[0x00007d0a9224c591]ZGenerationYoung::ZGenerationYoung(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x21
[0x00007d0584000000 - 0x00007d05c4000000] reserved 1048576KB for Class from
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a921a9f66]ReservedSpace::ReservedSpace(unsigned long, unsigned long, unsigned long, char*)+0x56
[0x00007d0a91e1d964]Metaspace::reserve_address_space_for_compressed_classes(unsigned long)+0x24
[0x00007d0a91e24530]MetaspaceShared::reserve_address_space_for_archives(FileMapInfo*, FileMapInfo*, bool, ReservedSpace&, ReservedSpace&, ReservedSpace&)+0x330
[0x00007d0584000000 - 0x00007d0584050000] committed 320KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0584050000 - 0x00007d0584080000] committed 192KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0584080000 - 0x00007d05840d0000] committed 320KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d05840d0000 - 0x00007d0584100000] committed 192KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0584100000 - 0x00007d05842d0000] committed 1856KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d05842d0000 - 0x00007d0584300000] committed 192KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0584300000 - 0x00007d0584570000] committed 2496KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0584570000 - 0x00007d0584580000] committed 64KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0584580000 - 0x00007d05845d0000] committed 320KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d05845d0000 - 0x00007d0584600000] committed 192KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0584600000 - 0x00007d0584950000] committed 3392KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0584950000 - 0x00007d0584980000] committed 192KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0584980000 - 0x00007d0584a70000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0584a70000 - 0x00007d0584a80000] committed 64KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0584a80000 - 0x00007d0584c50000] committed 1856KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0584c50000 - 0x00007d0584c60000] committed 64KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0584c80000 - 0x00007d0584dc0000] committed 1280KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0583000000 - 0x00007d0584000000] reserved 16384KB for Shared class space from
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a921a9f66]ReservedSpace::ReservedSpace(unsigned long, unsigned long, unsigned long, char*)+0x56
[0x00007d0a91e1d964]Metaspace::reserve_address_space_for_compressed_classes(unsigned long)+0x24
[0x00007d0a91e24530]MetaspaceShared::reserve_address_space_for_archives(FileMapInfo*, FileMapInfo*, bool, ReservedSpace&, ReservedSpace&, ReservedSpace&)+0x330
[0x00007d0583000000 - 0x00007d0583bbf000] committed 12028KB from
[0x00007d0a9193cc56]FileMapInfo::map_regions(int*, int, char*, ReservedSpace)+0xd6
[0x00007d0a91e25030]MetaspaceShared::map_archive(FileMapInfo*, char*, ReservedSpace)+0xa0
[0x00007d0a91e25aee]MetaspaceShared::map_archives(FileMapInfo*, FileMapInfo*, bool)+0x14e
[0x00007d0a91e2614f]MetaspaceShared::initialize_runtime_shared_and_meta_spaces()+0x2ef
[0x00007d057f000000 - 0x00007d0583000000] reserved and committed 65536KB for Metaspace from
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a921a9f66]ReservedSpace::ReservedSpace(unsigned long, unsigned long, unsigned long, char*)+0x56
[0x00007d0a921a8885]metaspace::VirtualSpaceNode::create_node(unsigned long, metaspace::CommitLimiter*, metaspace::AbstractCounter<unsigned long>*, metaspace::AbstractCounter<unsigned long>*)+0x55
[0x00007d0a921a7dab]metaspace::VirtualSpaceList::allocate_root_chunk()+0x4b
[0x00007d057f000000 - 0x00007d057f010000] committed 64KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d057f010000 - 0x00007d057f400000] committed 4032KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d057f400000 - 0x00007d057f910000] committed 5184KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d057f910000 - 0x00007d057fa00000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d057fa00000 - 0x00007d0580190000] committed 7744KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0580190000 - 0x00007d0580200000] committed 448KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0580200000 - 0x00007d05805d0000] committed 3904KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d05805d0000 - 0x00007d0580600000] committed 192KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0580600000 - 0x00007d05807d0000] committed 1856KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d05807d0000 - 0x00007d0580800000] committed 192KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0580800000 - 0x00007d0580990000] committed 1600KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0580990000 - 0x00007d0580a00000] committed 448KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0580a00000 - 0x00007d0580b10000] committed 1088KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0580b10000 - 0x00007d0580c00000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0580c00000 - 0x00007d0581410000] committed 8256KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0581410000 - 0x00007d0581500000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0581500000 - 0x00007d0581710000] committed 2112KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0581710000 - 0x00007d0581800000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0581800000 - 0x00007d0581f10000] committed 7232KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0581f10000 - 0x00007d0582000000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0582000000 - 0x00007d0582710000] committed 7232KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0582710000 - 0x00007d0582800000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0582800000 - 0x00007d0582ff0000] committed 8128KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0582ff0000 - 0x00007d0583000000] committed 64KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d057ef00000 - 0x00007d057f000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057ef00000 - 0x00007d057ef04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057efe8000 - 0x00007d057f000000] committed 96KB
[0x00007d057eb00000 - 0x00007d057ec00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057eb00000 - 0x00007d057eb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057ebe9000 - 0x00007d057ec00000] committed 92KB
[0x00007d057e500000 - 0x00007d057e600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057e500000 - 0x00007d057e504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057e5ea000 - 0x00007d057e600000] committed 88KB
[0x00007d057e400000 - 0x00007d057e500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057e400000 - 0x00007d057e404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057e4e9000 - 0x00007d057e500000] committed 92KB
[0x00007d057e300000 - 0x00007d057e400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057e300000 - 0x00007d057e304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057e3ea000 - 0x00007d057e400000] committed 88KB
[0x00007d057e200000 - 0x00007d057e300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057e200000 - 0x00007d057e204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057e2e8000 - 0x00007d057e300000] committed 96KB
[0x00007d057e100000 - 0x00007d057e200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057e100000 - 0x00007d057e104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057e1e7000 - 0x00007d057e200000] committed 100KB
[0x00007d057e000000 - 0x00007d057e100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057e000000 - 0x00007d057e004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057e0e8000 - 0x00007d057e100000] committed 96KB
[0x00007d057df00000 - 0x00007d057e000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057df00000 - 0x00007d057df04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057dfe8000 - 0x00007d057e000000] committed 96KB
[0x00007d057de00000 - 0x00007d057df00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057de00000 - 0x00007d057de04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057deea000 - 0x00007d057df00000] committed 88KB
[0x00007d057dd00000 - 0x00007d057de00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057dd00000 - 0x00007d057dd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057ddea000 - 0x00007d057de00000] committed 88KB
[0x00007d057dc00000 - 0x00007d057dd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057dc00000 - 0x00007d057dc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057dce1000 - 0x00007d057dd00000] committed 124KB
[0x00007d057db00000 - 0x00007d057dc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057db00000 - 0x00007d057db04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057dbea000 - 0x00007d057dc00000] committed 88KB
[0x00007d057da00000 - 0x00007d057db00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057da00000 - 0x00007d057da04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057dae7000 - 0x00007d057db00000] committed 100KB
[0x00007d057d900000 - 0x00007d057da00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d900000 - 0x00007d057d904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d9e7000 - 0x00007d057da00000] committed 100KB
[0x00007d057d800000 - 0x00007d057d900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d800000 - 0x00007d057d804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d8e7000 - 0x00007d057d900000] committed 100KB
[0x00007d057d700000 - 0x00007d057d800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d700000 - 0x00007d057d704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d7e7000 - 0x00007d057d800000] committed 100KB
[0x00007d057d600000 - 0x00007d057d700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d600000 - 0x00007d057d604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d6ea000 - 0x00007d057d700000] committed 88KB
[0x00007d057d500000 - 0x00007d057d600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d500000 - 0x00007d057d504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d5e6000 - 0x00007d057d600000] committed 104KB
[0x00007d057d400000 - 0x00007d057d500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d400000 - 0x00007d057d404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d4e8000 - 0x00007d057d500000] committed 96KB
[0x00007d057d300000 - 0x00007d057d400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d300000 - 0x00007d057d304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d3ea000 - 0x00007d057d400000] committed 88KB
[0x00007d057d200000 - 0x00007d057d300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d200000 - 0x00007d057d204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d2e7000 - 0x00007d057d300000] committed 100KB
[0x00007d057d100000 - 0x00007d057d200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d100000 - 0x00007d057d104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d1e7000 - 0x00007d057d200000] committed 100KB
[0x00007d057d000000 - 0x00007d057d100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057d000000 - 0x00007d057d004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057d0e8000 - 0x00007d057d100000] committed 96KB
[0x00007d057cf00000 - 0x00007d057d000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057cf00000 - 0x00007d057cf04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057cfe6000 - 0x00007d057d000000] committed 104KB
[0x00007d057ce00000 - 0x00007d057cf00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057ce00000 - 0x00007d057ce04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057ceea000 - 0x00007d057cf00000] committed 88KB
[0x00007d057cd00000 - 0x00007d057ce00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057cd00000 - 0x00007d057cd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057cdea000 - 0x00007d057ce00000] committed 88KB
[0x00007d057cc00000 - 0x00007d057cd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057cc00000 - 0x00007d057cc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057ccea000 - 0x00007d057cd00000] committed 88KB
[0x00007d057cb00000 - 0x00007d057cc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057cb00000 - 0x00007d057cb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057cbea000 - 0x00007d057cc00000] committed 88KB
[0x00007d057ca00000 - 0x00007d057cb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057ca00000 - 0x00007d057ca04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057cae2000 - 0x00007d057cb00000] committed 120KB
[0x00007d057c900000 - 0x00007d057ca00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c900000 - 0x00007d057c904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c9e3000 - 0x00007d057ca00000] committed 116KB
[0x00007d057c800000 - 0x00007d057c900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c800000 - 0x00007d057c804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c8e3000 - 0x00007d057c900000] committed 116KB
[0x00007d057c700000 - 0x00007d057c800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c700000 - 0x00007d057c704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c7e2000 - 0x00007d057c800000] committed 120KB
[0x00007d057c600000 - 0x00007d057c700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c600000 - 0x00007d057c604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c6e7000 - 0x00007d057c700000] committed 100KB
[0x00007d057c500000 - 0x00007d057c600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c500000 - 0x00007d057c504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c5ea000 - 0x00007d057c600000] committed 88KB
[0x00007d057c400000 - 0x00007d057c500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c400000 - 0x00007d057c404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c4e9000 - 0x00007d057c500000] committed 92KB
[0x00007d057c300000 - 0x00007d057c400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c300000 - 0x00007d057c304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c3e7000 - 0x00007d057c400000] committed 100KB
[0x00007d057c200000 - 0x00007d057c300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c200000 - 0x00007d057c204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c2e7000 - 0x00007d057c300000] committed 100KB
[0x00007d057c100000 - 0x00007d057c200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c100000 - 0x00007d057c104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c1e8000 - 0x00007d057c200000] committed 96KB
[0x00007d057c000000 - 0x00007d057c100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d057c000000 - 0x00007d057c004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d057c0e7000 - 0x00007d057c100000] committed 100KB
[0x00007d046ff00000 - 0x00007d0470000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046ff00000 - 0x00007d046ff04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046ffe8000 - 0x00007d0470000000] committed 96KB
[0x00007d046fe00000 - 0x00007d046ff00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046fe00000 - 0x00007d046fe04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046fee7000 - 0x00007d046ff00000] committed 100KB
[0x00007d046fd00000 - 0x00007d046fe00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046fd00000 - 0x00007d046fd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046fde7000 - 0x00007d046fe00000] committed 100KB
[0x00007d046fc00000 - 0x00007d046fd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046fc00000 - 0x00007d046fc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046fce7000 - 0x00007d046fd00000] committed 100KB
[0x00007d046fb00000 - 0x00007d046fc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046fb00000 - 0x00007d046fb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046fbe8000 - 0x00007d046fc00000] committed 96KB
[0x00007d046fa00000 - 0x00007d046fb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046fa00000 - 0x00007d046fa04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046fae7000 - 0x00007d046fb00000] committed 100KB
[0x00007d046f900000 - 0x00007d046fa00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046f900000 - 0x00007d046f904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046f9e7000 - 0x00007d046fa00000] committed 100KB
[0x00007d046f800000 - 0x00007d046f900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046f800000 - 0x00007d046f804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046f8e8000 - 0x00007d046f900000] committed 96KB
[0x00007d046f700000 - 0x00007d046f800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046f700000 - 0x00007d046f704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046f7e7000 - 0x00007d046f800000] committed 100KB
[0x00007d046f600000 - 0x00007d046f700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046f600000 - 0x00007d046f604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046f6ea000 - 0x00007d046f700000] committed 88KB
[0x00007d046f500000 - 0x00007d046f600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046f500000 - 0x00007d046f504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046f5e9000 - 0x00007d046f600000] committed 92KB
[0x00007d046f400000 - 0x00007d046f500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046f400000 - 0x00007d046f404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046f4e9000 - 0x00007d046f500000] committed 92KB
[0x00007d046f300000 - 0x00007d046f400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046f300000 - 0x00007d046f304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046f3ea000 - 0x00007d046f400000] committed 88KB
[0x00007d046ef00000 - 0x00007d046f000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046ef00000 - 0x00007d046ef04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046efe8000 - 0x00007d046f000000] committed 96KB
[0x00007d046ee00000 - 0x00007d046ef00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046ee00000 - 0x00007d046ee04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046eee7000 - 0x00007d046ef00000] committed 100KB
[0x00007d046ed00000 - 0x00007d046ee00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046ed00000 - 0x00007d046ed04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046ede8000 - 0x00007d046ee00000] committed 96KB
[0x00007d046ec00000 - 0x00007d046ed00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046ec00000 - 0x00007d046ec04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046ece9000 - 0x00007d046ed00000] committed 92KB
[0x00007d046eb00000 - 0x00007d046ec00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046eb00000 - 0x00007d046eb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046ebe1000 - 0x00007d046ec00000] committed 124KB
[0x00007d046ea00000 - 0x00007d046eb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046ea00000 - 0x00007d046ea04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046eaea000 - 0x00007d046eaeb000] committed 4KB
[0x00007d046eafa000 - 0x00007d046eb00000] committed 24KB
[0x00007d046e900000 - 0x00007d046ea00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e900000 - 0x00007d046e904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e9e5000 - 0x00007d046e9e7000] committed 8KB
[0x00007d046e9e8000 - 0x00007d046ea00000] committed 96KB
[0x00007d046e800000 - 0x00007d046e900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e800000 - 0x00007d046e804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e8e9000 - 0x00007d046e900000] committed 92KB
[0x00007d046e700000 - 0x00007d046e800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e700000 - 0x00007d046e704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e7e7000 - 0x00007d046e800000] committed 100KB
[0x00007d046e600000 - 0x00007d046e700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e600000 - 0x00007d046e604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e6e5000 - 0x00007d046e6e6000] committed 4KB
[0x00007d046e6e7000 - 0x00007d046e700000] committed 100KB
[0x00007d046e500000 - 0x00007d046e600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e500000 - 0x00007d046e504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e5e9000 - 0x00007d046e600000] committed 92KB
[0x00007d046e400000 - 0x00007d046e500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e400000 - 0x00007d046e404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e4e9000 - 0x00007d046e500000] committed 92KB
[0x00007d046e300000 - 0x00007d046e400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e300000 - 0x00007d046e304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e3e8000 - 0x00007d046e400000] committed 96KB
[0x00007d046e200000 - 0x00007d046e300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e200000 - 0x00007d046e204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e2ea000 - 0x00007d046e300000] committed 88KB
[0x00007d046e100000 - 0x00007d046e200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e100000 - 0x00007d046e104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e1e7000 - 0x00007d046e200000] committed 100KB
[0x00007d046e000000 - 0x00007d046e100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046e000000 - 0x00007d046e004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046e0e7000 - 0x00007d046e100000] committed 100KB
[0x00007d046df00000 - 0x00007d046e000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046df00000 - 0x00007d046df04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046dfe6000 - 0x00007d046e000000] committed 104KB
[0x00007d046de00000 - 0x00007d046df00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046de00000 - 0x00007d046de04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046dee9000 - 0x00007d046df00000] committed 92KB
[0x00007d046dd00000 - 0x00007d046de00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046dd00000 - 0x00007d046dd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046ddea000 - 0x00007d046de00000] committed 88KB
[0x00007d046dc00000 - 0x00007d046dd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046dc00000 - 0x00007d046dc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046dce7000 - 0x00007d046dd00000] committed 100KB
[0x00007d046db00000 - 0x00007d046dc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046db00000 - 0x00007d046db04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046dbe5000 - 0x00007d046dc00000] committed 108KB
[0x00007d046da00000 - 0x00007d046db00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046da00000 - 0x00007d046da04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046dae7000 - 0x00007d046db00000] committed 100KB
[0x00007d046d900000 - 0x00007d046da00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046d900000 - 0x00007d046d904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046d9e6000 - 0x00007d046da00000] committed 104KB
[0x00007d046d800000 - 0x00007d046d900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046d800000 - 0x00007d046d804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046d8e4000 - 0x00007d046d900000] committed 112KB
[0x00007d046d700000 - 0x00007d046d800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046d700000 - 0x00007d046d704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046d7e8000 - 0x00007d046d800000] committed 96KB
[0x00007d046d600000 - 0x00007d046d700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046d600000 - 0x00007d046d604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046d6e9000 - 0x00007d046d700000] committed 92KB
[0x00007d046d500000 - 0x00007d046d600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046d500000 - 0x00007d046d504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046d5e5000 - 0x00007d046d5e6000] committed 4KB
[0x00007d046d5e7000 - 0x00007d046d600000] committed 100KB
[0x00007d046d100000 - 0x00007d046d200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046d100000 - 0x00007d046d104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046d1ea000 - 0x00007d046d200000] committed 88KB
[0x00007d046d000000 - 0x00007d046d100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046d000000 - 0x00007d046d004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046d0e9000 - 0x00007d046d100000] committed 92KB
[0x00007d046cf00000 - 0x00007d046d000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046cf00000 - 0x00007d046cf04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046cfe5000 - 0x00007d046d000000] committed 108KB
[0x00007d046ce00000 - 0x00007d046cf00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046ce00000 - 0x00007d046ce04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046cee9000 - 0x00007d046cf00000] committed 92KB
[0x00007d046cd00000 - 0x00007d046ce00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046cd00000 - 0x00007d046cd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046cde8000 - 0x00007d046ce00000] committed 96KB
[0x00007d046cc00000 - 0x00007d046cd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046cc00000 - 0x00007d046cc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046cce8000 - 0x00007d046cd00000] committed 96KB
[0x00007d046cb00000 - 0x00007d046cc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046cb00000 - 0x00007d046cb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046cbe9000 - 0x00007d046cc00000] committed 92KB
[0x00007d046ca00000 - 0x00007d046cb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046ca00000 - 0x00007d046ca04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046cae7000 - 0x00007d046cb00000] committed 100KB
[0x00007d046c900000 - 0x00007d046ca00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c900000 - 0x00007d046c904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c9e9000 - 0x00007d046ca00000] committed 92KB
[0x00007d046c800000 - 0x00007d046c900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c800000 - 0x00007d046c804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c8e8000 - 0x00007d046c900000] committed 96KB
[0x00007d046c700000 - 0x00007d046c800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c700000 - 0x00007d046c704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c7e9000 - 0x00007d046c800000] committed 92KB
[0x00007d046c600000 - 0x00007d046c700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c600000 - 0x00007d046c604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c6e8000 - 0x00007d046c700000] committed 96KB
[0x00007d046c500000 - 0x00007d046c600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c500000 - 0x00007d046c504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c5e3000 - 0x00007d046c600000] committed 116KB
[0x00007d046c400000 - 0x00007d046c500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c400000 - 0x00007d046c404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c4ea000 - 0x00007d046c500000] committed 88KB
[0x00007d046c300000 - 0x00007d046c400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c300000 - 0x00007d046c304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c3e5000 - 0x00007d046c400000] committed 108KB
[0x00007d046c200000 - 0x00007d046c300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c200000 - 0x00007d046c204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c2ea000 - 0x00007d046c300000] committed 88KB
[0x00007d046c100000 - 0x00007d046c200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c100000 - 0x00007d046c104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c1e8000 - 0x00007d046c200000] committed 96KB
[0x00007d046c000000 - 0x00007d046c100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d046c000000 - 0x00007d046c004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d046c0e9000 - 0x00007d046c100000] committed 92KB
[0x00007d0420000000 - 0x00007d0424000000] reserved 65536KB for Metaspace from
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a921a9f66]ReservedSpace::ReservedSpace(unsigned long, unsigned long, unsigned long, char*)+0x56
[0x00007d0a921a8885]metaspace::VirtualSpaceNode::create_node(unsigned long, metaspace::CommitLimiter*, metaspace::AbstractCounter<unsigned long>*, metaspace::AbstractCounter<unsigned long>*)+0x55
[0x00007d0a921a7dab]metaspace::VirtualSpaceList::allocate_root_chunk()+0x4b
[0x00007d0420000000 - 0x00007d0420010000] committed 64KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0420010000 - 0x00007d0420100000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0420100000 - 0x00007d0420710000] committed 6208KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0420710000 - 0x00007d0420800000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0420800000 - 0x00007d0420f50000] committed 7488KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0420f50000 - 0x00007d0420f80000] committed 192KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0420f80000 - 0x00007d04211f0000] committed 2496KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d04211f0000 - 0x00007d0421200000] committed 64KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0421200000 - 0x00007d0421510000] committed 3136KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0421510000 - 0x00007d0421600000] committed 960KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0421600000 - 0x00007d0421b10000] committed 5184KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d0421b10000 - 0x00007d0421bd0000] committed 768KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c844]metaspace::Metachunk::ensure_committed(unsigned long)+0xf4
[0x00007d0a91e1fbca]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x8a
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0421c00000 - 0x00007d0421db0000] committed 1728KB from
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
[0x00007d0a91e1c911]metaspace::Metachunk::ensure_committed_locked(unsigned long)+0xb1
[0x00007d0a91770351]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x1c1
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
[0x00007d037ff00000 - 0x00007d0380000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037ff00000 - 0x00007d037ff04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037ffe8000 - 0x00007d0380000000] committed 96KB
[0x00007d037fe00000 - 0x00007d037ff00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037fe00000 - 0x00007d037fe04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037fee3000 - 0x00007d037fee5000] committed 8KB
[0x00007d037fee8000 - 0x00007d037ff00000] committed 96KB
[0x00007d037fd00000 - 0x00007d037fe00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037fd00000 - 0x00007d037fd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037fde9000 - 0x00007d037fe00000] committed 92KB
[0x00007d037fc00000 - 0x00007d037fd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037fc00000 - 0x00007d037fc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037fce8000 - 0x00007d037fd00000] committed 96KB
[0x00007d037fb00000 - 0x00007d037fc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037fb00000 - 0x00007d037fb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037fbe9000 - 0x00007d037fc00000] committed 92KB
[0x00007d037fa00000 - 0x00007d037fb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037fa00000 - 0x00007d037fa04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037fae9000 - 0x00007d037fb00000] committed 92KB
[0x00007d037f900000 - 0x00007d037fa00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f900000 - 0x00007d037f904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f9e8000 - 0x00007d037fa00000] committed 96KB
[0x00007d037f800000 - 0x00007d037f900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f800000 - 0x00007d037f804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f8e7000 - 0x00007d037f900000] committed 100KB
[0x00007d037f700000 - 0x00007d037f800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f700000 - 0x00007d037f704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f7ea000 - 0x00007d037f800000] committed 88KB
[0x00007d037f600000 - 0x00007d037f700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f600000 - 0x00007d037f604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f6ea000 - 0x00007d037f700000] committed 88KB
[0x00007d037f500000 - 0x00007d037f600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f500000 - 0x00007d037f504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f5ea000 - 0x00007d037f600000] committed 88KB
[0x00007d037f400000 - 0x00007d037f500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f400000 - 0x00007d037f404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f4e7000 - 0x00007d037f500000] committed 100KB
[0x00007d037f300000 - 0x00007d037f400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f300000 - 0x00007d037f304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f3ea000 - 0x00007d037f400000] committed 88KB
[0x00007d037f200000 - 0x00007d037f300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f200000 - 0x00007d037f204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f2ea000 - 0x00007d037f300000] committed 88KB
[0x00007d037f100000 - 0x00007d037f200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f100000 - 0x00007d037f104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f1ea000 - 0x00007d037f200000] committed 88KB
[0x00007d037f000000 - 0x00007d037f100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037f000000 - 0x00007d037f004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037f0ea000 - 0x00007d037f100000] committed 88KB
[0x00007d037ef00000 - 0x00007d037f000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037ef00000 - 0x00007d037ef04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037efea000 - 0x00007d037efeb000] committed 4KB
[0x00007d037effa000 - 0x00007d037f000000] committed 24KB
[0x00007d037ee00000 - 0x00007d037ef00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037ee00000 - 0x00007d037ee04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037eeea000 - 0x00007d037ef00000] committed 88KB
[0x00007d037ed00000 - 0x00007d037ee00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037ed00000 - 0x00007d037ed04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037edea000 - 0x00007d037ee00000] committed 88KB
[0x00007d037ec00000 - 0x00007d037ed00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037ec00000 - 0x00007d037ec04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037ecea000 - 0x00007d037ed00000] committed 88KB
[0x00007d037eb00000 - 0x00007d037ec00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037eb00000 - 0x00007d037eb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037ebea000 - 0x00007d037ec00000] committed 88KB
[0x00007d037ea00000 - 0x00007d037eb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037ea00000 - 0x00007d037ea04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037eaea000 - 0x00007d037eb00000] committed 88KB
[0x00007d037e900000 - 0x00007d037ea00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e900000 - 0x00007d037e904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e9ea000 - 0x00007d037ea00000] committed 88KB
[0x00007d037e800000 - 0x00007d037e900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e800000 - 0x00007d037e804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e8ea000 - 0x00007d037e900000] committed 88KB
[0x00007d037e700000 - 0x00007d037e800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e700000 - 0x00007d037e704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e7ea000 - 0x00007d037e800000] committed 88KB
[0x00007d037e600000 - 0x00007d037e700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e600000 - 0x00007d037e604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e6ea000 - 0x00007d037e700000] committed 88KB
[0x00007d037e500000 - 0x00007d037e600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e500000 - 0x00007d037e504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e5ea000 - 0x00007d037e600000] committed 88KB
[0x00007d037e400000 - 0x00007d037e500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e400000 - 0x00007d037e404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e4ea000 - 0x00007d037e500000] committed 88KB
[0x00007d037e300000 - 0x00007d037e400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e300000 - 0x00007d037e304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e3ea000 - 0x00007d037e400000] committed 88KB
[0x00007d037e200000 - 0x00007d037e300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e200000 - 0x00007d037e204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e2ea000 - 0x00007d037e300000] committed 88KB
[0x00007d037e100000 - 0x00007d037e200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e100000 - 0x00007d037e104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e1ea000 - 0x00007d037e200000] committed 88KB
[0x00007d037e000000 - 0x00007d037e100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037e000000 - 0x00007d037e004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037e0ea000 - 0x00007d037e100000] committed 88KB
[0x00007d037df00000 - 0x00007d037e000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037df00000 - 0x00007d037df04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037dfea000 - 0x00007d037e000000] committed 88KB
[0x00007d037de00000 - 0x00007d037df00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037de00000 - 0x00007d037de04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037deea000 - 0x00007d037df00000] committed 88KB
[0x00007d037dd00000 - 0x00007d037de00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037dd00000 - 0x00007d037dd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037ddea000 - 0x00007d037de00000] committed 88KB
[0x00007d037dc00000 - 0x00007d037dd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037dc00000 - 0x00007d037dc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037dcea000 - 0x00007d037dd00000] committed 88KB
[0x00007d037db00000 - 0x00007d037dc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037db00000 - 0x00007d037db04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037dbea000 - 0x00007d037dc00000] committed 88KB
[0x00007d037da00000 - 0x00007d037db00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037da00000 - 0x00007d037da04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037daea000 - 0x00007d037db00000] committed 88KB
[0x00007d037d900000 - 0x00007d037da00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d900000 - 0x00007d037d904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d9ea000 - 0x00007d037da00000] committed 88KB
[0x00007d037d800000 - 0x00007d037d900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d800000 - 0x00007d037d804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d8ea000 - 0x00007d037d900000] committed 88KB
[0x00007d037d700000 - 0x00007d037d800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d700000 - 0x00007d037d704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d7ea000 - 0x00007d037d800000] committed 88KB
[0x00007d037d600000 - 0x00007d037d700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d600000 - 0x00007d037d604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d6ea000 - 0x00007d037d700000] committed 88KB
[0x00007d037d500000 - 0x00007d037d600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d500000 - 0x00007d037d504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d5ea000 - 0x00007d037d600000] committed 88KB
[0x00007d037d400000 - 0x00007d037d500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d400000 - 0x00007d037d404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d4ea000 - 0x00007d037d500000] committed 88KB
[0x00007d037d300000 - 0x00007d037d400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d300000 - 0x00007d037d304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d3ea000 - 0x00007d037d400000] committed 88KB
[0x00007d037d200000 - 0x00007d037d300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d200000 - 0x00007d037d204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d2ea000 - 0x00007d037d300000] committed 88KB
[0x00007d037d100000 - 0x00007d037d200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d100000 - 0x00007d037d104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d1ea000 - 0x00007d037d200000] committed 88KB
[0x00007d037d000000 - 0x00007d037d100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037d000000 - 0x00007d037d004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037d0ea000 - 0x00007d037d100000] committed 88KB
[0x00007d037cf00000 - 0x00007d037d000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037cf00000 - 0x00007d037cf04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037cfea000 - 0x00007d037d000000] committed 88KB
[0x00007d037ce00000 - 0x00007d037cf00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037ce00000 - 0x00007d037ce04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037ceea000 - 0x00007d037cf00000] committed 88KB
[0x00007d037cd00000 - 0x00007d037ce00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037cd00000 - 0x00007d037cd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037cdea000 - 0x00007d037ce00000] committed 88KB
[0x00007d037cc00000 - 0x00007d037cd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037cc00000 - 0x00007d037cc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037ccea000 - 0x00007d037cd00000] committed 88KB
[0x00007d037cb00000 - 0x00007d037cc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037cb00000 - 0x00007d037cb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037cbea000 - 0x00007d037cc00000] committed 88KB
[0x00007d037ca00000 - 0x00007d037cb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037ca00000 - 0x00007d037ca04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037caea000 - 0x00007d037cb00000] committed 88KB
[0x00007d037c900000 - 0x00007d037ca00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c900000 - 0x00007d037c904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c9ea000 - 0x00007d037ca00000] committed 88KB
[0x00007d037c800000 - 0x00007d037c900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c800000 - 0x00007d037c804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c8ea000 - 0x00007d037c900000] committed 88KB
[0x00007d037c700000 - 0x00007d037c800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c700000 - 0x00007d037c704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c7ea000 - 0x00007d037c800000] committed 88KB
[0x00007d037c600000 - 0x00007d037c700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c600000 - 0x00007d037c604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c6ea000 - 0x00007d037c700000] committed 88KB
[0x00007d037c500000 - 0x00007d037c600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c500000 - 0x00007d037c504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c5ea000 - 0x00007d037c600000] committed 88KB
[0x00007d037c400000 - 0x00007d037c500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c400000 - 0x00007d037c404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c4ea000 - 0x00007d037c500000] committed 88KB
[0x00007d037c300000 - 0x00007d037c400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c300000 - 0x00007d037c304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c3ea000 - 0x00007d037c400000] committed 88KB
[0x00007d037c200000 - 0x00007d037c300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c200000 - 0x00007d037c204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c2ea000 - 0x00007d037c300000] committed 88KB
[0x00007d037c100000 - 0x00007d037c200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c100000 - 0x00007d037c104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c1e4000 - 0x00007d037c200000] committed 112KB
[0x00007d037c000000 - 0x00007d037c100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d037c000000 - 0x00007d037c004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d037c0e8000 - 0x00007d037c100000] committed 96KB
[0x00007d0283f00000 - 0x00007d0284000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283f00000 - 0x00007d0283f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0283fea000 - 0x00007d0284000000] committed 88KB
[0x00007d0283e00000 - 0x00007d0283f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283e00000 - 0x00007d0283e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0283eea000 - 0x00007d0283eeb000] committed 4KB
[0x00007d0283efe000 - 0x00007d0283f00000] committed 8KB
[0x00007d0283d00000 - 0x00007d0283e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283d00000 - 0x00007d0283d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0283dea000 - 0x00007d0283deb000] committed 4KB
[0x00007d0283dfa000 - 0x00007d0283e00000] committed 24KB
[0x00007d0283c00000 - 0x00007d0283d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283c00000 - 0x00007d0283c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0283cea000 - 0x00007d0283ceb000] committed 4KB
[0x00007d0283cfa000 - 0x00007d0283d00000] committed 24KB
[0x00007d0283b00000 - 0x00007d0283c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283b00000 - 0x00007d0283b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0283bea000 - 0x00007d0283beb000] committed 4KB
[0x00007d0283bfa000 - 0x00007d0283c00000] committed 24KB
[0x00007d0283a00000 - 0x00007d0283b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283a00000 - 0x00007d0283a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0283aea000 - 0x00007d0283aeb000] committed 4KB
[0x00007d0283afa000 - 0x00007d0283b00000] committed 24KB
[0x00007d0283900000 - 0x00007d0283a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283900000 - 0x00007d0283904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02839e8000 - 0x00007d0283a00000] committed 96KB
[0x00007d0283800000 - 0x00007d0283900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283800000 - 0x00007d0283804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02838e6000 - 0x00007d0283900000] committed 104KB
[0x00007d0283700000 - 0x00007d0283800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283700000 - 0x00007d0283704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02837ea000 - 0x00007d02837eb000] committed 4KB
[0x00007d02837fc000 - 0x00007d0283800000] committed 16KB
[0x00007d0283600000 - 0x00007d0283700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283600000 - 0x00007d0283604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02836e9000 - 0x00007d0283700000] committed 92KB
[0x00007d0283500000 - 0x00007d0283600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283500000 - 0x00007d0283504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02835ea000 - 0x00007d02835eb000] committed 4KB
[0x00007d02835fe000 - 0x00007d0283600000] committed 8KB
[0x00007d0283400000 - 0x00007d0283500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283400000 - 0x00007d0283404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02834ea000 - 0x00007d02834eb000] committed 4KB
[0x00007d02834fe000 - 0x00007d0283500000] committed 8KB
[0x00007d0283300000 - 0x00007d0283400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283300000 - 0x00007d0283304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02833e7000 - 0x00007d0283400000] committed 100KB
[0x00007d0283200000 - 0x00007d0283300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283200000 - 0x00007d0283204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02832ea000 - 0x00007d02832eb000] committed 4KB
[0x00007d02832fa000 - 0x00007d0283300000] committed 24KB
[0x00007d0283100000 - 0x00007d0283200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283100000 - 0x00007d0283104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02831ea000 - 0x00007d02831eb000] committed 4KB
[0x00007d02831fe000 - 0x00007d0283200000] committed 8KB
[0x00007d0283000000 - 0x00007d0283100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0283000000 - 0x00007d0283004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02830ea000 - 0x00007d02830eb000] committed 4KB
[0x00007d02830fc000 - 0x00007d0283100000] committed 16KB
[0x00007d0282f00000 - 0x00007d0283000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282f00000 - 0x00007d0282f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0282fea000 - 0x00007d0282feb000] committed 4KB
[0x00007d0282ffc000 - 0x00007d0283000000] committed 16KB
[0x00007d0282e00000 - 0x00007d0282f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282e00000 - 0x00007d0282e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0282eea000 - 0x00007d0282eeb000] committed 4KB
[0x00007d0282efa000 - 0x00007d0282f00000] committed 24KB
[0x00007d0282645000 - 0x00007d0282745000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282645000 - 0x00007d0282649000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028272f000 - 0x00007d0282745000] committed 88KB
[0x00007d0282545000 - 0x00007d0282645000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282545000 - 0x00007d0282549000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028262d000 - 0x00007d0282645000] committed 96KB
[0x00007d0282445000 - 0x00007d0282545000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282445000 - 0x00007d0282449000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028252e000 - 0x00007d0282545000] committed 92KB
[0x00007d0282345000 - 0x00007d0282445000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282345000 - 0x00007d0282349000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028242d000 - 0x00007d0282445000] committed 96KB
[0x00007d0282245000 - 0x00007d0282345000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282245000 - 0x00007d0282249000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028232f000 - 0x00007d0282345000] committed 88KB
[0x00007d0282145000 - 0x00007d0282245000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282145000 - 0x00007d0282149000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028222f000 - 0x00007d0282245000] committed 88KB
[0x00007d0282045000 - 0x00007d0282145000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0282045000 - 0x00007d0282049000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028212f000 - 0x00007d0282130000] committed 4KB
[0x00007d028213f000 - 0x00007d0282145000] committed 24KB
[0x00007d0281f45000 - 0x00007d0282045000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281f45000 - 0x00007d0281f49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028202f000 - 0x00007d0282045000] committed 88KB
[0x00007d0281e45000 - 0x00007d0281f45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281e45000 - 0x00007d0281e49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0281f2f000 - 0x00007d0281f30000] committed 4KB
[0x00007d0281f3f000 - 0x00007d0281f45000] committed 24KB
[0x00007d0281d45000 - 0x00007d0281e45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281d45000 - 0x00007d0281d49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0281e2d000 - 0x00007d0281e45000] committed 96KB
[0x00007d0281c45000 - 0x00007d0281d45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281c45000 - 0x00007d0281c49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0281d2b000 - 0x00007d0281d45000] committed 104KB
[0x00007d0281b45000 - 0x00007d0281c45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281b45000 - 0x00007d0281b49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0281c2c000 - 0x00007d0281c45000] committed 100KB
[0x00007d0281a45000 - 0x00007d0281b45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281a45000 - 0x00007d0281a49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0281b2c000 - 0x00007d0281b45000] committed 100KB
[0x00007d0281945000 - 0x00007d0281a45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281945000 - 0x00007d0281949000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0281a2f000 - 0x00007d0281a45000] committed 88KB
[0x00007d0281845000 - 0x00007d0281945000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281845000 - 0x00007d0281849000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028192d000 - 0x00007d0281945000] committed 96KB
[0x00007d0281745000 - 0x00007d0281845000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281745000 - 0x00007d0281749000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028182f000 - 0x00007d0281845000] committed 88KB
[0x00007d0281645000 - 0x00007d0281745000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281645000 - 0x00007d0281649000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028172c000 - 0x00007d0281745000] committed 100KB
[0x00007d0281545000 - 0x00007d0281645000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281545000 - 0x00007d0281549000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028162c000 - 0x00007d0281645000] committed 100KB
[0x00007d0281445000 - 0x00007d0281545000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281445000 - 0x00007d0281449000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028152f000 - 0x00007d0281530000] committed 4KB
[0x00007d028153f000 - 0x00007d0281545000] committed 24KB
[0x00007d0281345000 - 0x00007d0281445000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281345000 - 0x00007d0281349000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028142f000 - 0x00007d0281445000] committed 88KB
[0x00007d0281245000 - 0x00007d0281345000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281245000 - 0x00007d0281249000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028132f000 - 0x00007d0281330000] committed 4KB
[0x00007d028133f000 - 0x00007d0281345000] committed 24KB
[0x00007d0281145000 - 0x00007d0281245000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281145000 - 0x00007d0281149000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028122f000 - 0x00007d0281230000] committed 4KB
[0x00007d028123f000 - 0x00007d0281245000] committed 24KB
[0x00007d0281045000 - 0x00007d0281145000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0281045000 - 0x00007d0281049000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028112c000 - 0x00007d0281145000] committed 100KB
[0x00007d0280f45000 - 0x00007d0281045000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280f45000 - 0x00007d0280f49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028102e000 - 0x00007d0281045000] committed 92KB
[0x00007d0280e45000 - 0x00007d0280f45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280e45000 - 0x00007d0280e49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0280f2e000 - 0x00007d0280f45000] committed 92KB
[0x00007d0280d45000 - 0x00007d0280e45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280d45000 - 0x00007d0280d49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0280e2e000 - 0x00007d0280e45000] committed 92KB
[0x00007d0280c45000 - 0x00007d0280d45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280c45000 - 0x00007d0280c49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0280d2e000 - 0x00007d0280d45000] committed 92KB
[0x00007d0280b45000 - 0x00007d0280c45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280b45000 - 0x00007d0280b49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0280c2e000 - 0x00007d0280c45000] committed 92KB
[0x00007d0280a45000 - 0x00007d0280b45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280a45000 - 0x00007d0280a49000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0280b2f000 - 0x00007d0280b45000] committed 88KB
[0x00007d0280945000 - 0x00007d0280a45000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280945000 - 0x00007d0280949000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0280a2e000 - 0x00007d0280a45000] committed 92KB
[0x00007d0280845000 - 0x00007d0280945000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280845000 - 0x00007d0280849000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0280928000 - 0x00007d0280945000] committed 116KB
[0x00007d0280745000 - 0x00007d0280845000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280745000 - 0x00007d0280749000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028082f000 - 0x00007d0280845000] committed 88KB
[0x00007d0280645000 - 0x00007d0280745000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280645000 - 0x00007d0280649000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028072f000 - 0x00007d0280745000] committed 88KB
[0x00007d0280545000 - 0x00007d0280645000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280545000 - 0x00007d0280549000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028062c000 - 0x00007d0280645000] committed 100KB
[0x00007d0280445000 - 0x00007d0280545000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280445000 - 0x00007d0280449000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028052f000 - 0x00007d0280545000] committed 88KB
[0x00007d0280345000 - 0x00007d0280445000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280345000 - 0x00007d0280349000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028042f000 - 0x00007d0280445000] committed 88KB
[0x00007d0280245000 - 0x00007d0280345000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280245000 - 0x00007d0280249000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028032f000 - 0x00007d0280345000] committed 88KB
[0x00007d0280145000 - 0x00007d0280245000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280145000 - 0x00007d0280149000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028022f000 - 0x00007d0280245000] committed 88KB
[0x00007d0280045000 - 0x00007d0280145000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0280045000 - 0x00007d0280049000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d028012f000 - 0x00007d0280145000] committed 88KB
[0x00007d021ff00000 - 0x00007d0220000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021ff00000 - 0x00007d021ff04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021ffea000 - 0x00007d0220000000] committed 88KB
[0x00007d021fe00000 - 0x00007d021ff00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021fe00000 - 0x00007d021fe04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021fee6000 - 0x00007d021ff00000] committed 104KB
[0x00007d021fd00000 - 0x00007d021fe00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021fd00000 - 0x00007d021fd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021fdea000 - 0x00007d021fe00000] committed 88KB
[0x00007d021fc00000 - 0x00007d021fd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021fc00000 - 0x00007d021fc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021fcea000 - 0x00007d021fd00000] committed 88KB
[0x00007d021fb00000 - 0x00007d021fc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021fb00000 - 0x00007d021fb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021fbe9000 - 0x00007d021fc00000] committed 92KB
[0x00007d021fa00000 - 0x00007d021fb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021fa00000 - 0x00007d021fa04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021fae8000 - 0x00007d021fb00000] committed 96KB
[0x00007d021f900000 - 0x00007d021fa00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f900000 - 0x00007d021f904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f9e7000 - 0x00007d021fa00000] committed 100KB
[0x00007d021f800000 - 0x00007d021f900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f800000 - 0x00007d021f804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f8e7000 - 0x00007d021f900000] committed 100KB
[0x00007d021f700000 - 0x00007d021f800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f700000 - 0x00007d021f704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f7ea000 - 0x00007d021f800000] committed 88KB
[0x00007d021f600000 - 0x00007d021f700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f600000 - 0x00007d021f604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f6ea000 - 0x00007d021f700000] committed 88KB
[0x00007d021f500000 - 0x00007d021f600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f500000 - 0x00007d021f504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f5e7000 - 0x00007d021f600000] committed 100KB
[0x00007d021f400000 - 0x00007d021f500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f400000 - 0x00007d021f404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f4ea000 - 0x00007d021f500000] committed 88KB
[0x00007d021f300000 - 0x00007d021f400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f300000 - 0x00007d021f304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f3ea000 - 0x00007d021f400000] committed 88KB
[0x00007d021f200000 - 0x00007d021f300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f200000 - 0x00007d021f204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f2ea000 - 0x00007d021f300000] committed 88KB
[0x00007d021f100000 - 0x00007d021f200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f100000 - 0x00007d021f104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f1ea000 - 0x00007d021f200000] committed 88KB
[0x00007d021f000000 - 0x00007d021f100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021f000000 - 0x00007d021f004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021f0ea000 - 0x00007d021f100000] committed 88KB
[0x00007d021ef00000 - 0x00007d021f000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021ef00000 - 0x00007d021ef04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021efe8000 - 0x00007d021f000000] committed 96KB
[0x00007d021ee00000 - 0x00007d021ef00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021ee00000 - 0x00007d021ee04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021eee9000 - 0x00007d021ef00000] committed 92KB
[0x00007d021ed00000 - 0x00007d021ee00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021ed00000 - 0x00007d021ed04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021ede9000 - 0x00007d021ee00000] committed 92KB
[0x00007d021ec00000 - 0x00007d021ed00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021ec00000 - 0x00007d021ec04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021ece9000 - 0x00007d021ed00000] committed 92KB
[0x00007d021eb00000 - 0x00007d021ec00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021eb00000 - 0x00007d021eb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021ebea000 - 0x00007d021ec00000] committed 88KB
[0x00007d021ea00000 - 0x00007d021eb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021ea00000 - 0x00007d021ea04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021eaea000 - 0x00007d021eb00000] committed 88KB
[0x00007d021e900000 - 0x00007d021ea00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e900000 - 0x00007d021e904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e9ea000 - 0x00007d021e9eb000] committed 4KB
[0x00007d021e9fa000 - 0x00007d021ea00000] committed 24KB
[0x00007d021e800000 - 0x00007d021e900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e800000 - 0x00007d021e804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e8ea000 - 0x00007d021e8eb000] committed 4KB
[0x00007d021e8fa000 - 0x00007d021e900000] committed 24KB
[0x00007d021e700000 - 0x00007d021e800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e700000 - 0x00007d021e704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e7ea000 - 0x00007d021e7eb000] committed 4KB
[0x00007d021e7fa000 - 0x00007d021e800000] committed 24KB
[0x00007d021e600000 - 0x00007d021e700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e600000 - 0x00007d021e604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e6ea000 - 0x00007d021e700000] committed 88KB
[0x00007d021e500000 - 0x00007d021e600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e500000 - 0x00007d021e504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e5ea000 - 0x00007d021e600000] committed 88KB
[0x00007d021e400000 - 0x00007d021e500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e400000 - 0x00007d021e404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e4ea000 - 0x00007d021e500000] committed 88KB
[0x00007d021e300000 - 0x00007d021e400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e300000 - 0x00007d021e304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e3ea000 - 0x00007d021e400000] committed 88KB
[0x00007d021e200000 - 0x00007d021e300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e200000 - 0x00007d021e204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e2ea000 - 0x00007d021e300000] committed 88KB
[0x00007d021e100000 - 0x00007d021e200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e100000 - 0x00007d021e104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e1ea000 - 0x00007d021e200000] committed 88KB
[0x00007d021e000000 - 0x00007d021e100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021e000000 - 0x00007d021e004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021e0ea000 - 0x00007d021e100000] committed 88KB
[0x00007d021df00000 - 0x00007d021e000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021df00000 - 0x00007d021df04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021dfea000 - 0x00007d021e000000] committed 88KB
[0x00007d021de00000 - 0x00007d021df00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021de00000 - 0x00007d021de04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021deea000 - 0x00007d021df00000] committed 88KB
[0x00007d021dd00000 - 0x00007d021de00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021dd00000 - 0x00007d021dd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021dde9000 - 0x00007d021de00000] committed 92KB
[0x00007d021dc00000 - 0x00007d021dd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021dc00000 - 0x00007d021dc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021dcea000 - 0x00007d021dd00000] committed 88KB
[0x00007d021db00000 - 0x00007d021dc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021db00000 - 0x00007d021db04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021dbea000 - 0x00007d021dc00000] committed 88KB
[0x00007d021da00000 - 0x00007d021db00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021da00000 - 0x00007d021da04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021daea000 - 0x00007d021db00000] committed 88KB
[0x00007d021d900000 - 0x00007d021da00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d900000 - 0x00007d021d904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d9ea000 - 0x00007d021da00000] committed 88KB
[0x00007d021d800000 - 0x00007d021d900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d800000 - 0x00007d021d804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d8ea000 - 0x00007d021d900000] committed 88KB
[0x00007d021d700000 - 0x00007d021d800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d700000 - 0x00007d021d704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d7ea000 - 0x00007d021d800000] committed 88KB
[0x00007d021d600000 - 0x00007d021d700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d600000 - 0x00007d021d604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d6ea000 - 0x00007d021d700000] committed 88KB
[0x00007d021d500000 - 0x00007d021d600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d500000 - 0x00007d021d504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d5ea000 - 0x00007d021d600000] committed 88KB
[0x00007d021d400000 - 0x00007d021d500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d400000 - 0x00007d021d404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d4ea000 - 0x00007d021d500000] committed 88KB
[0x00007d021d300000 - 0x00007d021d400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d300000 - 0x00007d021d304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d3ea000 - 0x00007d021d3eb000] committed 4KB
[0x00007d021d3fa000 - 0x00007d021d400000] committed 24KB
[0x00007d021d200000 - 0x00007d021d300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d200000 - 0x00007d021d204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d2ea000 - 0x00007d021d300000] committed 88KB
[0x00007d021d100000 - 0x00007d021d200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d100000 - 0x00007d021d104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d1e8000 - 0x00007d021d200000] committed 96KB
[0x00007d021d000000 - 0x00007d021d100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021d000000 - 0x00007d021d004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021d0e6000 - 0x00007d021d100000] committed 104KB
[0x00007d021cf00000 - 0x00007d021d000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021cf00000 - 0x00007d021cf04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021cfea000 - 0x00007d021d000000] committed 88KB
[0x00007d021ce00000 - 0x00007d021cf00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021ce00000 - 0x00007d021ce04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021cee9000 - 0x00007d021cf00000] committed 92KB
[0x00007d021cd00000 - 0x00007d021ce00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021cd00000 - 0x00007d021cd04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021cdea000 - 0x00007d021ce00000] committed 88KB
[0x00007d021cc00000 - 0x00007d021cd00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021cc00000 - 0x00007d021cc04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021ccea000 - 0x00007d021cceb000] committed 4KB
[0x00007d021ccfa000 - 0x00007d021cd00000] committed 24KB
[0x00007d021cb00000 - 0x00007d021cc00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021cb00000 - 0x00007d021cb04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021cbea000 - 0x00007d021cc00000] committed 88KB
[0x00007d021ca00000 - 0x00007d021cb00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021ca00000 - 0x00007d021ca04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021caea000 - 0x00007d021cb00000] committed 88KB
[0x00007d021c900000 - 0x00007d021ca00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c900000 - 0x00007d021c904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c9ea000 - 0x00007d021ca00000] committed 88KB
[0x00007d021c800000 - 0x00007d021c900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c800000 - 0x00007d021c804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c8ea000 - 0x00007d021c8eb000] committed 4KB
[0x00007d021c8fa000 - 0x00007d021c900000] committed 24KB
[0x00007d021c700000 - 0x00007d021c800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c700000 - 0x00007d021c704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c7ea000 - 0x00007d021c800000] committed 88KB
[0x00007d021c600000 - 0x00007d021c700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c600000 - 0x00007d021c604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c6ea000 - 0x00007d021c700000] committed 88KB
[0x00007d021c500000 - 0x00007d021c600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c500000 - 0x00007d021c504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c5e7000 - 0x00007d021c600000] committed 100KB
[0x00007d021c400000 - 0x00007d021c500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c400000 - 0x00007d021c404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c4ea000 - 0x00007d021c4eb000] committed 4KB
[0x00007d021c4fa000 - 0x00007d021c500000] committed 24KB
[0x00007d021c300000 - 0x00007d021c400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c300000 - 0x00007d021c304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c3ea000 - 0x00007d021c3eb000] committed 4KB
[0x00007d021c3fc000 - 0x00007d021c400000] committed 16KB
[0x00007d021c200000 - 0x00007d021c300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c200000 - 0x00007d021c204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c2e9000 - 0x00007d021c300000] committed 92KB
[0x00007d021c100000 - 0x00007d021c200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c100000 - 0x00007d021c104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c1ea000 - 0x00007d021c1eb000] committed 4KB
[0x00007d021c1fa000 - 0x00007d021c200000] committed 24KB
[0x00007d021c000000 - 0x00007d021c100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d021c000000 - 0x00007d021c004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d021c0ea000 - 0x00007d021c0eb000] committed 4KB
[0x00007d021c0fc000 - 0x00007d021c100000] committed 16KB
[0x00007d0217f00000 - 0x00007d0218000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217f00000 - 0x00007d0217f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0217fea000 - 0x00007d0218000000] committed 88KB
[0x00007d0217e00000 - 0x00007d0217f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217e00000 - 0x00007d0217e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0217eea000 - 0x00007d0217f00000] committed 88KB
[0x00007d0217d00000 - 0x00007d0217e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217d00000 - 0x00007d0217d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0217dea000 - 0x00007d0217deb000] committed 4KB
[0x00007d0217dfa000 - 0x00007d0217e00000] committed 24KB
[0x00007d0217c00000 - 0x00007d0217d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217c00000 - 0x00007d0217c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0217ce8000 - 0x00007d0217d00000] committed 96KB
[0x00007d0217b00000 - 0x00007d0217c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217b00000 - 0x00007d0217b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0217be6000 - 0x00007d0217c00000] committed 104KB
[0x00007d0217a00000 - 0x00007d0217b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217a00000 - 0x00007d0217a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0217aea000 - 0x00007d0217b00000] committed 88KB
[0x00007d0217900000 - 0x00007d0217a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217900000 - 0x00007d0217904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02179e9000 - 0x00007d0217a00000] committed 92KB
[0x00007d0217800000 - 0x00007d0217900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217800000 - 0x00007d0217804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02178ea000 - 0x00007d0217900000] committed 88KB
[0x00007d0217700000 - 0x00007d0217800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217700000 - 0x00007d0217704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02177ea000 - 0x00007d0217800000] committed 88KB
[0x00007d0217600000 - 0x00007d0217700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217600000 - 0x00007d0217604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02176ea000 - 0x00007d02176eb000] committed 4KB
[0x00007d02176fe000 - 0x00007d0217700000] committed 8KB
[0x00007d0217500000 - 0x00007d0217600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217500000 - 0x00007d0217504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02175ea000 - 0x00007d0217600000] committed 88KB
[0x00007d0217400000 - 0x00007d0217500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217400000 - 0x00007d0217404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02174ea000 - 0x00007d0217500000] committed 88KB
[0x00007d0217300000 - 0x00007d0217400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217300000 - 0x00007d0217304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02173ea000 - 0x00007d02173eb000] committed 4KB
[0x00007d02173fe000 - 0x00007d0217400000] committed 8KB
[0x00007d0217200000 - 0x00007d0217300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217200000 - 0x00007d0217204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02172ea000 - 0x00007d0217300000] committed 88KB
[0x00007d0217100000 - 0x00007d0217200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217100000 - 0x00007d0217104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02171ea000 - 0x00007d0217200000] committed 88KB
[0x00007d0217000000 - 0x00007d0217100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0217000000 - 0x00007d0217004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02170ea000 - 0x00007d0217100000] committed 88KB
[0x00007d0216f00000 - 0x00007d0217000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216f00000 - 0x00007d0216f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0216fea000 - 0x00007d0216feb000] committed 4KB
[0x00007d0216ffe000 - 0x00007d0217000000] committed 8KB
[0x00007d0216e00000 - 0x00007d0216f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216e00000 - 0x00007d0216e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0216eea000 - 0x00007d0216f00000] committed 88KB
[0x00007d0216d00000 - 0x00007d0216e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216d00000 - 0x00007d0216d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0216dea000 - 0x00007d0216e00000] committed 88KB
[0x00007d0216c00000 - 0x00007d0216d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216c00000 - 0x00007d0216c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0216cea000 - 0x00007d0216ceb000] committed 4KB
[0x00007d0216cfa000 - 0x00007d0216d00000] committed 24KB
[0x00007d0216b00000 - 0x00007d0216c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216b00000 - 0x00007d0216b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0216bea000 - 0x00007d0216beb000] committed 4KB
[0x00007d0216bfa000 - 0x00007d0216c00000] committed 24KB
[0x00007d0216a00000 - 0x00007d0216b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216a00000 - 0x00007d0216a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0216ae7000 - 0x00007d0216b00000] committed 100KB
[0x00007d0216900000 - 0x00007d0216a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216900000 - 0x00007d0216904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02169ea000 - 0x00007d02169eb000] committed 4KB
[0x00007d02169fa000 - 0x00007d0216a00000] committed 24KB
[0x00007d0216800000 - 0x00007d0216900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216800000 - 0x00007d0216804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02168e7000 - 0x00007d0216900000] committed 100KB
[0x00007d0216700000 - 0x00007d0216800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216700000 - 0x00007d0216704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02167ea000 - 0x00007d0216800000] committed 88KB
[0x00007d0216600000 - 0x00007d0216700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216600000 - 0x00007d0216604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02166ea000 - 0x00007d02166eb000] committed 4KB
[0x00007d02166fe000 - 0x00007d0216700000] committed 8KB
[0x00007d0216500000 - 0x00007d0216600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216500000 - 0x00007d0216504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02165e8000 - 0x00007d0216600000] committed 96KB
[0x00007d0216400000 - 0x00007d0216500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216400000 - 0x00007d0216404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02164e6000 - 0x00007d0216500000] committed 104KB
[0x00007d0216300000 - 0x00007d0216400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216300000 - 0x00007d0216304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02163ea000 - 0x00007d0216400000] committed 88KB
[0x00007d0216200000 - 0x00007d0216300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216200000 - 0x00007d0216204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02162e9000 - 0x00007d0216300000] committed 92KB
[0x00007d0216100000 - 0x00007d0216200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216100000 - 0x00007d0216104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02161ea000 - 0x00007d0216200000] committed 88KB
[0x00007d0216000000 - 0x00007d0216100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0216000000 - 0x00007d0216004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02160ea000 - 0x00007d02160eb000] committed 4KB
[0x00007d02160fb000 - 0x00007d0216100000] committed 20KB
[0x00007d0215f00000 - 0x00007d0216000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215f00000 - 0x00007d0215f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0215fe9000 - 0x00007d0216000000] committed 92KB
[0x00007d0215e00000 - 0x00007d0215f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215e00000 - 0x00007d0215e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0215eea000 - 0x00007d0215eeb000] committed 4KB
[0x00007d0215efa000 - 0x00007d0215f00000] committed 24KB
[0x00007d0215d00000 - 0x00007d0215e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215d00000 - 0x00007d0215d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0215dea000 - 0x00007d0215e00000] committed 88KB
[0x00007d0215c00000 - 0x00007d0215d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215c00000 - 0x00007d0215c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0215cea000 - 0x00007d0215d00000] committed 88KB
[0x00007d0215b00000 - 0x00007d0215c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215b00000 - 0x00007d0215b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0215bea000 - 0x00007d0215beb000] committed 4KB
[0x00007d0215bfc000 - 0x00007d0215c00000] committed 16KB
[0x00007d0215a00000 - 0x00007d0215b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215a00000 - 0x00007d0215a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0215aea000 - 0x00007d0215b00000] committed 88KB
[0x00007d0215900000 - 0x00007d0215a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215900000 - 0x00007d0215904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02159ea000 - 0x00007d0215a00000] committed 88KB
[0x00007d0215800000 - 0x00007d0215900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215800000 - 0x00007d0215804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02158ea000 - 0x00007d02158eb000] committed 4KB
[0x00007d02158fa000 - 0x00007d0215900000] committed 24KB
[0x00007d0215700000 - 0x00007d0215800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215700000 - 0x00007d0215704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02157ea000 - 0x00007d02157eb000] committed 4KB
[0x00007d02157fe000 - 0x00007d0215800000] committed 8KB
[0x00007d0215600000 - 0x00007d0215700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215600000 - 0x00007d0215604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02156ea000 - 0x00007d0215700000] committed 88KB
[0x00007d0215500000 - 0x00007d0215600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215500000 - 0x00007d0215504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02155ea000 - 0x00007d0215600000] committed 88KB
[0x00007d0215400000 - 0x00007d0215500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215400000 - 0x00007d0215404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02154e3000 - 0x00007d02154e5000] committed 8KB
[0x00007d02154e6000 - 0x00007d0215500000] committed 104KB
[0x00007d0215300000 - 0x00007d0215400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215300000 - 0x00007d0215304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02153ea000 - 0x00007d02153eb000] committed 4KB
[0x00007d02153fe000 - 0x00007d0215400000] committed 8KB
[0x00007d0215200000 - 0x00007d0215300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215200000 - 0x00007d0215204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02152ea000 - 0x00007d0215300000] committed 88KB
[0x00007d0215100000 - 0x00007d0215200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215100000 - 0x00007d0215104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02151ea000 - 0x00007d0215200000] committed 88KB
[0x00007d0215000000 - 0x00007d0215100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0215000000 - 0x00007d0215004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02150e8000 - 0x00007d0215100000] committed 96KB
[0x00007d0214f00000 - 0x00007d0215000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214f00000 - 0x00007d0214f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0214fe6000 - 0x00007d0215000000] committed 104KB
[0x00007d0214e00000 - 0x00007d0214f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214e00000 - 0x00007d0214e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0214eea000 - 0x00007d0214f00000] committed 88KB
[0x00007d0214d00000 - 0x00007d0214e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214d00000 - 0x00007d0214d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0214de9000 - 0x00007d0214e00000] committed 92KB
[0x00007d0214c00000 - 0x00007d0214d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214c00000 - 0x00007d0214c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0214cea000 - 0x00007d0214d00000] committed 88KB
[0x00007d0214b00000 - 0x00007d0214c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214b00000 - 0x00007d0214b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0214bea000 - 0x00007d0214c00000] committed 88KB
[0x00007d0214a00000 - 0x00007d0214b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214a00000 - 0x00007d0214a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0214ae9000 - 0x00007d0214b00000] committed 92KB
[0x00007d0214900000 - 0x00007d0214a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214900000 - 0x00007d0214904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02149ea000 - 0x00007d02149eb000] committed 4KB
[0x00007d02149fa000 - 0x00007d0214a00000] committed 24KB
[0x00007d0214800000 - 0x00007d0214900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214800000 - 0x00007d0214804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02148ea000 - 0x00007d0214900000] committed 88KB
[0x00007d0214700000 - 0x00007d0214800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214700000 - 0x00007d0214704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02147ea000 - 0x00007d0214800000] committed 88KB
[0x00007d0214600000 - 0x00007d0214700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214600000 - 0x00007d0214604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02146ea000 - 0x00007d02146eb000] committed 4KB
[0x00007d02146fe000 - 0x00007d0214700000] committed 8KB
[0x00007d0214500000 - 0x00007d0214600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214500000 - 0x00007d0214504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02145e7000 - 0x00007d0214600000] committed 100KB
[0x00007d0214400000 - 0x00007d0214500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214400000 - 0x00007d0214404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02144ea000 - 0x00007d02144eb000] committed 4KB
[0x00007d02144fa000 - 0x00007d0214500000] committed 24KB
[0x00007d0214300000 - 0x00007d0214400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214300000 - 0x00007d0214304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02143e8000 - 0x00007d0214400000] committed 96KB
[0x00007d0214200000 - 0x00007d0214300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214200000 - 0x00007d0214204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02142e6000 - 0x00007d0214300000] committed 104KB
[0x00007d0214100000 - 0x00007d0214200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214100000 - 0x00007d0214104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02141ea000 - 0x00007d02141eb000] committed 4KB
[0x00007d02141fb000 - 0x00007d0214200000] committed 20KB
[0x00007d0214000000 - 0x00007d0214100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0214000000 - 0x00007d0214004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02140e9000 - 0x00007d0214100000] committed 92KB
[0x00007d0213f00000 - 0x00007d0214000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213f00000 - 0x00007d0213f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0213fea000 - 0x00007d0213feb000] committed 4KB
[0x00007d0213ffe000 - 0x00007d0214000000] committed 8KB
[0x00007d0213e00000 - 0x00007d0213f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213e00000 - 0x00007d0213e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0213eea000 - 0x00007d0213eeb000] committed 4KB
[0x00007d0213efe000 - 0x00007d0213f00000] committed 8KB
[0x00007d0213d00000 - 0x00007d0213e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213d00000 - 0x00007d0213d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0213dea000 - 0x00007d0213deb000] committed 4KB
[0x00007d0213dfe000 - 0x00007d0213e00000] committed 8KB
[0x00007d0213c00000 - 0x00007d0213d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213c00000 - 0x00007d0213c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0213cea000 - 0x00007d0213ceb000] committed 4KB
[0x00007d0213cfc000 - 0x00007d0213d00000] committed 16KB
[0x00007d0213b00000 - 0x00007d0213c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213b00000 - 0x00007d0213b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0213bea000 - 0x00007d0213beb000] committed 4KB
[0x00007d0213bfa000 - 0x00007d0213c00000] committed 24KB
[0x00007d0213a00000 - 0x00007d0213b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213a00000 - 0x00007d0213a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0213afa000 - 0x00007d0213b00000] committed 24KB
[0x00007d0213900000 - 0x00007d0213a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213900000 - 0x00007d0213904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02139ea000 - 0x00007d02139eb000] committed 4KB
[0x00007d02139fc000 - 0x00007d0213a00000] committed 16KB
[0x00007d0213800000 - 0x00007d0213900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213800000 - 0x00007d0213804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02138ea000 - 0x00007d02138eb000] committed 4KB
[0x00007d02138fc000 - 0x00007d0213900000] committed 16KB
[0x00007d0213700000 - 0x00007d0213800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213700000 - 0x00007d0213704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02137e7000 - 0x00007d0213800000] committed 100KB
[0x00007d0213600000 - 0x00007d0213700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213600000 - 0x00007d0213604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02136ea000 - 0x00007d02136eb000] committed 4KB
[0x00007d02136fa000 - 0x00007d0213700000] committed 24KB
[0x00007d0213500000 - 0x00007d0213600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213500000 - 0x00007d0213504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02135ea000 - 0x00007d02135eb000] committed 4KB
[0x00007d02135fa000 - 0x00007d0213600000] committed 24KB
[0x00007d0213400000 - 0x00007d0213500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213400000 - 0x00007d0213404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02134ea000 - 0x00007d02134eb000] committed 4KB
[0x00007d02134fa000 - 0x00007d0213500000] committed 24KB
[0x00007d0213300000 - 0x00007d0213400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213300000 - 0x00007d0213304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02133e8000 - 0x00007d0213400000] committed 96KB
[0x00007d0213200000 - 0x00007d0213300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213200000 - 0x00007d0213204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02132e6000 - 0x00007d0213300000] committed 104KB
[0x00007d0213100000 - 0x00007d0213200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213100000 - 0x00007d0213104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02131e9000 - 0x00007d0213200000] committed 92KB
[0x00007d0213000000 - 0x00007d0213100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0213000000 - 0x00007d0213004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02130ea000 - 0x00007d0213100000] committed 88KB
[0x00007d0212f00000 - 0x00007d0213000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212f00000 - 0x00007d0212f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0212fea000 - 0x00007d0212feb000] committed 4KB
[0x00007d0212ffa000 - 0x00007d0213000000] committed 24KB
[0x00007d0212e00000 - 0x00007d0212f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212e00000 - 0x00007d0212e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0212eea000 - 0x00007d0212eeb000] committed 4KB
[0x00007d0212efe000 - 0x00007d0212f00000] committed 8KB
[0x00007d0212d00000 - 0x00007d0212e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212d00000 - 0x00007d0212d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0212dea000 - 0x00007d0212deb000] committed 4KB
[0x00007d0212dfe000 - 0x00007d0212e00000] committed 8KB
[0x00007d0212c00000 - 0x00007d0212d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212c00000 - 0x00007d0212c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0212cea000 - 0x00007d0212ceb000] committed 4KB
[0x00007d0212cfa000 - 0x00007d0212d00000] committed 24KB
[0x00007d0212b00000 - 0x00007d0212c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212b00000 - 0x00007d0212b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0212bea000 - 0x00007d0212beb000] committed 4KB
[0x00007d0212bfe000 - 0x00007d0212c00000] committed 8KB
[0x00007d0212a00000 - 0x00007d0212b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212a00000 - 0x00007d0212a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0212aea000 - 0x00007d0212b00000] committed 88KB
[0x00007d0212900000 - 0x00007d0212a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212900000 - 0x00007d0212904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02129ea000 - 0x00007d02129eb000] committed 4KB
[0x00007d02129fe000 - 0x00007d0212a00000] committed 8KB
[0x00007d0212800000 - 0x00007d0212900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212800000 - 0x00007d0212804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02128ea000 - 0x00007d02128eb000] committed 4KB
[0x00007d02128fe000 - 0x00007d0212900000] committed 8KB
[0x00007d0212700000 - 0x00007d0212800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212700000 - 0x00007d0212704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02127ea000 - 0x00007d02127eb000] committed 4KB
[0x00007d02127fe000 - 0x00007d0212800000] committed 8KB
[0x00007d0212500000 - 0x00007d0212600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212500000 - 0x00007d0212504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02125e8000 - 0x00007d0212600000] committed 96KB
[0x00007d0212400000 - 0x00007d0212500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212400000 - 0x00007d0212404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02124e6000 - 0x00007d0212500000] committed 104KB
[0x00007d0212300000 - 0x00007d0212400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212300000 - 0x00007d0212304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02123e9000 - 0x00007d0212400000] committed 92KB
[0x00007d0212200000 - 0x00007d0212300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212200000 - 0x00007d0212204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02122e9000 - 0x00007d0212300000] committed 92KB
[0x00007d0212100000 - 0x00007d0212200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212100000 - 0x00007d0212104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02121ea000 - 0x00007d02121eb000] committed 4KB
[0x00007d02121fe000 - 0x00007d0212200000] committed 8KB
[0x00007d0212000000 - 0x00007d0212100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0212000000 - 0x00007d0212004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02120ea000 - 0x00007d02120eb000] committed 4KB
[0x00007d02120fe000 - 0x00007d0212100000] committed 8KB
[0x00007d0211f00000 - 0x00007d0212000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211f00000 - 0x00007d0211f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0211fea000 - 0x00007d0212000000] committed 88KB
[0x00007d0211e00000 - 0x00007d0211f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211e00000 - 0x00007d0211e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0211eea000 - 0x00007d0211eeb000] committed 4KB
[0x00007d0211efe000 - 0x00007d0211f00000] committed 8KB
[0x00007d0211d00000 - 0x00007d0211e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211d00000 - 0x00007d0211d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0211dea000 - 0x00007d0211deb000] committed 4KB
[0x00007d0211dfe000 - 0x00007d0211e00000] committed 8KB
[0x00007d0211c00000 - 0x00007d0211d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211c00000 - 0x00007d0211c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0211ce7000 - 0x00007d0211d00000] committed 100KB
[0x00007d0211b00000 - 0x00007d0211c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211b00000 - 0x00007d0211b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0211bea000 - 0x00007d0211beb000] committed 4KB
[0x00007d0211bfe000 - 0x00007d0211c00000] committed 8KB
[0x00007d0211a00000 - 0x00007d0211b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211a00000 - 0x00007d0211a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0211aea000 - 0x00007d0211aeb000] committed 4KB
[0x00007d0211afe000 - 0x00007d0211b00000] committed 8KB
[0x00007d0211900000 - 0x00007d0211a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211900000 - 0x00007d0211904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02119ea000 - 0x00007d02119eb000] committed 4KB
[0x00007d02119fa000 - 0x00007d0211a00000] committed 24KB
[0x00007d0211800000 - 0x00007d0211900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211800000 - 0x00007d0211804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02118ea000 - 0x00007d02118eb000] committed 4KB
[0x00007d02118fc000 - 0x00007d0211900000] committed 16KB
[0x00007d0211700000 - 0x00007d0211800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211700000 - 0x00007d0211704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02117ea000 - 0x00007d0211800000] committed 88KB
[0x00007d0211600000 - 0x00007d0211700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211600000 - 0x00007d0211604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02116ea000 - 0x00007d02116eb000] committed 4KB
[0x00007d02116fa000 - 0x00007d0211700000] committed 24KB
[0x00007d0211500000 - 0x00007d0211600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211500000 - 0x00007d0211504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02115e8000 - 0x00007d0211600000] committed 96KB
[0x00007d0211400000 - 0x00007d0211500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211400000 - 0x00007d0211404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02114e6000 - 0x00007d0211500000] committed 104KB
[0x00007d0211300000 - 0x00007d0211400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211300000 - 0x00007d0211304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02113e9000 - 0x00007d0211400000] committed 92KB
[0x00007d0211200000 - 0x00007d0211300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211200000 - 0x00007d0211204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02112ea000 - 0x00007d02112eb000] committed 4KB
[0x00007d02112fe000 - 0x00007d0211300000] committed 8KB
[0x00007d0211100000 - 0x00007d0211200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211100000 - 0x00007d0211104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02111ea000 - 0x00007d02111eb000] committed 4KB
[0x00007d02111fe000 - 0x00007d0211200000] committed 8KB
[0x00007d0211000000 - 0x00007d0211100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0211000000 - 0x00007d0211004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02110ea000 - 0x00007d02110eb000] committed 4KB
[0x00007d02110fe000 - 0x00007d0211100000] committed 8KB
[0x00007d0210f00000 - 0x00007d0211000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210f00000 - 0x00007d0210f04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0210fea000 - 0x00007d0210feb000] committed 4KB
[0x00007d0210ffe000 - 0x00007d0211000000] committed 8KB
[0x00007d0210e00000 - 0x00007d0210f00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210e00000 - 0x00007d0210e04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0210eea000 - 0x00007d0210eeb000] committed 4KB
[0x00007d0210efe000 - 0x00007d0210f00000] committed 8KB
[0x00007d0210d00000 - 0x00007d0210e00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210d00000 - 0x00007d0210d04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0210dea000 - 0x00007d0210deb000] committed 4KB
[0x00007d0210dfe000 - 0x00007d0210e00000] committed 8KB
[0x00007d0210c00000 - 0x00007d0210d00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210c00000 - 0x00007d0210c04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0210cea000 - 0x00007d0210d00000] committed 88KB
[0x00007d0210b00000 - 0x00007d0210c00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210b00000 - 0x00007d0210b04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0210bea000 - 0x00007d0210beb000] committed 4KB
[0x00007d0210bfe000 - 0x00007d0210c00000] committed 8KB
[0x00007d0210a00000 - 0x00007d0210b00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210a00000 - 0x00007d0210a04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0210aea000 - 0x00007d0210aeb000] committed 4KB
[0x00007d0210afa000 - 0x00007d0210b00000] committed 24KB
[0x00007d0210900000 - 0x00007d0210a00000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210900000 - 0x00007d0210904000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02109ea000 - 0x00007d02109eb000] committed 4KB
[0x00007d02109fe000 - 0x00007d0210a00000] committed 8KB
[0x00007d0210800000 - 0x00007d0210900000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210800000 - 0x00007d0210804000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02108ea000 - 0x00007d02108eb000] committed 4KB
[0x00007d02108fe000 - 0x00007d0210900000] committed 8KB
[0x00007d0210700000 - 0x00007d0210800000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210700000 - 0x00007d0210704000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02107ea000 - 0x00007d02107eb000] committed 4KB
[0x00007d02107fa000 - 0x00007d0210800000] committed 24KB
[0x00007d0210600000 - 0x00007d0210700000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210600000 - 0x00007d0210604000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02106ea000 - 0x00007d02106eb000] committed 4KB
[0x00007d02106fe000 - 0x00007d0210700000] committed 8KB
[0x00007d0210500000 - 0x00007d0210600000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210500000 - 0x00007d0210504000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02105e8000 - 0x00007d0210600000] committed 96KB
[0x00007d0210400000 - 0x00007d0210500000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210400000 - 0x00007d0210404000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02104e6000 - 0x00007d0210500000] committed 104KB
[0x00007d0210300000 - 0x00007d0210400000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210300000 - 0x00007d0210304000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02103e9000 - 0x00007d0210400000] committed 92KB
[0x00007d0210200000 - 0x00007d0210300000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210200000 - 0x00007d0210204000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02102ea000 - 0x00007d02102eb000] committed 4KB
[0x00007d02102fe000 - 0x00007d0210300000] committed 8KB
[0x00007d0210100000 - 0x00007d0210200000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210100000 - 0x00007d0210104000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02101ea000 - 0x00007d02101eb000] committed 4KB
[0x00007d02101fe000 - 0x00007d0210200000] committed 8KB
[0x00007d0210000000 - 0x00007d0210100000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d0210000000 - 0x00007d0210004000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d02100ea000 - 0x00007d02100eb000] committed 4KB
[0x00007d02100fe000 - 0x00007d0210100000] committed 8KB
[0x00007d020ff00000 - 0x00007d0210000000] reserved 1024KB for Thread Stack from
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
[0x00007d020ff00000 - 0x00007d020ff04000] committed 16KB from
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
[0x00007d0a91ad6c35]JavaThread::run()+0x25
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d020ffea000 - 0x00007d020ffeb000] committed 4KB
[0x00007d020fffe000 - 0x00007d0210000000] committed 8KB
[0x0000040000000000 - 0x0000041800000000] reserved 100663296KB for Java Heap from
[0x00007d0a922ac11e]ZVirtualMemoryManager::reserve(unsigned long)+0xae
[0x00007d0a922ac265]ZVirtualMemoryManager::ZVirtualMemoryManager(unsigned long)+0x35
[0x00007d0a9226fda7]ZPageAllocator::ZPageAllocator(unsigned long, unsigned long, unsigned long, unsigned long)+0x67
[0x00007d0a92252ab9]ZHeap::ZHeap()+0x59
[0x0000040000000000 - 0x0000040180000000] committed 6291456KB from
[0x00007d0a922758a7]ZPhysicalMemoryManager::commit(ZPhysicalMemory&)+0xd7
[0x00007d0a92271bb6]ZPageAllocator::alloc_page_finalize(ZPageAllocation*)+0x56
[0x00007d0a9227285a]ZPageAllocator::alloc_page(ZPageType, unsigned long, ZAllocationFlags, ZPageAge)+0x17a
[0x00007d0a92272ed9]ZPageAllocator::prime_cache(ZWorkers*, unsigned long)+0x29
Details:
[0x00007d0a92155ada]Unsafe_AllocateMemory0+0x7a
[0x00007d0a7f162161]
(malloc=156020KB type=Other #211) (peak=156020KB #212)
[0x00007d0a92155ada]Unsafe_AllocateMemory0+0x7a
[0x00007d0a7e3f89c4]
(malloc=68660KB type=Other #178) (peak=68706KB #184)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a9225b07b]ZLiveMap::ZLiveMap(unsigned int)+0x4b
[0x00007d0a9226d8ce]ZPage::ZPage(ZPageType, ZVirtualMemory const&, ZPhysicalMemory const&)+0x4e
[0x00007d0a9226ea19]ZPage::split_with_pmem(ZPageType, ZPhysicalMemory const&)+0x149
(malloc=28684KB type=GC #473) (peak=30598KB #494)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a920d0659]SymbolTable::new_symbols(ClassLoaderData*, constantPoolHandle const&, int, char const**, int*, int*, unsigned int*)+0x59
[0x00007d0a917c1462]ClassFileParser::parse_constant_pool_entries(ClassFileStream const*, ConstantPool*, int, JavaThread*)+0xc82
[0x00007d0a917c1836]ClassFileParser::parse_stream(ClassFileStream const*, JavaThread*) [clone .part.0]+0x166
(malloc=21291KB type=Symbol #183416) (at peak)
[0x00007d0a9224bcac]ZForwardingAllocator::reset(unsigned long)+0x1c
[0x00007d0a92280e10]ZRelocationSet::install(ZRelocationSetSelector const*)+0xe0
[0x00007d0a9224f322]ZGeneration::select_relocation_set(ZGenerationId, bool)+0x102
[0x00007d0a9225010b]ZGenerationYoung::collect(ZYoungType, ConcurrentGCTimer*)+0x47b
(malloc=6818KB type=GC #1) (peak=25322KB #1)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a920d0659]SymbolTable::new_symbols(ClassLoaderData*, constantPoolHandle const&, int, char const**, int*, int*, unsigned int*)+0x59
[0x00007d0a917c09b1]ClassFileParser::parse_constant_pool_entries(ClassFileStream const*, ConstantPool*, int, JavaThread*)+0x1d1
[0x00007d0a917c1836]ClassFileParser::parse_stream(ClassFileStream const*, JavaThread*) [clone .part.0]+0x166
(malloc=4639KB type=Symbol #37781) (at peak)
[0x00007d0a91e9ad0d]ImmutableOopMapSet::build_from(OopMapSet const*)+0xad
[0x00007d0a917e4443]CodeBlob::CodeBlob(char const*, CompilerType, CodeBlobLayout const&, CodeBuffer*, int, int, OopMapSet*, bool, bool)+0x93
[0x00007d0a9182a1a3]CompiledMethod::CompiledMethod(Method*, char const*, CompilerType, int, int, CodeBuffer*, int, int, OopMapSet*, bool, bool)+0x153
[0x00007d0a91e6f64f]nmethod::nmethod(Method*, CompilerType, int, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0xaf
(malloc=3558KB type=Code #13688) (peak=3837KB #15049)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a918748c3]MethodFamily::generate_method_message(Symbol*, Method*) const+0xc3
[0x00007d0a91877062]DefaultMethods::generate_default_methods(InstanceKlass*, GrowableArray<Method*> const*, JavaThread*)+0x2642
[0x00007d0a917bc24f]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0xc0f
(malloc=2624KB type=Symbol #9002) (at peak)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a9225b07b]ZLiveMap::ZLiveMap(unsigned int)+0x4b
[0x00007d0a9226d9f4]ZPage::clone_limited() const+0x74
[0x00007d0a92271da8]ZSafePageRecycle::register_and_clone_if_activated(ZPage*)+0x58
(malloc=2244KB type=GC #37) (at peak)
[0x00007d0a91a86771]InstanceKlass::InstanceKlass(ClassFileParser const&, Klass::KlassKind, ReferenceType)+0xa1
[0x00007d0a91a868dc]InstanceKlass::allocate_instance_klass(ClassFileParser const&, JavaThread*)+0xec
[0x00007d0a917bc564]ClassFileParser::create_instance_klass(bool, ClassInstanceInfo const&, JavaThread*)+0x44
[0x00007d0a91cf9796]KlassFactory::create_from_stream(ClassFileStream*, Symbol*, ClassLoaderData*, ClassLoadInfo const&, JavaThread*)+0x316
(malloc=1928KB type=Synchronization #18982) (at peak)
[0x00007d0a9226adef]GrowableArrayWithAllocator<ZNMethodDataBarrier, GrowableArrayCHeap<ZNMethodDataBarrier, (MEMFLAGS)5> >::grow(int)+0x2f
[0x00007d0a9226a883]ZNMethod::attach_gc_data(nmethod*)+0x403
[0x00007d0a9226a959]ZNMethod::register_nmethod(nmethod*)+0x19
[0x00007d0a91e6f9ea]nmethod::nmethod(Method*, CompilerType, int, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x44a
(malloc=1548KB type=GC #9249) (peak=1597KB #9954)
[0x00007d0a9226a8df]ZNMethod::attach_gc_data(nmethod*)+0x45f
[0x00007d0a9226a959]ZNMethod::register_nmethod(nmethod*)+0x19
[0x00007d0a91e6f9ea]nmethod::nmethod(Method*, CompilerType, int, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x44a
[0x00007d0a91e6fd02]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x1c2
(malloc=1390KB type=GC #13688) (peak=1528KB #15049)
[0x00007d0a920368d7]StackWatermark::start_processing_impl(void*)+0x77
[0x00007d0a9203674d]StackWatermark::start_processing()+0x5d
[0x00007d0a91a48519]HandshakeState::try_process(HandshakeOperation*) [clone .part.0]+0xd9
[0x00007d0a91a49d00]VM_HandshakeAllThreads::doit()+0x340
(malloc=831KB type=Thread #176) (peak=845KB #179)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a9226e62b]ZPage::reset(ZPageAge, ZPageResetType)+0x11b
[0x00007d0a92272abb]ZPageAllocator::alloc_page(ZPageType, unsigned long, ZAllocationFlags, ZPageAge)+0x3db
[0x00007d0a92252fbf]ZHeap::alloc_page(ZPageType, unsigned long, ZAllocationFlags, ZPageAge)+0xf
(malloc=736KB type=GC #8) (peak=1216KB #8)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a92287ccb]ZRememberedSet::initialize(unsigned long)+0x1b
[0x00007d0a9226e62b]ZPage::reset(ZPageAge, ZPageResetType)+0x11b
[0x00007d0a92272abb]ZPageAllocator::alloc_page(ZPageType, unsigned long, ZAllocationFlags, ZPageAge)+0x3db
(malloc=736KB type=GC #8) (peak=1216KB #8)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a9225b07b]ZLiveMap::ZLiveMap(unsigned int)+0x4b
[0x00007d0a9226db33]ZPage::clone_limited_promote_flipped() const+0x73
[0x00007d0a92280889]ZFlipAgePagesTask::work()+0x219
(malloc=704KB type=GC #12) (at peak)
[0x00007d0a920368d7]StackWatermark::start_processing_impl(void*)+0x77
[0x00007d0a9203674d]StackWatermark::start_processing()+0x5d
[0x00007d0a92036fe9]StackWatermark::on_safepoint()+0x19
[0x00007d0a91f64458]SafepointMechanism::process(JavaThread*, bool, bool)+0x28
(malloc=698KB type=Thread #148) (peak=731KB #155)
[0x00007d0a917ce4d5]ClassLoaderData::add_handle(Handle)+0xc5
[0x00007d0a91cf655f]Klass::set_java_mirror(Handle)+0x1f
[0x00007d0a91aceae1]java_lang_Class::create_mirror(Klass*, Handle, Handle, Handle, Handle, JavaThread*)+0xf1
[0x00007d0a917bc06e]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0xa2e
(malloc=632KB type=Class #2378) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a917badda]ClassFileParser::mangle_hidden_class_name(InstanceKlass*)+0x10a
[0x00007d0a917bc5af]ClassFileParser::create_instance_klass(bool, ClassInstanceInfo const&, JavaThread*)+0x8f
[0x00007d0a91cf9796]KlassFactory::create_from_stream(ClassFileStream*, Symbol*, ClassLoaderData*, ClassLoadInfo const&, JavaThread*)+0x316
(malloc=573KB type=Symbol #3895) (at peak)
[0x00007d0a9176f6cd]metaspace::ChunkHeaderPool::allocate_new_slab()+0x1d
[0x00007d0a91f55298]metaspace::RootChunkArea::split(signed char, metaspace::Metachunk*, metaspace::FreeChunkListVector*)+0x3f8
[0x00007d0a91770329]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x199
[0x00007d0a91770517]metaspace::ChunkManager::get_chunk(signed char, signed char, unsigned long)+0x47
(malloc=559KB type=Metaspace #62) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91a8678a]InstanceKlass::InstanceKlass(ClassFileParser const&, Klass::KlassKind, ReferenceType)+0xba
[0x00007d0a91a868dc]InstanceKlass::allocate_instance_klass(ClassFileParser const&, JavaThread*)+0xec
[0x00007d0a917bc564]ClassFileParser::create_instance_klass(bool, ClassInstanceInfo const&, JavaThread*)+0x44
(malloc=557KB type=Internal #19001) (at peak)
[0x00007d0a9204594a]StringTable::create_table()+0x14a
[0x00007d0a92153449]universe_init()+0x239
[0x00007d0a91a84137]init_globals()+0x37
[0x00007d0a92132035]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2b5
(malloc=512KB type=Symbol #1) (at peak)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a9226e62b]ZPage::reset(ZPageAge, ZPageResetType)+0x11b
[0x00007d0a9228089e]ZFlipAgePagesTask::work()+0x22e
[0x00007d0a921e2140]WorkerThread::run()+0x80
(malloc=480KB type=GC #12) (at peak)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a92287ccb]ZRememberedSet::initialize(unsigned long)+0x1b
[0x00007d0a9226e62b]ZPage::reset(ZPageAge, ZPageResetType)+0x11b
[0x00007d0a9228089e]ZFlipAgePagesTask::work()+0x22e
(malloc=480KB type=GC #12) (at peak)
[0x00007d0a918814ed]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x97d
[0x00007d0a91881af3]Deoptimization::uncommon_trap(JavaThread*, int, int)+0x33
(malloc=460KB type=Compiler #51) (peak=469KB #52)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a921c7ee6]WeakHandle::WeakHandle(OopStorage*, Handle)+0x26
[0x00007d0a9204338a]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0xea
(malloc=456KB type=Symbol #739) (at peak)
[0x00007d0a91ba1774]JVM_StartThread+0x354
[0x00007d0a7f33505f]
(malloc=406KB type=Thread #232) (peak=408KB #233)
[0x00007d0a91de0300]MallocSiteTable::new_entry(NativeCallStack const&, MEMFLAGS)+0x0
[0x00007d0a91de0390]MallocSiteTable::lookup_or_add(NativeCallStack const&, unsigned int*, MEMFLAGS)+0x0
[0x00007d0a91de0bf0]MallocSiteTable::allocation_at(NativeCallStack const&, unsigned long, unsigned int*, MEMFLAGS)+0x0
(malloc=380KB type=Native Memory Tracking #4419) (at peak)
[0x00007d0a920ceff8]SymbolTable::create_table()+0x1c8
[0x00007d0a92153444]universe_init()+0x234
[0x00007d0a91a84137]init_globals()+0x37
[0x00007d0a92132035]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2b5
(malloc=360KB type=Arena Chunk #1) (at peak)
[0x00007d0a91ba1774]JVM_StartThread+0x354
[0x00007d0a7e3f89c4]
(malloc=347KB type=Thread #198) (peak=403KB #230)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a91843773]ConstantPool::string_at_impl(constantPoolHandle const&, int, int, JavaThread*)+0xa3
[0x00007d0a91847b41]ConstantPool::resolve_constant_at_impl(constantPoolHandle const&, int, int, bool*, JavaThread*)+0x831
(malloc=308KB type=Symbol #19734) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91e40741]MethodData::allocate(ClassLoaderData*, methodHandle const&, JavaThread*)+0x71
[0x00007d0a91e3039a]Method::build_profiling_method_data(methodHandle const&, JavaThread*)+0x5a
[0x00007d0a91785a4b]ciMethod::ensure_method_data(methodHandle const&)+0xbb
(malloc=299KB type=Internal #16987) (at peak)
[0x00007d0a917d28d1]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0x91
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920dffca]SystemDictionary::resolve_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x6a
[0x00007d0a91ba0f10]jvm_lookup_define_class(_jclass*, char const*, signed char const*, int, _jobject*, unsigned char, int, _jobject*, JavaThread*)+0x3d0
(malloc=286KB type=Class #1830) (at peak)
[0x00007d0a921a1063]vframeArray::allocate(JavaThread*, int, GrowableArray<compiledVFrame*>*, RegisterMap*, frame, frame, frame, bool)+0x43
[0x00007d0a9187e66c]Deoptimization::create_vframeArray(JavaThread*, frame, RegisterMap*, GrowableArray<compiledVFrame*>*, bool)+0x11c
[0x00007d0a91880fb2]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x442
[0x00007d0a91881af3]Deoptimization::uncommon_trap(JavaThread*, int, int)+0x33
(malloc=272KB type=Compiler #56) (peak=277KB #57)
[0x00007d0a917ff198]CollectedHeap::CollectedHeap()+0x1c8
[0x00007d0a92246f53]ZCollectedHeap::ZCollectedHeap()+0x13
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
[0x00007d0a92153297]universe_init()+0x87
(malloc=258KB type=Internal #1) (at peak)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a922860d7]ZRemembered::ZRemembered(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x77
[0x00007d0a9224c5bb]ZGenerationYoung::ZGenerationYoung(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x4b
[0x00007d0a92252b44]ZHeap::ZHeap()+0xe4
(malloc=256KB type=GC #1) (at peak)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a922860aa]ZRemembered::ZRemembered(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x4a
[0x00007d0a9224c5bb]ZGenerationYoung::ZGenerationYoung(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x4b
[0x00007d0a92252b44]ZHeap::ZHeap()+0xe4
(malloc=256KB type=GC #1) (at peak)
[0x00007d0a920cef7a]SymbolTable::create_table()+0x14a
[0x00007d0a92153444]universe_init()+0x234
[0x00007d0a91a84137]init_globals()+0x37
[0x00007d0a92132035]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2b5
(malloc=256KB type=Symbol #1) (at peak)
[0x00007d0a9226b70b]ZNMethodTable::rebuild(unsigned long)+0x11b
[0x00007d0a9226be61]ZNMethodTable::register_nmethod(nmethod*)+0x11
[0x00007d0a9226aa04]ZNMethod::register_nmethod(nmethod*)+0xc4
[0x00007d0a91e6f9ea]nmethod::nmethod(Method*, CompilerType, int, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x44a
(malloc=256KB type=GC #1) (peak=384KB #2)
[0x00007d0a9228b672]ZStat::run_thread()+0x32
[0x00007d0a92297553]ZThread::run_service()+0x13
[0x00007d0a9183e09b]ConcurrentGCThread::run()+0x1b
[0x00007d0a92124b58]Thread::call_run()+0xa8
(malloc=239KB type=GC #1) (at peak)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043e79]StringTable::intern(char const*, JavaThread*)+0x89
[0x00007d0a91ac00b6]java_lang_Class::name(Handle, JavaThread*)+0x86
[0x00007d0a91b9d02d]JVM_InitClassName+0xcd
(malloc=238KB type=Symbol #15232) (at peak)
[0x00007d0a9188e761]DependencyContext::add_dependent_nmethod(nmethod*)+0x71
[0x00007d0a91a89a51]InstanceKlass::add_dependent_nmethod(nmethod*)+0x31
[0x00007d0a91e6fd5a]nmethod::new_nmethod(methodHandle const&, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x21a
[0x00007d0a91777869]ciEnv::register_method(ciMethod*, int, CodeOffsets*, int, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, bool, bool, bool, int, RTMState)+0x349
(malloc=206KB type=Class #8794) (peak=210KB #8979)
[0x00007d0a918f908f]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x9f
[0x00007d0a920df92a]SystemDictionary::define_instance_class(InstanceKlass*, Handle, JavaThread*)+0x3ea
[0x00007d0a920dfaee]SystemDictionary::find_or_define_helper(Symbol*, Handle, InstanceKlass*, JavaThread*)+0xee
[0x00007d0a920dfe65]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0xf5
(malloc=200KB type=Class #12825) (at peak)
[0x00007d0a918f9037]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x47
[0x00007d0a920df92a]SystemDictionary::define_instance_class(InstanceKlass*, Handle, JavaThread*)+0x3ea
[0x00007d0a920dfaee]SystemDictionary::find_or_define_helper(Symbol*, Handle, InstanceKlass*, JavaThread*)+0xee
[0x00007d0a920dfe65]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0xf5
(malloc=200KB type=Class #12825) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91f08c29]PhaseChaitin::post_allocate_copy_removal()+0x1f19
[0x00007d0a9176ef97]PhaseChaitin::Register_Allocate()+0x977
[0x00007d0a91816c26]Compile::Code_Gen()+0x326
(malloc=192KB type=Arena Chunk #6) (peak=5212KB #163)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=189KB type=GC #232) (peak=189KB #233)
[0x00007d0a917cdc59]ClassLoaderData::ClassLoaderData(Handle, bool)+0x39
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920dffca]SystemDictionary::resolve_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x6a
(malloc=186KB type=Synchronization #1830) (at peak)
[0x00007d0a9226aec7]GrowableArrayWithAllocator<oopDesc**, GrowableArrayCHeap<oopDesc**, (MEMFLAGS)5> >::grow(int)+0x27
[0x00007d0a9226a921]ZNMethod::attach_gc_data(nmethod*)+0x4a1
[0x00007d0a9226a959]ZNMethod::register_nmethod(nmethod*)+0x19
[0x00007d0a91e6f9ea]nmethod::nmethod(Method*, CompilerType, int, int, int, CodeOffsets*, int, DebugInformationRecorder*, Dependencies*, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, CompLevel, char*, int, JVMCINMethodData*)+0x44a
(malloc=183KB type=GC #4344) (peak=199KB #4751)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=161KB type=GC #198) (peak=187KB #230)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91f08c7f]PhaseChaitin::post_allocate_copy_removal()+0x1f6f
[0x00007d0a9176ef97]PhaseChaitin::Register_Allocate()+0x977
[0x00007d0a91816c26]Compile::Code_Gen()+0x326
(malloc=160KB type=Arena Chunk #5) (peak=3166KB #99)
[0x00007d0a91f6cb61]AdapterHandlerLibrary::new_entry(AdapterFingerPrint*, unsigned char*, unsigned char*, unsigned char*, unsigned char*)+0x41
[0x00007d0a91f7bbdd]SharedRuntime::generate_i2c2i_adapters(MacroAssembler*, int, int, BasicType const*, VMRegPair const*, AdapterFingerPrint*)+0xaed
[0x00007d0a91f6d08a]AdapterHandlerLibrary::create_adapter(AdapterBlob*&, int, BasicType*, bool)+0x41a
[0x00007d0a91f732e0]AdapterHandlerLibrary::get_adapter(methodHandle const&)+0x820
(malloc=139KB type=Code #3547) (at peak)
[0x00007d0a91e1f9d1]metaspace::MetaspaceArena::salvage_chunk(metaspace::Metachunk*)+0xf1
[0x00007d0a91e1fc6c]metaspace::MetaspaceArena::allocate_inner(unsigned long)+0x12c
[0x00007d0a91e1febb]metaspace::MetaspaceArena::allocate(unsigned long)+0xcb
[0x00007d0a91e1f00a]Metaspace::allocate(ClassLoaderData*, unsigned long, MetaspaceObj::Type, JavaThread*)+0x4a
(malloc=134KB type=Metaspace #451) (at peak)
[0x00007d0a9192cd76]Events::init() [clone .part.0]+0x776
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=131KB type=Internal #1) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91ad6d4f]JavaThread::run()+0x13f
[0x00007d0a92124b58]Thread::call_run()+0xa8
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
(malloc=126KB type=Internal #437) (peak=127KB #438)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a91abc5c2]JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)+0x1d2
(malloc=124KB type=Internal #430) (peak=125KB #431)
[0x00007d0a92234869]ZBarrierSet::on_thread_attach(Thread*)+0x79
[0x00007d0a9213078f]Threads::add(JavaThread*, bool)+0x1f
[0x00007d0a91ad3e66]JavaThread::prepare(_jobject*, ThreadPriority)+0xa6
[0x00007d0a91ba17aa]JVM_StartThread+0x38a
(malloc=124KB type=Thread #430) (peak=125KB #431)
[0x00007d0a918814ed]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x97d
[0x00007d0a91881a62]Deoptimization::fetch_unroll_info(JavaThread*, int)+0x22
[0x00007d0a7e443565]
(malloc=117KB type=Compiler #13) (at peak)
[0x00007d0a917d8349]ClassLoaderMetaspace::ClassLoaderMetaspace(Mutex*, Metaspace::MetaspaceType)+0xf9
[0x00007d0a917ce38e]ClassLoaderData::metaspace_non_null()+0x12e
[0x00007d0a91e1effd]Metaspace::allocate(ClassLoaderData*, unsigned long, MetaspaceObj::Type, JavaThread*)+0x3d
[0x00007d0a91841ed5]ConstantPool::allocate(ClassLoaderData*, int, JavaThread*)+0x35
(malloc=114KB type=Class #1830) (at peak)
[0x00007d0a917d829f]ClassLoaderMetaspace::ClassLoaderMetaspace(Mutex*, Metaspace::MetaspaceType)+0x4f
[0x00007d0a917ce38e]ClassLoaderData::metaspace_non_null()+0x12e
[0x00007d0a91e1effd]Metaspace::allocate(ClassLoaderData*, unsigned long, MetaspaceObj::Type, JavaThread*)+0x3d
[0x00007d0a91841ed5]ConstantPool::allocate(ClassLoaderData*, int, JavaThread*)+0x35
(malloc=114KB type=Class #1830) (at peak)
[0x00007d0a91a8cc49]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1a9
[0x00007d0a920e1a2a]SystemDictionary::load_shared_class(InstanceKlass*, Handle, Handle, ClassFileStream const*, PackageEntry*, JavaThread*)+0x17a
[0x00007d0a920e20ad]SystemDictionary::load_instance_class_impl(Symbol*, Handle, JavaThread*)+0x4fd
[0x00007d0a920e028c]SystemDictionary::load_instance_class(Symbol*, Handle, JavaThread*)+0x1c
(malloc=114KB type=Synchronization #1124) (at peak)
[0x00007d0a917724b2]ciEnv::ciEnv(CompileTask*)+0x22
[0x00007d0a91820229]CompileBroker::invoke_compiler_on_method(CompileTask*)+0x2d9
[0x00007d0a91823dc8]CompileBroker::compiler_thread_loop()+0x6a8
[0x00007d0a91ad26b8]JavaThread::thread_main_inner()+0x1d8
(malloc=112KB type=Arena Chunk #115) (at peak)
[0x00007d0a91f6d331]AdapterHandlerLibrary::create_adapter(AdapterBlob*&, int, BasicType*, bool)+0x6c1
[0x00007d0a91f732e0]AdapterHandlerLibrary::get_adapter(methodHandle const&)+0x820
[0x00007d0a91e3197e]Method::link_method(methodHandle const&, JavaThread*)+0x5e
[0x00007d0a91a8d457]InstanceKlass::link_methods(JavaThread*)+0x67
(malloc=109KB type=Code #3495) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91ba0d7e]jvm_lookup_define_class(_jclass*, char const*, signed char const*, int, _jobject*, unsigned char, int, _jobject*, JavaThread*)+0x23e
[0x00007d0a91ba1360]JVM_LookupDefineClass+0x80
[0x00007d0a90f5ff2b]Java_java_lang_ClassLoader_defineClass0+0x14b in libjava.so
(malloc=102KB type=Symbol #735) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91df4d08]Matcher::Label_Root(Node const*, State*, Node*, Node*&)+0x128
[0x00007d0a91df4f7d]Matcher::Label_Root(Node const*, State*, Node*, Node*&)+0x39d
[0x00007d0a91df4f7d]Matcher::Label_Root(Node const*, State*, Node*, Node*&)+0x39d
(malloc=96KB type=Arena Chunk #3) (peak=927KB #29)
[0x00007d0a9226ea04]ZPage::split_with_pmem(ZPageType, ZPhysicalMemory const&)+0x134
[0x00007d0a9226eb55]ZPage::split(ZPageType, unsigned long)+0x35
[0x00007d0a922742fe]ZPageCache::alloc_page(ZPageType, unsigned long)+0x15e
[0x00007d0a922727c6]ZPageAllocator::alloc_page(ZPageType, unsigned long, ZAllocationFlags, ZPageAge)+0xe6
(malloc=89KB type=GC #473) (peak=93KB #494)
[0x00007d0a91ad23a6]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x2e6
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=87KB type=Internal #206) (at peak)
[0x00007d0a92124150]Thread::Thread()+0x260
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=87KB type=Internal #206) (at peak)
[0x00007d0a91e03e93]MallocAllocationSiteWalker::do_malloc_site(MallocSite const*)+0x33
[0x00007d0a91de0938]MallocSiteTable::walk_malloc_site(MallocSiteWalker*)+0x58
[0x00007d0a91dff9d7]MemBaseline::baseline_allocation_sites()+0x97
[0x00007d0a91dffdf2]MemBaseline::baseline(bool)+0x242
(malloc=86KB type=Native Memory Tracking #1102) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a921c7ee6]WeakHandle::WeakHandle(OopStorage*, Handle)+0x26
[0x00007d0a91f500f1]ResolvedMethodTable::add_method(Method const*, Handle)+0x261
(malloc=75KB type=Class #122) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a920e1d97]SystemDictionary::load_instance_class_impl(Symbol*, Handle, JavaThread*)+0x1e7
[0x00007d0a920e028c]SystemDictionary::load_instance_class(Symbol*, Handle, JavaThread*)+0x1c
[0x00007d0a920e0ad2]SystemDictionary::resolve_instance_class_or_null(Symbol*, Handle, Handle, JavaThread*)+0x6c2
(malloc=71KB type=Symbol #891) (at peak)
[0x00007d0a9192d298]Events::init() [clone .part.0]+0xc98
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192d19f]Events::init() [clone .part.0]+0xb9f
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192d09e]Events::init() [clone .part.0]+0xa9e
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192cf8f]Events::init() [clone .part.0]+0x98f
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192ce86]Events::init() [clone .part.0]+0x886
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192cc6c]Events::init() [clone .part.0]+0x66c
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192cb6c]Events::init() [clone .part.0]+0x56c
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192ca6a]Events::init() [clone .part.0]+0x46a
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192c960]Events::init() [clone .part.0]+0x360
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9180310d]CompilationLog::init()+0xbd
[0x00007d0a9181bfb5]compileBroker_init()+0x75
[0x00007d0a91a841bb]init_globals2()+0x3b
[0x00007d0a92132077]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2f7
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9192c83f]Events::init() [clone .part.0]+0x23f
[0x00007d0a91a840e3]vm_init_globals()+0x13
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=68KB type=Internal #1) (at peak)
[0x00007d0a9226a8df]ZNMethod::attach_gc_data(nmethod*)+0x45f
[0x00007d0a9226a959]ZNMethod::register_nmethod(nmethod*)+0x19
[0x00007d0a91e72984]nmethod::nmethod(Method*, CompilerType, int, int, CodeOffsets*, CodeBuffer*, int, ByteSize, ByteSize, OopMapSet*)+0x2d4
[0x00007d0a91e72bd3]nmethod::new_native_nmethod(methodHandle const&, int, CodeBuffer*, int, int, int, ByteSize, ByteSize, OopMapSet*, int)+0x103
(malloc=66KB type=GC #647) (at peak)
[0x00007d0a92124150]Thread::Thread()+0x260
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=65KB type=Internal #153) (at peak)
[0x00007d0a91ad23a6]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x2e6
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=65KB type=Internal #153) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917009eb]LinearScan::build_intervals()+0x2b
[0x00007d0a91709c88]LinearScan::do_linear_scan()+0x48
[0x00007d0a91690528]Compilation::emit_lir()+0x548
(malloc=64KB type=Arena Chunk #2) (peak=576KB #18)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91869413]DebugInformationRecorder::DebugInformationRecorder(OopRecorder*)+0x43
[0x00007d0a9168f7e7]Compilation::initialize()+0x57
[0x00007d0a916910e0]Compilation::compile_method()+0xb0
(malloc=64KB type=Arena Chunk #2) (peak=1311KB #41)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91df4d08]Matcher::Label_Root(Node const*, State*, Node*, Node*&)+0x128
[0x00007d0a91df4f7d]Matcher::Label_Root(Node const*, State*, Node*, Node*&)+0x39d
[0x00007d0a91df5c08]Matcher::match_tree(Node const*)+0xe8
(malloc=64KB type=Arena Chunk #2) (peak=1887KB #59)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91e49645]MethodLiveness::BasicBlock::BasicBlock(MethodLiveness*, int, int)+0xd5
[0x00007d0a91e4a9f7]MethodLiveness::init_basic_blocks()+0x1f7
[0x00007d0a91e4ba71]MethodLiveness::compute_liveness()+0x11
(malloc=64KB type=Arena Chunk #2) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a92030b74]StackMapFrame::frame_in_exception_handler(unsigned char)+0x34
[0x00007d0a9218bf69]ClassVerifier::verify_exception_handler_targets(unsigned short, bool, StackMapFrame*, StackMapTable*, JavaThread*)+0x249
[0x00007d0a9219475a]ClassVerifier::verify_method(methodHandle const&, JavaThread*)+0x9ba
(malloc=64KB type=Arena Chunk #2) (peak=480KB #15)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9190c7a3]PhaseIdealLoop::Dominators()+0xe3
[0x00007d0a91d7cbee]PhaseIdealLoop::build_and_optimize()+0x38e
[0x00007d0a9181b046]PhaseIdealLoop::optimize(PhaseIterGVN&, LoopOptsMode)+0x216
(malloc=64KB type=Arena Chunk #2) (peak=388KB #12)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917bdd29]ClassFileParser::parse_fields(ClassFileStream const*, bool, ClassFileParser::FieldAllocationCount*, ConstantPool*, int, unsigned short*, JavaThread*)+0xca9
[0x00007d0a917c1da7]ClassFileParser::parse_stream(ClassFileStream const*, JavaThread*) [clone .part.0]+0x6d7
[0x00007d0a917c21fe]ClassFileParser::ClassFileParser(ClassFileStream*, Symbol*, ClassLoaderData*, ClassLoadInfo const*, ClassFileParser::Publicity, JavaThread*)+0x25e
(malloc=64KB type=Arena Chunk #2) (peak=1279KB #40)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917921cd]ciObjectFactory::ciObjectFactory(Arena*, int)+0x2d
[0x00007d0a917725a6]ciEnv::ciEnv(CompileTask*)+0x116
[0x00007d0a91820229]CompileBroker::invoke_compiler_on_method(CompileTask*)+0x2d9
(malloc=64KB type=Arena Chunk #2) (peak=1119KB #35)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916b1b4a]GrowableArrayWithAllocator<Instruction*, GrowableArray<Instruction*> >::expand_to(int)+0xba
[0x00007d0a916e1d16]LIRGenerator::do_Base(Base*)+0x3b6
[0x00007d0a916d4500]non-virtual thunk to LIRGenerator::block_do(BlockBegin*)+0xf0
(malloc=64KB type=Arena Chunk #2) (peak=448KB #14)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917c057d]ClassFileParser::parse_methods(ClassFileStream const*, bool, bool*, bool*, bool*, JavaThread*)+0x24d
[0x00007d0a917c1de8]ClassFileParser::parse_stream(ClassFileStream const*, JavaThread*) [clone .part.0]+0x718
[0x00007d0a917c21fe]ClassFileParser::ClassFileParser(ClassFileStream*, Symbol*, ClassLoaderData*, ClassLoadInfo const*, ClassFileParser::Publicity, JavaThread*)+0x25e
(malloc=64KB type=Arena Chunk #2) (peak=640KB #20)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a920d0013]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x7d3
[0x00007d0a920d0659]SymbolTable::new_symbols(ClassLoaderData*, constantPoolHandle const&, int, char const**, int*, int*, unsigned int*)+0x59
[0x00007d0a917c1462]ClassFileParser::parse_constant_pool_entries(ClassFileStream const*, ConstantPool*, int, JavaThread*)+0xc82
(malloc=64KB type=Arena Chunk #2) (at peak)
[0x00007d0a921a1063]vframeArray::allocate(JavaThread*, int, GrowableArray<compiledVFrame*>*, RegisterMap*, frame, frame, frame, bool)+0x43
[0x00007d0a9187e66c]Deoptimization::create_vframeArray(JavaThread*, frame, RegisterMap*, GrowableArray<compiledVFrame*>*, bool)+0x11c
[0x00007d0a91880fb2]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x442
[0x00007d0a91881a62]Deoptimization::fetch_unroll_info(JavaThread*, int)+0x22
(malloc=62KB type=Compiler #13) (at peak)
[0x00007d0a917ce379]ClassLoaderData::metaspace_non_null()+0x119
[0x00007d0a91e1effd]Metaspace::allocate(ClassLoaderData*, unsigned long, MetaspaceObj::Type, JavaThread*)+0x3d
[0x00007d0a91841ed5]ConstantPool::allocate(ClassLoaderData*, int, JavaThread*)+0x35
[0x00007d0a917c17ff]ClassFileParser::parse_stream(ClassFileStream const*, JavaThread*) [clone .part.0]+0x12f
(malloc=57KB type=Class #1830) (at peak)
[0x00007d0a91819b52]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x362
[0x00007d0a91740bdb]C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)+0x18b
[0x00007d0a91820bee]CompileBroker::invoke_compiler_on_method(CompileTask*)+0xc9e
[0x00007d0a91823dc8]CompileBroker::compiler_thread_loop()+0x6a8
(malloc=57KB type=Arena Chunk #58) (peak=58KB #59)
[0x00007d0a92124042]Thread::Thread()+0x152
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=54KB type=Class #232) (peak=55KB #233)
[0x00007d0a91ad2372]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x2b2
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=54KB type=Internal #232) (peak=55KB #233)
[0x00007d0a91f6cd9c]AdapterHandlerLibrary::create_adapter(AdapterBlob*&, int, BasicType*, bool)+0x12c
[0x00007d0a91f732e0]AdapterHandlerLibrary::get_adapter(methodHandle const&)+0x820
[0x00007d0a91e3197e]Method::link_method(methodHandle const&, JavaThread*)+0x5e
[0x00007d0a91a8d457]InstanceKlass::link_methods(JavaThread*)+0x67
(malloc=53KB type=Code #2279) (at peak)
[0x00007d0a918f908f]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x9f
[0x00007d0a920df92a]SystemDictionary::define_instance_class(InstanceKlass*, Handle, JavaThread*)+0x3ea
[0x00007d0a920dfaee]SystemDictionary::find_or_define_helper(Symbol*, Handle, InstanceKlass*, JavaThread*)+0xee
[0x00007d0a920e201b]SystemDictionary::load_instance_class_impl(Symbol*, Handle, JavaThread*)+0x46b
(malloc=53KB type=Class #3380) (at peak)
[0x00007d0a918f9037]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x47
[0x00007d0a920df92a]SystemDictionary::define_instance_class(InstanceKlass*, Handle, JavaThread*)+0x3ea
[0x00007d0a920dfaee]SystemDictionary::find_or_define_helper(Symbol*, Handle, InstanceKlass*, JavaThread*)+0xee
[0x00007d0a920e201b]SystemDictionary::load_instance_class_impl(Symbol*, Handle, JavaThread*)+0x46b
(malloc=53KB type=Class #3380) (at peak)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a91f3d20f]Reflection::new_method(methodHandle const&, bool, JavaThread*)+0xdf
[0x00007d0a91ba6d4d]get_class_declared_methods_helper(JNIEnv_*, _jclass*, unsigned char, bool, Klass*, JavaThread*) [clone .constprop.0]+0x4cd
(malloc=50KB type=Symbol #3189) (at peak)
[0x00007d0a91f01d86]PhaseCCP::analyze()+0x86
[0x00007d0a91818798]Compile::Optimize()+0x758
[0x00007d0a9181a716]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0xf26
[0x00007d0a91740bdb]C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)+0x18b
(malloc=50KB type=Arena Chunk #51) (peak=52KB #53)
[0x00007d0a917ce4d5]ClassLoaderData::add_handle(Handle)+0xc5
[0x00007d0a91842385]ConstantPool::initialize_resolved_references(ClassLoaderData*, GrowableArray<int> const&, int, JavaThread*)+0x105
[0x00007d0a91f52495]Rewriter::make_constant_pool_cache(JavaThread*)+0xc5
[0x00007d0a91f542ab]Rewriter::Rewriter(InstanceKlass*, constantPoolHandle const&, Array<Method*>*, JavaThread*)+0x29b
(malloc=49KB type=Class #186) (at peak)
[0x00007d0a918198c2]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0xd2
[0x00007d0a91740bdb]C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)+0x18b
[0x00007d0a91820bee]CompileBroker::invoke_compiler_on_method(CompileTask*)+0xc9e
[0x00007d0a91823dc8]CompileBroker::compiler_thread_loop()+0x6a8
(malloc=48KB type=Arena Chunk #49) (at peak)
[0x00007d0a91ad2372]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x2b2
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=46KB type=Internal #198) (peak=54KB #230)
[0x00007d0a92124042]Thread::Thread()+0x152
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=46KB type=Class #196) (peak=53KB #225)
[0x00007d0a91f50134]ResolvedMethodTable::add_method(Method const*, Handle)+0x2a4
[0x00007d0a91d31efc]CallInfo::set_resolved_method_name(JavaThread*)+0x1c
[0x00007d0a91e4602e]MethodHandles::resolve_MemberName(Handle, Klass*, int, bool, JavaThread*)+0x90e
[0x00007d0a91e462f6]MHN_resolve_Mem+0x1f6
(malloc=46KB type=Class #2936) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a917cdc75]ClassLoaderData::ClassLoaderData(Handle, bool)+0x55
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
(malloc=46KB type=Internal #1877) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91acf4d5]java_lang_invoke_MethodType::as_signature(oopDesc*, bool)+0x125
[0x00007d0a91e45b7b]MethodHandles::resolve_MemberName(Handle, Klass*, int, bool, JavaThread*)+0x45b
[0x00007d0a91e462f6]MHN_resolve_Mem+0x1f6
(malloc=46KB type=Symbol #207) (at peak)
[0x00007d0a91eb0657]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x47
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=45KB type=Thread #232) (peak=46KB #233)
[0x00007d0a918814ed]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x97d
[0x00007d0a91881af3]Deoptimization::uncommon_trap(JavaThread*, int, int)+0x33
[0x00007d0a7e442aa1]
(malloc=45KB type=Compiler #5) (peak=72KB #8)
[0x00007d0a92124007]Thread::Thread()+0x117
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=45KB type=Arena Chunk #197) (at peak)
[0x00007d0a92124007]Thread::Thread()+0x117
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=45KB type=Arena Chunk #197) (peak=48KB #214)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91a8cc62]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1c2
[0x00007d0a920e1a2a]SystemDictionary::load_shared_class(InstanceKlass*, Handle, Handle, ClassFileStream const*, PackageEntry*, JavaThread*)+0x17a
[0x00007d0a920e20ad]SystemDictionary::load_instance_class_impl(Symbol*, Handle, JavaThread*)+0x4fd
(malloc=42KB type=Internal #1124) (at peak)
[0x00007d0a91ec9dfb]PackageEntryTable::locked_create_entry_if_absent(Symbol*, ModuleEntry*)+0x3b
[0x00007d0a91ec9faa]PackageEntryTable::create_entry_if_absent(Symbol*, ModuleEntry*)+0x3a
[0x00007d0a91a8c7e2]InstanceKlass::set_package(ClassLoaderData*, PackageEntry*, JavaThread*)+0x382
[0x00007d0a917bb927]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0x2e7
(malloc=42KB type=Module #889) (at peak)
[0x00007d0a921a6ad3]VirtualMemoryTracker::add_reserved_region(unsigned char*, unsigned long, NativeCallStack const&, MEMFLAGS)+0x263
[0x00007d0a9212f638]ThreadStackTracker::new_thread_stack(void*, unsigned long, NativeCallStack const&)+0x38
[0x00007d0a92124afa]Thread::call_run()+0x4a
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
(malloc=41KB type=Native Memory Tracking #481) (peak=41KB #482)
[0x00007d0a91819b2c]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x33c
[0x00007d0a91740bdb]C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)+0x18b
[0x00007d0a91820bee]CompileBroker::invoke_compiler_on_method(CompileTask*)+0xc9e
[0x00007d0a91823dc8]CompileBroker::compiler_thread_loop()+0x6a8
(malloc=40KB type=Arena Chunk #41) (peak=42KB #43)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a9184699d]ConstantPool::resolve_string_constants_impl(constantPoolHandle const&, JavaThread*)+0x16d
[0x00007d0a91821e6e]CompileBroker::compile_method(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, DirectiveSet*, JavaThread*)+0x25e
(malloc=40KB type=Symbol #2546) (at peak)
[0x00007d0a91eb0657]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x47
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=39KB type=Thread #198) (peak=45KB #230)
[0x00007d0a917cddd2]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1b2
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920dfdb4]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x44
(malloc=38KB type=Module #44) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=35KB type=Arena Chunk #36) (at peak)
[0x00007d0a91e5117b]ModuleEntry::add_read(ModuleEntry*)+0x12b
[0x00007d0a91e527fc]Modules::add_reads_module(Handle, Handle, JavaThread*)+0x2ac
[0x00007d0a91b9cdf5]JVM_AddReadsModule+0x75
[0x00007d0a7e3f89c4]
(malloc=35KB type=Module #44) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=32KB type=Arena Chunk #33) (at peak)
[0x00007d0a91f509e8]ResolvedMethodTable::grow(JavaThread*)+0x138
[0x00007d0a91f51bed]ResolvedMethodTable::do_concurrent_work(JavaThread*)+0x9d
[0x00007d0a91f69574]ServiceThread::service_thread_entry(JavaThread*, JavaThread*)+0x3f4
[0x00007d0a91ad26b8]JavaThread::thread_main_inner()+0x1d8
(malloc=32KB type=Class #1) (peak=48KB #2)
[0x00007d0a918f9548]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x558
[0x00007d0a920df92a]SystemDictionary::define_instance_class(InstanceKlass*, Handle, JavaThread*)+0x3ea
[0x00007d0a920dfaee]SystemDictionary::find_or_define_helper(Symbol*, Handle, InstanceKlass*, JavaThread*)+0xee
[0x00007d0a920dfe65]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0xf5
(malloc=32KB type=Class #1) (peak=48KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91f41340]PhaseChaitin::Split(unsigned int, ResourceArea*)+0xe0
[0x00007d0a9176eb69]PhaseChaitin::Register_Allocate()+0x549
[0x00007d0a91816c26]Compile::Code_Gen()+0x326
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a8335e]IndexSet::alloc_block_containing(unsigned int)+0xee
[0x00007d0a91d3a0ce]PhaseLive::add_liveout(Block_List&, Block*, IndexSet*, VectorSet&)+0x30e
[0x00007d0a91d3a926]PhaseLive::compute(unsigned int)+0x666
(malloc=32KB type=Arena Chunk #1) (peak=799KB #25)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91e18b73]MergeMemNode::make(Node*)+0x83
[0x00007d0a91a3341f]GraphKit::clone_map()+0x2f
[0x00007d0a91a40670]GraphKit::add_parse_predicate(Deoptimization::DeoptReason, int) [clone .part.0]+0x2f0
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91f3d510]Reflection::new_method(methodHandle const&, bool, JavaThread*)+0x3e0
[0x00007d0a91ba6d4d]get_class_declared_methods_helper(JNIEnv_*, _jclass*, unsigned char, bool, Klass*, JavaThread*) [clone .constprop.0]+0x4cd
[0x00007d0a91ba6ef9]JVM_GetClassDeclaredMethods+0x59
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9180c99f]Compile::Init(bool)+0x7cf
[0x00007d0a91819e5e]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x66e
[0x00007d0a91740bdb]C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)+0x18b
(malloc=32KB type=Arena Chunk #1) (peak=224KB #7)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916be4bc]LIR_List::cmp_reg_mem(LIR_Condition, LIR_Opr, LIR_Address*, CodeEmitInfo*)+0x16c
[0x00007d0a916d4272]LIRGenerator::array_range_check(LIR_Opr, LIR_Opr, CodeEmitInfo*, CodeEmitInfo*)+0x1f2
[0x00007d0a916e43bf]LIRGenerator::do_LoadIndexed(LoadIndexed*)+0x3ef
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a8335e]IndexSet::alloc_block_containing(unsigned int)+0xee
[0x00007d0a91a798f7]PhaseChaitin::interfere_with_live(unsigned int, IndexSet*) [clone .part.0]+0x2a7
[0x00007d0a91a7bf95]PhaseChaitin::build_ifg_physical(ResourceArea*)+0x4b5
(malloc=32KB type=Arena Chunk #1) (peak=1663KB #52)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917921cd]ciObjectFactory::ciObjectFactory(Arena*, int)+0x2d
[0x00007d0a9177279c]ciEnv::ciEnv(Arena*)+0xac
[0x00007d0a917957e9]ciObjectFactory::initialize()+0x79
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9178087f]ciInstanceKlass::compute_nonstatic_fields_impl(GrowableArray<ciField*>*)+0xdff
[0x00007d0a91781758]ciInstanceKlass::compute_nonstatic_fields()+0x68
[0x00007d0a9179416c]ciObjectFactory::init_shared_objects()+0xadc
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91df5ef0]Matcher::match_sfpt(SafePointNode*)+0x170
[0x00007d0a91dfa4dd]Matcher::xform(Node*, int)+0x8fd
[0x00007d0a91dfd770]Matcher::match()+0x8a0
(malloc=32KB type=Arena Chunk #1) (peak=416KB #13)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91869413]DebugInformationRecorder::DebugInformationRecorder(OopRecorder*)+0x43
[0x00007d0a9180c4b0]Compile::Init(bool)+0x2e0
[0x00007d0a91819e5e]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x66e
(malloc=32KB type=Arena Chunk #1) (peak=160KB #5)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a8335e]IndexSet::alloc_block_containing(unsigned int)+0xee
[0x00007d0a91d39f74]PhaseLive::add_liveout(Block_List&, Block*, IndexSet*, VectorSet&)+0x1b4
[0x00007d0a91d3a926]PhaseLive::compute(unsigned int)+0x666
(malloc=32KB type=Arena Chunk #1) (peak=927KB #29)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916dc2f0]LIRGenerator::profile_type(ciMethodData*, int, int, long, Instruction*, LIR_Opr&, bool, ciKlass*, ciKlass*)+0x490
[0x00007d0a916dd263]LIRGenerator::profile_parameters_at_call(ProfileCall*)+0x1c3
[0x00007d0a916dd572]LIRGenerator::do_ProfileCall(ProfileCall*)+0x62
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91720a19]ValueStack::ValueStack(ValueStack*, ValueStack::Kind, int)+0x99
[0x00007d0a916ad7a2]GraphBuilder::connect_to_end(BlockBegin*)+0xa2
[0x00007d0a916ad84d]GraphBuilder::iterate_all_blocks(bool)+0x6d
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91f4041b]PhaseChaitin::get_spillcopy_wide(MachSpillCopyNode::SpillType, Node*, Node*, unsigned int)+0x57b
[0x00007d0a91f40885]PhaseChaitin::split_USE(MachSpillCopyNode::SpillType, Node*, Block*, Node*, unsigned int, unsigned int, bool, bool, GrowableArray<unsigned int>, int)+0x135
[0x00007d0a91f4291f]PhaseChaitin::Split(unsigned int, ResourceArea*)+0x16bf
(malloc=32KB type=Arena Chunk #1) (peak=192KB #6)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916e7094]LIR_List::branch(LIR_Condition, CodeStub*)+0xa4
[0x00007d0a916d6c02]LIRGenerator::increment_event_counter_impl(CodeEmitInfo*, ciMethod*, LIR_Opr, int, int, bool, bool)+0x4f2
[0x00007d0a916d6d78]LIRGenerator::do_ProfileInvoke(ProfileInvoke*)+0xb8
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917beec5]ClassFileParser::parse_method(ClassFileStream const*, bool, ConstantPool const*, bool*, JavaThread*)+0xe65
[0x00007d0a917c04f7]ClassFileParser::parse_methods(ClassFileStream const*, bool, bool*, bool*, bool*, JavaThread*)+0x1c7
[0x00007d0a917c1de8]ClassFileParser::parse_stream(ClassFileStream const*, JavaThread*) [clone .part.0]+0x718
(malloc=32KB type=Arena Chunk #1) (peak=1183KB #37)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a918f7927]Dict::doubhash()+0x1f7
[0x00007d0a918f7a78]Dict::Insert(void*, void*, bool)+0x148
[0x00007d0a9213816b]Type::hashcons()+0x4b
(malloc=32KB type=Arena Chunk #1) (peak=128KB #4)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91e75e0c]Node::out_grow(unsigned int)+0xec
[0x00007d0a91f40a80]PhaseChaitin::split_USE(MachSpillCopyNode::SpillType, Node*, Block*, Node*, unsigned int, unsigned int, bool, bool, GrowableArray<unsigned int>, int)+0x330
[0x00007d0a91f4291f]PhaseChaitin::Split(unsigned int, ResourceArea*)+0x16bf
(malloc=32KB type=Arena Chunk #1) (peak=128KB #4)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91e7a96e]Node::clone() const+0x23e
[0x00007d0a91f40d27]PhaseChaitin::split_Rematerialize(Node*, Block*, unsigned int, unsigned int&, GrowableArray<unsigned int>, int, unsigned int*, Node**, bool)+0x1b7
[0x00007d0a91f42aee]PhaseChaitin::Split(unsigned int, ResourceArea*)+0x188e
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a8335e]IndexSet::alloc_block_containing(unsigned int)+0xee
[0x00007d0a91a79d2f]PhaseIFG::SquareUp()+0x1bf
[0x00007d0a9176ee97]PhaseChaitin::Register_Allocate()+0x877
(malloc=32KB type=Arena Chunk #1) (peak=608KB #19)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a918f770a]Dict::Dict(Dict const&, Arena*)+0x11a
[0x00007d0a9214ac63]Type::Initialize(Compile*)+0x43
[0x00007d0a91819d74]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x584
(malloc=32KB type=Arena Chunk #1) (peak=160KB #5)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917ad343]ciTypeFlow::Block::compute_exceptions()+0x133
[0x00007d0a917ae12e]ciTypeFlow::flow_block(ciTypeFlow::Block*, ciTypeFlow::StateVector*, ciTypeFlow::JsrSet*)+0x2fe
[0x00007d0a917aea21]ciTypeFlow::df_flow_types(ciTypeFlow::Block*, bool, ciTypeFlow::StateVector*, ciTypeFlow::JsrSet*)+0x2b1
(malloc=32KB type=Arena Chunk #1) (peak=160KB #5)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91df5b90]Matcher::match_tree(Node const*)+0x70
[0x00007d0a91dfa426]Matcher::xform(Node*, int)+0x846
[0x00007d0a91dfd770]Matcher::match()+0x8a0
(malloc=32KB type=Arena Chunk #1) (peak=4061KB #127)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91d7cba6]PhaseIdealLoop::build_and_optimize()+0x346
[0x00007d0a9181b046]PhaseIdealLoop::optimize(PhaseIterGVN&, LoopOptsMode)+0x216
[0x00007d0a91818559]Compile::Optimize()+0x519
(malloc=32KB type=Arena Chunk #1) (peak=142KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917abda7]ciTypeFlow::Block::Block(ciTypeFlow*, ciBlock*, ciTypeFlow::JsrSet*)+0x267
[0x00007d0a917ae868]ciTypeFlow::df_flow_types(ciTypeFlow::Block*, bool, ciTypeFlow::StateVector*, ciTypeFlow::JsrSet*)+0xf8
[0x00007d0a917af739]ciTypeFlow::flow_types()+0x219
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9190ccbd]PhaseIdealLoop::Dominators()+0x5fd
[0x00007d0a91d7cbee]PhaseIdealLoop::build_and_optimize()+0x38e
[0x00007d0a91818b4a]Compile::Optimize()+0xb0a
(malloc=32KB type=Arena Chunk #1) (peak=193KB #4)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a8335e]IndexSet::alloc_block_containing(unsigned int)+0xee
[0x00007d0a91d3a72b]PhaseLive::compute(unsigned int)+0x46b
[0x00007d0a9176ead2]PhaseChaitin::Register_Allocate()+0x4b2
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a915ec313]Arena::Arealloc(void*, unsigned long, unsigned long, AllocFailStrategy::AllocFailEnum)+0xc3
[0x00007d0a91f00c8b]Type_Array::grow(unsigned int)+0x4b
[0x00007d0a91a3357a]GraphKit::clone_map()+0x18a
(malloc=32KB type=Arena Chunk #1) (peak=256KB #1)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916d998c]LIRGenerator::do_Goto(Goto*)+0x47c
[0x00007d0a916d4500]non-virtual thunk to LIRGenerator::block_do(BlockBegin*)+0xf0
[0x00007d0a916b7645]BlockList::iterate_forward(BlockClosure*)+0x35
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a92030a7e]StackMapFrame::StackMapFrame(unsigned short, unsigned short, ClassVerifier*)+0x6e
[0x00007d0a92193e8c]ClassVerifier::verify_method(methodHandle const&, JavaThread*)+0xec
[0x00007d0a9219b802]ClassVerifier::verify_class(JavaThread*)+0xf2
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917936d1]ciObjectFactory::init_shared_objects()+0x41
[0x00007d0a917957fc]ciObjectFactory::initialize()+0x8c
[0x00007d0a91823e05]CompileBroker::compiler_thread_loop()+0x6e5
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916c2924]LIR_Assembler::emit_op1(LIR_Op1*)+0x374
[0x00007d0a916c145f]LIR_Assembler::emit_lir_list(LIR_List*)+0x6f
[0x00007d0a916c162b]LIR_Assembler::emit_code(BlockList*)+0x5b
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91e4a9db]MethodLiveness::init_basic_blocks()+0x1db
[0x00007d0a91e4ba71]MethodLiveness::compute_liveness()+0x11
[0x00007d0a91784e55]ciMethod::liveness_at_bci(int)+0xf5
(malloc=32KB type=Arena Chunk #1) (peak=128KB #4)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91d72b5d]PhaseIdealLoop::build_loop_tree_impl(Node*, int)+0x5d
[0x00007d0a91d789e8]PhaseIdealLoop::build_loop_tree()+0x288
[0x00007d0a91d7ca08]PhaseIdealLoop::build_and_optimize()+0x1a8
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916fdc27]LinearScan::compute_oop_map(IntervalWalker*, LIR_Op*, CodeEmitInfo*, bool)+0x47
[0x00007d0a916fde4e]LinearScan::compute_oop_map(IntervalWalker*, LIR_OpVisitState const&, LIR_Op*)+0x3e
[0x00007d0a91709aba]LinearScan::assign_reg_num(GrowableArray<LIR_Op*>*, IntervalWalker*)+0x40a
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a915ec313]Arena::Arealloc(void*, unsigned long, unsigned long, AllocFailStrategy::AllocFailEnum)+0xc3
[0x00007d0a91d70b94]PhaseIdealLoop::set_idom(Node*, Node*, unsigned int)+0x74
[0x00007d0a91d4a954]PhaseIdealLoop::create_new_if_for_predicate(IfProjNode*, Node*, Deoptimization::DeoptReason, int, bool, bool)+0x1a4
(malloc=32KB type=Arena Chunk #1) (peak=224KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9179336d]ciObjectFactory::get_symbol(Symbol*)+0x4d
[0x00007d0a91779da6]ciField::ciField(fieldDescriptor*)+0xb6
[0x00007d0a91780892]ciInstanceKlass::compute_nonstatic_fields_impl(GrowableArray<ciField*>*)+0xe12
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917c71ba]ClassPathImageEntry::open_stream_for_loader(JavaThread*, char const*, ClassLoaderData*)+0x9a
[0x00007d0a917cb621]ClassLoader::load_class(Symbol*, bool, JavaThread*)+0x141
[0x00007d0a920e1ec8]SystemDictionary::load_instance_class_impl(Symbol*, Handle, JavaThread*)+0x318
(malloc=32KB type=Arena Chunk #1) (peak=620KB #19)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91678374]OopFlow::make(Arena*, int, Compile*)+0xc4
[0x00007d0a91679e6c]PhaseOutput::BuildOopMaps()+0x126c
[0x00007d0a91ec865c]PhaseOutput::Output()+0x5bc
(malloc=32KB type=Arena Chunk #1) (peak=1791KB #56)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91e75e0c]Node::out_grow(unsigned int)+0xec
[0x00007d0a91edb1d0]Compile::build_start_state(StartNode*, TypeFunc const*)+0x490
[0x00007d0a9181a546]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0xd56
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917921cd]ciObjectFactory::ciObjectFactory(Arena*, int)+0x2d
[0x00007d0a917725a6]ciEnv::ciEnv(CompileTask*)+0x116
[0x00007d0a9181d2a4]CompileBroker::init_compiler_runtime()+0x74
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9166fff9]GrowableBitMap<ResourceBitMap>::resize(unsigned long, bool)+0x69
[0x00007d0a916fa5b3]LinearScan::compute_local_live_sets()+0x6c3
[0x00007d0a91709c5b]LinearScan::do_linear_scan()+0x1b
(malloc=32KB type=Arena Chunk #1) (peak=544KB #17)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916ee29c]LIRGenerator::generate_address(LIR_Opr, LIR_Opr, int, int, BasicType)+0x3dc
[0x00007d0a91659650]BarrierSetC1::resolve_address(LIRAccess&, bool)+0x250
[0x00007d0a9165661e]BarrierSetC1::store_at(LIRAccess&, LIR_Opr)+0x1e
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9170341c]Interval::new_split_child()+0x17c
[0x00007d0a917035dc]Interval::split(int)+0x1c
[0x00007d0a91703948]LinearScanWalker::split_before_usage(Interval*, int, int)+0x58
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a3a243]GraphKit::set_results_for_java_call(CallJavaNode*, bool, bool)+0x2f3
[0x00007d0a91745526]DirectCallGenerator::generate(JVMState*)+0x306
[0x00007d0a917436f9]PredictedCallGenerator::generate(JVMState*)+0x2f9
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a83777]IndexSet::initialize(unsigned int, Arena*)+0xa7
[0x00007d0a91d3a0b0]PhaseLive::add_liveout(Block_List&, Block*, IndexSet*, VectorSet&)+0x2f0
[0x00007d0a91d3aac3]PhaseLive::compute(unsigned int)+0x803
(malloc=32KB type=Arena Chunk #1) (peak=448KB #14)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a915ec313]Arena::Arealloc(void*, unsigned long, unsigned long, AllocFailStrategy::AllocFailEnum)+0xc3
[0x00007d0a91e75d97]Node::out_grow(unsigned int)+0x77
[0x00007d0a91edcca5]Parse::create_entry_map()+0x665
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a915ec313]Arena::Arealloc(void*, unsigned long, unsigned long, AllocFailStrategy::AllocFailEnum)+0xc3
[0x00007d0a91e78ae1]Node_Array::grow(unsigned int)+0x41
[0x00007d0a91f42081]PhaseChaitin::Split(unsigned int, ResourceArea*)+0xe21
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91e75ad6]Node::Node(unsigned int)+0x166
[0x00007d0a91edc737]Parse::create_entry_map()+0xf7
[0x00007d0a91ee2602]Parse::Parse(JVMState*, ciMethod*, float)+0x382
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91efd0f7]PhaseIterGVN::remove_globally_dead_node(Node*)+0x357
[0x00007d0a91d7cfeb]PhaseIdealLoop::build_and_optimize()+0x78b
[0x00007d0a9181b046]PhaseIdealLoop::optimize(PhaseIterGVN&, LoopOptsMode)+0x216
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9190c7a3]PhaseIdealLoop::Dominators()+0xe3
[0x00007d0a91d7cbee]PhaseIdealLoop::build_and_optimize()+0x38e
[0x00007d0a91818b4a]Compile::Optimize()+0xb0a
(malloc=32KB type=Arena Chunk #1) (peak=365KB #11)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91f41737]PhaseChaitin::Split(unsigned int, ResourceArea*)+0x4d7
[0x00007d0a9176eb69]PhaseChaitin::Register_Allocate()+0x549
[0x00007d0a91816c26]Compile::Code_Gen()+0x326
(malloc=32KB type=Arena Chunk #1) (peak=3038KB #95)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a83777]IndexSet::initialize(unsigned int, Arena*)+0xa7
[0x00007d0a91d3a0b0]PhaseLive::add_liveout(Block_List&, Block*, IndexSet*, VectorSet&)+0x2f0
[0x00007d0a91d3a926]PhaseLive::compute(unsigned int)+0x666
(malloc=32KB type=Arena Chunk #1) (peak=1215KB #38)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a919347bc]FieldLayout::initialize_static_layout()+0x7c
[0x00007d0a91937e91]FieldLayoutBuilder::prologue()+0x91
[0x00007d0a91937f09]FieldLayoutBuilder::compute_regular_layout()+0x19
(malloc=32KB type=Arena Chunk #1) (peak=352KB #11)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917abf8e]ciTypeFlow::get_block_for(int, ciTypeFlow::JsrSet*, ciTypeFlow::CreateOption)+0x1de
[0x00007d0a917ac513]ciTypeFlow::Block::successors(ciBytecodeStream*, ciTypeFlow::StateVector*, ciTypeFlow::JsrSet*)+0x253
[0x00007d0a917ae2ca]ciTypeFlow::flow_block(ciTypeFlow::Block*, ciTypeFlow::StateVector*, ciTypeFlow::JsrSet*)+0x49a
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a836c7]IndexSet::initialize(unsigned int)+0xd7
[0x00007d0a91a79a05]PhaseIFG::init(unsigned int)+0xe5
[0x00007d0a91a1aebc]PhaseCFG::global_code_motion()+0x90c
(malloc=32KB type=Arena Chunk #1) (peak=2174KB #68)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a28aca]GenerateOopMap::init_basic_blocks()+0x2a
[0x00007d0a91a2cffd]GenerateOopMap::do_interpretation()+0x7d
[0x00007d0a91a2d2cf]GenerateOopMap::compute_map(Thread*)+0x1ff
(malloc=32KB type=Arena Chunk #1) (peak=128KB #4)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91934756]FieldLayout::initialize_static_layout()+0x16
[0x00007d0a91937e91]FieldLayoutBuilder::prologue()+0x91
[0x00007d0a91937f09]FieldLayoutBuilder::compute_regular_layout()+0x19
(malloc=32KB type=Arena Chunk #1) (peak=799KB #25)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a918f75df]Dict::Dict(int (*)(void const*, void const*), int (*)(void const*), Arena*, int)+0xaf
[0x00007d0a921481c2]Type::Initialize_shared(Compile*)+0x72
[0x00007d0a9214ac7d]Type::Initialize(Compile*)+0x5d
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a918f770a]Dict::Dict(Dict const&, Arena*)+0x11a
[0x00007d0a9214ac63]Type::Initialize(Compile*)+0x43
[0x00007d0a918174ec]Compile::Compile(ciEnv*, TypeFunc const* (*)(), unsigned char*, char const*, int, bool, bool, DirectiveSet*)+0x5bc
(malloc=32KB type=Arena Chunk #1) (at peak)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a916996a3]BlockListBuilder::BlockListBuilder(Compilation*, IRScope*, int)+0x183
[0x00007d0a9169eac5]GraphBuilder::push_scope(ciMethod*, BlockBegin*)+0xf5
[0x00007d0a916adb98]GraphBuilder::try_inline_full(ciMethod*, bool, bool, Bytecodes::Code, Instruction*)+0x2f8
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91701d61]LinearScan::build_intervals()+0x13a1
[0x00007d0a91709c88]LinearScan::do_linear_scan()+0x48
[0x00007d0a91690528]Compilation::emit_lir()+0x548
(malloc=32KB type=Arena Chunk #1) (peak=288KB #9)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91df5b90]Matcher::match_tree(Node const*)+0x70
[0x00007d0a91df5df0]Matcher::match_sfpt(SafePointNode*)+0x70
[0x00007d0a91dfa4dd]Matcher::xform(Node*, int)+0x8fd
(malloc=32KB type=Arena Chunk #1) (peak=288KB #9)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91f412f5]PhaseChaitin::Split(unsigned int, ResourceArea*)+0x95
[0x00007d0a9176ed65]PhaseChaitin::Register_Allocate()+0x745
[0x00007d0a91816c26]Compile::Code_Gen()+0x326
(malloc=32KB type=Arena Chunk #1) (peak=181KB #5)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9174973c]JVMState::clone_shallow(Compile*) const+0xfc
[0x00007d0a91e7ab38]Node::clone() const+0x408
[0x00007d0a91d896c2]PhaseIdealLoop::clone_loop_body(Node_List const&, Node_List&, CloneMap*)+0x42
(malloc=32KB type=Arena Chunk #1) (peak=128KB #4)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91a836c7]IndexSet::initialize(unsigned int)+0xd7
[0x00007d0a91d3af1c]PhaseLive::compute(unsigned int)+0xc5c
[0x00007d0a91a1aee7]PhaseCFG::global_code_motion()+0x937
(malloc=32KB type=Arena Chunk #1) (peak=863KB #27)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a917209c7]ValueStack::ValueStack(ValueStack*, ValueStack::Kind, int)+0x47
[0x00007d0a916b72da]BlockBegin::try_merge(ValueStack*, bool)+0x19a
[0x00007d0a916ab001]GraphBuilder::iterate_bytecodes_for_block(int)+0x331
(malloc=32KB type=Arena Chunk #1) (peak=64KB #2)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a9166fff9]GrowableBitMap<ResourceBitMap>::resize(unsigned long, bool)+0x69
[0x00007d0a916fa009]LinearScan::compute_local_live_sets()+0x119
[0x00007d0a91709c5b]LinearScan::do_linear_scan()+0x1b
(malloc=32KB type=Arena Chunk #1) (peak=128KB #4)
[0x00007d0a915ec0c3]Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)+0x63
[0x00007d0a91e985d7]OopMap::deep_copy()+0x17
[0x00007d0a916b2a63]CodeEmitInfo::record_debug_info(DebugInformationRecorder*, int)+0x23
[0x00007d0a916c1291]LIR_Assembler::add_call_info(int, CodeEmitInfo*)+0x41
(malloc=32KB type=Arena Chunk #1) (peak=96KB #3)
[0x00007d0a921a4f1a]ReservedMemoryRegion::add_committed_region(unsigned char*, unsigned long, NativeCallStack const&)+0x1aa
[0x00007d0a921a5390]VirtualMemorySummary::snapshot(VirtualMemorySnapshot*)+0x130
[0x00007d0a91dffd72]MemBaseline::baseline(bool)+0x1c2
[0x00007d0a91e74725]NMTDCmd::report(bool, unsigned long)+0x175
(malloc=32KB type=Native Memory Tracking #579) (peak=32KB #581)
[0x00007d0a92124150]Thread::Thread()+0x260
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=32KB type=Internal #75) (at peak)
[0x00007d0a91819b1b]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x32b
[0x00007d0a91740bdb]C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)+0x18b
[0x00007d0a91820bee]CompileBroker::invoke_compiler_on_method(CompileTask*)+0xc9e
[0x00007d0a91823dc8]CompileBroker::compiler_thread_loop()+0x6a8
(malloc=31KB type=Arena Chunk #32) (peak=33KB #34)
[0x00007d0a91f50134]ResolvedMethodTable::add_method(Method const*, Handle)+0x2a4
[0x00007d0a91d31efc]CallInfo::set_resolved_method_name(JavaThread*)+0x1c
[0x00007d0a91e460e1]MethodHandles::resolve_MemberName(Handle, Klass*, int, bool, JavaThread*)+0x9c1
[0x00007d0a91e462f6]MHN_resolve_Mem+0x1f6
(malloc=30KB type=Class #1926) (at peak)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a918436bc]ConstantPool::uncached_string_at(int, JavaThread*)+0x1c
[0x00007d0a91abcffb]initialize_static_field(fieldDescriptor*, Handle, JavaThread*)+0xcb
(malloc=30KB type=Symbol #1921) (at peak)
[0x00007d0a91ecb07b]PackageEntry::add_qexport(ModuleEntry*)+0x5b
[0x00007d0a91e52d33]Modules::add_module_exports(Handle, _jstring*, Handle, JavaThread*)+0x443
[0x00007d0a91b9cb80]JVM_AddModuleExports+0x80
[0x00007d0a7e3f89c4]
(malloc=30KB type=Module #89) (at peak)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043dd1]StringTable::intern(oopDesc*, JavaThread*)+0x101
[0x00007d0a91b9bc2b]JVM_InternString+0x5b
[0x00007d0a7ebdcdff]
(malloc=29KB type=Symbol #1876) (at peak)
[0x00007d0a91f50134]ResolvedMethodTable::add_method(Method const*, Handle)+0x2a4
[0x00007d0a91d31efc]CallInfo::set_resolved_method_name(JavaThread*)+0x1c
[0x00007d0a91e4602e]MethodHandles::resolve_MemberName(Handle, Klass*, int, bool, JavaThread*)+0x90e
[0x00007d0a920ddd1c]SystemDictionary::link_method_handle_constant(Klass*, int, Klass*, Symbol*, Symbol*, JavaThread*)+0x20c
(malloc=29KB type=Class #1844) (at peak)
[0x00007d0a91f6d3e9]AdapterHandlerLibrary::create_adapter(AdapterBlob*&, int, BasicType*, bool)+0x779
[0x00007d0a91f732e0]AdapterHandlerLibrary::get_adapter(methodHandle const&)+0x820
[0x00007d0a91e3197e]Method::link_method(methodHandle const&, JavaThread*)+0x5e
[0x00007d0a91a8d457]InstanceKlass::link_methods(JavaThread*)+0x67
(malloc=29KB type=Code #1216) (at peak)
[0x00007d0a91ec9f1f]PackageEntryTable::locked_create_entry_if_absent(Symbol*, ModuleEntry*)+0x15f
[0x00007d0a91ec9faa]PackageEntryTable::create_entry_if_absent(Symbol*, ModuleEntry*)+0x3a
[0x00007d0a91a8c7e2]InstanceKlass::set_package(ClassLoaderData*, PackageEntry*, JavaThread*)+0x382
[0x00007d0a917bb927]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0x2e7
(malloc=28KB type=Module #889) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a917c7262]ClassPathImageEntry::open_stream_for_loader(JavaThread*, char const*, ClassLoaderData*)+0x142
[0x00007d0a917cb621]ClassLoader::load_class(Symbol*, bool, JavaThread*)+0x141
[0x00007d0a920e1ec8]SystemDictionary::load_instance_class_impl(Symbol*, Handle, JavaThread*)+0x318
(malloc=27KB type=Symbol #238) (peak=54KB #434)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=27KB type=GC #33) (at peak)
[0x00007d0a921a4f1a]ReservedMemoryRegion::add_committed_region(unsigned char*, unsigned long, NativeCallStack const&)+0x1aa
[0x00007d0a921a5b61]VirtualMemoryTracker::add_committed_region(unsigned char*, unsigned long, NativeCallStack const&)+0x111
[0x00007d0a91ea5889]os::commit_memory(char*, unsigned long, bool)+0x59
[0x00007d0a920346e7]StackOverflow::create_stack_guard_pages()+0x57
(malloc=24KB type=Native Memory Tracking #438) (peak=24KB #439)
[0x00007d0a91ea7a26]OSThread::pd_initialize()+0x56
[0x00007d0a91eb0674]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x64
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=24KB type=Synchronization #232) (peak=24KB #233)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a91843773]ConstantPool::string_at_impl(constantPoolHandle const&, int, int, JavaThread*)+0xa3
[0x00007d0a917760bd]ciEnv::get_constant_by_index_impl(constantPoolHandle const&, int, int, ciInstanceKlass*)+0x19d
(malloc=23KB type=Symbol #1468) (at peak)
[0x00007d0a91828b87]CompiledIC::set_to_megamorphic(CallInfo*, Bytecodes::Code, bool&, JavaThread*)+0x97
[0x00007d0a91f6be4c]SharedRuntime::handle_ic_miss_helper_internal(Handle, CompiledMethod*, frame const&, methodHandle, Bytecodes::Code, CallInfo&, bool&, JavaThread*)+0x21c
[0x00007d0a91f722ca]SharedRuntime::handle_ic_miss_helper(JavaThread*)+0x27a
[0x00007d0a91f723e5]SharedRuntime::handle_wrong_method_ic_miss(JavaThread*)+0x35
(malloc=22KB type=Compiler #710) (peak=25KB #784)
[0x00007d0a91ec9c7a]PackageEntryTable::locked_create_entry(Symbol*, ModuleEntry*)+0x3a
[0x00007d0a91e552a0]Modules::define_module(Handle, unsigned char, _jstring*, _jstring*, _jobjectArray*, JavaThread*)+0x1750
[0x00007d0a91b9c9e7]JVM_DefineModule+0x87
[0x00007d0a7e3f89c4]
(malloc=21KB type=Module #448) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a920df901]SystemDictionary::define_instance_class(InstanceKlass*, Handle, JavaThread*)+0x3c1
(malloc=21KB type=Internal #72) (peak=23KB #81)
[0x00007d0a91ea7a26]OSThread::pd_initialize()+0x56
[0x00007d0a91eb0674]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x64
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=20KB type=Synchronization #198) (peak=23KB #230)
[0x00007d0a917e7be1]CodeBuffer::create_patch_overflow()+0x91
[0x00007d0a915fd51b]Label::add_patch_at(CodeBuffer*, int, char const*, int)+0xcb
[0x00007d0a916025d6]Assembler::jmp(Label&, bool)+0xc6
[0x00007d0a916c88c4]LIR_Assembler::type_profile_helper(Register, ciMethodData*, ProfileData*, Register, Label*)+0x574
(malloc=20KB type=Arena Chunk #20) (peak=22KB #23)
[0x00007d0a91ad23a6]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x2e6
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
[0x00007d0a918235b4]CompileBroker::possibly_add_compiler_threads(JavaThread*)+0x544
(malloc=19KB type=Internal #46) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a921c7ee6]WeakHandle::WeakHandle(OopStorage*, Handle)+0x26
[0x00007d0a917cd9a0]ClassLoaderData::initialize_holder(Handle)+0x30
(malloc=17KB type=Internal #28) (at peak)
[0x00007d0a921e232c]WorkerThreads::create_worker(unsigned int)+0x3c
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
[0x00007d0a922894cb]ZRuntimeWorkers::ZRuntimeWorkers()+0x5b
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
(malloc=17KB type=Thread #19) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91ba0231]JVM_FindClassFromCaller+0x61
[0x00007d0a90f5f787]Java_java_lang_Class_forName0+0xd7 in libjava.so
[0x00007d0a7ec90a4d]
(malloc=17KB type=Symbol #153) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a91b905f4]JNIHandles::make_global(Handle, AllocFailStrategy::AllocFailEnum)+0x24
[0x00007d0a91b5d6dc]jni_NewGlobalRef+0xec
(malloc=17KB type=Internal #27) (at peak)
[0x00007d0a91af3055]JfrEventClassTransformer::on_klass_creation(InstanceKlass*&, ClassFileParser&, JavaThread*)+0x875
[0x00007d0a91cf987f]KlassFactory::create_from_stream(ClassFileStream*, Symbol*, ClassLoaderData*, ClassLoadInfo const&, JavaThread*)+0x3ff
[0x00007d0a920dfee0]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x170
[0x00007d0a91ba060e]jvm_define_class_common(char const*, _jobject*, signed char const*, int, _jobject*, char const*, JavaThread*)+0x21e
(malloc=16KB type=Internal #9) (at peak)
[0x00007d0a91941f4d]FinalizerService::init()+0xbd
[0x00007d0a91a8410f]init_globals()+0xf
[0x00007d0a92132035]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2b5
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=16KB type=Serviceability #1) (at peak)
[0x00007d0a92230d8b]ZArguments::create_heap()+0x1b
[0x00007d0a92153297]universe_init()+0x87
[0x00007d0a91a84137]init_globals()+0x37
[0x00007d0a92132035]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2b5
(malloc=16KB type=GC #1) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a9201ca0a]SignatureStream::find_symbol()+0x5a
[0x00007d0a92189c90]ClassVerifier::translate_signature(Symbol*, sig_as_verification_types*)+0x190
[0x00007d0a9218a141]ClassVerifier::create_method_sig_entry(sig_as_verification_types*, int)+0x41
(malloc=16KB type=Symbol #152) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91ba04f4]jvm_define_class_common(char const*, _jobject*, signed char const*, int, _jobject*, char const*, JavaThread*)+0x104
[0x00007d0a91ba08a9]JVM_DefineClassWithSource+0x69
[0x00007d0a90f5fb72]Java_java_lang_ClassLoader_defineClass1+0x182 in libjava.so
(malloc=16KB type=Symbol #203) (at peak)
[0x00007d0a91f50134]ResolvedMethodTable::add_method(Method const*, Handle)+0x2a4
[0x00007d0a91d32fdb]CallInfo::CallInfo(Method*, Klass*, JavaThread*)+0x13b
[0x00007d0a91e452b0]MethodHandles::init_MemberName(Handle, Handle, JavaThread*)+0xf0
[0x00007d0a91e45588]MHN_init_Mem+0x128
(malloc=15KB type=Class #959) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a91ad128f]JavaThread::set_threadOopHandles(oopDesc*)+0x1f
[0x00007d0a91ad3e41]JavaThread::prepare(_jobject*, ThreadPriority)+0x81
(malloc=15KB type=Thread #24) (at peak)
[0x00007d0a91ec9d73]PackageEntryTable::locked_create_entry(Symbol*, ModuleEntry*)+0x133
[0x00007d0a91e552a0]Modules::define_module(Handle, unsigned char, _jstring*, _jstring*, _jobjectArray*, JavaThread*)+0x1750
[0x00007d0a91b9c9e7]JVM_DefineModule+0x87
[0x00007d0a7e3f89c4]
(malloc=14KB type=Module #448) (at peak)
[0x00007d0a92124150]Thread::Thread()+0x260
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=14KB type=Internal #33) (at peak)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a91f3ca8c]Reflection::new_field(fieldDescriptor*, JavaThread*)+0x3c
[0x00007d0a91ba587e]JVM_GetClassDeclaredFields+0x68e
(malloc=13KB type=Symbol #813) (at peak)
[0x00007d0a921240dd]Thread::Thread()+0x1ed
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=13KB type=Thread #232) (peak=13KB #233)
[0x00007d0a92123ff2]Thread::Thread()+0x102
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=13KB type=Thread #232) (peak=13KB #233)
[0x00007d0a921e232c]WorkerThreads::create_worker(unsigned int)+0x3c
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
[0x00007d0a922acb25]ZWorkers::ZWorkers(ZGenerationId, ZStatWorkers*)+0xd5
[0x00007d0a9224bfba]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0xaa
(malloc=13KB type=Thread #14) (at peak)
[0x00007d0a920dca3e]SystemDictionary::find_method_handle_intrinsic(vmIntrinsicID, Symbol*, JavaThread*)+0xfe
[0x00007d0a91d329ac]LinkResolver::lookup_polymorphic_method(LinkInfo const&, Handle*, JavaThread*)+0x1dc
[0x00007d0a91d345a3]LinkResolver::resolve_method(LinkInfo const&, Bytecodes::Code, JavaThread*)+0x563
[0x00007d0a91d38aad]LinkResolver::resolve_static_call(CallInfo&, LinkInfo const&, bool, JavaThread*)+0x4d
(malloc=12KB type=Class #311) (at peak)
[0x00007d0a917cde2e]ClassLoaderData::ClassLoaderData(Handle, bool)+0x20e
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920dfdb4]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x44
(malloc=12KB type=Class #44) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a91a8dea3]InstanceKlass::register_finalizer(instanceOopDesc*, JavaThread*)+0x113
(malloc=12KB type=Internal #40) (at peak)
[0x00007d0a91f6d40d]AdapterHandlerLibrary::create_adapter(AdapterBlob*&, int, BasicType*, bool)+0x79d
[0x00007d0a91f732e0]AdapterHandlerLibrary::get_adapter(methodHandle const&)+0x820
[0x00007d0a91e3197e]Method::link_method(methodHandle const&, JavaThread*)+0x5e
[0x00007d0a91a8d457]InstanceKlass::link_methods(JavaThread*)+0x67
(malloc=12KB type=Code #563) (at peak)
[0x00007d0a918f908f]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x9f
[0x00007d0a920e0401]SystemDictionary::load_instance_class(Symbol*, Handle, JavaThread*)+0x191
[0x00007d0a920e0de9]SystemDictionary::resolve_instance_class_or_null(Symbol*, Handle, Handle, JavaThread*)+0x9d9
[0x00007d0a920e219e]SystemDictionary::resolve_or_fail(Symbol*, Handle, Handle, bool, JavaThread*)+0x5e
(malloc=12KB type=Class #737) (at peak)
[0x00007d0a918f9037]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x47
[0x00007d0a920e0401]SystemDictionary::load_instance_class(Symbol*, Handle, JavaThread*)+0x191
[0x00007d0a920e0de9]SystemDictionary::resolve_instance_class_or_null(Symbol*, Handle, Handle, JavaThread*)+0x9d9
[0x00007d0a920e219e]SystemDictionary::resolve_or_fail(Symbol*, Handle, Handle, bool, JavaThread*)+0x5e
(malloc=12KB type=Class #737) (at peak)
[0x00007d0a91ad23a6]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x2e6
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
[0x00007d0a9182338e]CompileBroker::possibly_add_compiler_threads(JavaThread*)+0x31e
(malloc=11KB type=Internal #27) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91e7d5d4]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0x214
[0x00007d0a91a8610b]InstanceKlass::array_klass(int, JavaThread*)+0x12b
[0x00007d0a91e7d4ca]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0x10a
(malloc=11KB type=Symbol #114) (at peak)
[0x00007d0a91a8cc49]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1a9
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
[0x00007d0a921ab43c]vmClasses::resolve(vmClassID, JavaThread*)+0xbc
[0x00007d0a921ab5bc]vmClasses::resolve_all(JavaThread*)+0x16c
(malloc=11KB type=Synchronization #111) (at peak)
[0x00007d0a917ce4d5]ClassLoaderData::add_handle(Handle)+0xc5
[0x00007d0a91cf655f]Klass::set_java_mirror(Handle)+0x1f
[0x00007d0a91aceae1]java_lang_Class::create_mirror(Klass*, Handle, Handle, Handle, Handle, JavaThread*)+0xf1
[0x00007d0a91cf7ed7]Klass::restore_unshareable_info(ClassLoaderData*, Handle, JavaThread*)+0x437
(malloc=11KB type=Class #42) (at peak)
[0x00007d0a92276d3f]GrowableArrayWithAllocator<ZPhysicalMemorySegment, GrowableArrayCHeap<ZPhysicalMemorySegment, (MEMFLAGS)5> >::grow(int)+0x2f
[0x00007d0a922761dc]ZPhysicalMemory::add_segment(ZPhysicalMemorySegment const&)+0x2ec
[0x00007d0a922762b9]ZPhysicalMemory::ZPhysicalMemory(ZPhysicalMemory const&)+0x49
[0x00007d0a9226d8f1]ZPage::ZPage(ZPageType, ZVirtualMemory const&, ZPhysicalMemory const&)+0x71
(malloc=11KB type=GC #474) (peak=12KB #495)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a9201ca0a]SignatureStream::find_symbol()+0x5a
[0x00007d0a920325b0]StackMapFrame::set_locals_from_arg(methodHandle const&, VerificationType)+0x1e0
[0x00007d0a92193e9f]ClassVerifier::verify_method(methodHandle const&, JavaThread*)+0xff
(malloc=11KB type=Symbol #103) (at peak)
[0x00007d0a92123fc9]Thread::Thread()+0xd9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=11KB type=Thread #232) (peak=11KB #233)
[0x00007d0a921240dd]Thread::Thread()+0x1ed
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=11KB type=Thread #198) (peak=13KB #230)
[0x00007d0a92123ff2]Thread::Thread()+0x102
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=11KB type=Thread #198) (peak=13KB #230)
[0x00007d0a917e7be1]CodeBuffer::create_patch_overflow()+0x91
[0x00007d0a915fd51b]Label::add_patch_at(CodeBuffer*, int, char const*, int)+0xcb
[0x00007d0a916025d6]Assembler::jmp(Label&, bool)+0xc6
[0x00007d0a916c909b]LIR_Assembler::emit_typecheck_helper(LIR_OpTypeCheck*, Label*, Label*, Label*)+0x78b
(malloc=11KB type=Arena Chunk #11) (at peak)
[0x00007d0a91df01d8]Matcher::Matcher()+0x88
[0x00007d0a91816965]Compile::Code_Gen()+0x65
[0x00007d0a9181ad4c]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x155c
[0x00007d0a91740bdb]C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)+0x18b
(malloc=10KB type=Arena Chunk #1) (peak=50KB #5)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a91abc7f2]JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, Handle, JavaThread*)+0x1e2
(malloc=10KB type=Internal #34) (peak=14KB #47)
[0x00007d0a91d3c5ff]LoaderConstraintTable::add_loader_constraint(Symbol*, InstanceKlass*, ClassLoaderData*, ClassLoaderData*)+0x5f
[0x00007d0a91d3ca10]LoaderConstraintTable::add_entry(Symbol*, InstanceKlass*, ClassLoaderData*, InstanceKlass*, ClassLoaderData*)+0x1d0
[0x00007d0a920dc389]SystemDictionary::add_loader_constraint(Symbol*, Klass*, Handle, Handle)+0xf9
[0x00007d0a920dc8e6]SystemDictionary::check_signature_loaders(Symbol*, Klass*, Handle, Handle, bool)+0x96
(malloc=9KB type=Class #120) (at peak)
[0x00007d0a92123fc9]Thread::Thread()+0xd9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=9KB type=Thread #198) (peak=11KB #230)
[0x00007d0a91f5cfad]ThreadSafepointState::create(JavaThread*)+0x1d
[0x00007d0a91ad23e2]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x322
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=9KB type=Thread #232) (peak=9KB #233)
[0x00007d0a9176f6cd]metaspace::ChunkHeaderPool::allocate_new_slab()+0x1d
[0x00007d0a91f54c0c]metaspace::RootChunkArea::alloc_root_chunk_header(metaspace::VirtualSpaceNode*)+0xcc
[0x00007d0a921a8693]metaspace::VirtualSpaceNode::allocate_root_chunk()+0x73
[0x00007d0a9177042c]metaspace::ChunkManager::get_chunk_locked(signed char, signed char, unsigned long)+0x29c
(malloc=9KB type=Metaspace #1) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a91abb013]JavaCalls::call_static(JavaValue*, Klass*, Symbol*, Symbol*, JavaCallArguments*, JavaThread*)+0x113
(malloc=9KB type=Internal #31) (peak=9KB #32)
[0x00007d0a91e9ad0d]ImmutableOopMapSet::build_from(OopMapSet const*)+0xad
[0x00007d0a917e4621]RuntimeBlob::RuntimeBlob(char const*, CodeBuffer*, int, int, int, int, OopMapSet*, bool)+0x131
[0x00007d0a917e5a1a]RuntimeStub::new_runtime_stub(char const*, CodeBuffer*, int, int, OopMapSet*, bool)+0xda
[0x00007d0a9171656f]Runtime1::generate_blob(BufferBlob*, int, char const*, bool, StubAssemblerCodeGenClosure*)+0x14f
(malloc=9KB type=Code #29) (at peak)
[0x00007d0a92124007]Thread::Thread()+0x117
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=9KB type=Arena Chunk #39) (peak=10KB #43)
[0x00007d0a917ce4d5]ClassLoaderData::add_handle(Handle)+0xc5
[0x00007d0a91cf655f]Klass::set_java_mirror(Handle)+0x1f
[0x00007d0a91aceae1]java_lang_Class::create_mirror(Klass*, Handle, Handle, Handle, Handle, JavaThread*)+0xf1
[0x00007d0a91e7d6d6]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0x316
(malloc=9KB type=Class #33) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a92036495]StackWatermark::StackWatermark(JavaThread*, StackWatermarkKind, unsigned int)+0x55
[0x00007d0a9228a02f]ZStackWatermark::ZStackWatermark(JavaThread*)+0x1f
[0x00007d0a92234877]ZBarrierSet::on_thread_attach(Thread*)+0x87
(malloc=9KB type=Internal #438) (peak=9KB #439)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91a47522]HandshakeState::HandshakeState(JavaThread*)+0x32
[0x00007d0a91ad2331]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x271
[0x00007d0a91ba1792]JVM_StartThread+0x372
(malloc=8KB type=Internal #430) (peak=8KB #431)
[0x00007d0a9182a6cb]CompiledMethod::add_handler_for_exception_and_pc(Handle, unsigned char*, unsigned char*)+0x8b
[0x00007d0a9171a1b5]exception_handler_for_pc_helper(JavaThread*, oopDesc*, unsigned char*, nmethod*&) [clone .constprop.0]+0x535
[0x00007d0a9171a2f3]Runtime1::exception_handler_for_pc(JavaThread*)+0x33
[0x00007d0a7e4f40c4]
(malloc=8KB type=Code #29) (peak=9KB #32)
[0x00007d0a91ea09b6]OopStorage::expand_active_array()+0x166
[0x00007d0a91ea0ad0]OopStorage::try_add_block()+0xd0
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a921c7ee6]WeakHandle::WeakHandle(OopStorage*, Handle)+0x26
(malloc=8KB type=Symbol #1) (peak=12KB #2)
[0x00007d0a918fb8a0]Dictionary::Dictionary(ClassLoaderData*, unsigned long)+0x150
[0x00007d0a917cdbd6]ClassLoaderData::create_dictionary()+0xb6
[0x00007d0a917cf0f5]ClassLoaderData::init_null_class_loader_data()+0x105
[0x00007d0a92153358]universe_init()+0x148
(malloc=8KB type=Class #1) (at peak)
[0x00007d0a91f0b043]ProtectionDomainCacheTable::initialize()+0x13
[0x00007d0a920dbe4d]SystemDictionary::initialize(JavaThread*)+0xcd
[0x00007d0a92150e00]Universe::genesis(JavaThread*)+0xa0
[0x00007d0a92152514]universe2_init()+0x24
(malloc=8KB type=Class #1) (at peak)
[0x00007d0a91f5cfad]ThreadSafepointState::create(JavaThread*)+0x1d
[0x00007d0a91ad23e2]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x322
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=8KB type=Thread #198) (peak=9KB #230)
[0x00007d0a92124042]Thread::Thread()+0x152
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=8KB type=Class #33) (at peak)
[0x00007d0a91826a71]CompileTask::allocate()+0x81
[0x00007d0a91821985]CompileBroker::compile_method_base(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, bool, Thread*) [clone .part.0]+0x245
[0x00007d0a91821f0a]CompileBroker::compile_method(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, DirectiveSet*, JavaThread*)+0x2fa
[0x00007d0a91822095]CompileBroker::compile_method(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, JavaThread*)+0x75
(malloc=8KB type=Compiler #46) (at peak)
[0x00007d0a92124007]Thread::Thread()+0x117
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=7KB type=Arena Chunk #33) (at peak)
[0x00007d0a91ec9dfb]PackageEntryTable::locked_create_entry_if_absent(Symbol*, ModuleEntry*)+0x3b
[0x00007d0a91e5500f]Modules::define_module(Handle, unsigned char, _jstring*, _jstring*, _jobjectArray*, JavaThread*)+0x14bf
[0x00007d0a91b9c9e7]JVM_DefineModule+0x87
[0x00007d0a7e3f89c4]
(malloc=7KB type=Module #159) (at peak)
[0x00007d0a9226adef]GrowableArrayWithAllocator<ZNMethodDataBarrier, GrowableArrayCHeap<ZNMethodDataBarrier, (MEMFLAGS)5> >::grow(int)+0x2f
[0x00007d0a9226a883]ZNMethod::attach_gc_data(nmethod*)+0x403
[0x00007d0a9226a959]ZNMethod::register_nmethod(nmethod*)+0x19
[0x00007d0a91718cde]Runtime1::patch_code(JavaThread*, Runtime1::StubID)+0x79e
(malloc=7KB type=GC #17) (peak=10KB #24)
[0x00007d0a91af3055]JfrEventClassTransformer::on_klass_creation(InstanceKlass*&, ClassFileParser&, JavaThread*)+0x875
[0x00007d0a91cf987f]KlassFactory::create_from_stream(ClassFileStream*, Symbol*, ClassLoaderData*, ClassLoadInfo const&, JavaThread*)+0x3ff
[0x00007d0a917cb688]ClassLoader::load_class(Symbol*, bool, JavaThread*)+0x1a8
[0x00007d0a920e1ec8]SystemDictionary::load_instance_class_impl(Symbol*, Handle, JavaThread*)+0x318
(malloc=7KB type=Internal #10) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91ea7a3f]OSThread::pd_initialize()+0x6f
[0x00007d0a91eb0674]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x64
[0x00007d0a91ba1792]JVM_StartThread+0x372
(malloc=7KB type=Internal #430) (peak=7KB #431)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91e40741]MethodData::allocate(ClassLoaderData*, methodHandle const&, JavaThread*)+0x71
[0x00007d0a91e3039a]Method::build_profiling_method_data(methodHandle const&, JavaThread*)+0x5a
[0x00007d0a91805d1b]CompilationPolicy::create_mdo(methodHandle const&, JavaThread*)+0xeb
(malloc=7KB type=Internal #399) (at peak)
[0x00007d0a917d28d1]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0x91
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920dfdb4]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x44
[0x00007d0a91ba060e]jvm_define_class_common(char const*, _jobject*, signed char const*, int, _jobject*, char const*, JavaThread*)+0x21e
(malloc=7KB type=Class #44) (at peak)
[0x00007d0a9226d9a8]ZPage::clone_limited() const+0x28
[0x00007d0a92271da8]ZSafePageRecycle::register_and_clone_if_activated(ZPage*)+0x58
[0x00007d0a922720d3]ZPageAllocator::free_pages(GrowableArrayCHeap<ZPage*, (MEMFLAGS)5> const*)+0x83
[0x00007d0a922530be]ZHeap::free_empty_pages(GrowableArrayCHeap<ZPage*, (MEMFLAGS)5> const*)+0x7e
(malloc=7KB type=GC #36) (at peak)
[0x00007d0a917ce4d5]ClassLoaderData::add_handle(Handle)+0xc5
[0x00007d0a918428fb]ConstantPool::restore_unshareable_info(JavaThread*)+0x10b
[0x00007d0a91a8cba5]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x105
[0x00007d0a920e1a2a]SystemDictionary::load_shared_class(InstanceKlass*, Handle, Handle, ClassFileStream const*, PackageEntry*, JavaThread*)+0x17a
(malloc=6KB type=Class #23) (at peak)
[0x00007d0a91e9ad0d]ImmutableOopMapSet::build_from(OopMapSet const*)+0xad
[0x00007d0a917e4443]CodeBlob::CodeBlob(char const*, CompilerType, CodeBlobLayout const&, CodeBuffer*, int, int, OopMapSet*, bool, bool)+0x93
[0x00007d0a9182a1a3]CompiledMethod::CompiledMethod(Method*, char const*, CompilerType, int, int, CodeBuffer*, int, int, OopMapSet*, bool, bool)+0x153
[0x00007d0a91e7270e]nmethod::nmethod(Method*, CompilerType, int, int, CodeOffsets*, CodeBuffer*, int, ByteSize, ByteSize, OopMapSet*)+0x5e
(malloc=6KB type=Code #187) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a917cd2cb]ClassLoaderData::initialize_name(Handle)+0xab
[0x00007d0a917cdd9a]ClassLoaderData::ClassLoaderData(Handle, bool)+0x17a
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
(malloc=6KB type=Symbol #48) (at peak)
[0x00007d0a92124026]Thread::Thread()+0x136
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7f33505f]
(malloc=5KB type=Class #232) (peak=5KB #233)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a91a92692]InstanceKlass::call_class_initializer(JavaThread*)+0x322
(malloc=5KB type=Internal #18) (peak=5KB #19)
[0x00007d0a91ec9f1f]PackageEntryTable::locked_create_entry_if_absent(Symbol*, ModuleEntry*)+0x15f
[0x00007d0a91e5500f]Modules::define_module(Handle, unsigned char, _jstring*, _jstring*, _jobjectArray*, JavaThread*)+0x14bf
[0x00007d0a91b9c9e7]JVM_DefineModule+0x87
[0x00007d0a7e3f89c4]
(malloc=5KB type=Module #159) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91e7d5d4]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0x214
[0x00007d0a91a8610b]InstanceKlass::array_klass(int, JavaThread*)+0x12b
[0x00007d0a91e7d493]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0xd3
(malloc=5KB type=Symbol #49) (at peak)
[0x00007d0a917e7be1]CodeBuffer::create_patch_overflow()+0x91
[0x00007d0a915fd51b]Label::add_patch_at(CodeBuffer*, int, char const*, int)+0xcb
[0x00007d0a91602371]Assembler::jccb_0(Assembler::Condition, Label&, char const*, int)+0x71
[0x00007d0a916d12c5]LIR_Assembler::emit_profile_type(LIR_OpProfileType*)+0xda5
(malloc=5KB type=Arena Chunk #5) (peak=6KB #6)
[0x00007d0a9176e680]PhaseChaitin::Register_Allocate()+0x60
[0x00007d0a91816c26]Compile::Code_Gen()+0x326
[0x00007d0a9181ad4c]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x155c
[0x00007d0a91740bdb]C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)+0x18b
(malloc=5KB type=Arena Chunk #5) (peak=7KB #7)
[0x00007d0a91828fa1]CompiledIC::compute_monomorphic_entry(methodHandle const&, Klass*, bool, bool, bool, CompiledICInfo&, JavaThread*)+0xc1
[0x00007d0a91f6b993]SharedRuntime::resolve_sub_helper_internal(methodHandle, frame const&, CompiledMethod*, bool, bool, Handle, CallInfo&, Bytecodes::Code, JavaThread*)+0x103
[0x00007d0a91f6ffab]SharedRuntime::resolve_sub_helper(bool, bool, JavaThread*)+0x27b
[0x00007d0a91f70098]SharedRuntime::resolve_helper(bool, bool, JavaThread*)+0x38
(malloc=5KB type=Compiler #154) (peak=6KB #181)
[0x00007d0a918fb84d]Dictionary::Dictionary(ClassLoaderData*, unsigned long)+0xfd
[0x00007d0a917cdbd6]ClassLoaderData::create_dictionary()+0xb6
[0x00007d0a917cddf7]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1d7
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
(malloc=5KB type=Synchronization #47) (at peak)
[0x00007d0a91d3c7ca]LoaderConstraintTable::add_loader_constraint(Symbol*, InstanceKlass*, ClassLoaderData*, ClassLoaderData*)+0x22a
[0x00007d0a91d3ca10]LoaderConstraintTable::add_entry(Symbol*, InstanceKlass*, ClassLoaderData*, InstanceKlass*, ClassLoaderData*)+0x1d0
[0x00007d0a920dc389]SystemDictionary::add_loader_constraint(Symbol*, Klass*, Handle, Handle)+0xf9
[0x00007d0a920dc8e6]SystemDictionary::check_signature_loaders(Symbol*, Klass*, Handle, Handle, bool)+0x96
(malloc=5KB type=Class #121) (at peak)
[0x00007d0a91826a97]CompileTask::allocate()+0xa7
[0x00007d0a91821985]CompileBroker::compile_method_base(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, bool, Thread*) [clone .part.0]+0x245
[0x00007d0a91821f0a]CompileBroker::compile_method(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, DirectiveSet*, JavaThread*)+0x2fa
[0x00007d0a91822095]CompileBroker::compile_method(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, JavaThread*)+0x75
(malloc=5KB type=Synchronization #46) (at peak)
[0x00007d0a92124026]Thread::Thread()+0x136
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=5KB type=Class #198) (peak=5KB #230)
[0x00007d0a920dca3e]SystemDictionary::find_method_handle_intrinsic(vmIntrinsicID, Symbol*, JavaThread*)+0xfe
[0x00007d0a91d329ac]LinkResolver::lookup_polymorphic_method(LinkInfo const&, Handle*, JavaThread*)+0x1dc
[0x00007d0a91d33502]LinkResolver::resolve_handle_call(CallInfo&, LinkInfo const&, JavaThread*)+0x32
[0x00007d0a91e45fe9]MethodHandles::resolve_MemberName(Handle, Klass*, int, bool, JavaThread*)+0x8c9
(malloc=5KB type=Class #118) (at peak)
[0x00007d0a917cdc59]ClassLoaderData::ClassLoaderData(Handle, bool)+0x39
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920dfdb4]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x44
(malloc=4KB type=Synchronization #44) (at peak)
[0x00007d0a91a8cc49]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1a9
[0x00007d0a920e1a2a]SystemDictionary::load_shared_class(InstanceKlass*, Handle, Handle, ClassFileStream const*, PackageEntry*, JavaThread*)+0x17a
[0x00007d0a920e23f7]SystemDictionary::load_shared_lambda_proxy_class(InstanceKlass*, Handle, Handle, PackageEntry*, JavaThread*)+0xd7
[0x00007d0a920e7001]SystemDictionaryShared::prepare_shared_lambda_proxy_class(InstanceKlass*, InstanceKlass*, JavaThread*)+0xf1
(malloc=4KB type=Synchronization #43) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91a8cc62]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1c2
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
[0x00007d0a921ab43c]vmClasses::resolve(vmClassID, JavaThread*)+0xbc
(malloc=4KB type=Internal #113) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a9201ca0a]SignatureStream::find_symbol()+0x5a
[0x00007d0a920324dc]StackMapFrame::set_locals_from_arg(methodHandle const&, VerificationType)+0x10c
[0x00007d0a92193e9f]ClassVerifier::verify_method(methodHandle const&, JavaThread*)+0xff
(malloc=4KB type=Symbol #42) (peak=5KB #60)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a9201ca0a]SignatureStream::find_symbol()+0x5a
[0x00007d0a92189e58]ClassVerifier::translate_signature(Symbol*, sig_as_verification_types*)+0x358
[0x00007d0a9218a141]ClassVerifier::create_method_sig_entry(sig_as_verification_types*, int)+0x41
(malloc=4KB type=Symbol #38) (peak=4KB #41)
[0x00007d0a922462ac]ZCPU::initialize()+0x2c
[0x00007d0a9225aa11]ZInitialize::ZInitialize(ZBarrierSet*)+0x71
[0x00007d0a92246f7d]ZCollectedHeap::ZCollectedHeap()+0x3d
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
(malloc=4KB type=GC #1) (at peak)
[0x00007d0a91a8959f]InstanceKlass::get_jmethod_id(methodHandle const&)+0xcf
[0x00007d0a91e34074]Method::jmethod_id()+0x74
[0x00007d0a91b613b9]get_method_id(JNIEnv_*, _jclass*, char const*, char const*, bool, JavaThread*) [clone .constprop.0]+0x179
[0x00007d0a91b618ca]jni_GetMethodID+0xaa
(malloc=4KB type=Class #24) (at peak)
[0x00007d0a918fb802]Dictionary::Dictionary(ClassLoaderData*, unsigned long)+0xb2
[0x00007d0a917cdbd6]ClassLoaderData::create_dictionary()+0xb6
[0x00007d0a917cddf7]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1d7
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
(malloc=4KB type=Class #47) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91b9c7db]JVM_FindLoadedClass+0xeb
[0x00007d0a7ec0eb15]
(malloc=4KB type=Symbol #38) (at peak)
[0x00007d0a917d275d]GrowableArrayWithAllocator<Metadata*, GrowableArray<Metadata*> >::grow(int)+0xfd
[0x00007d0a917cfc1f]ClassLoaderData::add_to_deallocate_list(Metadata*)+0x17f
[0x00007d0a918771ce]DefaultMethods::generate_default_methods(InstanceKlass*, GrowableArray<Method*> const*, JavaThread*)+0x27ae
[0x00007d0a917bc24f]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0xc0f
(malloc=4KB type=Class #1) (peak=6KB #2)
[0x00007d0a918814a7]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x937
[0x00007d0a91881af3]Deoptimization::uncommon_trap(JavaThread*, int, int)+0x33
(malloc=4KB type=Compiler #51) (peak=4KB #52)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a91f3ca8c]Reflection::new_field(fieldDescriptor*, JavaThread*)+0x3c
[0x00007d0a91ba566e]JVM_GetClassDeclaredFields+0x47e
(malloc=4KB type=Symbol #253) (at peak)
[0x00007d0a91f04663]PlaceholderTable::initialize()+0x13
[0x00007d0a920dbe48]SystemDictionary::initialize(JavaThread*)+0xc8
[0x00007d0a92150e00]Universe::genesis(JavaThread*)+0xa0
[0x00007d0a92152514]universe2_init()+0x24
(malloc=4KB type=Class #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ba1792]JVM_StartThread+0x372
[0x00007d0a7e3f89c4]
(malloc=4KB type=Arena Chunk #4) (at peak)
[0x00007d0a917724b2]ciEnv::ciEnv(CompileTask*)+0x22
[0x00007d0a9181d2a4]CompileBroker::init_compiler_runtime()+0x74
[0x00007d0a91823832]CompileBroker::compiler_thread_loop()+0x112
[0x00007d0a91ad26b8]JavaThread::thread_main_inner()+0x1d8
(malloc=4KB type=Arena Chunk #4) (peak=7KB #7)
[0x00007d0a91d3c753]LoaderConstraintTable::add_loader_constraint(Symbol*, InstanceKlass*, ClassLoaderData*, ClassLoaderData*)+0x1b3
[0x00007d0a91d3ca10]LoaderConstraintTable::add_entry(Symbol*, InstanceKlass*, ClassLoaderData*, InstanceKlass*, ClassLoaderData*)+0x1d0
[0x00007d0a920dc389]SystemDictionary::add_loader_constraint(Symbol*, Klass*, Handle, Handle)+0xf9
[0x00007d0a920dc8e6]SystemDictionary::check_signature_loaders(Symbol*, Klass*, Handle, Handle, bool)+0x96
(malloc=4KB type=Class #121) (at peak)
[0x00007d0a91eb0657]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x47
[0x00007d0a921e2378]WorkerThreads::create_worker(unsigned int)+0x88
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
[0x00007d0a922894cb]ZRuntimeWorkers::ZRuntimeWorkers()+0x5b
(malloc=4KB type=Thread #19) (at peak)
[0x00007d0a91e4f035]ModuleEntry::new_unnamed_module_entry(Handle, ClassLoaderData*)+0x25
[0x00007d0a91e4f1b7]ModuleEntry::create_unnamed_module(ClassLoaderData*)+0xd7
[0x00007d0a917cddea]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1ca
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
(malloc=4KB type=Module #47) (at peak)
[0x00007d0a92128a11]ThreadsList::remove_thread(ThreadsList*, JavaThread*)+0x101
[0x00007d0a92129e08]ThreadsSMRSupport::remove_thread(JavaThread*)+0x18
[0x00007d0a921308a2]Threads::remove(JavaThread*, bool)+0x82
[0x00007d0a91ad61db]JavaThread::exit(bool, JavaThread::ExitType)+0x47b
(malloc=3KB type=Thread #1) (peak=7KB #2)
[0x00007d0a918fb8a0]Dictionary::Dictionary(ClassLoaderData*, unsigned long)+0x150
[0x00007d0a917cdbd6]ClassLoaderData::create_dictionary()+0xb6
[0x00007d0a917cddf7]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1d7
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
(malloc=3KB type=Class #46) (peak=13KB #6)
[0x00007d0a91e50cd5]ModuleEntryTable::locked_create_entry(Handle, bool, Symbol*, Symbol*, Symbol*, ClassLoaderData*)+0x35
[0x00007d0a91e5525d]Modules::define_module(Handle, unsigned char, _jstring*, _jstring*, _jobjectArray*, JavaThread*)+0x170d
[0x00007d0a91b9c9e7]JVM_DefineModule+0x87
[0x00007d0a7e3f89c4]
(malloc=3KB type=Module #43) (at peak)
[0x00007d0a91ea7a26]OSThread::pd_initialize()+0x56
[0x00007d0a91eb0674]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x64
[0x00007d0a921e2378]WorkerThreads::create_worker(unsigned int)+0x88
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=3KB type=Synchronization #33) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91ba008d]JVM_FindClassFromBootLoader+0x5d
[0x00007d0a90f6007b]Java_java_lang_ClassLoader_findBootstrapClass+0xab in libjava.so
[0x00007d0a7ec13898]
(malloc=3KB type=Symbol #29) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91e7d5d4]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0x214
[0x00007d0a91a8610b]InstanceKlass::array_klass(int, JavaThread*)+0x12b
[0x00007d0a91e7d46a]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0xaa
(malloc=3KB type=Symbol #31) (at peak)
[0x00007d0a91653ec8]LinuxAttachListener::read_request(int)+0x298
[0x00007d0a91654408]LinuxAttachListener::dequeue()+0x128
[0x00007d0a91654459]AttachListener::dequeue()+0x39
[0x00007d0a91653538]attach_listener_thread_entry(JavaThread*, JavaThread*)+0x48
(malloc=3KB type=Internal #1) (at peak)
[0x00007d0a921a4f1a]ReservedMemoryRegion::add_committed_region(unsigned char*, unsigned long, NativeCallStack const&)+0x1aa
[0x00007d0a921a5b61]VirtualMemoryTracker::add_committed_region(unsigned char*, unsigned long, NativeCallStack const&)+0x111
[0x00007d0a91ea5889]os::commit_memory(char*, unsigned long, bool)+0x59
[0x00007d0a921a813e]metaspace::VirtualSpaceNode::commit_range(MetaWordImpl**, unsigned long)+0x13e
(malloc=3KB type=Native Memory Tracking #54) (at peak)
[0x00007d0a91a1ad4f]PhaseCFG::global_code_motion()+0x79f
[0x00007d0a91a1bfea]PhaseCFG::do_global_code_motion()+0x4a
[0x00007d0a91816b85]Compile::Code_Gen()+0x285
[0x00007d0a9181ad4c]Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)+0x155c
(malloc=3KB type=Arena Chunk #3) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e25e1]WorkerThreads::initialize_workers()+0x51
(malloc=3KB type=Arena Chunk #3) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a91b6a615]jni_invoke_nonstatic(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, JavaThread*) [clone .constprop.0]+0x1a5
(malloc=3KB type=Internal #10) (at peak)
[0x00007d0a91d3c7ae]LoaderConstraintTable::add_loader_constraint(Symbol*, InstanceKlass*, ClassLoaderData*, ClassLoaderData*)+0x20e
[0x00007d0a91d3ca10]LoaderConstraintTable::add_entry(Symbol*, InstanceKlass*, ClassLoaderData*, InstanceKlass*, ClassLoaderData*)+0x1d0
[0x00007d0a920dc389]SystemDictionary::add_loader_constraint(Symbol*, Klass*, Handle, Handle)+0xf9
[0x00007d0a920dc8e6]SystemDictionary::check_signature_loaders(Symbol*, Klass*, Handle, Handle, bool)+0x96
(malloc=3KB type=Class #121) (at peak)
[0x00007d0a91d3c5e3]LoaderConstraintTable::add_loader_constraint(Symbol*, InstanceKlass*, ClassLoaderData*, ClassLoaderData*)+0x43
[0x00007d0a91d3ca10]LoaderConstraintTable::add_entry(Symbol*, InstanceKlass*, ClassLoaderData*, InstanceKlass*, ClassLoaderData*)+0x1d0
[0x00007d0a920dc389]SystemDictionary::add_loader_constraint(Symbol*, Klass*, Handle, Handle)+0xf9
[0x00007d0a920dc8e6]SystemDictionary::check_signature_loaders(Symbol*, Klass*, Handle, Handle, bool)+0x96
(malloc=3KB type=Class #121) (at peak)
[0x00007d0a917d8349]ClassLoaderMetaspace::ClassLoaderMetaspace(Mutex*, Metaspace::MetaspaceType)+0xf9
[0x00007d0a917ce3c7]ClassLoaderData::metaspace_non_null()+0x167
[0x00007d0a91e1effd]Metaspace::allocate(ClassLoaderData*, unsigned long, MetaspaceObj::Type, JavaThread*)+0x3d
[0x00007d0a91841ed5]ConstantPool::allocate(ClassLoaderData*, int, JavaThread*)+0x35
(malloc=3KB type=Class #44) (at peak)
[0x00007d0a917d829f]ClassLoaderMetaspace::ClassLoaderMetaspace(Mutex*, Metaspace::MetaspaceType)+0x4f
[0x00007d0a917ce3c7]ClassLoaderData::metaspace_non_null()+0x167
[0x00007d0a91e1effd]Metaspace::allocate(ClassLoaderData*, unsigned long, MetaspaceObj::Type, JavaThread*)+0x3d
[0x00007d0a91841ed5]ConstantPool::allocate(ClassLoaderData*, int, JavaThread*)+0x35
(malloc=3KB type=Class #44) (at peak)
[0x00007d0a91eb0657]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x47
[0x00007d0a921e2378]WorkerThreads::create_worker(unsigned int)+0x88
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
[0x00007d0a922acb25]ZWorkers::ZWorkers(ZGenerationId, ZStatWorkers*)+0xd5
(malloc=3KB type=Thread #14) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a9201ca0a]SignatureStream::find_symbol()+0x5a
[0x00007d0a9201cbc3]SignatureStream::as_java_mirror(Handle, Handle, SignatureStream::FailureMode, JavaThread*)+0x33
[0x00007d0a91f3cfc6]get_parameter_types(methodHandle const&, int, oopDesc**, JavaThread*)+0x156
(malloc=3KB type=Symbol #27) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91ba0231]JVM_FindClassFromCaller+0x61
[0x00007d0a90f5f787]Java_java_lang_Class_forName0+0xd7 in libjava.so
[0x00007d0a7e3f89c4]
(malloc=3KB type=Symbol #26) (peak=3KB #27)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e25e1]WorkerThreads::initialize_workers()+0x51
(malloc=2KB type=GC #3) (at peak)
[0x00007d0a91f7347e]AdapterHandlerLibrary::initialize()+0x9e
[0x00007d0a91f73c86]SharedRuntime::generate_stubs()+0xb6
[0x00007d0a91a8416b]init_globals()+0x6b
[0x00007d0a92132035]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2b5
(malloc=2KB type=Code #1) (at peak)
[0x00007d0a920dd82f]SystemDictionary::find_method_handle_type(Symbol*, Klass*, JavaThread*)+0x94f
[0x00007d0a91e4315e]MethodHandles::resolve_MemberName_type(Handle, Klass*, JavaThread*)+0x16e
[0x00007d0a920ddd47]SystemDictionary::link_method_handle_constant(Klass*, int, Klass*, Symbol*, Symbol*, JavaThread*)+0x237
[0x00007d0a91847a3b]ConstantPool::resolve_constant_at_impl(constantPoolHandle const&, int, int, bool*, JavaThread*)+0x72b
(malloc=2KB type=Class #72) (at peak)
[0x00007d0a9226dae8]ZPage::clone_limited_promote_flipped() const+0x28
[0x00007d0a92280889]ZFlipAgePagesTask::work()+0x219
[0x00007d0a921e2140]WorkerThread::run()+0x80
[0x00007d0a92124b58]Thread::call_run()+0xa8
(malloc=2KB type=GC #12) (at peak)
[0x00007d0a91ecb05f]PackageEntry::add_qexport(ModuleEntry*)+0x3f
[0x00007d0a91e52d33]Modules::add_module_exports(Handle, _jstring*, Handle, JavaThread*)+0x443
[0x00007d0a91b9cb80]JVM_AddModuleExports+0x80
[0x00007d0a7e3f89c4]
(malloc=2KB type=Module #89) (at peak)
[0x00007d0a91e9ad0d]ImmutableOopMapSet::build_from(OopMapSet const*)+0xad
[0x00007d0a917e4621]RuntimeBlob::RuntimeBlob(char const*, CodeBuffer*, int, int, int, int, OopMapSet*, bool)+0x131
[0x00007d0a917e5a1a]RuntimeStub::new_runtime_stub(char const*, CodeBuffer*, int, int, OopMapSet*, bool)+0xda
[0x00007d0a91f803ab]SharedRuntime::generate_resolve_blob(unsigned char*, char const*)+0x56b
(malloc=2KB type=Code #6) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91b9110b]JNIHandleBlock::allocate_handle(JavaThread*, oopDesc*, AllocFailStrategy::AllocFailEnum)+0x17b
[0x00007d0a9177c356]ciInstanceKlass::ciInstanceKlass(Klass*)+0x146
[0x00007d0a91792c15]ciObjectFactory::create_new_metadata(Metadata*)+0x205
(malloc=2KB type=Internal #7) (peak=5KB #16)
[0x00007d0a91ab3d3d]GrowableArrayWithAllocator<unsigned char*, GrowableArray<unsigned char*> >::expand_to(int)+0x9d
[0x00007d0a91aaf813]SignatureHandlerLibrary::add(methodHandle const&) [clone .part.0]+0x623
[0x00007d0a91ab06fb]InterpreterRuntime::prepare_native_call(JavaThread*, Method*)+0x14b
[0x00007d0a7e3f8784]
(malloc=2KB type=Code #1) (peak=3KB #2)
[0x00007d0a91ab3c5d]GrowableArrayWithAllocator<unsigned long, GrowableArray<unsigned long> >::expand_to(int)+0x9d
[0x00007d0a91aaf849]SignatureHandlerLibrary::add(methodHandle const&) [clone .part.0]+0x659
[0x00007d0a91ab06fb]InterpreterRuntime::prepare_native_call(JavaThread*, Method*)+0x14b
[0x00007d0a7e3f8784]
(malloc=2KB type=Code #1) (peak=3KB #2)
[0x00007d0a916703f4]GrowableBitMap<CHeapBitMap>::resize(unsigned long, bool)+0x294
[0x00007d0a9180125c]metaspace::CommitMask::CommitMask(MetaWordImpl* const*, unsigned long)+0x2c
[0x00007d0a921a87be]metaspace::VirtualSpaceNode::create_node(ReservedSpace, metaspace::CommitLimiter*, metaspace::AbstractCounter<unsigned long>*, metaspace::AbstractCounter<unsigned long>*)+0xce
[0x00007d0a921a7b2e]metaspace::VirtualSpaceList::VirtualSpaceList(char const*, ReservedSpace, metaspace::CommitLimiter*)+0x5e
(malloc=2KB type=Metaspace #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=2KB type=Arena Chunk #2) (peak=3KB #3)
[0x00007d0a91a86771]InstanceKlass::InstanceKlass(ClassFileParser const&, Klass::KlassKind, ReferenceType)+0xa1
[0x00007d0a91a868dc]InstanceKlass::allocate_instance_klass(ClassFileParser const&, JavaThread*)+0xec
[0x00007d0a917bc564]ClassFileParser::create_instance_klass(bool, ClassInstanceInfo const&, JavaThread*)+0x44
[0x00007d0a91af2b0e]JfrEventClassTransformer::on_klass_creation(InstanceKlass*&, ClassFileParser&, JavaThread*)+0x32e
(malloc=2KB type=Synchronization #19) (at peak)
[0x00007d0a91a8cc49]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1a9
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
[0x00007d0a921ab2ee]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0x7e
[0x00007d0a921ab43c]vmClasses::resolve(vmClassID, JavaThread*)+0xbc
(malloc=2KB type=Synchronization #19) (at peak)
[0x00007d0a91a86771]InstanceKlass::InstanceKlass(ClassFileParser const&, Klass::KlassKind, ReferenceType)+0xa1
[0x00007d0a91a99f5b]InstanceRefKlass::InstanceRefKlass(ClassFileParser const&)+0x2b
[0x00007d0a91a8697a]InstanceKlass::allocate_instance_klass(ClassFileParser const&, JavaThread*)+0x18a
[0x00007d0a917bc564]ClassFileParser::create_instance_klass(bool, ClassInstanceInfo const&, JavaThread*)+0x44
(malloc=2KB type=Synchronization #19) (at peak)
[0x00007d0a9226aec7]GrowableArrayWithAllocator<oopDesc**, GrowableArrayCHeap<oopDesc**, (MEMFLAGS)5> >::grow(int)+0x27
[0x00007d0a9226a921]ZNMethod::attach_gc_data(nmethod*)+0x4a1
[0x00007d0a9226a959]ZNMethod::register_nmethod(nmethod*)+0x19
[0x00007d0a91718cde]Runtime1::patch_code(JavaThread*, Runtime1::StubID)+0x79e
(malloc=2KB type=GC #14) (peak=2KB #19)
[0x00007d0a91d3c5ce]LoaderConstraintTable::add_loader_constraint(Symbol*, InstanceKlass*, ClassLoaderData*, ClassLoaderData*)+0x2e
[0x00007d0a91d3ca10]LoaderConstraintTable::add_entry(Symbol*, InstanceKlass*, ClassLoaderData*, InstanceKlass*, ClassLoaderData*)+0x1d0
[0x00007d0a920dc389]SystemDictionary::add_loader_constraint(Symbol*, Klass*, Handle, Handle)+0xf9
[0x00007d0a920dc8e6]SystemDictionary::check_signature_loaders(Symbol*, Klass*, Handle, Handle, bool)+0x96
(malloc=2KB type=Class #121) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a91ad128f]JavaThread::set_threadOopHandles(oopDesc*)+0x1f
[0x00007d0a91ad59b9]JavaThread::start_internal_daemon(JavaThread*, JavaThread*, Handle, ThreadPriority)+0x69
(malloc=2KB type=Thread #3) (at peak)
[0x00007d0a91822310]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x50
[0x00007d0a91822885]CompileBroker::init_compiler_threads()+0x3f5
[0x00007d0a91822b21]CompileBroker::compilation_init_phase1(JavaThread*)+0x71
[0x00007d0a9213272d]Threads::create_vm(JavaVMInitArgs*, bool*)+0x9ad
(malloc=2KB type=Thread #1) (at peak)
[0x00007d0a91822310]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x50
[0x00007d0a918226a0]CompileBroker::init_compiler_threads()+0x210
[0x00007d0a91822b21]CompileBroker::compilation_init_phase1(JavaThread*)+0x71
[0x00007d0a9213272d]Threads::create_vm(JavaVMInitArgs*, bool*)+0x9ad
(malloc=2KB type=Thread #1) (at peak)
[0x00007d0a921240dd]Thread::Thread()+0x1ed
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=2KB type=Thread #33) (at peak)
[0x00007d0a92123ff2]Thread::Thread()+0x102
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=2KB type=Thread #33) (at peak)
[0x00007d0a921e232c]WorkerThreads::create_worker(unsigned int)+0x3c
[0x00007d0a921e25e1]WorkerThreads::initialize_workers()+0x51
[0x00007d0a922acb1a]ZWorkers::ZWorkers(ZGenerationId, ZStatWorkers*)+0xca
[0x00007d0a9224bfba]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0xaa
(malloc=2KB type=Thread #2) (at peak)
[0x00007d0a91e7b9eb]NotificationThread::initialize()+0x4b
[0x00007d0a91de906d]Management::initialize(JavaThread*)+0x4d
[0x00007d0a9213262e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x8ae
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=2KB type=Thread #1) (at peak)
[0x00007d0a920dd82f]SystemDictionary::find_method_handle_type(Symbol*, Klass*, JavaThread*)+0x94f
[0x00007d0a918476ff]ConstantPool::resolve_constant_at_impl(constantPoolHandle const&, int, int, bool*, JavaThread*)+0x3ef
[0x00007d0a91848126]ConstantPool::copy_bootstrap_arguments_at_impl(constantPoolHandle const&, int, int, int, objArrayHandle, int, bool, Handle, JavaThread*)+0x186
[0x00007d0a91677203]BootstrapInfo::resolve_args(JavaThread*)+0xf3
(malloc=2KB type=Class #56) (at peak)
[0x00007d0a91f696ab]ServiceThread::initialize()+0x4b
[0x00007d0a921323e6]Threads::create_vm(JavaVMInitArgs*, bool*)+0x666
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
(malloc=2KB type=Thread #1) (at peak)
[0x00007d0a91a06dad]GrowableArrayWithAllocator<GCPhase, GrowableArray<GCPhase> >::grow(int)+0x15d
[0x00007d0a91a069d0]ConcurrentGCTimer::register_gc_concurrent_start(char const*, TimeInstant<CompositeCounterRepresentation, CompositeElapsedCounterSource> const&)+0xa0
[0x00007d0a9228b598]ZStatPhaseConcurrent::register_start(ConcurrentGCTimer*, TimeInstant<CompositeCounterRepresentation, CompositeElapsedCounterSource> const&) const+0x18
[0x00007d0a922505d5]ZGenerationOld::collect(ConcurrentGCTimer*)+0x3d5
(malloc=2KB type=GC #1) (at peak)
[0x00007d0a92131fcc]Threads::create_vm(JavaVMInitArgs*, bool*)+0x24c
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
[0x00007d0a9294f299]ThreadJavaMain+0x9 in libjli.so
(malloc=2KB type=Thread #1) (at peak)
[0x00007d0a91ea2e81]os::initialize_jdk_signal_support(JavaThread*)+0x61
[0x00007d0a921323b1]Threads::create_vm(JavaVMInitArgs*, bool*)+0x631
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
(malloc=2KB type=Thread #1) (at peak)
[0x00007d0a91e559eb]MonitorDeflationThread::initialize()+0x4b
[0x00007d0a921323eb]Threads::create_vm(JavaVMInitArgs*, bool*)+0x66b
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
(malloc=2KB type=Thread #1) (at peak)
[0x00007d0a916533e4]AttachListener::init()+0xa4
[0x00007d0a9165474e]AttachListener::is_init_trigger() [clone .part.0]+0x18e
[0x00007d0a91ea1fb2]signal_thread_entry(JavaThread*, JavaThread*)+0xc2
[0x00007d0a91ad26b8]JavaThread::thread_main_inner()+0x1d8
(malloc=2KB type=Thread #1) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91b9110b]JNIHandleBlock::allocate_handle(JavaThread*, oopDesc*, AllocFailStrategy::AllocFailEnum)+0x17b
[0x00007d0a9177c338]ciInstanceKlass::ciInstanceKlass(Klass*)+0x128
[0x00007d0a91792c15]ciObjectFactory::create_new_metadata(Metadata*)+0x205
(malloc=2KB type=Internal #6) (peak=3KB #9)
[0x00007d0a91ec9dfb]PackageEntryTable::locked_create_entry_if_absent(Symbol*, ModuleEntry*)+0x3b
[0x00007d0a91ec9faa]PackageEntryTable::create_entry_if_absent(Symbol*, ModuleEntry*)+0x3a
[0x00007d0a91a8c818]InstanceKlass::set_package(ClassLoaderData*, PackageEntry*, JavaThread*)+0x3b8
[0x00007d0a91a8cac6]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x26
(malloc=2KB type=Module #37) (at peak)
[0x00007d0a918f908f]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x9f
[0x00007d0a921ab33c]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xcc
[0x00007d0a921ab43c]vmClasses::resolve(vmClassID, JavaThread*)+0xbc
[0x00007d0a921ab5bc]vmClasses::resolve_all(JavaThread*)+0x16c
(malloc=2KB type=Class #111) (at peak)
[0x00007d0a918f9037]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x47
[0x00007d0a921ab33c]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xcc
[0x00007d0a921ab43c]vmClasses::resolve(vmClassID, JavaThread*)+0xbc
[0x00007d0a921ab5bc]vmClasses::resolve_all(JavaThread*)+0x16c
(malloc=2KB type=Class #111) (at peak)
[0x00007d0a917cddd2]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1b2
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920e04dc]SystemDictionary::resolve_instance_class_or_null(Symbol*, Handle, Handle, JavaThread*)+0xcc
(malloc=2KB type=Module #2) (at peak)
[0x00007d0a917cdae1]ClassLoaderData::modules()+0x81
[0x00007d0a91e54723]Modules::define_module(Handle, unsigned char, _jstring*, _jstring*, _jobjectArray*, JavaThread*)+0xbd3
[0x00007d0a91b9c9e7]JVM_DefineModule+0x87
[0x00007d0a7e3f89c4]
(malloc=2KB type=Module #2) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91e46ffa]MethodHandles::lookup_basic_type_signature(Symbol*, bool)+0x27a
[0x00007d0a91d32928]LinkResolver::lookup_polymorphic_method(LinkInfo const&, Handle*, JavaThread*)+0x158
[0x00007d0a91d345a3]LinkResolver::resolve_method(LinkInfo const&, Bytecodes::Code, JavaThread*)+0x563
(malloc=2KB type=Symbol #11) (at peak)
[0x00007d0a91f6d331]AdapterHandlerLibrary::create_adapter(AdapterBlob*&, int, BasicType*, bool)+0x6c1
[0x00007d0a91f732e0]AdapterHandlerLibrary::get_adapter(methodHandle const&)+0x820
[0x00007d0a91e3197e]Method::link_method(methodHandle const&, JavaThread*)+0x5e
[0x00007d0a91e35dd2]Method::make_method_handle_intrinsic(vmIntrinsicID, Symbol*, JavaThread*)+0x442
(malloc=2KB type=Code #52) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=2KB type=GC #2) (peak=10KB #12)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91a8cc62]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1c2
[0x00007d0a920e1a2a]SystemDictionary::load_shared_class(InstanceKlass*, Handle, Handle, ClassFileStream const*, PackageEntry*, JavaThread*)+0x17a
[0x00007d0a920e23f7]SystemDictionary::load_shared_lambda_proxy_class(InstanceKlass*, Handle, Handle, PackageEntry*, JavaThread*)+0xd7
(malloc=2KB type=Internal #43) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a9201ca0a]SignatureStream::find_symbol()+0x5a
[0x00007d0a92190669]ClassVerifier::verify_field_instructions(RawBytecodeStream*, StackMapFrame*, constantPoolHandle const&, bool, JavaThread*)+0x779
[0x00007d0a92194bc4]ClassVerifier::verify_method(methodHandle const&, JavaThread*)+0xe24
(malloc=2KB type=Symbol #16) (peak=2KB #18)
[0x00007d0a91f50134]ResolvedMethodTable::add_method(Method const*, Handle)+0x2a4
[0x00007d0a91d31efc]CallInfo::set_resolved_method_name(JavaThread*)+0x1c
[0x00007d0a91e460e1]MethodHandles::resolve_MemberName(Handle, Klass*, int, bool, JavaThread*)+0x9c1
[0x00007d0a920ddd1c]SystemDictionary::link_method_handle_constant(Klass*, int, Klass*, Symbol*, Symbol*, JavaThread*)+0x20c
(malloc=2KB type=Class #101) (at peak)
[0x00007d0a92123fc9]Thread::Thread()+0xd9
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=2KB type=Thread #33) (at peak)
[0x00007d0a91ef8117]PerfDataManager::add_item(PerfData*, bool)+0x1c7
[0x00007d0a91ef89bd]PerfDataManager::create_long_counter(CounterNS, char const*, PerfData::Units, long, JavaThread*)+0x8d
[0x00007d0a91e87a50]ObjectMonitor::Initialize()+0x70
[0x00007d0a9213202b]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2ab
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91b9110b]JNIHandleBlock::allocate_handle(JavaThread*, oopDesc*, AllocFailStrategy::AllocFailEnum)+0x17b
[0x00007d0a91790d13]ciObject::ciObject(Handle)+0x43
[0x00007d0a91791afa]ciObjectFactory::create_new_object(oopDesc*)+0x20a
(malloc=1KB type=Internal #5) (peak=3KB #12)
[0x00007d0a918fb87e]Dictionary::Dictionary(ClassLoaderData*, unsigned long)+0x12e
[0x00007d0a917cdbd6]ClassLoaderData::create_dictionary()+0xb6
[0x00007d0a917cddf7]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1d7
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
(malloc=1KB type=Class #46) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a918fb869]Dictionary::Dictionary(ClassLoaderData*, unsigned long)+0x119
[0x00007d0a917cdbd6]ClassLoaderData::create_dictionary()+0xb6
[0x00007d0a917cddf7]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1d7
(malloc=1KB type=Internal #47) (at peak)
[0x00007d0a917ce3b2]ClassLoaderData::metaspace_non_null()+0x152
[0x00007d0a91e1effd]Metaspace::allocate(ClassLoaderData*, unsigned long, MetaspaceObj::Type, JavaThread*)+0x3d
[0x00007d0a91841ed5]ConstantPool::allocate(ClassLoaderData*, int, JavaThread*)+0x35
[0x00007d0a917c17ff]ClassFileParser::parse_stream(ClassFileStream const*, JavaThread*) [clone .part.0]+0x12f
(malloc=1KB type=Class #44) (at peak)
[0x00007d0a91e50dbb]ModuleEntryTable::locked_create_entry(Handle, bool, Symbol*, Symbol*, Symbol*, ClassLoaderData*)+0x11b
[0x00007d0a91e5525d]Modules::define_module(Handle, unsigned char, _jstring*, _jstring*, _jobjectArray*, JavaThread*)+0x170d
[0x00007d0a91b9c9e7]JVM_DefineModule+0x87
[0x00007d0a7e3f89c4]
(malloc=1KB type=Module #43) (at peak)
[0x00007d0a92124150]Thread::Thread()+0x260
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e25e1]WorkerThreads::initialize_workers()+0x51
(malloc=1KB type=Internal #3) (at peak)
[0x00007d0a921a4f1a]ReservedMemoryRegion::add_committed_region(unsigned char*, unsigned long, NativeCallStack const&)+0x1aa
[0x00007d0a921a5b61]VirtualMemoryTracker::add_committed_region(unsigned char*, unsigned long, NativeCallStack const&)+0x111
[0x00007d0a91ea5919]os::commit_memory(char*, unsigned long, unsigned long, bool)+0x59
[0x00007d0a921a91bb]VirtualSpace::expand_by(unsigned long, bool)+0x15b
(malloc=1KB type=Native Memory Tracking #23) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a921c7ee6]WeakHandle::WeakHandle(OopStorage*, Handle)+0x26
[0x00007d0a917cddb9]ClassLoaderData::ClassLoaderData(Handle, bool)+0x199
(malloc=1KB type=Internal #2) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a920dd772]SystemDictionary::find_method_handle_type(Symbol*, Klass*, JavaThread*)+0x892
[0x00007d0a91e4315e]MethodHandles::resolve_MemberName_type(Handle, Klass*, JavaThread*)+0x16e
(malloc=1KB type=Internal #2) (at peak)
[0x00007d0a92246fbd]ZCollectedHeap::ZCollectedHeap()+0x7d
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
[0x00007d0a92153297]universe_init()+0x87
[0x00007d0a91a84137]init_globals()+0x37
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a92246f9a]ZCollectedHeap::ZCollectedHeap()+0x5a
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
[0x00007d0a92153297]universe_init()+0x87
[0x00007d0a91a84137]init_globals()+0x37
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a91e7b142]NamedThread::set_name(char const*, ...)+0x72
[0x00007d0a921e2369]WorkerThreads::create_worker(unsigned int)+0x79
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
[0x00007d0a922894cb]ZRuntimeWorkers::ZRuntimeWorkers()+0x5b
(malloc=1KB type=Thread #19) (at peak)
[0x00007d0a91ec9f1f]PackageEntryTable::locked_create_entry_if_absent(Symbol*, ModuleEntry*)+0x15f
[0x00007d0a91ec9faa]PackageEntryTable::create_entry_if_absent(Symbol*, ModuleEntry*)+0x3a
[0x00007d0a91a8c818]InstanceKlass::set_package(ClassLoaderData*, PackageEntry*, JavaThread*)+0x3b8
[0x00007d0a91a8cac6]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x26
(malloc=1KB type=Module #37) (at peak)
[0x00007d0a91f6cd9c]AdapterHandlerLibrary::create_adapter(AdapterBlob*&, int, BasicType*, bool)+0x12c
[0x00007d0a91f732e0]AdapterHandlerLibrary::get_adapter(methodHandle const&)+0x820
[0x00007d0a91e3197e]Method::link_method(methodHandle const&, JavaThread*)+0x5e
[0x00007d0a91e35dd2]Method::make_method_handle_intrinsic(vmIntrinsicID, Symbol*, JavaThread*)+0x442
(malloc=1KB type=Code #49) (at peak)
[0x00007d0a91e9ad0d]ImmutableOopMapSet::build_from(OopMapSet const*)+0xad
[0x00007d0a917e3fd4]RuntimeBlob::RuntimeBlob(char const*, CodeBuffer*, int, int, int, int, OopMapSet*, bool) [clone .constprop.0]+0x124
[0x00007d0a917e676f]SafepointBlob::create(CodeBuffer*, OopMapSet*, int)+0xbf
[0x00007d0a91f7f9f7]SharedRuntime::generate_handler_blob(unsigned char*, int)+0x527
(malloc=1KB type=Code #3) (at peak)
[0x00007d0a91a8cc49]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1a9
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
[0x00007d0a921ab361]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xf1
[0x00007d0a921ab43c]vmClasses::resolve(vmClassID, JavaThread*)+0xbc
(malloc=1KB type=Synchronization #11) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91a8cc62]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1c2
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
[0x00007d0a921ab2ee]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0x7e
(malloc=1KB type=Internal #30) (at peak)
[0x00007d0a917cdbc5]ClassLoaderData::create_dictionary()+0xa5
[0x00007d0a917cddf7]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1d7
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
(malloc=1KB type=Class #47) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91e7d5d4]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0x214
[0x00007d0a91e7da52]ObjArrayKlass::array_klass(JavaThread*)+0x302
[0x00007d0a91e7d4ca]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0x10a
(malloc=1KB type=Symbol #14) (at peak)
[0x00007d0a920dbdf2]SystemDictionary::initialize(JavaThread*)+0x72
[0x00007d0a92150e00]Universe::genesis(JavaThread*)+0xa0
[0x00007d0a92152514]universe2_init()+0x24
[0x00007d0a91a84189]init_globals2()+0x9
(malloc=1KB type=Class #1) (at peak)
[0x00007d0a920dbd9c]SystemDictionary::initialize(JavaThread*)+0x1c
[0x00007d0a92150e00]Universe::genesis(JavaThread*)+0xa0
[0x00007d0a92152514]universe2_init()+0x24
[0x00007d0a91a84189]init_globals2()+0x9
(malloc=1KB type=Class #1) (at peak)
[0x00007d0a91881065]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x4f5
[0x00007d0a91881af3]Deoptimization::uncommon_trap(JavaThread*, int, int)+0x33
(malloc=1KB type=Compiler #51) (peak=1KB #50)
[0x00007d0a918f908f]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x9f
[0x00007d0a920e0401]SystemDictionary::load_instance_class(Symbol*, Handle, JavaThread*)+0x191
[0x00007d0a920e0de9]SystemDictionary::resolve_instance_class_or_null(Symbol*, Handle, Handle, JavaThread*)+0x9d9
[0x00007d0a920e14b1]SystemDictionary::resolve_super_or_fail(Symbol*, Symbol*, Handle, Handle, bool, JavaThread*)+0x351
(malloc=1KB type=Class #69) (at peak)
[0x00007d0a918f9037]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x47
[0x00007d0a920e0401]SystemDictionary::load_instance_class(Symbol*, Handle, JavaThread*)+0x191
[0x00007d0a920e0de9]SystemDictionary::resolve_instance_class_or_null(Symbol*, Handle, Handle, JavaThread*)+0x9d9
[0x00007d0a920e14b1]SystemDictionary::resolve_super_or_fail(Symbol*, Symbol*, Handle, Handle, bool, JavaThread*)+0x351
(malloc=1KB type=Class #69) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a9201ca0a]SignatureStream::find_symbol()+0x5a
[0x00007d0a92190669]ClassVerifier::verify_field_instructions(RawBytecodeStream*, StackMapFrame*, constantPoolHandle const&, bool, JavaThread*)+0x779
[0x00007d0a92194c4a]ClassVerifier::verify_method(methodHandle const&, JavaThread*)+0xeaa
(malloc=1KB type=Symbol #11) (at peak)
[0x00007d0a91e5115f]ModuleEntry::add_read(ModuleEntry*)+0x10f
[0x00007d0a91e527fc]Modules::add_reads_module(Handle, Handle, JavaThread*)+0x2ac
[0x00007d0a91b9cdf5]JVM_AddReadsModule+0x75
[0x00007d0a7e3f89c4]
(malloc=1KB type=Module #44) (at peak)
[0x00007d0a91ea09b6]OopStorage::expand_active_array()+0x166
[0x00007d0a91ea0ad0]OopStorage::try_add_block()+0xd0
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a921c7ee6]WeakHandle::WeakHandle(OopStorage*, Handle)+0x26
(malloc=1KB type=Class #1) (peak=2KB #2)
[0x00007d0a9226fe39]ZPageAllocator::ZPageAllocator(unsigned long, unsigned long, unsigned long, unsigned long)+0xf9
[0x00007d0a92252ab9]ZHeap::ZHeap()+0x59
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a92247003]ZCollectedHeap::ZCollectedHeap()+0xc3
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
[0x00007d0a92153297]universe_init()+0x87
[0x00007d0a91a84137]init_globals()+0x37
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a918814a7]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x937
[0x00007d0a91881a62]Deoptimization::fetch_unroll_info(JavaThread*, int)+0x22
[0x00007d0a7e443565]
(malloc=1KB type=Compiler #13) (at peak)
[0x00007d0a920dd82f]SystemDictionary::find_method_handle_type(Symbol*, Klass*, JavaThread*)+0x94f
[0x00007d0a920de8d9]SystemDictionary::find_method_handle_invoker(Klass*, Symbol*, Symbol*, Klass*, Handle*, JavaThread*)+0x69
[0x00007d0a91d32a5a]LinkResolver::lookup_polymorphic_method(LinkInfo const&, Handle*, JavaThread*)+0x28a
[0x00007d0a91d33502]LinkResolver::resolve_handle_call(CallInfo&, LinkInfo const&, JavaThread*)+0x32
(malloc=1KB type=Class #32) (at peak)
[0x00007d0a9148df2d]GrowableArrayWithAllocator<Metadata*, GrowableArray<Metadata*> >::expand_to(int)+0x9d
[0x00007d0a9167ba9b]BytecodeConstantPool::create_constant_pool(JavaThread*) const+0x27b
[0x00007d0a91877196]DefaultMethods::generate_default_methods(InstanceKlass*, GrowableArray<Method*> const*, JavaThread*)+0x2776
[0x00007d0a917bc24f]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0xc0f
(malloc=1KB type=Class #1) (at peak)
[0x00007d0a91f54d51]metaspace::RootChunkAreaLUT::RootChunkAreaLUT(MetaWordImpl* const*, unsigned long)+0x31
[0x00007d0a921a87d1]metaspace::VirtualSpaceNode::create_node(ReservedSpace, metaspace::CommitLimiter*, metaspace::AbstractCounter<unsigned long>*, metaspace::AbstractCounter<unsigned long>*)+0xe1
[0x00007d0a921a7b2e]metaspace::VirtualSpaceList::VirtualSpaceList(char const*, ReservedSpace, metaspace::CommitLimiter*)+0x5e
[0x00007d0a91e21455]metaspace::MetaspaceContext::initialize_class_space_context(ReservedSpace)+0x85
(malloc=1KB type=Class #1) (at peak)
[0x00007d0a9226fe5f]ZPageAllocator::ZPageAllocator(unsigned long, unsigned long, unsigned long, unsigned long)+0x11f
[0x00007d0a92252ab9]ZHeap::ZHeap()+0x59
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a91a8959f]InstanceKlass::get_jmethod_id(methodHandle const&)+0xcf
[0x00007d0a91e34074]Method::jmethod_id()+0x74
[0x00007d0a91b613b9]get_method_id(JNIEnv_*, _jclass*, char const*, char const*, bool, JavaThread*) [clone .constprop.0]+0x179
[0x00007d0a91b6175d]jni_GetStaticMethodID+0xad
(malloc=1KB type=Class #4) (at peak)
[0x00007d0a92246fe0]ZCollectedHeap::ZCollectedHeap()+0xa0
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
[0x00007d0a92153297]universe_init()+0x87
[0x00007d0a91a84137]init_globals()+0x37
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91e7d5d4]ObjArrayKlass::allocate_objArray_klass(ClassLoaderData*, int, Klass*, JavaThread*)+0x214
[0x00007d0a91a8610b]InstanceKlass::array_klass(int, JavaThread*)+0x12b
[0x00007d0a91a87eda]InstanceKlass::allocate_objArray(int, int, JavaThread*)+0xca
(malloc=1KB type=Symbol #10) (at peak)
[0x00007d0a917e7be1]CodeBuffer::create_patch_overflow()+0x91
[0x00007d0a915fd51b]Label::add_patch_at(CodeBuffer*, int, char const*, int)+0xcb
[0x00007d0a916025d6]Assembler::jmp(Label&, bool)+0xc6
[0x00007d0a916b9568]LIR_OpBranch::emit_code(LIR_Assembler*)+0x18
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91e559ff]MonitorDeflationThread::initialize()+0x5f
[0x00007d0a921323eb]Threads::create_vm(JavaVMInitArgs*, bool*)+0x66b
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a9181726b]Compile::Compile(ciEnv*, TypeFunc const* (*)(), unsigned char*, char const*, int, bool, bool, DirectiveSet*)+0x33b
[0x00007d0a91f5b3c8]OptoRuntime::generate_stub(ciEnv*, TypeFunc const* (*)(), unsigned char*, char const*, int, bool, bool)+0xd8
[0x00007d0a91f5b6ec]OptoRuntime::generate(ciEnv*)+0x3c
[0x00007d0a917408da]C2Compiler::initialize()+0xca
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a91817234]Compile::Compile(ciEnv*, TypeFunc const* (*)(), unsigned char*, char const*, int, bool, bool, DirectiveSet*)+0x304
[0x00007d0a91f5b3c8]OptoRuntime::generate_stub(ciEnv*, TypeFunc const* (*)(), unsigned char*, char const*, int, bool, bool)+0xd8
[0x00007d0a91f5b6ec]OptoRuntime::generate(ciEnv*)+0x3c
[0x00007d0a917408da]C2Compiler::initialize()+0xca
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a917e7be1]CodeBuffer::create_patch_overflow()+0x91
[0x00007d0a915fd51b]Label::add_patch_at(CodeBuffer*, int, char const*, int)+0xcb
[0x00007d0a916025d6]Assembler::jmp(Label&, bool)+0xc6
[0x00007d0a916c145f]LIR_Assembler::emit_lir_list(LIR_List*)+0x6f
(malloc=1KB type=Arena Chunk #1) (peak=2KB #2)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a9229e832]ZUncommitter::ZUncommitter(ZPageAllocator*)+0x12
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a917e7be1]CodeBuffer::create_patch_overflow()+0x91
[0x00007d0a915fd51b]Label::add_patch_at(CodeBuffer*, int, char const*, int)+0xcb
[0x00007d0a916022ce]Assembler::jcc(Assembler::Condition, Label&, bool)+0xde
[0x00007d0a916b9568]LIR_OpBranch::emit_code(LIR_Assembler*)+0x18
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a9228e75f]ZStat::ZStat()+0xf
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a9214818c]Type::Initialize_shared(Compile*)+0x3c
[0x00007d0a9214ac7d]Type::Initialize(Compile*)+0x5d
[0x00007d0a918174ec]Compile::Compile(ciEnv*, TypeFunc const* (*)(), unsigned char*, char const*, int, bool, bool, DirectiveSet*)+0x5bc
[0x00007d0a91f5b3c8]OptoRuntime::generate_stub(ciEnv*, TypeFunc const* (*)(), unsigned char*, char const*, int, bool, bool)+0xd8
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91e7b512]WatcherThread::start()+0x42
[0x00007d0a92132045]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2c5
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91ad18d9]JavaThread::JavaThread()+0x19
[0x00007d0a92131fd7]Threads::create_vm(JavaVMInitArgs*, bool*)+0x257
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91f696bf]ServiceThread::initialize()+0x5f
[0x00007d0a921323e6]Threads::create_vm(JavaVMInitArgs*, bool*)+0x666
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a917957de]ciObjectFactory::initialize()+0x6e
[0x00007d0a91823e05]CompileBroker::compiler_thread_loop()+0x6e5
[0x00007d0a91ad26b8]JavaThread::thread_main_inner()+0x1d8
[0x00007d0a92124b58]Thread::call_run()+0xa8
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a9224a072]ZDriverMajor::ZDriverMajor()+0x12
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a917e7be1]CodeBuffer::create_patch_overflow()+0x91
[0x00007d0a915fd51b]Label::add_patch_at(CodeBuffer*, int, char const*, int)+0xcb
[0x00007d0a91602371]Assembler::jccb_0(Assembler::Condition, Label&, char const*, int)+0x71
[0x00007d0a91aa08ea]InterpreterMacroAssembler::profile_obj_type(Register, Address const&)+0x5fa
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a917e7be1]CodeBuffer::create_patch_overflow()+0x91
[0x00007d0a915fd51b]Label::add_patch_at(CodeBuffer*, int, char const*, int)+0xcb
[0x00007d0a916025d6]Assembler::jmp(Label&, bool)+0xc6
[0x00007d0a921c4ac2]VM_Version_StubGenerator::generate_get_cpu_info()+0x3132
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ea2e95]os::initialize_jdk_signal_support(JavaThread*)+0x75
[0x00007d0a921323b1]Threads::create_vm(JavaVMInitArgs*, bool*)+0x631
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a92249c62]ZDriverMinor::ZDriverMinor()+0x12
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a92123fd9]Thread::Thread()+0xe9
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a92247bc2]ZDirector::ZDirector()+0x12
(malloc=1KB type=Arena Chunk #1) (at peak)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a91ac2bb1]java_lang_StackTraceElement::decode_file_and_line(Handle, InstanceKlass*, int, methodHandle const&, int, Symbol*&, oopDesc*&, int&, JavaThread*)+0xd1
[0x00007d0a91ac310b]java_lang_StackTraceElement::fill_in(Handle, InstanceKlass*, methodHandle const&, int, int, Symbol*, JavaThread*)+0x50b
(malloc=1KB type=Symbol #59) (at peak)
[0x00007d0a920dd82f]SystemDictionary::find_method_handle_type(Symbol*, Klass*, JavaThread*)+0x94f
[0x00007d0a91677922]BootstrapInfo::resolve_bsm(JavaThread*)+0x292
[0x00007d0a920de44e]SystemDictionary::invoke_bootstrap_method(BootstrapInfo&, JavaThread*)+0x4e
[0x00007d0a91d32582]LinkResolver::resolve_dynamic_call(CallInfo&, BootstrapInfo&, JavaThread*)+0x22
(malloc=1KB type=Class #29) (at peak)
[0x00007d0a921e232c]WorkerThreads::create_worker(unsigned int)+0x3c
[0x00007d0a921e25e1]WorkerThreads::initialize_workers()+0x51
[0x00007d0a922894c0]ZRuntimeWorkers::ZRuntimeWorkers()+0x50
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a921baf0e]VMThread::create()+0x1e
[0x00007d0a921320cd]Threads::create_vm(JavaVMInitArgs*, bool*)+0x34d
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a919413aa]get_codesource(InstanceKlass const*)+0xba
[0x00007d0a919415cf]add_to_table_if_needed(InstanceKlass const*, Thread*)+0x4f
[0x00007d0a91942403]FinalizerService::on_register(oopDesc*, Thread*)+0x1d3
[0x00007d0a91a8debf]InstanceKlass::register_finalizer(instanceOopDesc*, JavaThread*)+0x12f
(malloc=1KB type=Serviceability #12) (at peak)
[0x00007d0a91e19fc7]GCMemoryManager::initialize_gc_stat_info()+0x117
[0x00007d0a91e1bf42]MemoryService::set_universe_heap(CollectedHeap*)+0x1b2
[0x00007d0a92153110]universe_post_init()+0x3d0
[0x00007d0a91a841d4]init_globals2()+0x54
(malloc=1KB type=Internal #4) (at peak)
[0x00007d0a91e19fb4]GCMemoryManager::initialize_gc_stat_info()+0x104
[0x00007d0a91e1bf42]MemoryService::set_universe_heap(CollectedHeap*)+0x1b2
[0x00007d0a92153110]universe_post_init()+0x3d0
[0x00007d0a91a841d4]init_globals2()+0x54
(malloc=1KB type=Internal #4) (at peak)
[0x00007d0a91e19f0f]GCMemoryManager::initialize_gc_stat_info()+0x5f
[0x00007d0a91e1bf42]MemoryService::set_universe_heap(CollectedHeap*)+0x1b2
[0x00007d0a92153110]universe_post_init()+0x3d0
[0x00007d0a91a841d4]init_globals2()+0x54
(malloc=1KB type=Internal #4) (at peak)
[0x00007d0a91e19efc]GCMemoryManager::initialize_gc_stat_info()+0x4c
[0x00007d0a91e1bf42]MemoryService::set_universe_heap(CollectedHeap*)+0x1b2
[0x00007d0a92153110]universe_post_init()+0x3d0
[0x00007d0a91a841d4]init_globals2()+0x54
(malloc=1KB type=Internal #4) (at peak)
[0x00007d0a91e7b142]NamedThread::set_name(char const*, ...)+0x72
[0x00007d0a921e2369]WorkerThreads::create_worker(unsigned int)+0x79
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
[0x00007d0a922acb25]ZWorkers::ZWorkers(ZGenerationId, ZStatWorkers*)+0xd5
(malloc=1KB type=Thread #14) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a91abb16b]JavaCalls::call_special(JavaValue*, Klass*, Symbol*, Symbol*, JavaCallArguments*, JavaThread*)+0x11b
(malloc=1KB type=Internal #3) (at peak)
[0x00007d0a91e7b507]WatcherThread::start()+0x37
[0x00007d0a92132045]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2c5
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a92276d3f]GrowableArrayWithAllocator<ZPhysicalMemorySegment, GrowableArrayCHeap<ZPhysicalMemorySegment, (MEMFLAGS)5> >::grow(int)+0x2f
[0x00007d0a922761dc]ZPhysicalMemory::add_segment(ZPhysicalMemorySegment const&)+0x2ec
[0x00007d0a922762b9]ZPhysicalMemory::ZPhysicalMemory(ZPhysicalMemory const&)+0x49
[0x00007d0a9226da1a]ZPage::clone_limited() const+0x9a
(malloc=1KB type=GC #37) (at peak)
[0x00007d0a917cf0d2]ClassLoaderData::init_null_class_loader_data()+0xe2
[0x00007d0a92153358]universe_init()+0x148
[0x00007d0a91a84137]init_globals()+0x37
[0x00007d0a92132035]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2b5
(malloc=1KB type=Module #1) (at peak)
[0x00007d0a917cdae1]ClassLoaderData::modules()+0x81
[0x00007d0a917ca1c0]ClassLoader::create_javabase()+0x30
[0x00007d0a917cbf01]ClassLoader::classLoader_init2(JavaThread*)+0x21
[0x00007d0a921ab463]vmClasses::resolve_all(JavaThread*)+0x13
(malloc=1KB type=Module #1) (at peak)
[0x00007d0a917cddd2]ClassLoaderData::ClassLoaderData(Handle, bool)+0x1b2
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a91e53f6f]Modules::define_module(Handle, unsigned char, _jstring*, _jstring*, _jobjectArray*, JavaThread*)+0x41f
(malloc=1KB type=Module #1) (at peak)
[0x00007d0a9182a6cb]CompiledMethod::add_handler_for_exception_and_pc(Handle, unsigned char*, unsigned char*)+0x8b
[0x00007d0a91f5c158]OptoRuntime::handle_exception_C_helper(JavaThread*, nmethod*&)+0x3c8
[0x00007d0a91f5c3ed]OptoRuntime::handle_exception_C(JavaThread*)+0x2d
(malloc=1KB type=Code #3) (at peak)
[0x00007d0a91f4ed93]ResolutionErrorTable::initialize()+0x13
[0x00007d0a920dbe3e]SystemDictionary::initialize(JavaThread*)+0xbe
[0x00007d0a92150e00]Universe::genesis(JavaThread*)+0xa0
[0x00007d0a92152514]universe2_init()+0x24
(malloc=1KB type=Class #1) (at peak)
[0x00007d0a91a8bec7]InstanceKlass::add_initialization_error(JavaThread*, Handle)+0x287
[0x00007d0a91a936fa]InstanceKlass::initialize_impl(JavaThread*)+0x70a
[0x00007d0a91ab08b0]InterpreterRuntime::_new(JavaThread*, ConstantPool*, int)+0x140
[0x00007d0a7e405ee3]
(malloc=1KB type=Class #1) (at peak)
[0x00007d0a91d3af93]LoaderConstraintTable::initialize()+0x13
[0x00007d0a920dbe43]SystemDictionary::initialize(JavaThread*)+0xc3
[0x00007d0a92150e00]Universe::genesis(JavaThread*)+0xa0
[0x00007d0a92152514]universe2_init()+0x24
(malloc=1KB type=Class #1) (at peak)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043dd1]StringTable::intern(oopDesc*, JavaThread*)+0x101
[0x00007d0a91b9bc2b]JVM_InternString+0x5b
[0x00007d0a7e3f89c4]
(malloc=1KB type=Symbol #53) (peak=1KB #59)
[0x00007d0a920dca3e]SystemDictionary::find_method_handle_intrinsic(vmIntrinsicID, Symbol*, JavaThread*)+0xfe
[0x00007d0a91d329ac]LinkResolver::lookup_polymorphic_method(LinkInfo const&, Handle*, JavaThread*)+0x1dc
[0x00007d0a91d33502]LinkResolver::resolve_handle_call(CallInfo&, LinkInfo const&, JavaThread*)+0x32
[0x00007d0a91d338d1]LinkResolver::resolve_invokehandle(CallInfo&, constantPoolHandle const&, int, JavaThread*)+0x241
(malloc=1KB type=Class #21) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a9228e75f]ZStat::ZStat()+0xf
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921baf19]VMThread::create()+0x29
[0x00007d0a921320cd]Threads::create_vm(JavaVMInitArgs*, bool*)+0x34d
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b512]WatcherThread::start()+0x42
[0x00007d0a92132045]Threads::create_vm(JavaVMInitArgs*, bool*)+0x2c5
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91f696bf]ServiceThread::initialize()+0x5f
[0x00007d0a921323e6]Threads::create_vm(JavaVMInitArgs*, bool*)+0x666
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a922a01c2]ZUnmapper::ZUnmapper(ZPageAllocator*)+0x12
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a9224a072]ZDriverMajor::ZDriverMajor()+0x12
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a916533f8]AttachListener::init()+0xb8
[0x00007d0a9165474e]AttachListener::is_init_trigger() [clone .part.0]+0x18e
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91e7b9ff]NotificationThread::initialize()+0x5f
[0x00007d0a91de906d]Management::initialize(JavaThread*)+0x4d
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91ea2e95]os::initialize_jdk_signal_support(JavaThread*)+0x75
[0x00007d0a921323b1]Threads::create_vm(JavaVMInitArgs*, bool*)+0x631
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a9225aa2d]ZInitialize::ZInitialize(ZBarrierSet*)+0x8d
[0x00007d0a92246f7d]ZCollectedHeap::ZCollectedHeap()+0x3d
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a92249c62]ZDriverMinor::ZDriverMinor()+0x12
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a92247bc2]ZDirector::ZDirector()+0x12
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a91e559ff]MonitorDeflationThread::initialize()+0x5f
[0x00007d0a921323eb]Threads::create_vm(JavaVMInitArgs*, bool*)+0x66b
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92234743]ZBarrierSet::on_thread_create(Thread*)+0x33
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a9183e0f1]ConcurrentGCThread::ConcurrentGCThread()+0x11
[0x00007d0a9229e832]ZUncommitter::ZUncommitter(ZPageAllocator*)+0x12
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a917ce4d5]ClassLoaderData::add_handle(Handle)+0xc5
[0x00007d0a918428fb]ConstantPool::restore_unshareable_info(JavaThread*)+0x10b
[0x00007d0a91a8cba5]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x105
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
(malloc=1KB type=Class #3) (at peak)
[0x00007d0a9226aec7]GrowableArrayWithAllocator<oopDesc**, GrowableArrayCHeap<oopDesc**, (MEMFLAGS)5> >::grow(int)+0x27
[0x00007d0a9226a921]ZNMethod::attach_gc_data(nmethod*)+0x4a1
[0x00007d0a9226a959]ZNMethod::register_nmethod(nmethod*)+0x19
[0x00007d0a91e72984]nmethod::nmethod(Method*, CompilerType, int, int, CodeOffsets*, CodeBuffer*, int, ByteSize, ByteSize, OopMapSet*)+0x2d4
(malloc=1KB type=GC #100) (at peak)
[0x00007d0a917cfc53]ClassLoaderData::add_to_deallocate_list(Metadata*)+0x1b3
[0x00007d0a918771ce]DefaultMethods::generate_default_methods(InstanceKlass*, GrowableArray<Method*> const*, JavaThread*)+0x27ae
[0x00007d0a917bc24f]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0xc0f
[0x00007d0a917bc58c]ClassFileParser::create_instance_klass(bool, ClassInstanceInfo const&, JavaThread*)+0x6c
(malloc=1KB type=Class #1) (peak=2KB #2)
[0x00007d0a9183276e]CompilerEvent::PhaseEvent::get_phase_id(char const*, bool, bool, bool)+0x16e
[0x00007d0a9181c892]register_jfr_phasetype_serializer(CompilerType)+0xd2
[0x00007d0a91822c2a]CompileBroker::compilation_init_phase1(JavaThread*)+0x17a
[0x00007d0a9213272d]Threads::create_vm(JavaVMInitArgs*, bool*)+0x9ad
(malloc=1KB type=Compiler #1) (at peak)
[0x00007d0a920433c8]StringTable::do_intern(Handle, unsigned short const*, int, unsigned long, JavaThread*)+0x128
[0x00007d0a92043c67]StringTable::intern(Symbol*, JavaThread*)+0x57
[0x00007d0a91ac2e4d]java_lang_StackTraceElement::fill_in(Handle, InstanceKlass*, methodHandle const&, int, int, Symbol*, JavaThread*)+0x24d
[0x00007d0a91acc4e1]java_lang_Throwable::get_stack_trace_elements(int, Handle, objArrayHandle, JavaThread*)+0x2d1
(malloc=1KB type=Symbol #50) (at peak)
[0x00007d0a92124026]Thread::Thread()+0x136
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e2531]WorkerThreads::set_active_workers(unsigned int)+0x41
(malloc=1KB type=Class #33) (at peak)
[0x00007d0a9193d1ce]FileMapInfo::init_from_file(int)+0x3ae
[0x00007d0a9193dee4]FileMapInfo::initialize()+0x94
[0x00007d0a91e25ea7]MetaspaceShared::initialize_runtime_shared_and_meta_spaces()+0x47
[0x00007d0a91e1e8c5]Metaspace::global_initialize()+0x295
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91826ab0]CompileTask::allocate()+0xc0
[0x00007d0a91821985]CompileBroker::compile_method_base(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, bool, Thread*) [clone .part.0]+0x245
[0x00007d0a91821f0a]CompileBroker::compile_method(methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, DirectiveSet*, JavaThread*)+0x2fa
(malloc=1KB type=Internal #46) (at peak)
[0x00007d0a91ebc1e0]stringStream::write(char const*, unsigned long)+0x140
[0x00007d0a91ebc756]outputStream::do_vsnprintf_and_write_with_automatic_buffer(char const*, __va_list_tag*, bool)+0xd6
[0x00007d0a91ebcf3f]outputStream::print_cr(char const*, ...)+0x18f
[0x00007d0a91a0498b]GCLogPrecious::vwrite(LogTargetHandle, char const*, __va_list_tag*)+0x7b
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a91b9f86d]JVM_FindClassFromClass+0x5d
[0x00007d0a7401eaa6]load_class_global+0x26 in libverify.so
[0x00007d0a7401f63e]merge_fullinfo_types+0x20e in libverify.so
(malloc=1KB type=Symbol #8) (at peak)
[0x00007d0a92124042]Thread::Thread()+0x152
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e25e1]WorkerThreads::initialize_workers()+0x51
(malloc=1KB type=Class #3) (at peak)
[0x00007d0a918f908f]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x9f
[0x00007d0a920df92a]SystemDictionary::define_instance_class(InstanceKlass*, Handle, JavaThread*)+0x3ea
[0x00007d0a920dff35]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x1c5
[0x00007d0a91ba060e]jvm_define_class_common(char const*, _jobject*, signed char const*, int, _jobject*, char const*, JavaThread*)+0x21e
(malloc=1KB type=Class #44) (at peak)
[0x00007d0a918f9037]Dictionary::add_klass(JavaThread*, Symbol*, InstanceKlass*)+0x47
[0x00007d0a920df92a]SystemDictionary::define_instance_class(InstanceKlass*, Handle, JavaThread*)+0x3ea
[0x00007d0a920dff35]SystemDictionary::resolve_class_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x1c5
[0x00007d0a91ba060e]jvm_define_class_common(char const*, _jobject*, signed char const*, int, _jobject*, char const*, JavaThread*)+0x21e
(malloc=1KB type=Class #44) (at peak)
[0x00007d0a91881052]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x4e2
[0x00007d0a91881af3]Deoptimization::uncommon_trap(JavaThread*, int, int)+0x33
(malloc=1KB type=Compiler #51) (peak=1KB #50)
[0x00007d0a92124007]Thread::Thread()+0x117
[0x00007d0a91e7b001]NamedThread::NamedThread()+0x11
[0x00007d0a921e233b]WorkerThreads::create_worker(unsigned int)+0x4b
[0x00007d0a921e25e1]WorkerThreads::initialize_workers()+0x51
(malloc=1KB type=Arena Chunk #3) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a91b905f4]JNIHandles::make_global(Handle, AllocFailStrategy::AllocFailEnum)+0x24
[0x00007d0a91826f49]CompileTask::select_for_compilation()+0xa9
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a91b90674]JNIHandles::make_weak_global(Handle, AllocFailStrategy::AllocFailEnum)+0x24
[0x00007d0a91826c76]CompileTask::initialize(int, methodHandle const&, int, int, methodHandle const&, int, CompileTask::CompileReason, bool)+0xa6
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a91b905f4]JNIHandles::make_global(Handle, AllocFailStrategy::AllocFailEnum)+0x24
[0x00007d0a91afc210]JfrJavaSupport::global_jni_handle(_jobject*, JavaThread*)+0x70
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a91ad128f]JavaThread::set_threadOopHandles(oopDesc*)+0x1f
[0x00007d0a921304b8]Threads::initialize_java_lang_classes(JavaThread*, JavaThread*)+0x568
(malloc=1KB type=Thread #1) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a920dd772]SystemDictionary::find_method_handle_type(Symbol*, Klass*, JavaThread*)+0x892
[0x00007d0a918476ff]ConstantPool::resolve_constant_at_impl(constantPoolHandle const&, int, int, bool*, JavaThread*)+0x3ef
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a92151472]Universe::initialize_basic_type_mirrors(JavaThread*)+0xf2
[0x00007d0a921ab535]vmClasses::resolve_all(JavaThread*)+0xe5
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a91ea0a2f]OopStorage::try_add_block()+0x2f
[0x00007d0a91ea10ed]OopStorage::allocate()+0x3d
[0x00007d0a921c7f2e]WeakHandle::WeakHandle(OopStorage*, oopDesc*)+0x1e
[0x00007d0a91e871f7]ObjectMonitor::ObjectMonitor(oopDesc*)+0x27
(malloc=1KB type=Synchronization #1) (peak=5KB #8)
[0x00007d0a91a8cc49]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1a9
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
[0x00007d0a921ab2ee]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0x7e
[0x00007d0a921ab361]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xf1
(malloc=1KB type=Synchronization #6) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91ea7a3f]OSThread::pd_initialize()+0x6f
[0x00007d0a91eb0674]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x64
[0x00007d0a921e2378]WorkerThreads::create_worker(unsigned int)+0x88
(malloc=1KB type=Internal #36) (at peak)
[0x00007d0a92234869]ZBarrierSet::on_thread_attach(Thread*)+0x79
[0x00007d0a9213078f]Threads::add(JavaThread*, bool)+0x1f
[0x00007d0a91ad59c3]JavaThread::start_internal_daemon(JavaThread*, JavaThread*, Handle, ThreadPriority)+0x73
[0x00007d0a918223be]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0xfe
(malloc=1KB type=Thread #2) (peak=3KB #12)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91aba235]JavaCallWrapper::JavaCallWrapper(methodHandle const&, Handle, JavaValue*, JavaThread*)+0x75
[0x00007d0a91abaa64]JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x104
[0x00007d0a91abbbd2]JavaCalls::call_static(JavaValue*, Klass*, Symbol*, Symbol*, Handle, Handle, JavaThread*)+0x1a2
(malloc=1KB type=Internal #2) (at peak)
[0x00007d0a91b90de6]JNIHandleBlock::allocate_block(JavaThread*, AllocFailStrategy::AllocFailEnum)+0x66
[0x00007d0a91ad3458]JavaThread::push_jni_handle_block()+0x18
[0x00007d0a918201c5]CompileBroker::invoke_compiler_on_method(CompileTask*)+0x275
[0x00007d0a91823dc8]CompileBroker::compiler_thread_loop()+0x6a8
(malloc=1KB type=Internal #2) (peak=3KB #12)
[0x00007d0a91e9ad0d]ImmutableOopMapSet::build_from(OopMapSet const*)+0xad
[0x00007d0a917e4621]RuntimeBlob::RuntimeBlob(char const*, CodeBuffer*, int, int, int, int, OopMapSet*, bool)+0x131
[0x00007d0a917e5a1a]RuntimeStub::new_runtime_stub(char const*, CodeBuffer*, int, int, OopMapSet*, bool)+0xda
[0x00007d0a91ec4a1f]PhaseOutput::install()+0xbf
(malloc=1KB type=Code #18) (at peak)
[0x00007d0a9182a6cb]CompiledMethod::add_handler_for_exception_and_pc(Handle, unsigned char*, unsigned char*)+0x8b
[0x00007d0a91f5c158]OptoRuntime::handle_exception_C_helper(JavaThread*, nmethod*&)+0x3c8
[0x00007d0a91f5c3ed]OptoRuntime::handle_exception_C(JavaThread*)+0x2d
[0x00007d0a7e4fd7be]
(malloc=1KB type=Code #2) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91a8678a]InstanceKlass::InstanceKlass(ClassFileParser const&, Klass::KlassKind, ReferenceType)+0xba
[0x00007d0a91a99f5b]InstanceRefKlass::InstanceRefKlass(ClassFileParser const&)+0x2b
[0x00007d0a91a8697a]InstanceKlass::allocate_instance_klass(ClassFileParser const&, JavaThread*)+0x18a
(malloc=1KB type=Internal #19) (at peak)
[0x00007d0a91a064f8]TimePartitions::TimePartitions()+0x48
[0x00007d0a92249cb8]ZDriverMinor::ZDriverMinor()+0x68
[0x00007d0a92246fa5]ZCollectedHeap::ZCollectedHeap()+0x65
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a917cde2e]ClassLoaderData::ClassLoaderData(Handle, bool)+0x20e
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920e04dc]SystemDictionary::resolve_instance_class_or_null(Symbol*, Handle, Handle, JavaThread*)+0xcc
(malloc=1KB type=Class #2) (at peak)
[0x00007d0a917cde2e]ClassLoaderData::ClassLoaderData(Handle, bool)+0x20e
[0x00007d0a917d28e3]ClassLoaderDataGraph::add_to_graph(Handle, bool)+0xa3
[0x00007d0a917d2a77]ClassLoaderDataGraph::add(Handle, bool)+0x37
[0x00007d0a920dffca]SystemDictionary::resolve_from_stream(ClassFileStream*, Symbol*, Handle, ClassLoadInfo const&, JavaThread*)+0x6a
(malloc=1KB type=Class #2) (at peak)
[0x00007d0a917cf5b5]ClassLoaderData::record_dependency(Klass const*)+0x365
[0x00007d0a920de35a]unpack_method_and_appendix(Handle, Klass*, objArrayHandle, Handle*, JavaThread*)+0xea
[0x00007d0a920de6ab]SystemDictionary::invoke_bootstrap_method(BootstrapInfo&, JavaThread*)+0x2ab
[0x00007d0a91d32582]LinkResolver::resolve_dynamic_call(CallInfo&, BootstrapInfo&, JavaThread*)+0x22
(malloc=1KB type=Class #2) (at peak)
[0x00007d0a91e1d381]MetadataOnStackMark::record(Metadata*)+0x91
[0x00007d0a91e2eefe]Method::set_on_stack(bool)+0x1e
[0x00007d0a9212467f]Thread::metadata_handles_do(void (*)(Metadata*))+0x3f
[0x00007d0a92130cde]Threads::metadata_handles_do(void (*)(Metadata*))+0x4e
(malloc=1KB type=Internal #1) (at peak)
[0x00007d0a91e62aab]Mutex::Mutex(Mutex::Rank, char const*, bool)+0x2b
[0x00007d0a91a8cc62]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1c2
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
[0x00007d0a921ab361]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xf1
(malloc=1KB type=Internal #14) (at peak)
[0x00007d0a91a8cc49]InstanceKlass::restore_unshareable_info(ClassLoaderData*, Handle, PackageEntry*, JavaThread*)+0x1a9
[0x00007d0a921ab318]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0xa8
[0x00007d0a921ab2ee]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0x7e
[0x00007d0a921ab2ee]vmClasses::resolve_shared_class(InstanceKlass*, ClassLoaderData*, Handle, JavaThread*)+0x7e
(malloc=1KB type=Synchronization #5) (at peak)
[0x00007d0a9148df2d]GrowableArrayWithAllocator<Metadata*, GrowableArray<Metadata*> >::expand_to(int)+0x9d
[0x00007d0a91875ada]DefaultMethods::generate_default_methods(InstanceKlass*, GrowableArray<Method*> const*, JavaThread*)+0x10ba
[0x00007d0a917bc24f]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0xc0f
[0x00007d0a917bc58c]ClassFileParser::create_instance_klass(bool, ClassInstanceInfo const&, JavaThread*)+0x6c
(malloc=1KB type=Class #1) (peak=2KB #5)
[0x00007d0a9148df2d]GrowableArrayWithAllocator<Metadata*, GrowableArray<Metadata*> >::expand_to(int)+0x9d
[0x00007d0a9167bad7]BytecodeConstantPool::create_constant_pool(JavaThread*) const+0x2b7
[0x00007d0a91877196]DefaultMethods::generate_default_methods(InstanceKlass*, GrowableArray<Method*> const*, JavaThread*)+0x2776
[0x00007d0a917bc24f]ClassFileParser::fill_instance_klass(InstanceKlass*, bool, ClassInstanceInfo const&, JavaThread*)+0xc0f
(malloc=1KB type=Class #1) (at peak)
[0x00007d0a9223c527]GrowableArrayWithAllocator<unsigned char*, GrowableArrayCHeap<unsigned char*, (MEMFLAGS)5> >::grow(int)+0x27
[0x00007d0a92238630]ZBarrierSetAssembler::copy_store_at(MacroAssembler*, unsigned long, BasicType, unsigned long, Address, Register, Register)+0x4c0
[0x00007d0a92238b7c]ZBarrierSetAssembler::copy_store_at(MacroAssembler*, unsigned long, BasicType, unsigned long, Address, XMMRegister, Register, Register, XMMRegister)+0x4ec
[0x00007d0a9207e8d4]StubGenerator::copy_bytes_forward(Register, Register, Register, Register, Register, Label&, Label&, unsigned long, BasicType)+0x344
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a91d3ccbd]GrowableArrayWithAllocator<ClassLoaderData*, GrowableArray<ClassLoaderData*> >::grow(int)+0xfd
[0x00007d0a91d3c588]LoaderConstraint::extend_loader_constraint(Symbol*, ClassLoaderData*, InstanceKlass*)+0x148
[0x00007d0a91d3cb04]LoaderConstraintTable::add_entry(Symbol*, InstanceKlass*, ClassLoaderData*, InstanceKlass*, ClassLoaderData*)+0x2c4
[0x00007d0a920dc389]SystemDictionary::add_loader_constraint(Symbol*, Klass*, Handle, Handle)+0xf9
(malloc=1KB type=Class #1) (peak=1KB #2)
[0x00007d0a9223c527]GrowableArrayWithAllocator<unsigned char*, GrowableArrayCHeap<unsigned char*, (MEMFLAGS)5> >::grow(int)+0x27
[0x00007d0a9223b0a5]ZBarrierSetAssembler::copy_load_at(MacroAssembler*, unsigned long, BasicType, unsigned long, Register, Address, Register)+0x375
[0x00007d0a9223b559]ZBarrierSetAssembler::copy_load_at(MacroAssembler*, unsigned long, BasicType, unsigned long, XMMRegister, Address, Register, XMMRegister)+0x489
[0x00007d0a9207e852]StubGenerator::copy_bytes_forward(Register, Register, Register, Register, Register, Label&, Label&, unsigned long, BasicType)+0x2c2
(malloc=1KB type=GC #1) (at peak)
[0x00007d0a92124042]Thread::Thread()+0x152
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=0KB type=Class #2) (peak=3KB #12)
[0x00007d0a918814a7]Deoptimization::fetch_unroll_info_helper(JavaThread*, int)+0x937
[0x00007d0a91881af3]Deoptimization::uncommon_trap(JavaThread*, int, int)+0x33
[0x00007d0a7e442aa1]
(malloc=0KB type=Compiler #5) (peak=1KB #8)
[0x00007d0a920cf9a4]SymbolTable::do_add_if_needed(char const*, int, unsigned long, bool)+0x164
[0x00007d0a92189862]ClassVerifier::create_temporary_symbol(char const*, int)+0x32
[0x00007d0a9218d28a]ClassVerifier::verify_anewarray(unsigned short, unsigned short, constantPoolHandle const&, StackMapFrame*, JavaThread*)+0x1aa
[0x00007d0a9219539e]ClassVerifier::verify_method(methodHandle const&, JavaThread*)+0x15fe
(malloc=0KB type=Symbol #3) (peak=1KB #7)
[0x00007d0a91ea7a26]OSThread::pd_initialize()+0x56
[0x00007d0a91eb0674]os::create_thread(Thread*, os::ThreadType, unsigned long)+0x64
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=0KB type=Synchronization #2) (peak=1KB #12)
[0x00007d0a920d6828]ObjectSynchronizer::inflate(Thread*, oopDesc*, ObjectSynchronizer::InflateCause) [clone .constprop.0]+0x308
[0x00007d0a920d7500]ObjectSynchronizer::wait(Handle, long, JavaThread*)+0x40
[0x00007d0a91b97baf]JVM_MonitorWait+0x14f
[0x00007d0a7e3f89c4]
(malloc=0KB type=Object Monitors #1) (peak=1KB #3)
[0x00007d0a921240dd]Thread::Thread()+0x1ed
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=0KB type=Thread #2) (peak=1KB #12)
[0x00007d0a92123ff2]Thread::Thread()+0x102
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=0KB type=Thread #2) (peak=1KB #12)
[0x00007d0a92123fc9]Thread::Thread()+0xd9
[0x00007d0a91ad20df]JavaThread::JavaThread(void (*)(JavaThread*, JavaThread*), unsigned long)+0x1f
[0x00007d0a9183c494]CompilerThread::CompilerThread(CompileQueue*, CompilerCounters*)+0x24
[0x00007d0a91822321]CompileBroker::make_thread(CompileBroker::ThreadType, _jobject*, CompileQueue*, AbstractCompiler*, JavaThread*) [clone .constprop.0]+0x61
(malloc=0KB type=Thread #2) (peak=1KB #12)
[0x00007d0a9224bcac]ZForwardingAllocator::reset(unsigned long)+0x1c
[0x00007d0a92280e10]ZRelocationSet::install(ZRelocationSetSelector const*)+0xe0
[0x00007d0a9224f322]ZGeneration::select_relocation_set(ZGenerationId, bool)+0x102
[0x00007d0a9225076c]ZGenerationOld::collect(ConcurrentGCTimer*)+0x56c
(malloc=0KB type=GC #1) (peak=602KB #1)
[0x00007d0a922ac11e]ZVirtualMemoryManager::reserve(unsigned long)+0xae
[0x00007d0a922ac265]ZVirtualMemoryManager::ZVirtualMemoryManager(unsigned long)+0x35
[0x00007d0a9226fda7]ZPageAllocator::ZPageAllocator(unsigned long, unsigned long, unsigned long, unsigned long)+0x67
[0x00007d0a92252ab9]ZHeap::ZHeap()+0x59
(reserved=100663296KB, committed=6291456KB Type=Java Heap)
[0x00007d0a92267939]ZMarkStackAllocator::ZMarkStackAllocator()+0x59
[0x00007d0a9225c087]ZMark::ZMark(ZGeneration*, ZPageTable*)+0x27
[0x00007d0a9224bfcc]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0xbc
[0x00007d0a9224d0be]ZGenerationOld::ZGenerationOld(ZPageTable*, ZPageAllocator*)+0x1e
(reserved=8388608KB, committed=32768KB Type=GC)
[0x00007d0a92267939]ZMarkStackAllocator::ZMarkStackAllocator()+0x59
[0x00007d0a9225c087]ZMark::ZMark(ZGeneration*, ZPageTable*)+0x27
[0x00007d0a9224bfcc]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0xbc
[0x00007d0a9224c591]ZGenerationYoung::ZGenerationYoung(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x21
(reserved=8388608KB, committed=32768KB Type=GC)
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a921a9f66]ReservedSpace::ReservedSpace(unsigned long, unsigned long, unsigned long, char*)+0x56
[0x00007d0a91e1d964]Metaspace::reserve_address_space_for_compressed_classes(unsigned long)+0x24
[0x00007d0a91e24530]MetaspaceShared::reserve_address_space_for_archives(FileMapInfo*, FileMapInfo*, bool, ReservedSpace&, ReservedSpace&, ReservedSpace&)+0x330
(reserved=1064960KB, committed=25980KB Type=Class)
[0x00007d0a91eaf8ea]thread_native_entry(Thread*)+0xda
[0x00007d0a927bfa94] in libc.so.6+0x9ca94
(reserved=492544KB, committed=41396KB Type=Thread Stack)
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a921aa0ef]ReservedCodeSpace::ReservedCodeSpace(unsigned long, unsigned long, unsigned long)+0x5f
[0x00007d0a917f23bf]CodeCache::initialize_heaps()+0x25f
[0x00007d0a917f2a75]CodeCache::initialize()+0x55
(reserved=245760KB, committed=50112KB Type=Code)
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a921a9f66]ReservedSpace::ReservedSpace(unsigned long, unsigned long, unsigned long, char*)+0x56
[0x00007d0a921a8885]metaspace::VirtualSpaceNode::create_node(unsigned long, metaspace::CommitLimiter*, metaspace::AbstractCounter<unsigned long>*, metaspace::AbstractCounter<unsigned long>*)+0x55
[0x00007d0a921a7dab]metaspace::VirtualSpaceList::allocate_root_chunk()+0x4b
(reserved=131072KB, committed=95744KB Type=Metaspace)
[0x00007d0a9224bf80]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0x70
[0x00007d0a9224d0be]ZGenerationOld::ZGenerationOld(ZPageTable*, ZPageAllocator*)+0x1e
[0x00007d0a92252b2e]ZHeap::ZHeap()+0xce
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
(reserved=16384KB, committed=16384KB Type=GC)
[0x00007d0a9224bf80]ZGeneration::ZGeneration(ZGenerationId, ZPageTable*, ZPageAllocator*)+0x70
[0x00007d0a9224c591]ZGenerationYoung::ZGenerationYoung(ZPageTable*, ZForwardingTable const*, ZPageAllocator*)+0x21
[0x00007d0a92252b44]ZHeap::ZHeap()+0xe4
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
(reserved=16384KB, committed=16384KB Type=GC)
[0x00007d0a92274f65]ZPageTable::ZPageTable()+0x45
[0x00007d0a92252ac1]ZHeap::ZHeap()+0x61
[0x00007d0a92246f89]ZCollectedHeap::ZCollectedHeap()+0x49
[0x00007d0a92230d96]ZArguments::create_heap()+0x26
(reserved=16384KB, committed=16384KB Type=GC)
[0x00007d0a92131ffa]Threads::create_vm(JavaVMInitArgs*, bool*)+0x27a
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
[0x00007d0a9294f299]ThreadJavaMain+0x9 in libjli.so
(reserved=1024KB, committed=192KB Type=Thread Stack)
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a91a4a7a3]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x133
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f24c5]CodeCache::initialize_heaps()+0x365
(reserved=932KB, committed=248KB Type=Code)
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a91a4a7a3]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x133
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f2501]CodeCache::initialize_heaps()+0x3a1
(reserved=932KB, committed=88KB Type=Code)
[0x00007d0a921a9b90]ReservedSpace::reserve(unsigned long, unsigned long, unsigned long, char*, bool)+0x480
[0x00007d0a91a4a7a3]CodeHeap::reserve(ReservedSpace, unsigned long, unsigned long)+0x133
[0x00007d0a917f2091]CodeCache::add_heap(ReservedSpace, char const*, CodeBlobType)+0xd1
[0x00007d0a917f2486]CodeCache::initialize_heaps()+0x326
(reserved=64KB, committed=60KB Type=Code)
[0x00007d0a91efaeca]PerfMemory::create_memory_region(unsigned long)+0x96a
[0x00007d0a91ef93b4]PerfMemory::initialize() [clone .part.0]+0x54
[0x00007d0a91a840f2]vm_init_globals()+0x22
[0x00007d0a92131f7e]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1fe
(reserved=32KB, committed=32KB Type=Internal)
[0x00007d0a91f64070]SafepointMechanism::default_initialize()+0x40
[0x00007d0a92131f4b]Threads::create_vm(JavaVMInitArgs*, bool*)+0x1cb
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
(reserved=8KB, committed=8KB Type=Safepoint)
[0x00007d0a91867164]initialize_assert_poison()+0x24
[0x00007d0a9213227d]Threads::create_vm(JavaVMInitArgs*, bool*)+0x4fd
[0x00007d0a91b5e6ff]JNI_CreateJavaVM+0x4f
[0x00007d0a9294b71b]JavaMain+0x8b in libjli.so
(reserved=4KB, committed=4KB Type=Internal)
(1196 call sites weighting less than 1KB each omitted.)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: gc.log
Type: application/octet-stream
Size: 75240 bytes
Desc: not available
URL: <https://mail.openjdk.org/pipermail/zgc-dev/attachments/20241028/16d6925c/gc-0001.log>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Screenshot 2024-10-28 at 16.15.16.png
Type: image/png
Size: 68362 bytes
Desc: not available
URL: <https://mail.openjdk.org/pipermail/zgc-dev/attachments/20241028/16d6925c/Screenshot2024-10-28at16.15.16-0001.png>
More information about the zgc-dev
mailing list