Jump to content
fred41

Arma3 and the /LARGEADDRESSAWARE flag (memory allocation > 2GB)

Recommended Posts

tried gpedit.msc ?

also please realize LAA != Large / Huge pages ... completely different terms

Share this post


Link to post
Share on other sites
Bravo17 is that OS running in virtualized environment like VMware ?

or pure native hw+os w/o any virtual layer ?

Pure native hw and os. We do have the server set up with the Hyper-V role, but we don't use it.

Share this post


Link to post
Share on other sites
We are getting the following error, not always at the same place, but always near the start of the log file. The game still works though:

SeLockMemoryPrivilege: granted, huge pages enabled

  0.016s: 5.862ms  2048k at:0xffc00000 Alloc LP (   2M)
  0.016s: 0.005ms   128k at:0x001b0000 Alloc SP (   2M)
  0.016s: TLSCreate: 0ca4
  0.063s: 23.741ms  8192k at:0xff400000 Alloc LP (  10M)
  0.063s: TLSCreate: 0b08
  1.389s: 23.467ms  8192k at:0xfec00000 Alloc LP (  18M)
  1.529s: 5.729ms  4096k at:0xfe800000 Alloc LP (  22M)
  1.545s: 6.090ms  4096k at:0xfe400000 Alloc LP (  26M)
  1.545s: 5.791ms  4096k at:0xfe000000 Alloc LP (  30M)
  1.545s: 6.855ms  4096k at:0xfdc00000 Alloc LP (  34M)
  4.306s: 7.422ms  4096k at:0xfd800000 Alloc LP (  38M)
  4.306s: 4.034ms  4096k at:0x00000000 Alloc LP failed -> fallback
  4.306s: 0.005ms  4096k at:0x05850000 Alloc SP (  42M)

.....

913.261s: 0.005ms    16k at:0x04470000 Alloc SP ( 833M)

Windows server 2008, E1270 xeon, 16 GB memory. Also running other game servers on the box.

... thanks for your feedback and log ...

The usage of large pages is an optional feature of this experimental custom memory allocator, implemented to get the highest possible memory access speed.

Two conditions have to meet to make this feature fully available:

- the 'lock pages in memory' privileg have to be set for arma user (is already set correctly on your system)

- enough large pages (continous 2M blocks in phys. RAM) have to be available

This line in your log is not an error:

4.306s: 4.034ms 4096k at:0x00000000 Alloc LP failed -> fallback

It just means, that your OS memory manager can't find enough large pages (2 in this case) to satisfy this current VirtualAlloc (large page) allocation attempt.

In such a case, tbbmalloc is making a second allocation attempt (now with small pages, fallback) and disables the usage of large pages, for any further region allocation.

It is very likely that your system memory is highly fragmented in such a scenario.

On a fresh restarted system you have less fragmentation and most large pages available.

Fragmentation proceeding depends on amount of available phys. RAM and system load.

The usage of large pages is not the only advantage of tbbmalloc compared with the default one.

So don't be worried, if your system can't satisfy all allocations as large pages.

---------- Post added at 15:24 ---------- Previous post was at 15:16 ----------

Well here is a complete pain. I obviously have been seeing a placebo effect! It turns out that I have 'SeLockMemoryPrivilege: denied, huge pages disabled'

Now I've searched on my win8.1 for Secpol.msc but it doesn't exist. Is there another way that I can force huge pages for Arma3 (even though Arma3 is already largeaddressaware)?

EDIT: Interestingly on my dedi server (win7) huge pages are enabled for the standalone server.exe so I should be OK.

Further EDIT: Ran my server with the latest tbbmalloc and got this '2993.394s: regAllocTotalDur: 202.995ms LOCstat: 87014/89435:97.3% TLSLeft: 1 handledAccessViolations: 0'

... AFAIK, this Secpol.msc (or gpedit.msc) is only directly available for the prof. and up editions of windows, but there are several ways to make it available on home and standard editions too (i think i remember via registry tweaks) ...

Edited by Fred41

Share this post


Link to post
Share on other sites

Anyone have any leads on how to prevent RAM fragmentation on a modern OS like 7? About 20 minutes of googling I'm only finding user experiences and data from years ago (XP and early vista days, mostly early to mid 2000's, nothing that appears useful from 2009 onward since 7 came out).

About all I've been able to gather is that a lot of the fragmentation comes from the memory allocators certain programs use. So throw in a few programs that might have a less-than-optimal memory allcoator, and your system ram will get fragmented pretty quickly. Some examples are here, here and this tool for analyzing memory fragmentation in dumps. I'll have time later this week to look into trying to trace where the usage is coming from on my system.

I believe some of it has to do with the caching that Win7 does with the extra ram. After a few hours of system uptime my ram is maxed out if you include "Standby" in windows Resource Monitor. In fact right now after 4 hours of up-time I'm at 2MB free (watching the Resource Monitor its jumping between 1 and 5MB every now and then), while about 12GB is in use by running programs and a ramdisk, out of a total of 32GB. I have a theory that if I were to run A3 right now with the custom mem-alloc, I'll see those 'failed - fallback' messages in the log.

Is there a way to make the memory allocator dll reserve space to free up the windows 'standby' memory? I can imagine that this would not be ideal for those with lower amounts of memory, but with 16-32GB, you'd think nothing would have problems with finding free ram.

Edited by frag85

Share this post


Link to post
Share on other sites

... a peacefully and happy new year everybody ... :o

@frag85, thanks for your feedback.

What you found about fragmentation is mainly related to heap and virtual address space fragmentation.

But the availability of large pages is related to fragmentation in physical memory address space (unmapped, native addresses),

because the memory blocks have to be continous and aligned to 2MB boundarys here, to be available as large page.

This kind of fragmentation is especially caused by applications/drivers which frequently allocates/frees a lot of small pages.

To locate the source of fragmentation on your system you could use a tool like RAMmap from sysinternals.

This nice tool allow you to do a "Empty standby list" too.

This discussion could be related to your observations too:

http://forum.sysinternals.com/rammap-empty-standby-list_topic27297_page1.html

Try this and let me know if it helps.

Yes, reserving (preallocation) of large pages, is what in older microsoft documentation is recommended for large page allocations.

This is a good way to avoid fragmentation, as long as you know how much memory your application will need and if your system have enough phys. RAM left.

But for arma systems, it is difficult to predict the optimal ammount of memory to preallocate and keep in mind, that memory allocted as large pages, is locked to phys. RAM (not pageable).

BTW:

Windows 8.1 seems to be much more aware of the higher demand of large pages for todays systems/applications and protects the phys. RAM much better against fragmentation.

See the allocation timings in NoPOW logs. This timings are ~20 x times better than in windows 7. This is of course a big advantage and an important step in the right direction.

Edited by Fred41

Share this post


Link to post
Share on other sites

Best of wishes to everyone!

Did a quick run with the latest malloc:

SeLockMemoryPrivilege: granted, huge pages enabled

  0.000s: 0.053ms  2048k at:0xffc00000 Alloc LP (   2M)
  0.016s: 0.003ms   128k at:0x01e60000 Alloc SP (   2M)
  0.032s: 0.187ms  8192k at:0xff400000 Alloc LP (  10M)
  3.141s: 0.101ms  4096k at:0xff000000 Alloc LP (  14M)
  3.141s: 0.097ms  4096k at:0xfec00000 Alloc LP (  18M)
  3.141s: 0.094ms  4096k at:0xfe800000 Alloc LP (  22M)
  3.141s: 0.095ms  4096k at:0xfe400000 Alloc LP (  26M)
  3.407s: 0.103ms  4096k at:0xfe000000 Alloc LP (  30M)
  3.407s: 0.099ms  4096k at:0xfdc00000 Alloc LP (  34M)
  3.407s: 0.098ms  4096k at:0xfd800000 Alloc LP (  38M)
  3.407s: 0.097ms  4096k at:0xfd400000 Alloc LP (  42M)
  4.188s: 0.102ms  4096k at:0xfd000000 Alloc LP (  46M)
  4.188s: 0.095ms  4096k at:0xfcc00000 Alloc LP (  50M)
  4.188s: 0.094ms  4096k at:0xfc800000 Alloc LP (  54M)
  4.188s: 0.095ms  4096k at:0xfc400000 Alloc LP (  58M)
  4.797s: 0.102ms  4096k at:0xfc000000 Alloc LP (  62M)
  4.797s: 0.097ms  4096k at:0xfbc00000 Alloc LP (  66M)
  4.797s: 0.096ms  4096k at:0xfb800000 Alloc LP (  70M)
  4.813s: 0.096ms  4096k at:0xfb400000 Alloc LP (  74M)
  5.266s: 0.103ms  4096k at:0xfb000000 Alloc LP (  78M)
  5.266s: 0.097ms  4096k at:0xfac00000 Alloc LP (  82M)
  5.266s: 0.097ms  4096k at:0xfa800000 Alloc LP (  86M)
  5.266s: 0.099ms  4096k at:0xfa400000 Alloc LP (  90M)
  6.063s: 0.329ms 14336k at:0xf9600000 Alloc LP ( 104M)
  6.063s: 0.774ms 34816k at:0xf7400000 Alloc LP ( 138M)
 10.688s: 0.103ms  4096k at:0xf7000000 Alloc LP ( 142M)
 10.704s: 0.097ms  4096k at:0xf6c00000 Alloc LP ( 146M)
 10.704s: 0.096ms  4096k at:0xf6800000 Alloc LP ( 150M)
 10.704s: 0.095ms  4096k at:0xf6400000 Alloc LP ( 154M)
 14.610s: MFCA req.
 17.204s: 0.104ms  4096k at:0xf6000000 Alloc LP ( 158M)
 17.204s: 0.097ms  4096k at:0xf5c00000 Alloc LP ( 162M)
 17.204s: 0.097ms  4096k at:0xf5800000 Alloc LP ( 166M)
 17.219s: 0.095ms  4096k at:0xf5400000 Alloc LP ( 170M)
 17.907s: 0.105ms  4096k at:0xf5000000 Alloc LP ( 174M)
 17.922s: 0.097ms  4096k at:0xf4c00000 Alloc LP ( 178M)
 17.922s: 0.096ms  4096k at:0xf4800000 Alloc LP ( 182M)
 17.922s: 0.095ms  4096k at:0xf4400000 Alloc LP ( 186M)
 17.938s: MFCA req.
 18.094s: MFCA req.
 18.094s: 0.415ms 18432k at:0xf3200000 Alloc LP ( 204M)
 18.125s: 0.150ms  6144k at:0xf2c00000 Alloc LP ( 210M)
 18.266s: 0.155ms  6144k at:0xf2600000 Alloc LP ( 216M)
 18.266s: 0.156ms  6144k at:0xf2000000 Alloc LP ( 222M)
 19.157s: 0.151ms  6144k at:0xf1a00000 Alloc LP ( 228M)
 19.157s: 0.053ms  6144k at:0xf1a00000 Free     ( 222M)
 19.188s: 0.104ms  4096k at:0xf1c00000 Alloc LP ( 226M)
 19.204s: 0.097ms  4096k at:0xf1800000 Alloc LP ( 230M)
 19.204s: 0.096ms  4096k at:0xf1400000 Alloc LP ( 234M)
 19.204s: 0.096ms  4096k at:0xf1000000 Alloc LP ( 238M)
 19.813s: 0.106ms  4096k at:0xf0c00000 Alloc LP ( 242M)
 19.813s: 0.097ms  4096k at:0xf0800000 Alloc LP ( 246M)
 19.813s: 0.095ms  4096k at:0xf0400000 Alloc LP ( 250M)
 19.813s: 0.099ms  4096k at:0xf0000000 Alloc LP ( 254M)
 22.313s: 0.106ms  4096k at:0xefc00000 Alloc LP ( 258M)
 22.313s: 0.099ms  4096k at:0xef800000 Alloc LP ( 262M)
 22.313s: 0.095ms  4096k at:0xef400000 Alloc LP ( 266M)
 22.313s: 0.098ms  4096k at:0xef000000 Alloc LP ( 270M)
 23.829s: 0.107ms  4096k at:0xeec00000 Alloc LP ( 274M)
 23.844s: 0.097ms  4096k at:0xee800000 Alloc LP ( 278M)
 23.844s: 0.095ms  4096k at:0xee400000 Alloc LP ( 282M)
 23.844s: 0.097ms  4096k at:0xee000000 Alloc LP ( 286M)
 23.938s: 0.108ms  4096k at:0xedc00000 Alloc LP ( 290M)
 23.938s: 0.099ms  4096k at:0xed800000 Alloc LP ( 294M)
 23.938s: 0.098ms  4096k at:0xed400000 Alloc LP ( 298M)
 23.938s: 0.096ms  4096k at:0xed000000 Alloc LP ( 302M)
 24.032s: 0.107ms  4096k at:0xecc00000 Alloc LP ( 306M)
 24.032s: 0.097ms  4096k at:0xec800000 Alloc LP ( 310M)
 24.047s: 0.097ms  4096k at:0xec400000 Alloc LP ( 314M)
 24.047s: 0.096ms  4096k at:0xec000000 Alloc LP ( 318M)
 24.860s: 0.380ms 14336k at:0xeb200000 Alloc LP ( 332M)
 25.719s: 0.331ms 14336k at:0xea400000 Alloc LP ( 346M)
 26.454s: 0.109ms  4096k at:0xea000000 Alloc LP ( 350M)
 26.469s: 0.104ms  4096k at:0xe9c00000 Alloc LP ( 354M)
 26.469s: 0.324ms 14336k at:0xe8e00000 Alloc LP ( 368M)
 26.469s: 0.103ms  4096k at:0xe8a00000 Alloc LP ( 372M)
 26.469s: 0.365ms  4096k at:0xe8600000 Alloc LP ( 376M)
 41.782s: MFCA req.
 68.282s: 0.139ms  4096k at:0xe8200000 Alloc LP ( 380M)
 68.282s: 0.104ms  4096k at:0xe7e00000 Alloc LP ( 384M)
 68.282s: 0.099ms  4096k at:0xe7a00000 Alloc LP ( 388M)
 68.282s: 0.097ms  4096k at:0xe7600000 Alloc LP ( 392M)
 69.422s: 0.006ms    16k at:0x15450000 Alloc SP ( 392M)
 74.829s: 0.341ms 14336k at:0xe6800000 Alloc LP ( 406M)
 85.110s: MFCA req.
112.704s: 0.334ms 14336k at:0xe5a00000 Alloc LP ( 420M)
209.391s: MFCA req.
257.500s: MFCA req.
278.172s: MFCA req.
320.969s: MFCA req.
320.969s: MFCA req.
321.047s: MFCA req.
321.047s: 0.054ms  6144k at:0xf2600000 Free     ( 414M)
321.047s: 0.147ms 18432k at:0xf3200000 Free     ( 396M)
321.047s: 1.502ms 67584k at:0xe1800000 Alloc LP ( 462M)
321.157s: 0.417ms 18432k at:0xf3200000 Alloc LP ( 480M)
321.219s: 0.422ms 18432k at:0xe0600000 Alloc LP ( 498M)
321.235s: 0.059ms  6144k at:0xf2000000 Free     ( 492M)
321.235s: 0.424ms 18432k at:0xdf400000 Alloc LP ( 510M)
322.875s: 0.423ms 18432k at:0xde200000 Alloc LP ( 528M)
322.954s: 0.106ms  4096k at:0xf2800000 Alloc LP ( 532M)
322.954s: 0.096ms  4096k at:0xf2400000 Alloc LP ( 536M)
322.954s: 0.095ms  4096k at:0xf2000000 Alloc LP ( 540M)
322.954s: 0.098ms  4096k at:0xdde00000 Alloc LP ( 544M)
323.016s: 0.109ms  4096k at:0xdda00000 Alloc LP ( 548M)
323.016s: 0.099ms  4096k at:0xdd600000 Alloc LP ( 552M)
323.016s: 0.100ms  4096k at:0xdd200000 Alloc LP ( 556M)
323.016s: 0.097ms  4096k at:0xdce00000 Alloc LP ( 560M)
323.063s: 0.111ms  4096k at:0xdca00000 Alloc LP ( 564M)
323.079s: 0.099ms  4096k at:0xdc600000 Alloc LP ( 568M)
323.079s: 0.100ms  4096k at:0xdc200000 Alloc LP ( 572M)
323.079s: 0.096ms  4096k at:0xdbe00000 Alloc LP ( 576M)
323.110s: 0.016ms    16k at:0x0ad70000 Alloc SP ( 576M)
323.125s: 0.110ms  4096k at:0xdba00000 Alloc LP ( 580M)
323.125s: 0.097ms  4096k at:0xdb600000 Alloc LP ( 584M)
323.141s: 0.097ms  4096k at:0xdb200000 Alloc LP ( 588M)
323.141s: 0.097ms  4096k at:0xdae00000 Alloc LP ( 592M)
323.188s: 0.111ms  4096k at:0xdaa00000 Alloc LP ( 596M)
323.188s: 0.097ms  4096k at:0xda600000 Alloc LP ( 600M)
323.188s: 0.097ms  4096k at:0xda200000 Alloc LP ( 604M)
323.188s: 0.097ms  4096k at:0xd9e00000 Alloc LP ( 608M)
323.250s: 0.111ms  4096k at:0xd9a00000 Alloc LP ( 612M)
323.250s: 0.108ms  4096k at:0xd9600000 Alloc LP ( 616M)
323.250s: 0.097ms  4096k at:0xd9200000 Alloc LP ( 620M)
323.250s: 0.097ms  4096k at:0xd8e00000 Alloc LP ( 624M)
323.297s: 0.111ms  4096k at:0xd8a00000 Alloc LP ( 628M)
323.313s: 0.102ms  4096k at:0xd8600000 Alloc LP ( 632M)
323.313s: 0.099ms  4096k at:0xd8200000 Alloc LP ( 636M)
323.313s: 0.096ms  4096k at:0xd7e00000 Alloc LP ( 640M)
323.344s: 0.008ms    16k at:0x0d890000 Alloc SP ( 640M)
323.360s: 0.111ms  4096k at:0xd7a00000 Alloc LP ( 644M)
323.375s: 0.098ms  4096k at:0xd7600000 Alloc LP ( 648M)
323.375s: 0.097ms  4096k at:0xd7200000 Alloc LP ( 652M)
323.375s: 0.097ms  4096k at:0xd6e00000 Alloc LP ( 656M)
323.422s: 0.112ms  4096k at:0xd6a00000 Alloc LP ( 660M)
323.422s: 0.099ms  4096k at:0xd6600000 Alloc LP ( 664M)
323.438s: 0.098ms  4096k at:0xd6200000 Alloc LP ( 668M)
323.438s: 0.097ms  4096k at:0xd5e00000 Alloc LP ( 672M)
323.485s: 0.113ms  4096k at:0xd5a00000 Alloc LP ( 676M)
323.485s: 0.098ms  4096k at:0xd5600000 Alloc LP ( 680M)
323.485s: 0.098ms  4096k at:0xd5200000 Alloc LP ( 684M)
323.485s: 0.095ms  4096k at:0xd4e00000 Alloc LP ( 688M)
323.532s: 0.113ms  4096k at:0xd4a00000 Alloc LP ( 692M)
323.547s: 0.105ms  4096k at:0xd4600000 Alloc LP ( 696M)
323.547s: 0.101ms  4096k at:0xd4200000 Alloc LP ( 700M)
323.547s: 0.097ms  4096k at:0xd3e00000 Alloc LP ( 704M)
323.579s: 0.018ms    16k at:0x0d8c0000 Alloc SP ( 704M)
323.594s: 0.113ms  4096k at:0xd3a00000 Alloc LP ( 708M)
323.594s: 0.099ms  4096k at:0xd3600000 Alloc LP ( 712M)
323.610s: 0.105ms  4096k at:0xd3200000 Alloc LP ( 716M)
323.610s: 0.096ms  4096k at:0xd2e00000 Alloc LP ( 720M)
323.657s: 0.112ms  4096k at:0xd2a00000 Alloc LP ( 724M)
323.657s: 0.099ms  4096k at:0xd2600000 Alloc LP ( 728M)
323.657s: 0.100ms  4096k at:0xd2200000 Alloc LP ( 732M)
323.672s: 0.098ms  4096k at:0xd1e00000 Alloc LP ( 736M)
323.719s: 0.113ms  4096k at:0xd1a00000 Alloc LP ( 740M)
323.719s: 0.106ms  4096k at:0xd1600000 Alloc LP ( 744M)
323.719s: 0.097ms  4096k at:0xd1200000 Alloc LP ( 748M)
323.719s: 0.097ms  4096k at:0xd0e00000 Alloc LP ( 752M)
324.422s: 0.203ms 18432k at:0xde200000 Free     ( 734M)
324.516s: 0.109ms  4096k at:0xdf000000 Alloc LP ( 738M)
324.516s: 0.096ms  4096k at:0xdec00000 Alloc LP ( 742M)
324.516s: 0.096ms  4096k at:0xde800000 Alloc LP ( 746M)
324.516s: 0.096ms  4096k at:0xde400000 Alloc LP ( 750M)
324.954s: 0.005ms    16k at:0x0d8e0000 Alloc SP ( 750M)
325.172s: 0.113ms  4096k at:0xd0a00000 Alloc LP ( 754M)
325.188s: 0.104ms  4096k at:0xd0600000 Alloc LP ( 758M)
325.188s: 0.099ms  4096k at:0xd0200000 Alloc LP ( 762M)
325.188s: 0.102ms  4096k at:0xcfe00000 Alloc LP ( 766M)
325.750s: 0.261ms 10240k at:0xcf400000 Alloc LP ( 776M)
325.844s: 0.116ms  4096k at:0xcf000000 Alloc LP ( 780M)
325.844s: 0.106ms  4096k at:0xcec00000 Alloc LP ( 784M)
325.844s: 0.103ms  4096k at:0xce800000 Alloc LP ( 788M)
325.844s: 0.102ms  4096k at:0xce400000 Alloc LP ( 792M)
325.907s: 0.116ms  4096k at:0xce000000 Alloc LP ( 796M)
325.907s: 0.097ms  4096k at:0xcdc00000 Alloc LP ( 800M)
325.922s: 0.102ms  4096k at:0xcd800000 Alloc LP ( 804M)
325.922s: 0.099ms  4096k at:0xcd400000 Alloc LP ( 808M)
328.375s: 0.113ms  4096k at:0xcd000000 Alloc LP ( 812M)
328.375s: 0.103ms  4096k at:0xccc00000 Alloc LP ( 816M)
328.375s: 0.100ms  4096k at:0xcc800000 Alloc LP ( 820M)
328.375s: 0.097ms  4096k at:0xcc400000 Alloc LP ( 824M)
328.844s: 0.010ms    16k at:0x0d8d0000 Alloc SP ( 824M)
329.125s: 0.114ms  4096k at:0xcc000000 Alloc LP ( 828M)
329.125s: 0.100ms  4096k at:0xcbc00000 Alloc LP ( 832M)
329.125s: 0.097ms  4096k at:0xcb800000 Alloc LP ( 836M)
329.141s: 0.098ms  4096k at:0xcb400000 Alloc LP ( 840M)
329.719s: 0.116ms  4096k at:0xcb000000 Alloc LP ( 844M)
329.719s: 0.100ms  4096k at:0xcac00000 Alloc LP ( 848M)
329.719s: 0.098ms  4096k at:0xca800000 Alloc LP ( 852M)
329.719s: 0.096ms  4096k at:0xca400000 Alloc LP ( 856M)
329.938s: 0.159ms  6144k at:0xc9e00000 Alloc LP ( 862M)
329.938s: 0.158ms  6144k at:0xc9800000 Alloc LP ( 868M)
329.938s: 0.157ms  6144k at:0xc9200000 Alloc LP ( 874M)
329.938s: 0.149ms  6144k at:0xc8c00000 Alloc LP ( 880M)
330.719s: 0.115ms  4096k at:0xc8800000 Alloc LP ( 884M)
330.719s: 0.105ms  4096k at:0xc8400000 Alloc LP ( 888M)
330.735s: 0.099ms  4096k at:0xc8000000 Alloc LP ( 892M)
330.735s: 0.096ms  4096k at:0xc7c00000 Alloc LP ( 896M)
331.782s: 0.353ms 14336k at:0xc6e00000 Alloc LP ( 910M)
332.141s: 0.018ms    16k at:0x0d8b0000 Alloc SP ( 910M)
332.188s: 0.116ms  4096k at:0xc6a00000 Alloc LP ( 914M)
332.188s: 0.112ms  4096k at:0xc6600000 Alloc LP ( 918M)
332.188s: 0.103ms  4096k at:0xc6200000 Alloc LP ( 922M)
332.188s: 0.100ms  4096k at:0xc5e00000 Alloc LP ( 926M)
333.454s: 0.037ms  4096k at:0xc6200000 Free     ( 922M)
333.672s: 0.338ms 14336k at:0xc5000000 Alloc LP ( 936M)
333.672s: 0.116ms 14336k at:0xc5000000 Free     ( 922M)
333.688s: 0.121ms  4096k at:0xc6200000 Alloc LP ( 926M)
333.688s: 0.102ms  4096k at:0xc5a00000 Alloc LP ( 930M)
333.688s: 0.098ms  4096k at:0xc5600000 Alloc LP ( 934M)
333.688s: 0.098ms  4096k at:0xc5200000 Alloc LP ( 938M)
335.157s: 0.123ms  4096k at:0xc4e00000 Alloc LP ( 942M)
335.157s: 0.097ms  4096k at:0xc4a00000 Alloc LP ( 946M)
335.157s: 0.101ms  4096k at:0xc4600000 Alloc LP ( 950M)
335.157s: 0.097ms  4096k at:0xc4200000 Alloc LP ( 954M)
336.282s: 0.116ms  4096k at:0xc3e00000 Alloc LP ( 958M)
336.282s: 0.097ms  4096k at:0xc3a00000 Alloc LP ( 962M)
336.282s: 0.097ms  4096k at:0xc3600000 Alloc LP ( 966M)
336.282s: 0.100ms  4096k at:0xc3200000 Alloc LP ( 970M)
337.188s: 0.339ms 14336k at:0xc2400000 Alloc LP ( 984M)
337.985s: 0.414ms 16384k at:0xc1400000 Alloc LP (1000M)
360.829s: 0.007ms    16k at:0x0d900000 Alloc SP (1000M)
374.954s: 0.116ms  4096k at:0xc1000000 Alloc LP (1004M)
374.954s: 0.099ms  4096k at:0xc0c00000 Alloc LP (1008M)
374.954s: 0.097ms  4096k at:0xc0800000 Alloc LP (1012M)
374.954s: 0.101ms  4096k at:0xc0400000 Alloc LP (1016M)
410.594s: 0.114ms  4096k at:0xc0000000 Alloc LP (1020M)
410.610s: 0.102ms  4096k at:0xbfc00000 Alloc LP (1024M)
410.610s: 0.099ms  4096k at:0xbf800000 Alloc LP (1028M)
410.610s: 0.097ms  4096k at:0xbf400000 Alloc LP (1032M)
450.985s: 0.386ms 16384k at:0xbe400000 Alloc LP (1048M)
454.688s: 0.136ms 16384k at:0xbe400000 Free     (1032M)
462.985s: 0.129ms  4096k at:0xbf000000 Alloc LP (1036M)
462.985s: 0.099ms  4096k at:0xbec00000 Alloc LP (1040M)
463.000s: 0.099ms  4096k at:0xbe800000 Alloc LP (1044M)
463.000s: 0.099ms  4096k at:0xbe400000 Alloc LP (1048M)
473.594s: 0.039ms  4096k at:0xbe800000 Free     (1044M)
518.610s: 0.384ms 16384k at:0xbd400000 Alloc LP (1060M)
521.797s: 0.158ms 16384k at:0xbd400000 Free     (1044M)
522.438s: 0.385ms 16384k at:0xbd400000 Alloc LP (1060M)
533.454s: 0.118ms  4096k at:0xbe800000 Alloc LP (1064M)
533.469s: 0.099ms  4096k at:0xbd000000 Alloc LP (1068M)
533.469s: 0.098ms  4096k at:0xbcc00000 Alloc LP (1072M)
533.469s: 0.097ms  4096k at:0xbc800000 Alloc LP (1076M)
546.250s: 0.008ms    16k at:0x0d6d0000 Alloc SP (1076M)
610.516s: 0.386ms 16384k at:0xbb800000 Alloc LP (1092M)
660.516s: 0.116ms  4096k at:0xbb400000 Alloc LP (1096M)
660.516s: 0.103ms  4096k at:0xbb000000 Alloc LP (1100M)
660.516s: 0.098ms  4096k at:0xbac00000 Alloc LP (1104M)
660.516s: 0.097ms  4096k at:0xba800000 Alloc LP (1108M)
711.672s: 0.118ms  4096k at:0xba400000 Alloc LP (1112M)
711.688s: 0.102ms  4096k at:0xba000000 Alloc LP (1116M)
711.688s: 0.102ms  4096k at:0xb9c00000 Alloc LP (1120M)
711.688s: 0.102ms  4096k at:0xb9800000 Alloc LP (1124M)
744.282s: 0.120ms  4096k at:0xb9400000 Alloc LP (1128M)
744.282s: 0.102ms  4096k at:0xb9000000 Alloc LP (1132M)
744.297s: 0.102ms  4096k at:0xb8c00000 Alloc LP (1136M)
744.297s: 0.101ms  4096k at:0xb8800000 Alloc LP (1140M)
819.579s: 0.009ms    16k at:0x0d920000 Alloc SP (1140M)
820.922s: 0.122ms  4096k at:0xb8400000 Alloc LP (1144M)
820.938s: 0.099ms  4096k at:0xb8000000 Alloc LP (1148M)
820.938s: 0.102ms  4096k at:0xb7c00000 Alloc LP (1152M)
820.938s: 0.100ms  4096k at:0xb7800000 Alloc LP (1156M)
981.719s: 0.120ms  4096k at:0xb7400000 Alloc LP (1160M)
981.719s: 0.118ms  4096k at:0xb7000000 Alloc LP (1164M)
981.719s: 0.115ms  4096k at:0xb6c00000 Alloc LP (1168M)
981.735s: 0.137ms  4096k at:0xb6800000 Alloc LP (1172M)
1021.938s: 0.385ms 16384k at:0xb5800000 Alloc LP (1188M)
1084.594s: 0.118ms  4096k at:0xb5400000 Alloc LP (1192M)
1084.594s: 0.102ms  4096k at:0xb5000000 Alloc LP (1196M)
1084.594s: 0.102ms  4096k at:0xb4c00000 Alloc LP (1200M)
1084.594s: 0.097ms  4096k at:0xb4800000 Alloc LP (1204M)
1175.938s: 0.123ms  4096k at:0xb4400000 Alloc LP (1208M)
1175.938s: 0.102ms  4096k at:0xb4000000 Alloc LP (1212M)
1175.938s: 0.102ms  4096k at:0xb3c00000 Alloc LP (1216M)
1175.938s: 0.097ms  4096k at:0xb3800000 Alloc LP (1220M)
1359.641s: 0.013ms    16k at:0x0da00000 Alloc SP (1220M)
1378.391s: 0.120ms  4096k at:0xb3400000 Alloc LP (1224M)
1378.391s: 0.105ms  4096k at:0xb3000000 Alloc LP (1228M)
1378.391s: 0.098ms  4096k at:0xb2c00000 Alloc LP (1232M)
1378.391s: 0.097ms  4096k at:0xb2800000 Alloc LP (1236M)
1439.625s: 0.121ms  4096k at:0xb2400000 Alloc LP (1240M)
1439.625s: 0.099ms  4096k at:0xb2000000 Alloc LP (1244M)
1439.625s: 0.097ms  4096k at:0xb1c00000 Alloc LP (1248M)
1439.625s: 0.102ms  4096k at:0xb1800000 Alloc LP (1252M)
1472.344s: 0.119ms  4096k at:0xb1400000 Alloc LP (1256M)
1472.344s: 0.105ms  4096k at:0xb1000000 Alloc LP (1260M)
1472.360s: 0.103ms  4096k at:0xb0c00000 Alloc LP (1264M)
1472.360s: 0.097ms  4096k at:0xb0800000 Alloc LP (1268M)
1532.641s: 0.393ms 16384k at:0xaf800000 Alloc LP (1284M)
1567.032s: 0.011ms    16k at:0x0da70000 Alloc SP (1284M)
1580.657s: 0.122ms  4096k at:0xaf400000 Alloc LP (1288M)
1580.657s: 0.108ms  4096k at:0xaf000000 Alloc LP (1292M)
1580.657s: 0.103ms  4096k at:0xaec00000 Alloc LP (1296M)
1580.657s: 0.104ms  4096k at:0xae800000 Alloc LP (1300M)
1623.063s: 0.121ms  4096k at:0xae400000 Alloc LP (1304M)
1623.063s: 0.100ms  4096k at:0xae000000 Alloc LP (1308M)
1623.063s: 0.098ms  4096k at:0xadc00000 Alloc LP (1312M)
1623.063s: 0.097ms  4096k at:0xad800000 Alloc LP (1316M)
1636.563s: 0.121ms  4096k at:0xad400000 Alloc LP (1320M)
1636.563s: 0.099ms  4096k at:0xad000000 Alloc LP (1324M)
1636.563s: 0.098ms  4096k at:0xacc00000 Alloc LP (1328M)
1636.579s: 0.098ms  4096k at:0xac800000 Alloc LP (1332M)
1680.282s: 0.123ms  4096k at:0xac400000 Alloc LP (1336M)
1680.282s: 0.101ms  4096k at:0xac000000 Alloc LP (1340M)
1680.282s: 0.097ms  4096k at:0xabc00000 Alloc LP (1344M)
1680.282s: 0.099ms  4096k at:0xab800000 Alloc LP (1348M)
1682.235s: 0.008ms    16k at:0x0d930000 Alloc SP (1348M)
1706.250s: 0.129ms  4096k at:0xab400000 Alloc LP (1352M)
1706.250s: 0.120ms  4096k at:0xab000000 Alloc LP (1356M)
1706.266s: 0.125ms  4096k at:0xaac00000 Alloc LP (1360M)
1706.266s: 0.147ms  4096k at:0xaa800000 Alloc LP (1364M)
1799.110s: 0.388ms 16384k at:0xa9800000 Alloc LP (1380M)
1834.766s: 0.124ms  4096k at:0xa9400000 Alloc LP (1384M)
1834.766s: 0.104ms  4096k at:0xa9000000 Alloc LP (1388M)
1834.766s: 0.100ms  4096k at:0xa8c00000 Alloc LP (1392M)
1834.766s: 0.102ms  4096k at:0xa8800000 Alloc LP (1396M)
1949.047s: 0.126ms  4096k at:0xa8400000 Alloc LP (1400M)
1949.047s: 0.117ms  4096k at:0xa8000000 Alloc LP (1404M)
1949.047s: 0.126ms  4096k at:0xa7c00000 Alloc LP (1408M)
1949.063s: 0.103ms  4096k at:0xa7800000 Alloc LP (1412M)
2089.016s: 0.010ms    16k at:0x0db10000 Alloc SP (1412M)
2090.735s: 0.129ms  4096k at:0xa7400000 Alloc LP (1416M)
2090.735s: 0.125ms  4096k at:0xa7000000 Alloc LP (1420M)
2090.750s: 0.126ms  4096k at:0xa6c00000 Alloc LP (1424M)
2090.750s: 0.101ms  4096k at:0xa6800000 Alloc LP (1428M)
2186.657s: 0.536ms 16384k at:0xa5800000 Alloc LP (1444M)
2186.672s: 0.045ms  4096k at:0xa7000000 Free     (1440M)
2398.110s: 0.392ms 16384k at:0xa4800000 Alloc LP (1456M)
2549.579s: 0.139ms  4096k at:0xa7000000 Alloc LP (1460M)
2549.579s: 0.167ms  4096k at:0xa4400000 Alloc LP (1464M)
2549.594s: 0.122ms  4096k at:0xa4000000 Alloc LP (1468M)
2549.594s: 0.102ms  4096k at:0xa3c00000 Alloc LP (1472M)
2726.563s: 0.190ms  4096k at:0xa3800000 Alloc LP (1476M)
2726.563s: 0.130ms  4096k at:0xa3400000 Alloc LP (1480M)
2726.579s: 0.144ms  4096k at:0xa3000000 Alloc LP (1484M)
2726.579s: 0.110ms  4096k at:0xa2c00000 Alloc LP (1488M)
2799.000s: 0.040ms  4096k at:0xa3400000 Free     (1484M)
2806.282s: 0.390ms 16384k at:0xa1c00000 Alloc LP (1500M)
2822.141s: 0.010ms    16k at:0x0daf0000 Alloc SP (1500M)
2829.844s: 0.128ms  4096k at:0xa3400000 Alloc LP (1504M)
2829.860s: 0.122ms  4096k at:0xa1800000 Alloc LP (1508M)
2829.860s: 0.103ms  4096k at:0xa1400000 Alloc LP (1512M)
2829.860s: 0.098ms  4096k at:0xa1000000 Alloc LP (1516M)
2932.719s: 0.125ms  4096k at:0xa0c00000 Alloc LP (1520M)
2932.719s: 0.108ms  4096k at:0xa0800000 Alloc LP (1524M)
2932.719s: 0.104ms  4096k at:0xa0400000 Alloc LP (1528M)
2932.719s: 0.099ms  4096k at:0xa0000000 Alloc LP (1532M)
3027.016s: 0.407ms 16384k at:0x9f000000 Alloc LP (1548M)
3119.500s: MFCA req.
3121.891s: 0.054ms  6144k at:0xc9e00000 Free     (1542M)
3121.907s: 0.055ms  6144k at:0xc9800000 Free     (1536M)
3122.047s: 0.055ms  6144k at:0xc9200000 Free     (1530M)
3122.047s: 0.052ms  6144k at:0xc8c00000 Free     (1524M)
3122.704s: MFCA req.
3124.391s: 0.164ms  6144k at:0xc9e00000 Alloc LP (1530M)
3124.391s: 0.157ms  6144k at:0xc9800000 Alloc LP (1536M)
3124.407s: 0.154ms  6144k at:0xc9200000 Alloc LP (1542M)
3124.407s: 0.148ms  6144k at:0xc8c00000 Alloc LP (1548M)
3128.610s: 0.089ms 10240k at:0xcf400000 Free     (1538M)
3129.032s: 0.042ms  4096k at:0xd5600000 Free     (1534M)
3129.032s: 0.036ms  4096k at:0xd5200000 Free     (1530M)
3129.032s: 0.040ms  4096k at:0xd5e00000 Free     (1526M)
3129.047s: 0.039ms  4096k at:0xd4e00000 Free     (1522M)
3129.063s: MFCA req.
3129.063s: 0.154ms 18432k at:0xf3200000 Free     (1504M)
3129.063s: 0.146ms 18432k at:0xe0600000 Free     (1486M)
3129.079s: 0.041ms  4096k at:0xcec00000 Free     (1482M)
3129.079s: 0.037ms  4096k at:0xce400000 Free     (1478M)
3129.094s: 0.519ms 67584k at:0xe1800000 Free     (1412M)
3129.110s: 0.041ms  4096k at:0xd6600000 Free     (1408M)
3129.141s: 0.038ms  4096k at:0xd4a00000 Free     (1404M)
3129.157s: 0.249ms 18432k at:0xdf400000 Free     (1386M)
3129.172s: 0.038ms  4096k at:0xdd600000 Free     (1382M)
3129.172s: 0.037ms  4096k at:0xd8600000 Free     (1378M)
3129.172s: 0.054ms  6144k at:0xc9200000 Free     (1372M)
3129.188s: 0.053ms  6144k at:0xc8c00000 Free     (1366M)
3129.188s: 0.070ms  6144k at:0xc9800000 Free     (1360M)
3129.188s: 0.053ms  6144k at:0xc9e00000 Free     (1354M)
3129.188s: 0.038ms  4096k at:0xd5a00000 Free     (1350M)
3129.204s: 0.075ms  4096k at:0xd1e00000 Free     (1346M)
3129.219s: 0.038ms  4096k at:0xf2000000 Free     (1342M)
3129.219s: 0.037ms  4096k at:0xef400000 Free     (1338M)
3129.219s: 0.038ms  4096k at:0xee000000 Free     (1334M)
3129.219s: 0.035ms  4096k at:0xed400000 Free     (1330M)
3129.235s: 0.036ms  4096k at:0xef800000 Free     (1326M)
3129.235s: 0.039ms  4096k at:0xefc00000 Free     (1322M)
3129.235s: 0.036ms  4096k at:0xed000000 Free     (1318M)
3129.235s: 0.038ms  4096k at:0xedc00000 Free     (1314M)
3129.235s: 0.035ms  4096k at:0xee400000 Free     (1310M)
3129.250s: 0.036ms  4096k at:0xee800000 Free     (1306M)
3129.391s: 0.038ms  4096k at:0xd8e00000 Free     (1302M)
3129.407s: 0.041ms  4096k at:0xed800000 Free     (1298M)
3129.407s: 0.037ms  4096k at:0xd8200000 Free     (1294M)
3129.407s: 0.036ms  4096k at:0xd7600000 Free     (1290M)
3129.438s: 0.039ms  4096k at:0xdbe00000 Free     (1286M)
3129.438s: 0.036ms  4096k at:0xce800000 Free     (1282M)
3129.438s: 0.036ms  4096k at:0xce000000 Free     (1278M)
3129.438s: 0.041ms  4096k at:0xdce00000 Free     (1274M)
3129.719s: 0.037ms  4096k at:0xf2800000 Free     (1270M)
3129.766s: 0.271ms 34816k at:0xf7400000 Free     (1236M)
3130.344s: 0.038ms  4096k at:0xeec00000 Free     (1232M)
3130.360s: 0.042ms  4096k at:0xfbc00000 Free     (1228M)
3130.360s: 0.042ms  4096k at:0xdde00000 Free     (1224M)
3130.360s: 0.037ms  4096k at:0xdd200000 Free     (1220M)
3130.375s: 0.038ms  4096k at:0xd9a00000 Free     (1216M)
3130.375s: 0.036ms  4096k at:0xfb000000 Free     (1212M)
3130.375s: 0.037ms  4096k at:0xf0800000 Free     (1208M)
3130.375s: 0.037ms  4096k at:0xf6000000 Free     (1204M)
3130.375s: 0.037ms  4096k at:0xfe000000 Free     (1200M)
3130.375s: 0.131ms 16384k at:0x9f000000 Free     (1184M)
3130.375s: 0.036ms  4096k at:0xa0000000 Free     (1180M)
3130.391s: 0.036ms  4096k at:0xa0400000 Free     (1176M)
3130.391s: 0.035ms  4096k at:0xa0800000 Free     (1172M)
3130.391s: 0.037ms  4096k at:0xa0c00000 Free     (1168M)
3130.391s: 0.035ms  4096k at:0xa1000000 Free     (1164M)
3130.391s: 0.036ms  4096k at:0xa1400000 Free     (1160M)
3130.407s: 0.036ms  4096k at:0xa1800000 Free     (1156M)
3130.407s: 0.037ms  4096k at:0xa3400000 Free     (1152M)
3130.407s: 0.131ms 16384k at:0xa1c00000 Free     (1136M)
3130.407s: 0.037ms  4096k at:0xa2c00000 Free     (1132M)
3130.407s: 0.035ms  4096k at:0xa3000000 Free     (1128M)
3130.407s: 0.035ms  4096k at:0xa3800000 Free     (1124M)
3130.407s: 0.036ms  4096k at:0xa3c00000 Free     (1120M)
3130.407s: 0.035ms  4096k at:0xa4000000 Free     (1116M)
3130.407s: 0.036ms  4096k at:0xa4400000 Free     (1112M)
3130.407s: 0.035ms  4096k at:0xa7000000 Free     (1108M)
3130.422s: 0.130ms 16384k at:0xa4800000 Free     (1092M)
3130.422s: 0.129ms 16384k at:0xa5800000 Free     (1076M)
3130.422s: 0.036ms  4096k at:0xa6800000 Free     (1072M)
3130.422s: 0.035ms  4096k at:0xa6c00000 Free     (1068M)
3130.438s: 0.036ms  4096k at:0xa7400000 Free     (1064M)
3130.438s: 0.036ms  4096k at:0xa7800000 Free     (1060M)
3130.438s: 0.039ms  4096k at:0xa7c00000 Free     (1056M)
3130.438s: 0.036ms  4096k at:0xa8000000 Free     (1052M)
3130.438s: 0.055ms  4096k at:0xa8400000 Free     (1048M)
3130.438s: 0.036ms  4096k at:0xa8800000 Free     (1044M)
3130.438s: 0.042ms  4096k at:0xa8c00000 Free     (1040M)
3130.438s: 0.036ms  4096k at:0xa9000000 Free     (1036M)
3130.438s: 0.035ms  4096k at:0xa9400000 Free     (1032M)
3130.454s: 0.132ms 16384k at:0xa9800000 Free     (1016M)
3130.454s: 0.035ms  4096k at:0xaa800000 Free     (1012M)
3130.454s: 0.036ms  4096k at:0xaac00000 Free     (1008M)
3130.454s: 0.037ms  4096k at:0xab000000 Free     (1004M)
3130.469s: 0.035ms  4096k at:0xab400000 Free     (1000M)
3130.469s: 0.036ms  4096k at:0xab800000 Free     ( 996M)
3130.469s: 0.036ms  4096k at:0xabc00000 Free     ( 992M)
3130.469s: 0.035ms  4096k at:0xac000000 Free     ( 988M)
3130.469s: 0.036ms  4096k at:0xac400000 Free     ( 984M)
3130.469s: 0.036ms  4096k at:0xac800000 Free     ( 980M)
3130.469s: 0.035ms  4096k at:0xacc00000 Free     ( 976M)
3130.469s: 0.036ms  4096k at:0xad000000 Free     ( 972M)
3130.469s: 0.036ms  4096k at:0xad400000 Free     ( 968M)
3130.485s: 0.036ms  4096k at:0xad800000 Free     ( 964M)
3130.485s: 0.036ms  4096k at:0xadc00000 Free     ( 960M)
3130.485s: 0.036ms  4096k at:0xae000000 Free     ( 956M)
3130.485s: 0.036ms  4096k at:0xae400000 Free     ( 952M)
3130.485s: 0.036ms  4096k at:0xae800000 Free     ( 948M)
3130.500s: 0.036ms  4096k at:0xaec00000 Free     ( 944M)
3130.500s: 0.037ms  4096k at:0xaf000000 Free     ( 940M)
3130.500s: 0.037ms  4096k at:0xaf400000 Free     ( 936M)
3130.500s: 0.130ms 16384k at:0xaf800000 Free     ( 920M)
3130.500s: 0.036ms  4096k at:0xb0800000 Free     ( 916M)
3130.500s: 0.044ms  4096k at:0xb0c00000 Free     ( 912M)
3130.500s: 0.036ms  4096k at:0xb1000000 Free     ( 908M)
3130.500s: 0.037ms  4096k at:0xb1400000 Free     ( 904M)
3130.500s: 0.036ms  4096k at:0xb1800000 Free     ( 900M)
3130.516s: 0.036ms  4096k at:0xb1c00000 Free     ( 896M)
3130.516s: 0.037ms  4096k at:0xb2000000 Free     ( 892M)
3130.516s: 0.036ms  4096k at:0xb2400000 Free     ( 888M)
3130.516s: 0.037ms  4096k at:0xb2800000 Free     ( 884M)
3130.516s: 0.036ms  4096k at:0xb2c00000 Free     ( 880M)
3130.516s: 0.046ms  4096k at:0xb3000000 Free     ( 876M)
3130.516s: 0.035ms  4096k at:0xb3400000 Free     ( 872M)
3130.516s: 0.035ms  4096k at:0xb3800000 Free     ( 868M)
3130.532s: 0.036ms  4096k at:0xb3c00000 Free     ( 864M)
3130.532s: 0.036ms  4096k at:0xb4000000 Free     ( 860M)
3130.532s: 0.037ms  4096k at:0xb4400000 Free     ( 856M)
3130.532s: 0.037ms  4096k at:0xb4800000 Free     ( 852M)
3130.532s: 0.036ms  4096k at:0xb4c00000 Free     ( 848M)
3130.547s: 0.035ms  4096k at:0xb5000000 Free     ( 844M)
3130.547s: 0.042ms  4096k at:0xb5400000 Free     ( 840M)
3130.547s: 0.130ms 16384k at:0xb5800000 Free     ( 824M)
3130.547s: 0.036ms  4096k at:0xb6800000 Free     ( 820M)
3130.547s: 0.059ms  4096k at:0xb6c00000 Free     ( 816M)
3130.547s: 0.036ms  4096k at:0xb7000000 Free     ( 812M)
3130.547s: 0.037ms  4096k at:0xb7400000 Free     ( 808M)
3130.547s: 0.036ms  4096k at:0xb7800000 Free     ( 804M)
3130.563s: 0.042ms  4096k at:0xb7c00000 Free     ( 800M)
3130.563s: 0.036ms  4096k at:0xb8000000 Free     ( 796M)
3130.563s: 0.037ms  4096k at:0xb8400000 Free     ( 792M)
3130.563s: 0.036ms  4096k at:0xb8800000 Free     ( 788M)
3130.563s: 0.035ms  4096k at:0xb8c00000 Free     ( 784M)
3130.579s: 0.036ms  4096k at:0xb9000000 Free     ( 780M)
3130.579s: 0.037ms  4096k at:0xb9400000 Free     ( 776M)
3130.579s: 0.037ms  4096k at:0xb9800000 Free     ( 772M)
3130.579s: 0.036ms  4096k at:0xb9c00000 Free     ( 768M)
3130.579s: 0.037ms  4096k at:0xba000000 Free     ( 764M)
3130.579s: 0.037ms  4096k at:0xba400000 Free     ( 760M)
3130.579s: 0.035ms  4096k at:0xba800000 Free     ( 756M)
3130.579s: 0.036ms  4096k at:0xbac00000 Free     ( 752M)
3130.594s: 0.035ms  4096k at:0xbb000000 Free     ( 748M)
3130.594s: 0.037ms  4096k at:0xbb400000 Free     ( 744M)
3130.594s: 0.139ms 16384k at:0xbb800000 Free     ( 728M)
3130.594s: 0.036ms  4096k at:0xbc800000 Free     ( 724M)
3130.610s: 0.035ms  4096k at:0xbcc00000 Free     ( 720M)
3130.610s: 0.036ms  4096k at:0xbd000000 Free     ( 716M)
3130.610s: 0.042ms  4096k at:0xbe800000 Free     ( 712M)
3130.610s: 0.131ms 16384k at:0xbd400000 Free     ( 696M)
3130.610s: 0.036ms  4096k at:0xbe400000 Free     ( 692M)
3130.610s: 0.037ms  4096k at:0xbec00000 Free     ( 688M)
3130.610s: 0.036ms  4096k at:0xbf000000 Free     ( 684M)
3130.610s: 0.075ms  4096k at:0xbf400000 Free     ( 680M)
3130.625s: 0.036ms  4096k at:0xbf800000 Free     ( 676M)
3130.625s: 0.038ms  4096k at:0xbfc00000 Free     ( 672M)
3130.625s: 0.036ms  4096k at:0xc0000000 Free     ( 668M)
3130.625s: 0.036ms  4096k at:0xc0400000 Free     ( 664M)
3130.625s: 0.035ms  4096k at:0xc0800000 Free     ( 660M)
3130.625s: 0.036ms  4096k at:0xc0c00000 Free     ( 656M)
3130.625s: 0.036ms  4096k at:0xc1000000 Free     ( 652M)
3130.625s: 0.132ms 16384k at:0xc1400000 Free     ( 636M)
3130.625s: 0.115ms 14336k at:0xc2400000 Free     ( 622M)
3130.641s: 0.037ms  4096k at:0xc3200000 Free     ( 618M)
3130.641s: 0.036ms  4096k at:0xc3600000 Free     ( 614M)
3130.641s: 0.037ms  4096k at:0xc3a00000 Free     ( 610M)
3130.641s: 0.035ms  4096k at:0xc3e00000 Free     ( 606M)
3130.657s: 0.037ms  4096k at:0xc4200000 Free     ( 602M)
3130.657s: 0.040ms  4096k at:0xc4600000 Free     ( 598M)
3130.657s: 0.036ms  4096k at:0xc4a00000 Free     ( 594M)
3130.657s: 0.036ms  4096k at:0xc4e00000 Free     ( 590M)
3130.657s: 0.037ms  4096k at:0xc5200000 Free     ( 586M)
3130.657s: 0.037ms  4096k at:0xc5600000 Free     ( 582M)
3130.657s: 0.054ms  4096k at:0xc5a00000 Free     ( 578M)
3130.672s: 0.039ms  4096k at:0xc6200000 Free     ( 574M)
3130.672s: 0.042ms  4096k at:0xc5e00000 Free     ( 570M)
3130.672s: 0.036ms  4096k at:0xc6600000 Free     ( 566M)
3130.672s: 0.036ms  4096k at:0xc6a00000 Free     ( 562M)
3130.672s: 0.123ms 14336k at:0xc6e00000 Free     ( 548M)
3130.688s: 0.041ms  4096k at:0xc7c00000 Free     ( 544M)
3130.688s: 0.043ms  4096k at:0xc8000000 Free     ( 540M)
3130.688s: 0.038ms  4096k at:0xc8400000 Free     ( 536M)
3130.688s: 0.038ms  4096k at:0xc8800000 Free     ( 532M)
3130.688s: 0.037ms  4096k at:0xca400000 Free     ( 528M)
3130.704s: 0.069ms  4096k at:0xca800000 Free     ( 524M)
3130.704s: 0.042ms  4096k at:0xcac00000 Free     ( 520M)
3130.704s: 0.042ms  4096k at:0xcb000000 Free     ( 516M)
3130.719s: 0.043ms  4096k at:0xcb400000 Free     ( 512M)
3130.719s: 0.039ms  4096k at:0xcb800000 Free     ( 508M)
3130.719s: 0.040ms  4096k at:0xcbc00000 Free     ( 504M)
3130.719s: 0.037ms  4096k at:0xcc000000 Free     ( 500M)
3130.719s: 0.036ms  4096k at:0xcc400000 Free     ( 496M)
3130.719s: 0.037ms  4096k at:0xcc800000 Free     ( 492M)
3130.719s: 0.041ms  4096k at:0xccc00000 Free     ( 488M)
3130.735s: 0.037ms  4096k at:0xcd000000 Free     ( 484M)
3130.735s: 0.042ms  4096k at:0xcd400000 Free     ( 480M)
3130.735s: 0.036ms  4096k at:0xcd800000 Free     ( 476M)
3130.735s: 0.037ms  4096k at:0xcdc00000 Free     ( 472M)
3130.750s: 0.037ms  4096k at:0xcf000000 Free     ( 468M)
3130.750s: 0.037ms  4096k at:0xcfe00000 Free     ( 464M)
3130.750s: 0.038ms  4096k at:0xd0200000 Free     ( 460M)
3130.750s: 0.041ms  4096k at:0xd0600000 Free     ( 456M)
3130.750s: 0.042ms  4096k at:0xd0a00000 Free     ( 452M)
3130.750s: 0.044ms  4096k at:0xde400000 Free     ( 448M)
3130.750s: 0.045ms  4096k at:0xde800000 Free     ( 444M)
3130.766s: 0.044ms  4096k at:0xdec00000 Free     ( 440M)
3130.766s: 0.040ms  4096k at:0xdf000000 Free     ( 436M)
3130.766s: 0.050ms  4096k at:0xd0e00000 Free     ( 432M)
3130.766s: 0.037ms  4096k at:0xd1200000 Free     ( 428M)
3130.766s: 0.042ms  4096k at:0xd1600000 Free     ( 424M)
3130.766s: 0.036ms  4096k at:0xd1a00000 Free     ( 420M)
3130.782s: 0.036ms  4096k at:0xd2200000 Free     ( 416M)
3130.782s: 0.041ms  4096k at:0xd2600000 Free     ( 412M)
3130.782s: 0.038ms  4096k at:0xd2a00000 Free     ( 408M)
3130.797s: 0.049ms  4096k at:0xd2e00000 Free     ( 404M)
3130.797s: 0.043ms  4096k at:0xd3200000 Free     ( 400M)
3130.797s: 0.039ms  4096k at:0xd3600000 Free     ( 396M)
3130.797s: 0.066ms  4096k at:0xd3a00000 Free     ( 392M)
3130.797s: 0.041ms  4096k at:0xd3e00000 Free     ( 388M)
3130.797s: 0.037ms  4096k at:0xd4200000 Free     ( 384M)
3130.813s: 0.038ms  4096k at:0xd4600000 Free     ( 380M)
3130.813s: 0.035ms  4096k at:0xd6200000 Free     ( 376M)
3130.813s: 0.036ms  4096k at:0xd6a00000 Free     ( 372M)
3130.829s: 0.056ms  4096k at:0xd6e00000 Free     ( 368M)
3130.829s: 0.037ms  4096k at:0xd7200000 Free     ( 364M)
3130.829s: 0.037ms  4096k at:0xd7a00000 Free     ( 360M)
3130.829s: 0.035ms  4096k at:0xd7e00000 Free     ( 356M)
3130.829s: 0.037ms  4096k at:0xd8a00000 Free     ( 352M)
3130.829s: 0.035ms  4096k at:0xd9200000 Free     ( 348M)
3130.829s: 0.057ms  4096k at:0xd9600000 Free     ( 344M)
3130.829s: 0.036ms  4096k at:0xd9e00000 Free     ( 340M)
3130.844s: 0.037ms  4096k at:0xda200000 Free     ( 336M)
3130.844s: 0.036ms  4096k at:0xda600000 Free     ( 332M)
3130.844s: 0.036ms  4096k at:0xdaa00000 Free     ( 328M)
3130.844s: 0.036ms  4096k at:0xdae00000 Free     ( 324M)
3130.844s: 0.036ms  4096k at:0xdb200000 Free     ( 320M)
3130.860s: 0.052ms  4096k at:0xdb600000 Free     ( 316M)
3130.860s: 0.035ms  4096k at:0xdba00000 Free     ( 312M)
3130.860s: 0.035ms  4096k at:0xdc200000 Free     ( 308M)
3130.860s: 0.036ms  4096k at:0xdc600000 Free     ( 304M)
3130.860s: 0.037ms  4096k at:0xdca00000 Free     ( 300M)
3130.860s: 0.037ms  4096k at:0xdda00000 Free     ( 296M)
3130.860s: 0.035ms  4096k at:0xf2400000 Free     ( 292M)
3130.860s: 0.149ms 14336k at:0xe5a00000 Free     ( 278M)
3130.875s: 0.118ms 14336k at:0xe6800000 Free     ( 264M)
3130.875s: 0.035ms  4096k at:0xe7600000 Free     ( 260M)
3130.875s: 0.035ms  4096k at:0xe7a00000 Free     ( 256M)
3130.875s: 0.035ms  4096k at:0xe7e00000 Free     ( 252M)
3130.875s: 0.035ms  4096k at:0xe8200000 Free     ( 248M)
3130.875s: 0.035ms  4096k at:0xe8600000 Free     ( 244M)
3130.875s: 0.053ms  4096k at:0xe8a00000 Free     ( 240M)
3130.875s: 0.116ms 14336k at:0xe8e00000 Free     ( 226M)
3130.875s: 0.035ms  4096k at:0xe9c00000 Free     ( 222M)
3130.891s: 0.036ms  4096k at:0xea000000 Free     ( 218M)
3130.891s: 0.115ms 14336k at:0xea400000 Free     ( 204M)
3130.891s: 0.115ms 14336k at:0xeb200000 Free     ( 190M)
3130.891s: 0.035ms  4096k at:0xec000000 Free     ( 186M)
3130.907s: 0.059ms  4096k at:0xec400000 Free     ( 182M)
3130.907s: 0.036ms  4096k at:0xec800000 Free     ( 178M)
3130.907s: 0.036ms  4096k at:0xecc00000 Free     ( 174M)
3130.907s: 0.036ms  4096k at:0xef000000 Free     ( 170M)
3130.907s: 0.036ms  4096k at:0xf0000000 Free     ( 166M)
3130.907s: 0.036ms  4096k at:0xf0400000 Free     ( 162M)
3130.907s: 0.036ms  4096k at:0xf0c00000 Free     ( 158M)
3130.907s: 0.046ms  4096k at:0xf1000000 Free     ( 154M)
3130.922s: 0.037ms  4096k at:0xf1400000 Free     ( 150M)
3130.922s: 0.035ms  4096k at:0xf1800000 Free     ( 146M)
3130.922s: 0.036ms  4096k at:0xf1c00000 Free     ( 142M)
3130.922s: 0.052ms  6144k at:0xf2c00000 Free     ( 136M)
3130.922s: 0.036ms  4096k at:0xf4400000 Free     ( 132M)
3130.938s: 0.036ms  4096k at:0xf4800000 Free     ( 128M)
3130.938s: 0.053ms  4096k at:0xf4c00000 Free     ( 124M)
3130.938s: 0.036ms  4096k at:0xf5000000 Free     ( 120M)
3130.938s: 0.036ms  4096k at:0xf5400000 Free     ( 116M)
3130.938s: 0.035ms  4096k at:0xf5800000 Free     ( 112M)
3130.938s: 0.035ms  4096k at:0xf5c00000 Free     ( 108M)
3130.938s: 0.069ms  4096k at:0xf6400000 Free     ( 104M)
3130.938s: 0.036ms  4096k at:0xf6800000 Free     ( 100M)
3130.954s: 0.037ms  4096k at:0xf6c00000 Free     (  96M)
3130.954s: 0.037ms  4096k at:0xf7000000 Free     (  92M)
3130.954s: 0.115ms 14336k at:0xf9600000 Free     (  78M)
3130.954s: 0.036ms  4096k at:0xfa400000 Free     (  74M)
3130.969s: 0.035ms  4096k at:0xfa800000 Free     (  70M)
3130.969s: 0.036ms  4096k at:0xfac00000 Free     (  66M)
3130.969s: 0.035ms  4096k at:0xfb400000 Free     (  62M)
3130.969s: 0.037ms  4096k at:0xfb800000 Free     (  58M)
3130.969s: 0.036ms  4096k at:0xfc000000 Free     (  54M)
3130.969s: 0.035ms  4096k at:0xfc400000 Free     (  50M)
3130.969s: 0.035ms  4096k at:0xfc800000 Free     (  46M)
3130.969s: 0.035ms  4096k at:0xfcc00000 Free     (  42M)
3130.969s: 0.036ms  4096k at:0xfd000000 Free     (  38M)
3130.985s: 0.037ms  4096k at:0xfd400000 Free     (  34M)
3130.985s: 0.036ms  4096k at:0xfd800000 Free     (  30M)
3130.985s: 0.035ms  4096k at:0xfdc00000 Free     (  26M)
3130.985s: 0.037ms  4096k at:0xfe400000 Free     (  22M)
3131.000s: 0.037ms  4096k at:0xfe800000 Free     (  18M)
3131.000s: 0.036ms  4096k at:0xfec00000 Free     (  14M)
3131.000s: 0.036ms  4096k at:0xff000000 Free     (  10M)
3131.000s: 0.067ms  8192k at:0xff400000 Free     (   2M)
3131.000s: 0.024ms  2048k at:0xffc00000 Free     (   0M)
3131.000s: regAllocTotalDur:   43.653ms LOCstat: 65667/71695:91.6% TLSLeft:  3 handledAccessViolations:  0

Share this post


Link to post
Share on other sites
... thanks for your feedback and log ...

The usage of large pages is an optional feature of this experimental custom memory allocator, implemented to get the highest possible memory access speed.

Two conditions have to meet to make this feature fully available:

- the 'lock pages in memory' privileg have to be set for arma user (is already set correctly on your system)

- enough large pages (continous 2M blocks in phys. RAM) have to be available

This line in your log is not an error:

4.306s: 4.034ms 4096k at:0x00000000 Alloc LP failed -> fallback

It just means, that your OS memory manager can't find enough large pages (2 in this case) to satisfy this current VirtualAlloc (large page) allocation attempt.

In such a case, tbbmalloc is making a second allocation attempt (now with small pages, fallback) and disables the usage of large pages, for any further region allocation.

It is very likely that your system memory is highly fragmented in such a scenario.

On a fresh restarted system you have less fragmentation and most large pages available.

Fragmentation proceeding depends on amount of available phys. RAM and system load.

The usage of large pages is not the only advantage of tbbmalloc compared with the default one.

So don't be worried, if your system can't satisfy all allocations as large pages.

Thanks for clearing that up - it makes sense since we have a large number of gameservers etc running1

Share this post


Link to post
Share on other sites
... AFAIK, this Secpol.msc (or gpedit.msc) is only directly available for the prof. and up editions of windows, but there are several ways to make it available on home and standard editions too (i think i remember via registry tweaks) ...

Can anyone help me find those registry tweaks?

Share this post


Link to post
Share on other sites

Hey fred,

The program works (on win8.1) and I now have huge pages enabled on my client now...... many thanks.

Share this post


Link to post
Share on other sites

@kremator, i am glad to read this :)

Can you please post some logs from your win 8.1 system, to compare the timings with logs from NoPOW?

(Just want verify, that win 8.1 is the only reason for that impressiv LP allocation performance)

Share this post


Link to post
Share on other sites
Of course I can Fred. Will attach them to this post in a couple of hours.

https://www.dropbox.com/sh/luq339bg2u3re4j/LfLL73-yTE

TONS on there in folder called Huge Pages.

Cheers and thanks.

... thanks, that are enough as a start :)

Three related questions:

Are all this logs from the same system?

How much phys. RAM is present on your win 8.1 system?

What windows 8.1 edition is it (home premium or starter)?

Share this post


Link to post
Share on other sites

Same system. Win8.1 64bit 4.3GHz i5 4670, 8Gb RAM, Home Premium (I think).

I also have logs for my Win7 64bit 3.8GHz i7 920, 12Gb RAM, Home Premium, if you want them too.

I am pleased with what I have so far. Seems pretty stable, but I don't really know what I'm looking for :)

Share this post


Link to post
Share on other sites

I Think i have a problem,... :(

SeLockMemoryPrivilege: denied, huge pages disabled

  0.000s: 0.005ms  2048k at:0x07190000 Alloc SP (   2M)
  0.000s: 0.006ms   128k at:0x00320000 Alloc SP (   2M)
  0.015s: 0.005ms  1728k at:0x07b90000 Alloc SP (   3M)
  0.015s: 0.005ms  1024k at:0x07e40000 Alloc SP (   4M)
  0.015s: 0.004ms  1024k at:0x07f40000 Alloc SP (   5M)
  0.015s: 0.004ms  1024k at:0x08040000 Alloc SP (   6M)
  0.015s: 0.004ms  1024k at:0x08140000 Alloc SP (   7M)
  8.093s: 0.009ms  1024k at:0x0b2b0000 Alloc SP (   8M)
  8.093s: 0.006ms  1024k at:0x0b3b0000 Alloc SP (   9M)
  8.093s: 0.004ms  1024k at:0x0b4b0000 Alloc SP (  10M)
  8.093s: 0.006ms  1024k at:0x0b5b0000 Alloc SP (  11M)
 11.312s: 0.010ms  1024k at:0x0b8a0000 Alloc SP (  12M)
 11.328s: 0.006ms  1024k at:0x0d8d0000 Alloc SP (  13M)
 11.328s: 0.006ms  1024k at:0x0d9d0000 Alloc SP (  14M)
 11.328s: 0.009ms  1024k at:0x0dad0000 Alloc SP (  15M)
 11.421s: 0.010ms  1024k at:0x0dbd0000 Alloc SP (  16M)
 11.421s: 0.008ms  1024k at:0x0dcd0000 Alloc SP (  17M)
 11.421s: 0.010ms  1024k at:0x0ddd0000 Alloc SP (  18M)
 11.421s: 0.007ms  1024k at:0x0ded0000 Alloc SP (  19M)
 11.515s: 0.011ms  1024k at:0x0dfd0000 Alloc SP (  20M)
 11.515s: 0.005ms  1024k at:0x0e0d0000 Alloc SP (  21M)
 11.515s: 0.006ms  1024k at:0x0e1d0000 Alloc SP (  22M)
 11.531s: 0.010ms  1024k at:0x0e2d0000 Alloc SP (  23M)
 11.609s: 0.017ms  1024k at:0x0e3d0000 Alloc SP (  24M)
 11.609s: 0.007ms  1024k at:0x0e4d0000 Alloc SP (  25M)
 11.625s: 0.007ms  1024k at:0x0e5d0000 Alloc SP (  26M)
 11.625s: 0.006ms  1024k at:0x0e6d0000 Alloc SP (  27M)
 11.734s: 0.010ms  1024k at:0x0e7d0000 Alloc SP (  28M)
 11.734s: 0.005ms  1024k at:0x0e8d0000 Alloc SP (  29M)
 11.734s: 0.007ms  1024k at:0x0e9d0000 Alloc SP (  30M)
 11.734s: 0.007ms  1024k at:0x0ead0000 Alloc SP (  31M)
 11.812s: 0.012ms  1024k at:0x0ebd0000 Alloc SP (  32M)
 11.812s: 0.015ms  1024k at:0x0ecd0000 Alloc SP (  33M)
 11.812s: 0.010ms  1024k at:0x0edd0000 Alloc SP (  34M)
 11.812s: 0.005ms  1024k at:0x0eed0000 Alloc SP (  35M)
 14.046s: 0.011ms  1024k at:0x0efd0000 Alloc SP (  36M)
 14.046s: 0.009ms  1024k at:0x0f0d0000 Alloc SP (  37M)
 14.046s: 0.007ms  1024k at:0x0f1d0000 Alloc SP (  38M)
 14.046s: 0.006ms  1024k at:0x0f2d0000 Alloc SP (  39M)
 15.031s: 0.012ms  1024k at:0x0f3d0000 Alloc SP (  40M)
 15.046s: 0.015ms  1024k at:0x0f4d0000 Alloc SP (  41M)
 15.046s: 0.007ms  1024k at:0x0f5d0000 Alloc SP (  42M)
 15.046s: 0.010ms  1024k at:0x0f6d0000 Alloc SP (  43M)
 15.531s: 0.010ms  1088k at:0x0f8d0000 Alloc SP (  44M)
 15.609s: 0.018ms  2112k at:0x0f9e0000 Alloc SP (  46M)
 15.656s: 0.015ms  1024k at:0x0fbf0000 Alloc SP (  47M)
 15.656s: 0.009ms  1024k at:0x0fcf0000 Alloc SP (  48M)
 15.656s: 0.007ms  1024k at:0x0fdf0000 Alloc SP (  49M)
 15.671s: 0.008ms  1024k at:0x0fef0000 Alloc SP (  50M)
 15.765s: 0.016ms  3136k at:0x10090000 Alloc SP (  54M)
 15.953s: 0.066ms  2112k at:0x0f9e0000 Free     (  51M)
 15.953s: 0.062ms  1088k at:0x0f8d0000 Free     (  50M)
 16.687s: 0.016ms  1024k at:0x0f8d0000 Alloc SP (  51M)
 16.687s: 0.011ms  1024k at:0x0f9d0000 Alloc SP (  52M)
 16.687s: 0.007ms  1024k at:0x0fad0000 Alloc SP (  53M)
 16.687s: 0.006ms  1024k at:0x103a0000 Alloc SP (  54M)
 17.328s: 0.012ms  1024k at:0x104a0000 Alloc SP (  55M)
 17.343s: 0.015ms  1024k at:0x105a0000 Alloc SP (  56M)
 17.343s: 0.011ms  1024k at:0x106a0000 Alloc SP (  57M)
 17.343s: 0.008ms  1024k at:0x107a0000 Alloc SP (  58M)
 18.062s: 0.011ms  1024k at:0x108a0000 Alloc SP (  59M)
 18.062s: 0.010ms  1024k at:0x109a0000 Alloc SP (  60M)
 18.062s: 0.011ms  1024k at:0x10aa0000 Alloc SP (  61M)
 18.062s: 0.005ms  1024k at:0x10ba0000 Alloc SP (  62M)
 18.156s: 0.012ms  1024k at:0x10ca0000 Alloc SP (  63M)
 18.156s: 0.010ms  1024k at:0x10da0000 Alloc SP (  64M)
 18.171s: 0.007ms  1024k at:0x10ea0000 Alloc SP (  65M)
 18.171s: 0.009ms  1024k at:0x10fa0000 Alloc SP (  66M)
 19.015s: 0.013ms  1024k at:0x110a0000 Alloc SP (  67M)
 19.015s: 0.013ms  1024k at:0x111a0000 Alloc SP (  68M)
 19.015s: 0.006ms  1024k at:0x112a0000 Alloc SP (  69M)
 19.015s: 0.009ms  1024k at:0x113a0000 Alloc SP (  70M)
 20.375s: 0.013ms  1024k at:0x114a0000 Alloc SP (  71M)
 20.375s: 0.011ms  1024k at:0x115a0000 Alloc SP (  72M)
 20.375s: 0.010ms  1024k at:0x116a0000 Alloc SP (  73M)
 20.375s: 0.006ms  1024k at:0x117a0000 Alloc SP (  74M)
 21.062s: 0.015ms  1024k at:0x118a0000 Alloc SP (  75M)
 21.062s: 0.024ms  1024k at:0x119a0000 Alloc SP (  76M)
 21.078s: 0.021ms  1024k at:0x11aa0000 Alloc SP (  77M)
 21.078s: 0.014ms  1024k at:0x11ba0000 Alloc SP (  78M)
 21.609s: 0.020ms  1024k at:0x11ca0000 Alloc SP (  79M)
 21.609s: 0.011ms  1024k at:0x11da0000 Alloc SP (  80M)
 21.609s: 0.014ms  1024k at:0x11ea0000 Alloc SP (  81M)
 21.609s: 0.008ms  1024k at:0x11fa0000 Alloc SP (  82M)
 21.703s: 0.018ms  1024k at:0x120a0000 Alloc SP (  83M)
 21.703s: 0.009ms  1024k at:0x121a0000 Alloc SP (  84M)
 21.703s: 0.005ms  1024k at:0x122a0000 Alloc SP (  85M)
 21.718s: 0.006ms  1024k at:0x123a0000 Alloc SP (  86M)
 21.921s: 0.019ms  1024k at:0x124a0000 Alloc SP (  87M)
 21.968s: 0.018ms  1024k at:0x125a0000 Alloc SP (  88M)
 21.968s: 0.010ms  1024k at:0x126a0000 Alloc SP (  89M)
 21.984s: 0.017ms  1024k at:0x127a0000 Alloc SP (  90M)
 22.171s: 0.018ms  1024k at:0x128a0000 Alloc SP (  91M)
 22.171s: 0.008ms  1024k at:0x129a0000 Alloc SP (  92M)
 22.171s: 0.014ms  1024k at:0x12aa0000 Alloc SP (  93M)
 22.171s: 0.009ms  1024k at:0x12ba0000 Alloc SP (  94M)
 23.843s: 0.013ms  1024k at:0x12ca0000 Alloc SP (  95M)
 23.843s: 0.010ms  1024k at:0x12da0000 Alloc SP (  96M)
 23.843s: 0.007ms  1024k at:0x12ea0000 Alloc SP (  97M)
 23.843s: 0.007ms  1024k at:0x12fa0000 Alloc SP (  98M)
 24.171s: 0.016ms  3072k at:0x130a0000 Alloc SP ( 101M)
 24.171s: 0.018ms 33344k at:0x133a0000 Alloc SP ( 134M)
 25.281s: 0.008ms  4160k at:0x192b0000 Alloc SP ( 138M)
 27.984s: 0.013ms  5504k at:0x19dd0000 Alloc SP ( 143M)
 27.984s: 0.012ms  1216k at:0x1a330000 Alloc SP ( 145M)
 28.000s: 0.316ms  5504k at:0x19dd0000 Free     ( 139M)
 28.093s: 0.064ms  1216k at:0x1a330000 Free     ( 138M)
 28.500s: 0.009ms  1024k at:0x19cc0000 Alloc SP ( 139M)
 28.500s: 0.012ms  1024k at:0x19dc0000 Alloc SP ( 140M)
 28.500s: 0.008ms  1024k at:0x1a2f0000 Alloc SP ( 141M)
 28.515s: 0.010ms  1024k at:0x1b590000 Alloc SP ( 142M)
 29.062s: 0.008ms  1024k at:0x1bf90000 Alloc SP ( 143M)
 29.062s: 0.009ms  1024k at:0x1c090000 Alloc SP ( 144M)
 29.062s: 0.024ms  1024k at:0x1c190000 Alloc SP ( 145M)
 29.078s: 0.016ms  1024k at:0x1c290000 Alloc SP ( 146M)
 29.984s: 0.009ms  1024k at:0x1c390000 Alloc SP ( 147M)
 29.984s: 0.010ms  1024k at:0x1c490000 Alloc SP ( 148M)
 29.984s: 0.016ms  1024k at:0x1c590000 Alloc SP ( 149M)
 29.984s: 0.009ms  1024k at:0x1c690000 Alloc SP ( 150M)
 30.500s: 0.011ms  1472k at:0x1d420000 Alloc SP ( 151M)
 30.562s: 0.015ms  1152k at:0x1d590000 Alloc SP ( 153M)
 30.828s: 0.012ms  4160k at:0x1d810000 Alloc SP ( 157M)
 32.187s: 0.014ms  2112k at:0x1e680000 Alloc SP ( 159M)
 32.375s: 0.087ms  1472k at:0x1d420000 Free     ( 157M)
 32.437s: 0.066ms  1152k at:0x1d590000 Free     ( 156M)
 35.468s: MemFlushCacheAll request
 35.515s: 0.027ms  1088k at:0x1d420000 Alloc SP ( 157M)
 35.515s: 0.013ms  1088k at:0x1d530000 Alloc SP ( 158M)
 35.515s: 0.009ms  1088k at:0x1ec90000 Alloc SP ( 159M)
 35.515s: 0.109ms  2112k at:0x1e680000 Free     ( 157M)
 38.453s: 0.014ms  1024k at:0x1e680000 Alloc SP ( 158M)
 38.468s: 0.015ms  1024k at:0x1e780000 Alloc SP ( 159M)
 38.468s: 0.013ms  1024k at:0x1f130000 Alloc SP ( 160M)
 38.468s: 0.021ms  1024k at:0x1f230000 Alloc SP ( 161M)
 38.968s: 0.015ms  1024k at:0x1f330000 Alloc SP ( 162M)
 38.968s: 0.009ms  1024k at:0x1f430000 Alloc SP ( 163M)
 38.968s: 0.012ms  1024k at:0x1f530000 Alloc SP ( 164M)
 38.968s: 0.010ms  1024k at:0x1f630000 Alloc SP ( 165M)
 39.421s: 0.012ms  1024k at:0x1f730000 Alloc SP ( 166M)
 39.437s: 0.011ms  1024k at:0x1f830000 Alloc SP ( 167M)
 39.437s: 0.014ms  1024k at:0x1f930000 Alloc SP ( 168M)
 39.437s: 0.007ms  1024k at:0x1fa30000 Alloc SP ( 169M)
 40.046s: 0.027ms  1024k at:0x1ff30000 Alloc SP ( 170M)
 40.046s: 0.017ms  1024k at:0x20030000 Alloc SP ( 171M)
 40.046s: 0.010ms  1024k at:0x20130000 Alloc SP ( 172M)
 40.046s: 0.011ms  1024k at:0x20230000 Alloc SP ( 173M)
 40.187s: 0.014ms  1024k at:0x20330000 Alloc SP ( 174M)
 40.187s: 0.011ms  1024k at:0x20430000 Alloc SP ( 175M)
 40.187s: 0.008ms  1024k at:0x20530000 Alloc SP ( 176M)
 40.203s: 0.017ms  1024k at:0x20630000 Alloc SP ( 177M)
 40.359s: 0.015ms  1024k at:0x1d010000 Alloc SP ( 178M)
 40.359s: 0.021ms  1024k at:0x1d110000 Alloc SP ( 179M)
 40.359s: 0.012ms  1024k at:0x1d210000 Alloc SP ( 180M)
 40.359s: 0.010ms  1024k at:0x1d310000 Alloc SP ( 181M)
 43.093s: 0.024ms  4160k at:0x1e880000 Alloc SP ( 185M)
 43.468s: 0.007ms  1088k at:0x21d70000 Alloc SP ( 186M)
 44.906s: MemFlushCacheAll request
 44.921s: 0.061ms  1088k at:0x1ec90000 Free     ( 185M)
 45.000s: 0.056ms  1024k at:0x0e6d0000 Free     ( 184M)
 45.015s: 0.053ms  1024k at:0x0e4d0000 Free     ( 183M)
 45.015s: 0.047ms  1024k at:0x0e5d0000 Free     ( 182M)
 45.031s: 0.054ms  1024k at:0x0dcd0000 Free     ( 181M)
 45.031s: 0.060ms  1024k at:0x20530000 Free     ( 180M)
 45.031s: 0.055ms  1024k at:0x0dfd0000 Free     ( 179M)
 45.062s: 0.054ms  1024k at:0x1e680000 Free     ( 178M)
 45.062s: 0.049ms  1024k at:0x1f130000 Free     ( 177M)
 45.078s: 0.048ms  1024k at:0x1f630000 Free     ( 176M)
 45.078s: 0.023ms 33344k at:0x133a0000 Free     ( 144M)
 45.187s: 0.061ms  1024k at:0x119a0000 Free     ( 143M)
 45.187s: 0.060ms  1024k at:0x0e1d0000 Free     ( 142M)
 45.203s: 0.061ms  1024k at:0x11ea0000 Free     ( 141M)
 45.203s: 0.165ms  3072k at:0x130a0000 Free     ( 138M)
 45.203s: 0.051ms  1024k at:0x11aa0000 Free     ( 137M)
 45.203s: 0.055ms  1024k at:0x11da0000 Free     ( 136M)
 45.203s: 0.057ms  1024k at:0x123a0000 Free     ( 135M)
 45.218s: 0.059ms  1024k at:0x122a0000 Free     ( 134M)
 45.218s: 0.065ms  1024k at:0x0fbf0000 Free     ( 133M)
 45.218s: 0.051ms  1024k at:0x0fef0000 Free     ( 132M)
 45.234s: 0.054ms  1024k at:0x0fdf0000 Free     ( 131M)
 45.234s: 0.054ms  1024k at:0x0f4d0000 Free     ( 130M)
 45.234s: 0.057ms  1024k at:0x1f530000 Free     ( 129M)
 45.250s: 0.067ms  1024k at:0x1f330000 Free     ( 128M)
 45.250s: 0.059ms  1024k at:0x19cc0000 Free     ( 127M)
 45.250s: 0.062ms  1088k at:0x21d70000 Free     ( 126M)
 45.281s: 0.062ms  1024k at:0x11fa0000 Free     ( 125M)
 45.281s: 0.054ms  1024k at:0x0d8d0000 Free     ( 124M)
 45.281s: 0.055ms  1024k at:0x120a0000 Free     ( 123M)
 45.281s: 0.056ms  1024k at:0x11ca0000 Free     ( 122M)
 45.281s: 0.053ms  1024k at:0x1ff30000 Free     ( 121M)
 45.281s: 0.057ms  1024k at:0x0e0d0000 Free     ( 120M)
 45.296s: 0.057ms  1024k at:0x20230000 Free     ( 119M)
 45.296s: 0.056ms  1024k at:0x1f230000 Free     ( 118M)
 45.296s: 0.050ms  1024k at:0x20130000 Free     ( 117M)
 45.296s: 0.053ms  1024k at:0x1e780000 Free     ( 116M)
 45.296s: 0.058ms  1024k at:0x121a0000 Free     ( 115M)
 45.296s: 0.053ms  1024k at:0x20030000 Free     ( 114M)
 45.296s: 0.054ms  1024k at:0x0edd0000 Free     ( 113M)
 45.312s: 0.055ms  1024k at:0x20330000 Free     ( 112M)
 45.312s: 0.058ms  1024k at:0x12ca0000 Free     ( 111M)
 45.312s: 0.051ms  1024k at:0x1f830000 Free     ( 110M)
 45.312s: 0.051ms  1024k at:0x1f930000 Free     ( 109M)
 45.312s: 0.052ms  1024k at:0x0e2d0000 Free     ( 108M)
 45.312s: 0.054ms  1024k at:0x1f430000 Free     ( 107M)
 45.312s: 0.054ms  1024k at:0x124a0000 Free     ( 106M)
 45.312s: 0.056ms  1024k at:0x0e9d0000 Free     ( 105M)
 45.328s: 0.054ms  1024k at:0x0ebd0000 Free     ( 104M)
 45.328s: 0.069ms  1024k at:0x0ddd0000 Free     ( 103M)
 45.328s: 0.054ms  1024k at:0x0e8d0000 Free     ( 102M)
 45.328s: 0.054ms  1024k at:0x0b3b0000 Free     ( 101M)
 45.328s: 0.064ms  1024k at:0x109a0000 Free     ( 100M)
 45.328s: 0.056ms  1024k at:0x0ead0000 Free     (  99M)
 45.328s: 0.056ms  1024k at:0x0e7d0000 Free     (  98M)
 45.328s: 0.053ms  1024k at:0x0ded0000 Free     (  97M)
 45.343s: regAllocTotalDur:    1.647ms LOCstat:    30/  381: 7.9%
 45.343s: 0.208ms  4160k at:0x1e880000 Free     (  93M)
 45.343s: 0.081ms  1024k at:0x1d310000 Free     (  92M)
 45.343s: 0.026ms  1024k at:0x1d210000 Free     (  91M)
 45.343s: 0.058ms  1024k at:0x1d110000 Free     (  90M)
 45.343s: 0.049ms  1024k at:0x1d010000 Free     (  89M)
 45.359s: 0.059ms  1024k at:0x20630000 Free     (  88M)
 45.359s: 0.057ms  1024k at:0x20430000 Free     (  87M)
 45.359s: 0.056ms  1024k at:0x1fa30000 Free     (  86M)
 45.359s: 0.054ms  1024k at:0x1f730000 Free     (  85M)
 45.359s: 0.055ms  1088k at:0x1d530000 Free     (  84M)
 45.359s: 0.057ms  1088k at:0x1d420000 Free     (  83M)
 45.359s: 0.216ms  4160k at:0x1d810000 Free     (  78M)
 45.359s: 0.057ms  1024k at:0x1c690000 Free     (  77M)
 45.375s: 0.056ms  1024k at:0x1c590000 Free     (  76M)
 45.375s: 0.053ms  1024k at:0x1c490000 Free     (  75M)
 45.375s: 0.057ms  1024k at:0x1c390000 Free     (  74M)
 45.375s: 0.058ms  1024k at:0x1c290000 Free     (  73M)
 45.375s: 0.057ms  1024k at:0x1c190000 Free     (  72M)
 45.375s: 0.054ms  1024k at:0x1c090000 Free     (  71M)
 45.375s: 0.072ms  1024k at:0x1bf90000 Free     (  70M)
 45.375s: 0.056ms  1024k at:0x1b590000 Free     (  69M)
 45.390s: 0.053ms  1024k at:0x1a2f0000 Free     (  68M)
 45.390s: 0.062ms  1024k at:0x19dc0000 Free     (  67M)
 45.390s: 0.278ms  4160k at:0x192b0000 Free     (  63M)
 45.390s: 0.056ms  1024k at:0x12fa0000 Free     (  62M)
 45.390s: 0.054ms  1024k at:0x12ea0000 Free     (  61M)
 45.390s: 0.027ms  1024k at:0x12da0000 Free     (  60M)
 45.390s: 0.069ms  1024k at:0x12ba0000 Free     (  59M)
 45.406s: 0.053ms  1024k at:0x12aa0000 Free     (  58M)
 45.406s: 0.057ms  1024k at:0x129a0000 Free     (  57M)
 45.406s: 0.052ms  1024k at:0x128a0000 Free     (  56M)
 45.406s: 0.055ms  1024k at:0x127a0000 Free     (  55M)
 45.406s: 0.053ms  1024k at:0x126a0000 Free     (  54M)
 45.406s: 0.055ms  1024k at:0x125a0000 Free     (  53M)
 45.406s: 0.054ms  1024k at:0x11ba0000 Free     (  52M)
 45.406s: 0.051ms  1024k at:0x118a0000 Free     (  51M)
 45.406s: 0.055ms  1024k at:0x117a0000 Free     (  50M)
 45.421s: 0.054ms  1024k at:0x116a0000 Free     (  49M)
 45.421s: 0.050ms  1024k at:0x115a0000 Free     (  48M)
 45.421s: 0.052ms  1024k at:0x114a0000 Free     (  47M)
 45.421s: 0.053ms  1024k at:0x113a0000 Free     (  46M)
 45.421s: 0.121ms  1024k at:0x112a0000 Free     (  45M)
 45.421s: 0.051ms  1024k at:0x111a0000 Free     (  44M)
 45.421s: 0.061ms  1024k at:0x110a0000 Free     (  43M)
 45.421s: 0.053ms  1024k at:0x10fa0000 Free     (  42M)
 45.437s: 0.052ms  1024k at:0x10ea0000 Free     (  41M)
 45.437s: 0.053ms  1024k at:0x10da0000 Free     (  40M)
 45.437s: 0.051ms  1024k at:0x10ca0000 Free     (  39M)
 45.437s: 0.056ms  1024k at:0x10ba0000 Free     (  38M)
 45.437s: 0.052ms  1024k at:0x10aa0000 Free     (  37M)
 45.437s: 0.053ms  1024k at:0x108a0000 Free     (  36M)
 45.437s: 0.067ms  1024k at:0x107a0000 Free     (  35M)
 45.437s: 0.058ms  1024k at:0x106a0000 Free     (  34M)
 45.453s: 0.052ms  1024k at:0x105a0000 Free     (  33M)
 45.453s: 0.079ms  1024k at:0x104a0000 Free     (  32M)
 45.453s: 0.057ms  1024k at:0x103a0000 Free     (  31M)
 45.453s: 0.051ms  1024k at:0x0fad0000 Free     (  30M)
 45.453s: 0.052ms  1024k at:0x0f9d0000 Free     (  29M)
 45.453s: 0.050ms  1024k at:0x0f8d0000 Free     (  28M)
 45.453s: 0.159ms  3136k at:0x10090000 Free     (  25M)
 45.453s: 0.052ms  1024k at:0x0fcf0000 Free     (  24M)
 45.468s: 0.052ms  1024k at:0x0f6d0000 Free     (  23M)
 45.468s: 0.055ms  1024k at:0x0f5d0000 Free     (  22M)
 45.468s: 0.057ms  1024k at:0x0f3d0000 Free     (  21M)
 45.468s: 0.053ms  1024k at:0x0f2d0000 Free     (  20M)
 45.468s: 0.058ms  1024k at:0x0f1d0000 Free     (  19M)
 45.468s: 0.052ms  1024k at:0x0f0d0000 Free     (  18M)
 45.468s: 0.055ms  1024k at:0x0efd0000 Free     (  17M)
 45.468s: 0.052ms  1024k at:0x0eed0000 Free     (  16M)
 45.484s: 0.053ms  1024k at:0x0ecd0000 Free     (  15M)
 45.484s: 0.055ms  1024k at:0x0e3d0000 Free     (  14M)
 45.484s: 0.103ms  1024k at:0x0dbd0000 Free     (  13M)
 45.484s: 0.053ms  1024k at:0x0dad0000 Free     (  12M)
 45.484s: 0.053ms  1024k at:0x0d9d0000 Free     (  11M)
 45.484s: 0.053ms  1024k at:0x0b8a0000 Free     (  10M)
 45.484s: 0.054ms  1024k at:0x0b5b0000 Free     (   9M)
 45.484s: 0.054ms  1024k at:0x0b4b0000 Free     (   8M)
 45.500s: 0.054ms  1024k at:0x0b2b0000 Free     (   7M)
 45.500s: 0.055ms  1024k at:0x08140000 Free     (   6M)
 45.500s: 0.054ms  1024k at:0x08040000 Free     (   5M)
 45.500s: 0.060ms  1024k at:0x07f40000 Free     (   4M)
 45.500s: 0.072ms  1024k at:0x07e40000 Free     (   3M)
 45.500s: 0.019ms  1728k at:0x07b90000 Free     (   2M)
 45.500s: 0.158ms  2048k at:0x07190000 Free     (   0M)

Share this post


Link to post
Share on other sites

Nuno,

'SeLockMemoryPrivilege: denied, huge pages disabled' So the allocator is not being used properly.

Read other posts as to how to sort this.

Share this post


Link to post
Share on other sites

Done! ;)

SeLockMemoryPrivilege: granted, huge pages enabled

  0.015s: 0.059ms  2048k at:0xffc00000 Alloc LP (   2M)
  0.015s: 0.003ms   128k at:0x00220000 Alloc SP (   2M)
  0.031s: 0.210ms  8192k at:0xff400000 Alloc LP (  10M)
  5.703s: 0.062ms  2048k at:0xff200000 Alloc LP (  12M)
  5.719s: 0.058ms  2048k at:0xff000000 Alloc LP (  14M)
  5.719s: 0.056ms  2048k at:0xfee00000 Alloc LP (  16M)
  5.719s: 0.055ms  2048k at:0xfec00000 Alloc LP (  18M)
  5.875s: 0.062ms  2048k at:0xfea00000 Alloc LP (  20M)
  5.875s: 0.055ms  2048k at:0xfe800000 Alloc LP (  22M)
  5.875s: 0.055ms  2048k at:0xfe600000 Alloc LP (  24M)
  5.875s: 0.057ms  2048k at:0xfe400000 Alloc LP (  26M)
  6.031s: 0.062ms  2048k at:0xfe200000 Alloc LP (  28M)
  6.031s: 0.071ms  2048k at:0xfe000000 Alloc LP (  30M)
  6.031s: 0.058ms  2048k at:0xfde00000 Alloc LP (  32M)
  6.031s: 0.056ms  2048k at:0xfdc00000 Alloc LP (  34M)
  6.781s: 0.065ms  2048k at:0xfda00000 Alloc LP (  36M)
  6.781s: 0.056ms  2048k at:0xfd800000 Alloc LP (  38M)
  6.781s: 0.059ms  2048k at:0xfd600000 Alloc LP (  40M)
  6.781s: 0.055ms  2048k at:0xfd400000 Alloc LP (  42M)
  8.719s: 0.062ms  2048k at:0xfd200000 Alloc LP (  44M)
  8.734s: 0.061ms  2048k at:0xfd000000 Alloc LP (  46M)
  8.734s: 0.058ms  2048k at:0xfce00000 Alloc LP (  48M)
  8.734s: 0.058ms  2048k at:0xfcc00000 Alloc LP (  50M)
  8.953s: 0.112ms  4096k at:0xfc800000 Alloc LP (  54M)
  9.265s: 0.043ms  4096k at:0xfc800000 Free     (  50M)
  9.750s: 0.061ms  2048k at:0xfca00000 Alloc LP (  52M)
  9.750s: 0.061ms  2048k at:0xfc800000 Alloc LP (  54M)
  9.750s: 0.057ms  2048k at:0xfc600000 Alloc LP (  56M)
  9.750s: 0.070ms  2048k at:0xfc400000 Alloc LP (  58M)
 10.578s: 0.063ms  2048k at:0xfc200000 Alloc LP (  60M)
 10.578s: 0.060ms  2048k at:0xfc000000 Alloc LP (  62M)
 10.578s: 0.058ms  2048k at:0xfbe00000 Alloc LP (  64M)
 10.578s: 0.058ms  2048k at:0xfbc00000 Alloc LP (  66M)
 11.172s: 0.064ms  2048k at:0xfba00000 Alloc LP (  68M)
 11.172s: 0.060ms  2048k at:0xfb800000 Alloc LP (  70M)
 11.172s: 0.059ms  2048k at:0xfb600000 Alloc LP (  72M)
 11.172s: 0.058ms  2048k at:0xfb400000 Alloc LP (  74M)
 12.609s: 0.065ms  2048k at:0xfb200000 Alloc LP (  76M)
 12.609s: 0.060ms  2048k at:0xfb000000 Alloc LP (  78M)
 12.625s: 0.059ms  2048k at:0xfae00000 Alloc LP (  80M)
 12.625s: 0.058ms  2048k at:0xfac00000 Alloc LP (  82M)
 13.203s: 0.067ms  2048k at:0xfaa00000 Alloc LP (  84M)
 13.203s: 0.059ms  2048k at:0xfa800000 Alloc LP (  86M)
 13.203s: 0.058ms  2048k at:0xfa600000 Alloc LP (  88M)
 13.203s: 0.058ms  2048k at:0xfa400000 Alloc LP (  90M)
 13.562s: 0.067ms  2048k at:0xfa200000 Alloc LP (  92M)
 13.562s: 0.056ms  2048k at:0xfa000000 Alloc LP (  94M)
 13.562s: 0.056ms  2048k at:0xf9e00000 Alloc LP (  96M)
 13.562s: 0.058ms  2048k at:0xf9c00000 Alloc LP (  98M)
 15.609s: 0.121ms  4096k at:0xf9800000 Alloc LP ( 102M)
 15.625s: 0.886ms 34816k at:0xf7600000 Alloc LP ( 136M)
 16.859s: 0.213ms  8192k at:0xf6e00000 Alloc LP ( 144M)
 19.328s: 0.177ms  6144k at:0xf6800000 Alloc LP ( 150M)
 19.344s: 0.071ms  6144k at:0xf6800000 Free     ( 144M)
 21.672s: 0.066ms  2048k at:0xf6c00000 Alloc LP ( 146M)
 21.672s: 0.065ms  2048k at:0xf6a00000 Alloc LP ( 148M)
 21.672s: 0.063ms  2048k at:0xf6800000 Alloc LP ( 150M)
 21.672s: 0.058ms  2048k at:0xf6600000 Alloc LP ( 152M)
 23.562s: 0.215ms  8192k at:0xf5e00000 Alloc LP ( 160M)
 25.265s: 0.116ms  4096k at:0xf5a00000 Alloc LP ( 164M)
 28.500s: MemFlushCacheAll request
 28.531s: 0.217ms  8192k at:0xf5200000 Alloc LP ( 172M)
 28.547s: 0.041ms  4096k at:0xf5a00000 Free     ( 168M)
 32.078s: 0.068ms  2048k at:0xf5c00000 Alloc LP ( 170M)
 32.094s: 0.061ms  2048k at:0xf5a00000 Alloc LP ( 172M)
 32.094s: 0.059ms  2048k at:0xf5000000 Alloc LP ( 174M)
 32.094s: 0.058ms  2048k at:0xf4e00000 Alloc LP ( 176M)
 33.625s: 0.069ms  2048k at:0xf4c00000 Alloc LP ( 178M)
 33.640s: 0.064ms  2048k at:0xf4a00000 Alloc LP ( 180M)
 33.640s: 0.065ms  2048k at:0xf4800000 Alloc LP ( 182M)
 33.640s: 0.058ms  2048k at:0xf4600000 Alloc LP ( 184M)
 36.578s: 0.217ms  8192k at:0xf3e00000 Alloc LP ( 192M)
 61.312s: 0.217ms  8192k at:0xf3600000 Alloc LP ( 200M)
132.984s: MemFlushCacheAll request
133.219s: MemFlushCacheAll request
133.219s: 0.484ms 18432k at:0xf2400000 Alloc LP ( 218M)
133.250s: 0.212ms  6144k at:0xf1e00000 Alloc LP ( 224M)
133.297s: 0.168ms  6144k at:0xf1800000 Alloc LP ( 230M)
133.312s: 0.209ms  6144k at:0xf1200000 Alloc LP ( 236M)
133.625s: 0.168ms  6144k at:0xf0c00000 Alloc LP ( 242M)
133.640s: 0.059ms  6144k at:0xf0c00000 Free     ( 236M)
133.672s: 0.080ms  2048k at:0xf1000000 Alloc LP ( 238M)
133.672s: 0.058ms  2048k at:0xf0e00000 Alloc LP ( 240M)
133.672s: 0.057ms  2048k at:0xf0c00000 Alloc LP ( 242M)
133.672s: 0.056ms  2048k at:0xf0a00000 Alloc LP ( 244M)
133.703s: 0.068ms  2048k at:0xf0800000 Alloc LP ( 246M)
133.703s: 0.058ms  2048k at:0xf0600000 Alloc LP ( 248M)
133.703s: 0.057ms  2048k at:0xf0400000 Alloc LP ( 250M)
133.703s: 0.056ms  2048k at:0xf0200000 Alloc LP ( 252M)
135.078s: 0.067ms  2048k at:0xf0000000 Alloc LP ( 254M)
135.078s: 0.061ms  2048k at:0xefe00000 Alloc LP ( 256M)
135.078s: 0.058ms  2048k at:0xefc00000 Alloc LP ( 258M)
135.078s: 0.075ms  2048k at:0xefa00000 Alloc LP ( 260M)
136.750s: 0.068ms  2048k at:0xef800000 Alloc LP ( 262M)
136.750s: 0.061ms  2048k at:0xef600000 Alloc LP ( 264M)
136.750s: 0.060ms  2048k at:0xef400000 Alloc LP ( 266M)
136.765s: 0.072ms  2048k at:0xef200000 Alloc LP ( 268M)
141.406s: 0.070ms  2048k at:0xef000000 Alloc LP ( 270M)
141.422s: 0.060ms  2048k at:0xeee00000 Alloc LP ( 272M)
141.422s: 0.058ms  2048k at:0xeec00000 Alloc LP ( 274M)
141.422s: 0.057ms  2048k at:0xeea00000 Alloc LP ( 276M)
142.422s: 0.069ms  2048k at:0xee800000 Alloc LP ( 278M)
142.422s: 0.064ms  2048k at:0xee600000 Alloc LP ( 280M)
142.422s: 0.058ms  2048k at:0xee400000 Alloc LP ( 282M)
142.422s: 0.056ms  2048k at:0xee200000 Alloc LP ( 284M)
142.687s: 0.069ms  2048k at:0xee000000 Alloc LP ( 286M)
142.687s: 0.060ms  2048k at:0xede00000 Alloc LP ( 288M)
142.687s: 0.059ms  2048k at:0xedc00000 Alloc LP ( 290M)
142.687s: 0.061ms  2048k at:0xeda00000 Alloc LP ( 292M)
142.890s: 0.070ms  2048k at:0xed800000 Alloc LP ( 294M)
142.890s: 0.064ms  2048k at:0xed600000 Alloc LP ( 296M)
142.890s: 0.059ms  2048k at:0xed400000 Alloc LP ( 298M)
142.906s: 0.059ms  2048k at:0xed200000 Alloc LP ( 300M)
143.094s: 0.069ms  2048k at:0xed000000 Alloc LP ( 302M)
143.094s: 0.060ms  2048k at:0xece00000 Alloc LP ( 304M)
143.094s: 0.063ms  2048k at:0xecc00000 Alloc LP ( 306M)
143.109s: 0.059ms  2048k at:0xeca00000 Alloc LP ( 308M)
143.156s: 0.071ms  2048k at:0xec800000 Alloc LP ( 310M)
143.156s: 0.064ms  2048k at:0xec600000 Alloc LP ( 312M)
143.156s: 0.059ms  2048k at:0xec400000 Alloc LP ( 314M)
143.156s: 0.080ms  2048k at:0xec200000 Alloc LP ( 316M)
143.219s: 0.071ms  2048k at:0xec000000 Alloc LP ( 318M)
143.219s: 0.067ms  2048k at:0xebe00000 Alloc LP ( 320M)
143.219s: 0.060ms  2048k at:0xebc00000 Alloc LP ( 322M)
143.219s: 0.059ms  2048k at:0xeba00000 Alloc LP ( 324M)
144.406s: 0.070ms  2048k at:0xeb800000 Alloc LP ( 326M)
144.406s: 0.066ms  2048k at:0xeb600000 Alloc LP ( 328M)
144.406s: 0.061ms  2048k at:0xeb400000 Alloc LP ( 330M)
144.406s: 0.058ms  2048k at:0xeb200000 Alloc LP ( 332M)
147.031s: 0.220ms  8192k at:0xeaa00000 Alloc LP ( 340M)
147.781s: 0.220ms  8192k at:0xea200000 Alloc LP ( 348M)
148.375s: 0.071ms  2048k at:0xea000000 Alloc LP ( 350M)
148.375s: 0.069ms  2048k at:0xe9e00000 Alloc LP ( 352M)
148.375s: 0.061ms  2048k at:0xe9c00000 Alloc LP ( 354M)
148.375s: 0.059ms  2048k at:0xe9a00000 Alloc LP ( 356M)
149.000s: 0.072ms  2048k at:0xe9800000 Alloc LP ( 358M)
149.015s: 0.064ms  2048k at:0xe9600000 Alloc LP ( 360M)
149.015s: 0.059ms  2048k at:0xe9400000 Alloc LP ( 362M)
149.015s: 0.059ms  2048k at:0xe9200000 Alloc LP ( 364M)
150.594s: 0.230ms  8192k at:0xe8a00000 Alloc LP ( 372M)
152.078s: 0.011ms    16k at:0x0ad60000 Alloc SP ( 372M)
152.797s: 0.072ms  2048k at:0xe8800000 Alloc LP ( 374M)
152.797s: 0.063ms  2048k at:0xe8600000 Alloc LP ( 376M)
152.797s: 0.063ms  2048k at:0xe8400000 Alloc LP ( 378M)
152.797s: 0.059ms  2048k at:0xe8200000 Alloc LP ( 380M)
155.875s: 0.226ms  8192k at:0xe7a00000 Alloc LP ( 388M)
155.969s: 0.231ms  8192k at:0xe7200000 Alloc LP ( 396M)
155.984s: 0.079ms  8192k at:0xe7200000 Free     ( 388M)
155.984s: 0.081ms  2048k at:0xe7800000 Alloc LP ( 390M)
155.984s: 0.067ms  2048k at:0xe7600000 Alloc LP ( 392M)
155.984s: 0.062ms  2048k at:0xe7400000 Alloc LP ( 394M)
156.000s: 0.060ms  2048k at:0xe7200000 Alloc LP ( 396M)
161.640s: 0.076ms  2048k at:0xe7000000 Alloc LP ( 398M)
161.640s: 0.062ms  2048k at:0xe6e00000 Alloc LP ( 400M)
161.656s: 0.060ms  2048k at:0xe6c00000 Alloc LP ( 402M)
161.656s: 0.060ms  2048k at:0xe6a00000 Alloc LP ( 404M)
163.281s: 0.073ms  2048k at:0xe6800000 Alloc LP ( 406M)
163.297s: 0.061ms  2048k at:0xe6600000 Alloc LP ( 408M)
163.297s: 0.063ms  2048k at:0xe6400000 Alloc LP ( 410M)
163.297s: 0.058ms  2048k at:0xe6200000 Alloc LP ( 412M)
164.765s: 0.259ms  8192k at:0xe5a00000 Alloc LP ( 420M)
164.781s: 0.263ms  8192k at:0xe5200000 Alloc LP ( 428M)
167.625s: 0.250ms  8192k at:0xe4a00000 Alloc LP ( 436M)
176.484s: 0.076ms  2048k at:0xe4800000 Alloc LP ( 438M)
176.500s: 0.065ms  2048k at:0xe4600000 Alloc LP ( 440M)
176.500s: 0.062ms  2048k at:0xe4400000 Alloc LP ( 442M)
176.500s: 0.065ms  2048k at:0xe4200000 Alloc LP ( 444M)
215.359s: 0.395ms  8192k at:0xe3a00000 Alloc LP ( 452M)
236.703s: 0.230ms  8192k at:0xe3200000 Alloc LP ( 460M)
263.094s: 0.252ms  8192k at:0xe2a00000 Alloc LP ( 468M)
263.750s: 0.240ms  8192k at:0xe2200000 Alloc LP ( 476M)
263.750s: 0.229ms  8192k at:0xe1a00000 Alloc LP ( 484M)
273.469s: 0.079ms  8192k at:0xe2200000 Free     ( 476M)
273.609s: 0.279ms  8192k at:0xe2200000 Alloc LP ( 484M)
333.594s: 0.259ms  8192k at:0xe1200000 Alloc LP ( 492M)
413.562s: 0.006ms    16k at:0x0d5b0000 Alloc SP ( 492M)
442.062s: 0.241ms  8192k at:0xe0a00000 Alloc LP ( 500M)
501.734s: 0.263ms  8192k at:0xe0200000 Alloc LP ( 508M)
565.890s: 0.077ms  2048k at:0xe0000000 Alloc LP ( 510M)
565.906s: 0.066ms  2048k at:0xdfe00000 Alloc LP ( 512M)
565.906s: 0.064ms  2048k at:0xdfc00000 Alloc LP ( 514M)
565.906s: 0.057ms  2048k at:0xdfa00000 Alloc LP ( 516M)
566.000s: 0.077ms  2048k at:0xdf800000 Alloc LP ( 518M)
566.000s: 0.066ms  2048k at:0xdf600000 Alloc LP ( 520M)
566.000s: 0.063ms  2048k at:0xdf400000 Alloc LP ( 522M)
566.000s: 0.060ms  2048k at:0xdf200000 Alloc LP ( 524M)
566.156s: 0.027ms  2048k at:0xe0000000 Free     ( 522M)
566.156s: MemFlushCacheAll request
568.844s: MemFlushCacheAll request
573.344s: MemFlushCacheAll request
573.359s: 0.059ms  6144k at:0xf1800000 Free     ( 516M)
573.390s: 0.060ms  6144k at:0xf1e00000 Free     ( 510M)
573.390s: 0.163ms 18432k at:0xf2400000 Free     ( 492M)
573.406s: 0.025ms  2048k at:0xed600000 Free     ( 490M)
573.406s: 0.023ms  2048k at:0xeca00000 Free     ( 488M)
573.406s: 0.021ms  2048k at:0xed000000 Free     ( 486M)
573.406s: 0.023ms  2048k at:0xec800000 Free     ( 484M)
573.406s: 0.023ms  2048k at:0xece00000 Free     ( 482M)
573.422s: 0.022ms  2048k at:0xecc00000 Free     ( 480M)
573.422s: 0.023ms  2048k at:0xede00000 Free     ( 478M)
573.422s: 0.022ms  2048k at:0xec400000 Free     ( 476M)
573.422s: 0.022ms  2048k at:0xee600000 Free     ( 474M)
573.422s: 0.022ms  2048k at:0xeba00000 Free     ( 472M)
573.422s: 0.022ms  2048k at:0xed200000 Free     ( 470M)
573.437s: 0.022ms  2048k at:0xed400000 Free     ( 468M)
573.437s: 0.022ms  2048k at:0xee400000 Free     ( 466M)
573.437s: 0.022ms  2048k at:0xee000000 Free     ( 464M)
573.437s: 0.022ms  2048k at:0xec200000 Free     ( 462M)
573.437s: 0.021ms  2048k at:0xec600000 Free     ( 460M)
573.437s: 0.021ms  2048k at:0xed800000 Free     ( 458M)
573.437s: 0.021ms  2048k at:0xeda00000 Free     ( 456M)
573.453s: 0.021ms  2048k at:0xeee00000 Free     ( 454M)
573.453s: 0.021ms  2048k at:0xebc00000 Free     ( 452M)
573.453s: 0.022ms  2048k at:0xebe00000 Free     ( 450M)
573.453s: 0.027ms  2048k at:0xf0c00000 Free     ( 448M)
573.453s: 0.022ms  2048k at:0xf1000000 Free     ( 446M)
573.469s: 0.060ms  6144k at:0xf1200000 Free     ( 440M)
573.515s: 0.030ms  2048k at:0xec000000 Free     ( 438M)
573.594s: 0.027ms  2048k at:0xfe200000 Free     ( 436M)
573.609s: 0.027ms  2048k at:0xeb800000 Free     ( 434M)
573.640s: 0.025ms  2048k at:0xeb200000 Free     ( 432M)
573.656s: 0.023ms  2048k at:0xedc00000 Free     ( 430M)
573.672s: 0.023ms  2048k at:0xeb600000 Free     ( 428M)
573.672s: 0.022ms  2048k at:0xf0e00000 Free     ( 426M)
573.672s: 0.023ms  2048k at:0xf0800000 Free     ( 424M)
573.703s: 0.308ms 34816k at:0xf7600000 Free     ( 390M)
573.969s: 0.026ms  2048k at:0xfe400000 Free     ( 388M)
574.031s: 0.027ms  2048k at:0xfb000000 Free     ( 386M)
574.031s: 0.040ms  4096k at:0xf9800000 Free     ( 382M)
574.062s: 0.027ms  2048k at:0xe6e00000 Free     ( 380M)
574.125s: 0.030ms  2048k at:0xfaa00000 Free     ( 378M)
574.125s: 0.023ms  2048k at:0xfae00000 Free     ( 376M)
574.125s: 0.023ms  2048k at:0xfa400000 Free     ( 374M)
574.125s: 0.024ms  2048k at:0xeb400000 Free     ( 372M)
574.140s: 0.025ms  2048k at:0xf0a00000 Free     ( 370M)
574.140s: 0.024ms  2048k at:0xf4c00000 Free     ( 368M)
574.140s: 0.022ms  2048k at:0xf4600000 Free     ( 366M)
574.140s: 0.021ms  2048k at:0xf4800000 Free     ( 364M)
574.140s: 0.022ms  2048k at:0xf5a00000 Free     ( 362M)
574.140s: 0.022ms  2048k at:0xfe600000 Free     ( 360M)
574.156s: 0.022ms  2048k at:0xe9e00000 Free     ( 358M)
574.156s: 0.022ms  2048k at:0xe9200000 Free     ( 356M)
574.156s: 0.022ms  2048k at:0xdfc00000 Free     ( 354M)
574.156s: 0.022ms  2048k at:0xf5c00000 Free     ( 352M)
574.156s: 0.022ms  2048k at:0xdfa00000 Free     ( 350M)
574.156s: 0.022ms  2048k at:0xdfe00000 Free     ( 348M)
574.156s: 0.022ms  2048k at:0xfea00000 Free     ( 346M)
574.172s: 0.022ms  2048k at:0xe9400000 Free     ( 344M)
574.172s: 0.022ms  2048k at:0xee200000 Free     ( 342M)
574.172s: 0.022ms  2048k at:0xfdc00000 Free     ( 340M)
574.172s: regAllocTotalDur:   17.081ms LOCstat: 10582/12431:85.1%
574.172s: 0.022ms  2048k at:0xdf200000 Free     ( 338M)
574.172s: 0.022ms  2048k at:0xdf400000 Free     ( 336M)
574.172s: 0.022ms  2048k at:0xdf600000 Free     ( 334M)
574.172s: 0.022ms  2048k at:0xdf800000 Free     ( 332M)
574.172s: 0.075ms  8192k at:0xe0200000 Free     ( 324M)
574.187s: 0.076ms  8192k at:0xe0a00000 Free     ( 316M)
574.187s: 0.078ms  8192k at:0xe1200000 Free     ( 308M)
574.187s: 0.080ms  8192k at:0xe2200000 Free     ( 300M)
574.187s: 0.075ms  8192k at:0xe1a00000 Free     ( 292M)
574.187s: 0.074ms  8192k at:0xe2a00000 Free     ( 284M)
574.187s: 0.075ms  8192k at:0xe3200000 Free     ( 276M)
574.187s: 0.074ms  8192k at:0xe3a00000 Free     ( 268M)
574.203s: 0.031ms  2048k at:0xe4200000 Free     ( 266M)
574.203s: 0.022ms  2048k at:0xe4400000 Free     ( 264M)
574.203s: 0.021ms  2048k at:0xe4600000 Free     ( 262M)
574.203s: 0.021ms  2048k at:0xe4800000 Free     ( 260M)
574.203s: 0.073ms  8192k at:0xe4a00000 Free     ( 252M)
574.203s: 0.075ms  8192k at:0xe5200000 Free     ( 244M)
574.203s: 0.075ms  8192k at:0xe5a00000 Free     ( 236M)
574.219s: 0.023ms  2048k at:0xe6200000 Free     ( 234M)
574.219s: 0.022ms  2048k at:0xe6400000 Free     ( 232M)
574.219s: 0.022ms  2048k at:0xe6600000 Free     ( 230M)
574.219s: 0.022ms  2048k at:0xe6800000 Free     ( 228M)
574.219s: 0.027ms  2048k at:0xe6a00000 Free     ( 226M)
574.219s: 0.022ms  2048k at:0xe6c00000 Free     ( 224M)
574.219s: 0.022ms  2048k at:0xe7000000 Free     ( 222M)
574.234s: 0.022ms  2048k at:0xe7200000 Free     ( 220M)
574.234s: 0.022ms  2048k at:0xe7400000 Free     ( 218M)
574.234s: 0.021ms  2048k at:0xe7600000 Free     ( 216M)
574.234s: 0.022ms  2048k at:0xe7800000 Free     ( 214M)
574.234s: 0.075ms  8192k at:0xe7a00000 Free     ( 206M)
574.234s: 0.022ms  2048k at:0xe8200000 Free     ( 204M)
574.234s: 0.022ms  2048k at:0xe8400000 Free     ( 202M)
574.250s: 0.030ms  2048k at:0xe8600000 Free     ( 200M)
574.250s: 0.021ms  2048k at:0xe8800000 Free     ( 198M)
574.250s: 0.075ms  8192k at:0xe8a00000 Free     ( 190M)
574.250s: 0.022ms  2048k at:0xe9600000 Free     ( 188M)
574.250s: 0.022ms  2048k at:0xe9800000 Free     ( 186M)
574.250s: 0.022ms  2048k at:0xe9a00000 Free     ( 184M)
574.250s: 0.022ms  2048k at:0xe9c00000 Free     ( 182M)
574.250s: 0.022ms  2048k at:0xea000000 Free     ( 180M)
574.265s: 0.078ms  8192k at:0xea200000 Free     ( 172M)
574.265s: 0.078ms  8192k at:0xeaa00000 Free     ( 164M)
574.265s: 0.023ms  2048k at:0xee800000 Free     ( 162M)
574.265s: 0.022ms  2048k at:0xeea00000 Free     ( 160M)
574.265s: 0.021ms  2048k at:0xeec00000 Free     ( 158M)
574.265s: 0.021ms  2048k at:0xef000000 Free     ( 156M)
574.265s: 0.021ms  2048k at:0xef200000 Free     ( 154M)
574.281s: 0.021ms  2048k at:0xef400000 Free     ( 152M)
574.281s: 0.021ms  2048k at:0xef600000 Free     ( 150M)
574.281s: 0.021ms  2048k at:0xef800000 Free     ( 148M)
574.281s: 0.021ms  2048k at:0xefa00000 Free     ( 146M)
574.281s: 0.021ms  2048k at:0xefc00000 Free     ( 144M)
574.281s: 0.021ms  2048k at:0xefe00000 Free     ( 142M)
574.281s: 0.021ms  2048k at:0xf0000000 Free     ( 140M)
574.297s: 0.022ms  2048k at:0xf0200000 Free     ( 138M)
574.297s: 0.022ms  2048k at:0xf0400000 Free     ( 136M)
574.297s: 0.022ms  2048k at:0xf0600000 Free     ( 134M)
574.297s: 0.075ms  8192k at:0xf3600000 Free     ( 126M)
574.297s: 0.076ms  8192k at:0xf3e00000 Free     ( 118M)
574.297s: 0.022ms  2048k at:0xf4a00000 Free     ( 116M)
574.297s: 0.022ms  2048k at:0xf4e00000 Free     ( 114M)
574.297s: 0.022ms  2048k at:0xf5000000 Free     ( 112M)
574.312s: 0.075ms  8192k at:0xf5200000 Free     ( 104M)
574.312s: 0.077ms  8192k at:0xf5e00000 Free     (  96M)
574.312s: 0.022ms  2048k at:0xf6600000 Free     (  94M)
574.312s: 0.022ms  2048k at:0xf6800000 Free     (  92M)
574.312s: 0.022ms  2048k at:0xf6a00000 Free     (  90M)
574.312s: 0.022ms  2048k at:0xf6c00000 Free     (  88M)
574.312s: 0.075ms  8192k at:0xf6e00000 Free     (  80M)
574.328s: 0.022ms  2048k at:0xf9c00000 Free     (  78M)
574.328s: 0.022ms  2048k at:0xf9e00000 Free     (  76M)
574.328s: 0.022ms  2048k at:0xfa000000 Free     (  74M)
574.328s: 0.022ms  2048k at:0xfa200000 Free     (  72M)
574.328s: 0.022ms  2048k at:0xfa600000 Free     (  70M)
574.328s: 0.022ms  2048k at:0xfa800000 Free     (  68M)
574.328s: 0.023ms  2048k at:0xfac00000 Free     (  66M)
574.344s: 0.032ms  2048k at:0xfb200000 Free     (  64M)
574.344s: 0.022ms  2048k at:0xfb400000 Free     (  62M)
574.344s: 0.022ms  2048k at:0xfb600000 Free     (  60M)
574.344s: 0.022ms  2048k at:0xfb800000 Free     (  58M)
574.344s: 0.022ms  2048k at:0xfba00000 Free     (  56M)
574.344s: 0.022ms  2048k at:0xfbc00000 Free     (  54M)
574.344s: 0.022ms  2048k at:0xfbe00000 Free     (  52M)
574.344s: 0.022ms  2048k at:0xfc000000 Free     (  50M)
574.359s: 0.022ms  2048k at:0xfc200000 Free     (  48M)
574.359s: 0.022ms  2048k at:0xfc400000 Free     (  46M)
574.359s: 0.025ms  2048k at:0xfc600000 Free     (  44M)
574.359s: 0.022ms  2048k at:0xfc800000 Free     (  42M)
574.359s: 0.022ms  2048k at:0xfca00000 Free     (  40M)
574.359s: 0.022ms  2048k at:0xfcc00000 Free     (  38M)
574.359s: 0.022ms  2048k at:0xfce00000 Free     (  36M)
574.375s: 0.022ms  2048k at:0xfd000000 Free     (  34M)
574.375s: 0.022ms  2048k at:0xfd200000 Free     (  32M)
574.375s: 0.022ms  2048k at:0xfd400000 Free     (  30M)
574.375s: 0.022ms  2048k at:0xfd600000 Free     (  28M)
574.375s: 0.021ms  2048k at:0xfd800000 Free     (  26M)
574.375s: 0.022ms  2048k at:0xfda00000 Free     (  24M)
574.375s: 0.022ms  2048k at:0xfde00000 Free     (  22M)
574.375s: 0.022ms  2048k at:0xfe000000 Free     (  20M)
574.390s: 0.022ms  2048k at:0xfe800000 Free     (  18M)
574.390s: 0.022ms  2048k at:0xfec00000 Free     (  16M)
574.390s: 0.022ms  2048k at:0xfee00000 Free     (  14M)
574.390s: 0.022ms  2048k at:0xff000000 Free     (  12M)
574.390s: 0.022ms  2048k at:0xff200000 Free     (  10M)
574.390s: 0.075ms  8192k at:0xff400000 Free     (   2M)
574.390s: 0.023ms  2048k at:0xffc00000 Free     (   0M)

Share this post


Link to post
Share on other sites

There ya go ... that looks much better. Although Fred needs to comment on that MemFlushCacheAll request. I'm not an expert.

Share this post


Link to post
Share on other sites

@Kremator, thanks for helping out with usefull hints.

The 'MemFlushCacheAll request' ('MFCA' in newer builds) log message, just indicates that an full large object cache clear command is called from arma to the allocator (nothing wrong here).

@Nuno Basto, your timings are suggesting that you use win 8.1?

There is a newer build out now, which shows some info about your system and memory availability, at arma start.

Share this post


Link to post
Share on other sites

Will download that newer build now fred and use it. You need some more logs from my main system ?

Share this post


Link to post
Share on other sites

@Kremator, yes. It helps to understand armas allocation pattern, in different scenarios and to adapt/implement some algorithms for better performance/usability.

For everybody with early 'Alloc LP failed -> fallback' messages, i added a little experimental tool, for freeing some phys. RAM before arma start (flushing the system cache and empty the standby list).

It may or may not solve this issue on your system, so just try it out.

Please read the readme.md for usage:

https://github.com/fred41/tbbmalloc_arma/tree/master/ClearMem

If this tool should help, i could implement this directly in tbbmalloc for automatic memory clearing at arma start.

Greets,

Fred41

Edited by Fred41

Share this post


Link to post
Share on other sites

Latest tbbmalloc:

WindowsVersion:6.2 ServicePack:0.0 Typ:Desktop

physical RAM available:28783M
committed memory limit: 4095M
virt address available: 3937M

SeLockMemoryPrivilege: granted, huge pages enabled

  0.015s: 0.058ms  2048k at:0xffc00000 Alloc LP (   2M)
  0.015s: 0.004ms   128k at:0x00340000 Alloc SP (   2M)
  0.031s: 0.188ms  8192k at:0xff400000 Alloc LP (  10M)
  2.390s: 0.101ms  4096k at:0xff000000 Alloc LP (  14M)
  2.390s: 0.095ms  4096k at:0xfec00000 Alloc LP (  18M)
  2.390s: 0.094ms  4096k at:0xfe800000 Alloc LP (  22M)
  2.390s: 0.094ms  4096k at:0xfe400000 Alloc LP (  26M)
  2.656s: 0.102ms  4096k at:0xfe000000 Alloc LP (  30M)
  2.656s: 0.097ms  4096k at:0xfdc00000 Alloc LP (  34M)
  2.656s: 0.097ms  4096k at:0xfd800000 Alloc LP (  38M)
  2.671s: 0.096ms  4096k at:0xfd400000 Alloc LP (  42M)
  3.171s: 0.104ms  4096k at:0xfd000000 Alloc LP (  46M)
  3.187s: 0.097ms  4096k at:0xfcc00000 Alloc LP (  50M)
  3.187s: 0.094ms  4096k at:0xfc800000 Alloc LP (  54M)
  3.187s: 0.094ms  4096k at:0xfc400000 Alloc LP (  58M)
  3.796s: 0.103ms  4096k at:0xfc000000 Alloc LP (  62M)
  3.796s: 0.095ms  4096k at:0xfbc00000 Alloc LP (  66M)
  3.796s: 0.097ms  4096k at:0xfb800000 Alloc LP (  70M)
  3.796s: 0.095ms  4096k at:0xfb400000 Alloc LP (  74M)
  4.250s: 0.102ms  4096k at:0xfb000000 Alloc LP (  78M)
  4.250s: 0.096ms  4096k at:0xfac00000 Alloc LP (  82M)
  4.250s: 0.095ms  4096k at:0xfa800000 Alloc LP (  86M)
  4.250s: 0.096ms  4096k at:0xfa400000 Alloc LP (  90M)
  4.828s: 0.323ms 14336k at:0xf9600000 Alloc LP ( 104M)
  4.828s: 0.774ms 34816k at:0xf7400000 Alloc LP ( 138M)
  9.437s: 0.104ms  4096k at:0xf7000000 Alloc LP ( 142M)
  9.437s: 0.102ms  4096k at:0xf6c00000 Alloc LP ( 146M)
  9.437s: 0.098ms  4096k at:0xf6800000 Alloc LP ( 150M)
  9.437s: 0.098ms  4096k at:0xf6400000 Alloc LP ( 154M)
 13.343s: MFCA req.
 15.921s: 0.104ms  4096k at:0xf6000000 Alloc LP ( 158M)
 15.937s: 0.095ms  4096k at:0xf5c00000 Alloc LP ( 162M)
 15.937s: 0.095ms  4096k at:0xf5800000 Alloc LP ( 166M)
 15.937s: 0.097ms  4096k at:0xf5400000 Alloc LP ( 170M)
 16.656s: 0.106ms  4096k at:0xf5000000 Alloc LP ( 174M)
 16.656s: 0.096ms  4096k at:0xf4c00000 Alloc LP ( 178M)
 16.656s: 0.095ms  4096k at:0xf4800000 Alloc LP ( 182M)
 16.656s: 0.094ms  4096k at:0xf4400000 Alloc LP ( 186M)
 16.687s: MFCA req.
 16.828s: MFCA req.
 16.828s: 0.415ms 18432k at:0xf3200000 Alloc LP ( 204M)
 16.875s: 0.150ms  6144k at:0xf2c00000 Alloc LP ( 210M)
 17.000s: 0.150ms  6144k at:0xf2600000 Alloc LP ( 216M)
 17.015s: 0.161ms  6144k at:0xf2000000 Alloc LP ( 222M)
 17.890s: 0.150ms  6144k at:0xf1a00000 Alloc LP ( 228M)
 17.890s: 0.051ms  6144k at:0xf1a00000 Free     ( 222M)
 17.921s: 0.103ms  4096k at:0xf1c00000 Alloc LP ( 226M)
 17.937s: 0.096ms  4096k at:0xf1800000 Alloc LP ( 230M)
 17.937s: 0.095ms  4096k at:0xf1400000 Alloc LP ( 234M)
 17.937s: 0.098ms  4096k at:0xf1000000 Alloc LP ( 238M)
 18.546s: 0.107ms  4096k at:0xf0c00000 Alloc LP ( 242M)
 18.546s: 0.097ms  4096k at:0xf0800000 Alloc LP ( 246M)
 18.546s: 0.099ms  4096k at:0xf0400000 Alloc LP ( 250M)
 18.546s: 0.096ms  4096k at:0xf0000000 Alloc LP ( 254M)
 21.000s: 0.106ms  4096k at:0xefc00000 Alloc LP ( 258M)
 21.000s: 0.099ms  4096k at:0xef800000 Alloc LP ( 262M)
 21.000s: 0.098ms  4096k at:0xef400000 Alloc LP ( 266M)
 21.015s: 0.099ms  4096k at:0xef000000 Alloc LP ( 270M)
 22.515s: 0.107ms  4096k at:0xeec00000 Alloc LP ( 274M)
 22.531s: 0.099ms  4096k at:0xee800000 Alloc LP ( 278M)
 22.531s: 0.098ms  4096k at:0xee400000 Alloc LP ( 282M)
 22.531s: 0.097ms  4096k at:0xee000000 Alloc LP ( 286M)
 22.609s: 0.107ms  4096k at:0xedc00000 Alloc LP ( 290M)
 22.609s: 0.100ms  4096k at:0xed800000 Alloc LP ( 294M)
 22.625s: 0.095ms  4096k at:0xed400000 Alloc LP ( 298M)
 22.625s: 0.096ms  4096k at:0xed000000 Alloc LP ( 302M)
 22.718s: 0.108ms  4096k at:0xecc00000 Alloc LP ( 306M)
 22.718s: 0.095ms  4096k at:0xec800000 Alloc LP ( 310M)
 22.718s: 0.095ms  4096k at:0xec400000 Alloc LP ( 314M)
 22.718s: 0.098ms  4096k at:0xec000000 Alloc LP ( 318M)
 23.531s: 0.382ms 14336k at:0xeb200000 Alloc LP ( 332M)
 24.390s: 0.332ms 14336k at:0xea400000 Alloc LP ( 346M)
 25.125s: 0.331ms 14336k at:0xe9600000 Alloc LP ( 360M)
 27.750s: 0.353ms 14336k at:0xe8800000 Alloc LP ( 374M)
 64.359s: 0.340ms 14336k at:0xe7a00000 Alloc LP ( 388M)
 68.031s: 0.022ms    16k at:0x15200000 Alloc SP ( 388M)
 72.828s: 0.332ms 14336k at:0xe6c00000 Alloc LP ( 402M)
100.812s: 0.330ms 14336k at:0xe5e00000 Alloc LP ( 416M)
326.187s: 0.336ms 14336k at:0xe5000000 Alloc LP ( 430M)
370.609s: MFCA req.
370.609s: MFCA req.
370.687s: MFCA req.
370.687s: 0.054ms  6144k at:0xf2600000 Free     ( 424M)
370.687s: 0.147ms 18432k at:0xf3200000 Free     ( 406M)
370.687s: 1.499ms 67584k at:0xe0e00000 Alloc LP ( 472M)
370.796s: 0.422ms 18432k at:0xf3200000 Alloc LP ( 490M)
370.859s: 0.420ms 18432k at:0xdfc00000 Alloc LP ( 508M)
370.859s: 0.055ms  6144k at:0xf2000000 Free     ( 502M)
370.859s: 0.448ms 18432k at:0xdea00000 Alloc LP ( 520M)
372.500s: 0.420ms 18432k at:0xdd800000 Alloc LP ( 538M)
372.531s: 0.105ms  4096k at:0xf2800000 Alloc LP ( 542M)
372.531s: 0.102ms  4096k at:0xf2400000 Alloc LP ( 546M)
372.531s: 0.097ms  4096k at:0xf2000000 Alloc LP ( 550M)
372.531s: 0.099ms  4096k at:0xdd400000 Alloc LP ( 554M)
372.593s: 0.109ms  4096k at:0xdd000000 Alloc LP ( 558M)
372.593s: 0.099ms  4096k at:0xdcc00000 Alloc LP ( 562M)
372.593s: 0.097ms  4096k at:0xdc800000 Alloc LP ( 566M)
372.593s: 0.095ms  4096k at:0xdc400000 Alloc LP ( 570M)
372.640s: 0.109ms  4096k at:0xdc000000 Alloc LP ( 574M)
372.640s: 0.099ms  4096k at:0xdbc00000 Alloc LP ( 578M)
372.656s: 0.096ms  4096k at:0xdb800000 Alloc LP ( 582M)
372.656s: 0.098ms  4096k at:0xdb400000 Alloc LP ( 586M)
372.687s: 0.017ms    16k at:0x0d790000 Alloc SP ( 586M)
372.703s: 0.108ms  4096k at:0xdb000000 Alloc LP ( 590M)
372.703s: 0.098ms  4096k at:0xdac00000 Alloc LP ( 594M)
372.703s: 0.120ms  4096k at:0xda800000 Alloc LP ( 598M)
372.703s: 0.097ms  4096k at:0xda400000 Alloc LP ( 602M)
372.750s: 0.109ms  4096k at:0xda000000 Alloc LP ( 606M)
372.750s: 0.099ms  4096k at:0xd9c00000 Alloc LP ( 610M)
372.750s: 0.099ms  4096k at:0xd9800000 Alloc LP ( 614M)
372.750s: 0.099ms  4096k at:0xd9400000 Alloc LP ( 618M)
372.750s: 0.100ms  4096k at:0xd9000000 Alloc LP ( 622M)
372.765s: 0.098ms  4096k at:0xd8c00000 Alloc LP ( 626M)
372.765s: 0.115ms  4096k at:0xd8800000 Alloc LP ( 630M)
372.765s: 0.097ms  4096k at:0xd8400000 Alloc LP ( 634M)
372.859s: 0.109ms  4096k at:0xd8000000 Alloc LP ( 638M)
372.859s: 0.099ms  4096k at:0xd7c00000 Alloc LP ( 642M)
372.859s: 0.096ms  4096k at:0xd7800000 Alloc LP ( 646M)
372.859s: 0.096ms  4096k at:0xd7400000 Alloc LP ( 650M)
372.906s: 0.017ms    16k at:0x0d7a0000 Alloc SP ( 650M)
372.906s: 0.109ms  4096k at:0xd7000000 Alloc LP ( 654M)
372.906s: 0.101ms  4096k at:0xd6c00000 Alloc LP ( 658M)
372.906s: 0.097ms  4096k at:0xd6800000 Alloc LP ( 662M)
372.921s: 0.097ms  4096k at:0xd6400000 Alloc LP ( 666M)
372.968s: 0.111ms  4096k at:0xd6000000 Alloc LP ( 670M)
372.968s: 0.096ms  4096k at:0xd5c00000 Alloc LP ( 674M)
372.968s: 0.099ms  4096k at:0xd5800000 Alloc LP ( 678M)
372.968s: 0.097ms  4096k at:0xd5400000 Alloc LP ( 682M)
373.031s: 0.113ms  4096k at:0xd5000000 Alloc LP ( 686M)
373.031s: 0.149ms  4096k at:0xd4c00000 Alloc LP ( 690M)
373.031s: 0.098ms  4096k at:0xd4800000 Alloc LP ( 694M)
373.031s: 0.097ms  4096k at:0xd4400000 Alloc LP ( 698M)
373.078s: 0.112ms  4096k at:0xd4000000 Alloc LP ( 702M)
373.078s: 0.100ms  4096k at:0xd3c00000 Alloc LP ( 706M)
373.078s: 0.099ms  4096k at:0xd3800000 Alloc LP ( 710M)
373.078s: 0.097ms  4096k at:0xd3400000 Alloc LP ( 714M)
373.125s: 0.018ms    16k at:0x0d7b0000 Alloc SP ( 714M)
373.125s: 0.113ms  4096k at:0xd3000000 Alloc LP ( 718M)
373.125s: 0.097ms  4096k at:0xd2c00000 Alloc LP ( 722M)
373.125s: 0.097ms  4096k at:0xd2800000 Alloc LP ( 726M)
373.140s: 0.096ms  4096k at:0xd2400000 Alloc LP ( 730M)
373.187s: 0.112ms  4096k at:0xd2000000 Alloc LP ( 734M)
373.187s: 0.102ms  4096k at:0xd1c00000 Alloc LP ( 738M)
373.187s: 0.097ms  4096k at:0xd1800000 Alloc LP ( 742M)
373.187s: 0.097ms  4096k at:0xd1400000 Alloc LP ( 746M)
373.234s: 0.117ms  4096k at:0xd1000000 Alloc LP ( 750M)
373.234s: 0.097ms  4096k at:0xd0c00000 Alloc LP ( 754M)
373.234s: 0.099ms  4096k at:0xd0800000 Alloc LP ( 758M)
373.250s: 0.097ms  4096k at:0xd0400000 Alloc LP ( 762M)
373.421s: 0.117ms  4096k at:0xd0000000 Alloc LP ( 766M)
373.421s: 0.099ms  4096k at:0xcfc00000 Alloc LP ( 770M)
373.421s: 0.098ms  4096k at:0xcf800000 Alloc LP ( 774M)
373.437s: 0.097ms  4096k at:0xcf400000 Alloc LP ( 778M)
374.046s: 0.150ms 18432k at:0xdd800000 Free     ( 760M)
374.265s: 0.006ms    16k at:0x0d940000 Alloc SP ( 760M)
374.375s: 0.109ms  4096k at:0xde600000 Alloc LP ( 764M)
374.375s: 0.096ms  4096k at:0xde200000 Alloc LP ( 768M)
374.375s: 0.100ms  4096k at:0xdde00000 Alloc LP ( 772M)
374.375s: 0.096ms  4096k at:0xdda00000 Alloc LP ( 776M)
375.078s: 0.113ms  4096k at:0xcf000000 Alloc LP ( 780M)
375.078s: 0.103ms  4096k at:0xcec00000 Alloc LP ( 784M)
375.078s: 0.099ms  4096k at:0xce800000 Alloc LP ( 788M)
375.078s: 0.097ms  4096k at:0xce400000 Alloc LP ( 792M)
375.296s: 0.251ms 10240k at:0xcda00000 Alloc LP ( 802M)
375.437s: 0.116ms  4096k at:0xcd600000 Alloc LP ( 806M)
375.437s: 0.097ms  4096k at:0xcd200000 Alloc LP ( 810M)
375.437s: 0.097ms  4096k at:0xcce00000 Alloc LP ( 814M)
375.437s: 0.103ms  4096k at:0xcca00000 Alloc LP ( 818M)
375.593s: 0.116ms  4096k at:0xcc600000 Alloc LP ( 822M)
375.593s: 0.102ms  4096k at:0xcc200000 Alloc LP ( 826M)
375.609s: 0.097ms  4096k at:0xcbe00000 Alloc LP ( 830M)
375.609s: 0.096ms  4096k at:0xcba00000 Alloc LP ( 834M)
377.921s: 0.007ms    16k at:0x0d950000 Alloc SP ( 834M)
378.093s: 0.114ms  4096k at:0xcb600000 Alloc LP ( 838M)
378.093s: 0.109ms  4096k at:0xcb200000 Alloc LP ( 842M)
378.093s: 0.102ms  4096k at:0xcae00000 Alloc LP ( 846M)
378.093s: 0.100ms  4096k at:0xcaa00000 Alloc LP ( 850M)
379.015s: 0.114ms  4096k at:0xca600000 Alloc LP ( 854M)
379.015s: 0.127ms  4096k at:0xca200000 Alloc LP ( 858M)
379.015s: 0.106ms  4096k at:0xc9e00000 Alloc LP ( 862M)
379.015s: 0.104ms  4096k at:0xc9a00000 Alloc LP ( 866M)
379.187s: 0.160ms  6144k at:0xc9400000 Alloc LP ( 872M)
379.187s: 0.156ms  6144k at:0xc8e00000 Alloc LP ( 878M)
379.203s: 0.153ms  6144k at:0xc8800000 Alloc LP ( 884M)
379.203s: 0.153ms  6144k at:0xc8200000 Alloc LP ( 890M)
379.937s: 0.115ms  4096k at:0xc7e00000 Alloc LP ( 894M)
379.937s: 0.104ms  4096k at:0xc7a00000 Alloc LP ( 898M)
379.937s: 0.098ms  4096k at:0xc7600000 Alloc LP ( 902M)
379.937s: 0.097ms  4096k at:0xc7200000 Alloc LP ( 906M)
381.562s: 0.118ms  4096k at:0xc6e00000 Alloc LP ( 910M)
381.562s: 0.107ms  4096k at:0xc6a00000 Alloc LP ( 914M)
381.562s: 0.105ms  4096k at:0xc6600000 Alloc LP ( 918M)
381.562s: 0.104ms  4096k at:0xc6200000 Alloc LP ( 922M)
381.796s: 0.039ms  4096k at:0xc6200000 Free     ( 918M)
382.281s: 0.006ms    16k at:0x0d970000 Alloc SP ( 918M)
382.625s: 0.116ms  4096k at:0xc6200000 Alloc LP ( 922M)
382.640s: 0.097ms  4096k at:0xc5e00000 Alloc LP ( 926M)
382.640s: 0.102ms  4096k at:0xc5a00000 Alloc LP ( 930M)
382.640s: 0.098ms  4096k at:0xc5600000 Alloc LP ( 934M)
383.484s: 0.038ms  4096k at:0xc5e00000 Free     ( 930M)
383.500s: 0.334ms 14336k at:0xc4800000 Alloc LP ( 944M)
384.031s: 0.116ms  4096k at:0xc5e00000 Alloc LP ( 948M)
384.031s: 0.099ms  4096k at:0xc4400000 Alloc LP ( 952M)
384.031s: 0.101ms  4096k at:0xc4000000 Alloc LP ( 956M)
384.031s: 0.097ms  4096k at:0xc3c00000 Alloc LP ( 960M)
385.281s: 0.382ms 16384k at:0xc2c00000 Alloc LP ( 976M)
388.906s: 0.120ms  4096k at:0xc2800000 Alloc LP ( 980M)
388.906s: 0.102ms  4096k at:0xc2400000 Alloc LP ( 984M)
388.906s: 0.100ms  4096k at:0xc2000000 Alloc LP ( 988M)
388.921s: 0.098ms  4096k at:0xc1c00000 Alloc LP ( 992M)
412.203s: 0.522ms 16384k at:0xc0c00000 Alloc LP (1008M)
447.937s: 0.022ms    16k at:0x0d9e0000 Alloc SP (1008M)
451.437s: 0.115ms  4096k at:0xc0800000 Alloc LP (1012M)
451.437s: 0.100ms  4096k at:0xc0400000 Alloc LP (1016M)
451.437s: 0.099ms  4096k at:0xc0000000 Alloc LP (1020M)
451.453s: 0.102ms  4096k at:0xbfc00000 Alloc LP (1024M)
479.312s: 0.403ms 16384k at:0xbec00000 Alloc LP (1040M)
517.796s: 0.128ms  4096k at:0xbe800000 Alloc LP (1044M)
517.796s: 0.105ms  4096k at:0xbe400000 Alloc LP (1048M)
517.796s: 0.100ms  4096k at:0xbe000000 Alloc LP (1052M)
517.796s: 0.100ms  4096k at:0xbdc00000 Alloc LP (1056M)
563.000s: 0.393ms 16384k at:0xbcc00000 Alloc LP (1072M)
574.718s: 0.401ms 16384k at:0xbbc00000 Alloc LP (1088M)
617.234s: 0.009ms    16k at:0x0a8b0000 Alloc SP (1088M)
623.656s: 0.118ms  4096k at:0xbb800000 Alloc LP (1092M)
623.656s: 0.110ms  4096k at:0xbb400000 Alloc LP (1096M)
623.656s: 0.108ms  4096k at:0xbb000000 Alloc LP (1100M)
623.656s: 0.102ms  4096k at:0xbac00000 Alloc LP (1104M)
696.515s: 0.044ms  4096k at:0xbb400000 Free     (1100M)
705.578s: 0.406ms 16384k at:0xb9c00000 Alloc LP (1116M)
708.765s: 0.135ms 16384k at:0xb9c00000 Free     (1100M)
712.687s: 0.403ms 16384k at:0xb9c00000 Alloc LP (1116M)
774.640s: 0.121ms  4096k at:0xbb400000 Alloc LP (1120M)
774.640s: 0.115ms  4096k at:0xb9800000 Alloc LP (1124M)
774.656s: 0.122ms  4096k at:0xb9400000 Alloc LP (1128M)
774.656s: 0.111ms  4096k at:0xb9000000 Alloc LP (1132M)
963.453s: 0.126ms  4096k at:0xb8c00000 Alloc LP (1136M)
963.453s: 0.115ms  4096k at:0xb8800000 Alloc LP (1140M)
963.453s: 0.111ms  4096k at:0xb8400000 Alloc LP (1144M)
963.453s: 0.139ms  4096k at:0xb8000000 Alloc LP (1148M)
1157.671s: 0.405ms 16384k at:0xb7000000 Alloc LP (1164M)
1183.906s: 0.006ms    16k at:0x0d960000 Alloc SP (1164M)
1183.906s: 0.116ms  4096k at:0xb6c00000 Alloc LP (1168M)
1183.921s: 0.098ms  4096k at:0xb6800000 Alloc LP (1172M)
1183.921s: 0.097ms  4096k at:0xb6400000 Alloc LP (1176M)
1183.921s: 0.097ms  4096k at:0xb6000000 Alloc LP (1180M)
1484.953s: 0.387ms 16384k at:0xb5000000 Alloc LP (1196M)
1795.109s: 0.396ms 16384k at:0xb4000000 Alloc LP (1212M)
1994.781s: 0.124ms  4096k at:0xb3c00000 Alloc LP (1216M)
1994.781s: 0.120ms  4096k at:0xb3800000 Alloc LP (1220M)
1994.781s: 0.098ms  4096k at:0xb3400000 Alloc LP (1224M)
1994.781s: 0.101ms  4096k at:0xb3000000 Alloc LP (1228M)
2086.687s: 0.385ms 16384k at:0xb2000000 Alloc LP (1244M)
2246.500s: MFCA req.
2247.687s: 0.056ms  6144k at:0xc9400000 Free     (1238M)
2248.296s: MFCA req.
2248.296s: 0.055ms  6144k at:0xc8800000 Free     (1232M)
2248.296s: 0.052ms  6144k at:0xc8200000 Free     (1226M)
2248.296s: 0.051ms  6144k at:0xc8e00000 Free     (1220M)
2250.000s: 0.163ms  6144k at:0xc9400000 Alloc LP (1226M)
2250.000s: 0.161ms  6144k at:0xc8e00000 Alloc LP (1232M)
2250.000s: 0.150ms  6144k at:0xc8800000 Alloc LP (1238M)
2250.000s: 0.146ms  6144k at:0xc8200000 Alloc LP (1244M)
2254.140s: 0.106ms 10240k at:0xcda00000 Free     (1234M)
2254.546s: 0.041ms  4096k at:0xd1800000 Free     (1230M)
2254.546s: 0.036ms  4096k at:0xf2800000 Free     (1226M)
2254.562s: 0.036ms  4096k at:0xdc800000 Free     (1222M)
2254.562s: 0.037ms  4096k at:0xdc400000 Free     (1218M)
2254.562s: 0.036ms  4096k at:0xdd000000 Free     (1214M)
2254.562s: 0.036ms  4096k at:0xdd400000 Free     (1210M)
2254.562s: 0.036ms  4096k at:0xd2800000 Free     (1206M)
2254.562s: 0.037ms  4096k at:0xd1000000 Free     (1202M)
2254.562s: 0.036ms  4096k at:0xd2000000 Free     (1198M)
2254.562s: 0.035ms  4096k at:0xd3400000 Free     (1194M)
2254.562s: 0.035ms  4096k at:0xd3800000 Free     (1190M)
2254.562s: 0.036ms  4096k at:0xd6c00000 Free     (1186M)
2254.578s: 0.036ms  4096k at:0xd6000000 Free     (1182M)
2254.578s: 0.036ms  4096k at:0xd4000000 Free     (1178M)
2254.578s: 0.035ms  4096k at:0xd5800000 Free     (1174M)
2254.578s: 0.036ms  4096k at:0xd4c00000 Free     (1170M)
2254.578s: 0.037ms  4096k at:0xd5000000 Free     (1166M)
2254.578s: 0.036ms  4096k at:0xd8400000 Free     (1162M)
2254.578s: 0.035ms  4096k at:0xd5c00000 Free     (1158M)
2254.593s: MFCA req.
2254.593s: 0.152ms 18432k at:0xf3200000 Free     (1140M)
2254.593s: 0.187ms 18432k at:0xdfc00000 Free     (1122M)
2254.609s: 0.041ms  4096k at:0xcca00000 Free     (1118M)
2254.656s: 0.517ms 67584k at:0xe0e00000 Free     (1052M)
2254.656s: 0.038ms  4096k at:0xcec00000 Free     (1048M)
2254.687s: 0.150ms 18432k at:0xdea00000 Free     (1030M)
2254.703s: 0.056ms  6144k at:0xc8800000 Free     (1024M)
2254.703s: 0.051ms  6144k at:0xc8200000 Free     (1018M)
2254.718s: 0.051ms  6144k at:0xc8e00000 Free     (1012M)
2254.718s: 0.052ms  6144k at:0xc9400000 Free     (1006M)
2254.718s: 0.037ms  4096k at:0xd2400000 Free     (1002M)
2254.718s: 0.051ms  6144k at:0xf2c00000 Free     ( 996M)
2254.718s: 0.035ms  4096k at:0xd5400000 Free     ( 992M)
2254.718s: 0.036ms  4096k at:0xd4800000 Free     ( 988M)
2254.718s: 0.035ms  4096k at:0xd9800000 Free     ( 984M)
2254.734s: 0.035ms  4096k at:0xd4400000 Free     ( 980M)
2254.734s: 0.036ms  4096k at:0xdcc00000 Free     ( 976M)
2254.734s: 0.037ms  4096k at:0xd2c00000 Free     ( 972M)
2254.734s: 0.046ms  4096k at:0xd1c00000 Free     ( 968M)
2254.734s: 0.036ms  4096k at:0xd3c00000 Free     ( 964M)
2254.750s: 0.038ms  4096k at:0xd6800000 Free     ( 960M)
2254.750s: 0.038ms  4096k at:0xd3000000 Free     ( 956M)
2254.750s: 0.037ms  4096k at:0xef400000 Free     ( 952M)
2254.750s: 0.036ms  4096k at:0xee000000 Free     ( 948M)
2254.765s: 0.036ms  4096k at:0xed400000 Free     ( 944M)
2254.765s: 0.038ms  4096k at:0xef800000 Free     ( 940M)
2254.765s: 0.037ms  4096k at:0xed000000 Free     ( 936M)
2254.765s: 0.037ms  4096k at:0xedc00000 Free     ( 932M)
2254.765s: 0.035ms  4096k at:0xee400000 Free     ( 928M)
2254.765s: 0.036ms  4096k at:0xee800000 Free     ( 924M)
2254.906s: 0.041ms  4096k at:0xed800000 Free     ( 920M)
2254.921s: 0.037ms  4096k at:0xd0400000 Free     ( 916M)
2254.921s: 0.036ms  4096k at:0xf2400000 Free     ( 912M)
2254.937s: 0.041ms  4096k at:0xcd600000 Free     ( 908M)
2254.937s: 0.036ms  4096k at:0xd8000000 Free     ( 904M)
2255.156s: 0.037ms  4096k at:0xd7000000 Free     ( 900M)
2255.156s: 0.040ms  4096k at:0xcce00000 Free     ( 896M)
2255.156s: 0.035ms  4096k at:0xf2000000 Free     ( 892M)
2255.203s: 0.327ms 34816k at:0xf7400000 Free     ( 858M)
2255.625s: 0.041ms  4096k at:0xc0800000 Free     ( 854M)
2255.671s: 0.038ms  4096k at:0xeec00000 Free     ( 850M)
2255.687s: 0.042ms  4096k at:0xfbc00000 Free     ( 846M)
2255.687s: 0.039ms  4096k at:0xbfc00000 Free     ( 842M)
2255.687s: 0.036ms  4096k at:0xfb000000 Free     ( 838M)
2255.687s: 0.037ms  4096k at:0xf0800000 Free     ( 834M)
2255.703s: 0.042ms  4096k at:0xf6000000 Free     ( 830M)
2255.703s: 0.037ms  4096k at:0xef000000 Free     ( 826M)
2255.703s: 0.037ms  4096k at:0xfe000000 Free     ( 822M)
2255.703s: 0.132ms 16384k at:0xb2000000 Free     ( 806M)
2255.703s: 0.036ms  4096k at:0xb3000000 Free     ( 802M)
2255.703s: 0.037ms  4096k at:0xb3400000 Free     ( 798M)
2255.703s: 0.037ms  4096k at:0xb3800000 Free     ( 794M)
2255.718s: 0.036ms  4096k at:0xb3c00000 Free     ( 790M)
2255.718s: 0.132ms 16384k at:0xb4000000 Free     ( 774M)
2255.718s: 0.130ms 16384k at:0xb5000000 Free     ( 758M)
2255.718s: 0.036ms  4096k at:0xb6000000 Free     ( 754M)
2255.718s: 0.036ms  4096k at:0xb6400000 Free     ( 750M)
2255.718s: 0.037ms  4096k at:0xb6800000 Free     ( 746M)
2255.718s: 0.036ms  4096k at:0xb6c00000 Free     ( 742M)
2255.718s: 0.133ms 16384k at:0xb7000000 Free     ( 726M)
2255.718s: 0.043ms  4096k at:0xb8000000 Free     ( 722M)
2255.718s: 0.036ms  4096k at:0xb8400000 Free     ( 718M)
2255.718s: 0.036ms  4096k at:0xb8800000 Free     ( 714M)
2255.734s: 0.037ms  4096k at:0xb8c00000 Free     ( 710M)
2255.734s: 0.036ms  4096k at:0xb9000000 Free     ( 706M)
2255.734s: 0.036ms  4096k at:0xb9400000 Free     ( 702M)
2255.734s: 0.035ms  4096k at:0xb9800000 Free     ( 698M)
2255.734s: 0.036ms  4096k at:0xbb400000 Free     ( 694M)
2255.734s: 0.131ms 16384k at:0xb9c00000 Free     ( 678M)
2255.734s: 0.035ms  4096k at:0xbac00000 Free     ( 674M)
2255.734s: 0.036ms  4096k at:0xbb000000 Free     ( 670M)
2255.734s: 0.035ms  4096k at:0xbb800000 Free     ( 666M)
2255.734s: 0.131ms 16384k at:0xbbc00000 Free     ( 650M)
2255.734s: 0.131ms 16384k at:0xbcc00000 Free     ( 634M)
2255.750s: 0.037ms  4096k at:0xbdc00000 Free     ( 630M)
2255.750s: 0.037ms  4096k at:0xbe000000 Free     ( 626M)
2255.750s: 0.036ms  4096k at:0xbe400000 Free     ( 622M)
2255.750s: 0.037ms  4096k at:0xbe800000 Free     ( 618M)
2255.750s: 0.137ms 16384k at:0xbec00000 Free     ( 602M)
2255.750s: 0.037ms  4096k at:0xc0000000 Free     ( 598M)
2255.750s: 0.036ms  4096k at:0xc0400000 Free     ( 594M)
2255.750s: 0.130ms 16384k at:0xc0c00000 Free     ( 578M)
2255.750s: 0.036ms  4096k at:0xc1c00000 Free     ( 574M)
2255.750s: 0.035ms  4096k at:0xc2000000 Free     ( 570M)
2255.750s: 0.035ms  4096k at:0xc2400000 Free     ( 566M)
2255.765s: 0.035ms  4096k at:0xc2800000 Free     ( 562M)
2255.765s: 0.139ms 16384k at:0xc2c00000 Free     ( 546M)
2255.765s: 0.035ms  4096k at:0xc3c00000 Free     ( 542M)
2255.765s: 0.035ms  4096k at:0xc4000000 Free     ( 538M)
2255.765s: 0.035ms  4096k at:0xc4400000 Free     ( 534M)
2255.765s: 0.035ms  4096k at:0xc5e00000 Free     ( 530M)
2255.765s: 0.114ms 14336k at:0xc4800000 Free     ( 516M)
2255.765s: 0.035ms  4096k at:0xc5600000 Free     ( 512M)
2255.765s: 0.035ms  4096k at:0xc5a00000 Free     ( 508M)
2255.765s: 0.035ms  4096k at:0xc6200000 Free     ( 504M)
2255.765s: 0.035ms  4096k at:0xc6600000 Free     ( 500M)
2255.765s: 0.044ms  4096k at:0xc6a00000 Free     ( 496M)
2255.781s: 0.039ms  4096k at:0xc6e00000 Free     ( 492M)
2255.781s: 0.035ms  4096k at:0xc7200000 Free     ( 488M)
2255.781s: 0.035ms  4096k at:0xc7600000 Free     ( 484M)
2255.781s: 0.036ms  4096k at:0xc7a00000 Free     ( 480M)
2255.781s: 0.035ms  4096k at:0xc7e00000 Free     ( 476M)
2255.781s: 0.035ms  4096k at:0xc9a00000 Free     ( 472M)
2255.781s: 0.035ms  4096k at:0xc9e00000 Free     ( 468M)
2255.781s: 0.035ms  4096k at:0xca200000 Free     ( 464M)
2255.781s: 0.035ms  4096k at:0xca600000 Free     ( 460M)
2255.781s: 0.035ms  4096k at:0xcaa00000 Free     ( 456M)
2255.781s: 0.035ms  4096k at:0xcae00000 Free     ( 452M)
2255.781s: 0.035ms  4096k at:0xcb200000 Free     ( 448M)
2255.796s: 0.035ms  4096k at:0xcb600000 Free     ( 444M)
2255.796s: 0.035ms  4096k at:0xcba00000 Free     ( 440M)
2255.796s: 0.035ms  4096k at:0xcbe00000 Free     ( 436M)
2255.796s: 0.035ms  4096k at:0xcc200000 Free     ( 432M)
2255.796s: 0.043ms  4096k at:0xcc600000 Free     ( 428M)
2255.796s: 0.036ms  4096k at:0xcd200000 Free     ( 424M)
2255.796s: 0.041ms  4096k at:0xce400000 Free     ( 420M)
2255.796s: 0.035ms  4096k at:0xce800000 Free     ( 416M)
2255.796s: 0.036ms  4096k at:0xcf000000 Free     ( 412M)
2255.812s: 0.037ms  4096k at:0xdda00000 Free     ( 408M)
2255.812s: 0.036ms  4096k at:0xdde00000 Free     ( 404M)
2255.812s: 0.037ms  4096k at:0xde200000 Free     ( 400M)
2255.812s: 0.036ms  4096k at:0xde600000 Free     ( 396M)
2255.812s: 0.037ms  4096k at:0xcf400000 Free     ( 392M)
2255.812s: 0.036ms  4096k at:0xcf800000 Free     ( 388M)
2255.812s: 0.036ms  4096k at:0xcfc00000 Free     ( 384M)
2255.812s: 0.036ms  4096k at:0xd0000000 Free     ( 380M)
2255.812s: 0.037ms  4096k at:0xd0800000 Free     ( 376M)
2255.812s: 0.036ms  4096k at:0xd0c00000 Free     ( 372M)
2255.812s: 0.036ms  4096k at:0xd1400000 Free     ( 368M)
2255.828s: 0.036ms  4096k at:0xd6400000 Free     ( 364M)
2255.828s: 0.037ms  4096k at:0xd7400000 Free     ( 360M)
2255.828s: 0.036ms  4096k at:0xd7800000 Free     ( 356M)
2255.828s: 0.035ms  4096k at:0xd7c00000 Free     ( 352M)
2255.828s: 0.035ms  4096k at:0xd8800000 Free     ( 348M)
2255.828s: 0.035ms  4096k at:0xd8c00000 Free     ( 344M)
2255.828s: 0.035ms  4096k at:0xd9000000 Free     ( 340M)
2255.828s: 0.035ms  4096k at:0xd9400000 Free     ( 336M)
2255.828s: 0.035ms  4096k at:0xd9c00000 Free     ( 332M)
2255.828s: 0.036ms  4096k at:0xda000000 Free     ( 328M)
2255.828s: 0.035ms  4096k at:0xda400000 Free     ( 324M)
2255.828s: 0.035ms  4096k at:0xda800000 Free     ( 320M)
2255.843s: 0.035ms  4096k at:0xdac00000 Free     ( 316M)
2255.843s: 0.035ms  4096k at:0xdb000000 Free     ( 312M)
2255.843s: 0.035ms  4096k at:0xdb400000 Free     ( 308M)
2255.843s: 0.036ms  4096k at:0xdb800000 Free     ( 304M)
2255.843s: 0.035ms  4096k at:0xdbc00000 Free     ( 300M)
2255.843s: 0.037ms  4096k at:0xdc000000 Free     ( 296M)
2255.843s: 0.114ms 14336k at:0xe5000000 Free     ( 282M)
2255.843s: 0.114ms 14336k at:0xe5e00000 Free     ( 268M)
2255.843s: 0.114ms 14336k at:0xe6c00000 Free     ( 254M)
2255.843s: 0.116ms 14336k at:0xe7a00000 Free     ( 240M)
2255.843s: 0.118ms 14336k at:0xe8800000 Free     ( 226M)
2255.843s: 0.116ms 14336k at:0xe9600000 Free     ( 212M)
2255.859s: 0.114ms 14336k at:0xea400000 Free     ( 198M)
2255.859s: 0.115ms 14336k at:0xeb200000 Free     ( 184M)
2255.859s: 0.036ms  4096k at:0xec000000 Free     ( 180M)
2255.859s: 0.035ms  4096k at:0xec400000 Free     ( 176M)
2255.859s: 0.035ms  4096k at:0xec800000 Free     ( 172M)
2255.859s: 0.036ms  4096k at:0xecc00000 Free     ( 168M)
2255.859s: 0.036ms  4096k at:0xefc00000 Free     ( 164M)
2255.859s: 0.035ms  4096k at:0xf0000000 Free     ( 160M)
2255.859s: 0.035ms  4096k at:0xf0400000 Free     ( 156M)
2255.859s: 0.035ms  4096k at:0xf0c00000 Free     ( 152M)
2255.859s: 0.035ms  4096k at:0xf1000000 Free     ( 148M)
2255.875s: 0.035ms  4096k at:0xf1400000 Free     ( 144M)
2255.875s: 0.035ms  4096k at:0xf1800000 Free     ( 140M)
2255.875s: 0.035ms  4096k at:0xf1c00000 Free     ( 136M)
2255.875s: 0.035ms  4096k at:0xf4400000 Free     ( 132M)
2255.875s: 0.035ms  4096k at:0xf4800000 Free     ( 128M)
2255.875s: 0.035ms  4096k at:0xf4c00000 Free     ( 124M)
2255.875s: 0.035ms  4096k at:0xf5000000 Free     ( 120M)
2255.875s: 0.035ms  4096k at:0xf5400000 Free     ( 116M)
2255.875s: 0.036ms  4096k at:0xf5800000 Free     ( 112M)
2255.875s: 0.035ms  4096k at:0xf5c00000 Free     ( 108M)
2255.875s: 0.035ms  4096k at:0xf6400000 Free     ( 104M)
2255.875s: 0.037ms  4096k at:0xf6800000 Free     ( 100M)
2255.890s: 0.035ms  4096k at:0xf6c00000 Free     (  96M)
2255.890s: 0.035ms  4096k at:0xf7000000 Free     (  92M)
2255.890s: 0.115ms 14336k at:0xf9600000 Free     (  78M)
2255.890s: 0.035ms  4096k at:0xfa400000 Free     (  74M)
2255.890s: 0.035ms  4096k at:0xfa800000 Free     (  70M)
2255.890s: 0.036ms  4096k at:0xfac00000 Free     (  66M)
2255.890s: 0.035ms  4096k at:0xfb400000 Free     (  62M)
2255.890s: 0.035ms  4096k at:0xfb800000 Free     (  58M)
2255.890s: 0.035ms  4096k at:0xfc000000 Free     (  54M)
2255.890s: 0.035ms  4096k at:0xfc400000 Free     (  50M)
2255.890s: 0.035ms  4096k at:0xfc800000 Free     (  46M)
2255.906s: 0.037ms  4096k at:0xfcc00000 Free     (  42M)
2255.906s: 0.035ms  4096k at:0xfd000000 Free     (  38M)
2255.906s: 0.036ms  4096k at:0xfd400000 Free     (  34M)
2255.906s: 0.036ms  4096k at:0xfd800000 Free     (  30M)
2255.906s: 0.035ms  4096k at:0xfdc00000 Free     (  26M)
2255.906s: 0.035ms  4096k at:0xfe400000 Free     (  22M)
2255.906s: 0.038ms  4096k at:0xfe800000 Free     (  18M)
2255.906s: 0.035ms  4096k at:0xfec00000 Free     (  14M)
2255.906s: 0.036ms  4096k at:0xff000000 Free     (  10M)
2255.906s: 0.068ms  8192k at:0xff400000 Free     (   2M)
2255.906s: 0.020ms  2048k at:0xffc00000 Free     (   0M)
2255.906s: regAllocTotalDur:   34.119ms LOCstat: 40171/44502:90.3% TLSLeft:  3

Share this post


Link to post
Share on other sites

a short mission start ON ramdisk

SeLockMemoryPrivilege: granted, huge pages enabled

  0.000s: 0.158ms  2048k at:0xffc00000 Alloc LP (   2M)
  0.000s: 0.001ms   128k at:0x00160000 Alloc SP (   2M)
  0.000s: 0.530ms  8192k at:0xff400000 Alloc LP (  10M)
  1.092s: 0.268ms  2048k at:0xff200000 Alloc LP (  12M)
  1.092s: 0.220ms  2048k at:0xff000000 Alloc LP (  14M)
  1.092s: 0.216ms  2048k at:0xfee00000 Alloc LP (  16M)
  1.092s: 0.213ms  2048k at:0xfec00000 Alloc LP (  18M)
  1.248s: 0.261ms  2048k at:0xfea00000 Alloc LP (  20M)
  1.248s: 0.213ms  2048k at:0xfe800000 Alloc LP (  22M)
  1.248s: 0.209ms  2048k at:0xfe600000 Alloc LP (  24M)
  1.248s: 0.211ms  2048k at:0xfe400000 Alloc LP (  26M)
  2.122s: 0.470ms  2048k at:0xfe200000 Alloc LP (  28M)
  2.122s: 0.422ms  2048k at:0xfe000000 Alloc LP (  30M)
  2.122s: 0.412ms  2048k at:0xfde00000 Alloc LP (  32M)
  2.122s: 1.814ms  2048k at:0xfdc00000 Alloc LP (  34M)
  2.948s: 0.733ms  2048k at:0xfda00000 Alloc LP (  36M)
  2.948s: 0.284ms  2048k at:0xfd800000 Alloc LP (  38M)
  2.948s: 0.280ms  2048k at:0xfd600000 Alloc LP (  40M)
  2.948s: 0.277ms  2048k at:0xfd400000 Alloc LP (  42M)
  3.104s: 0.287ms  2048k at:0xfd200000 Alloc LP (  44M)
  3.104s: 0.249ms  2048k at:0xfd000000 Alloc LP (  46M)
  3.104s: 0.243ms  2048k at:0xfce00000 Alloc LP (  48M)
  3.104s: 0.234ms  2048k at:0xfcc00000 Alloc LP (  50M)
  3.292s: 0.272ms  2048k at:0xfca00000 Alloc LP (  52M)
  3.292s: 0.225ms  2048k at:0xfc800000 Alloc LP (  54M)
  3.292s: 0.224ms  2048k at:0xfc600000 Alloc LP (  56M)
  3.292s: 0.221ms  2048k at:0xfc400000 Alloc LP (  58M)
  3.526s: 0.338ms  2048k at:0xfc200000 Alloc LP (  60M)
  3.526s: 0.294ms  2048k at:0xfc000000 Alloc LP (  62M)
  3.526s: 0.313ms  2048k at:0xfbe00000 Alloc LP (  64M)
  3.526s: 0.316ms  2048k at:0xfbc00000 Alloc LP (  66M)
  3.900s: 0.277ms  2048k at:0xfba00000 Alloc LP (  68M)
  3.900s: 0.231ms  2048k at:0xfb800000 Alloc LP (  70M)
  3.900s: 0.227ms  2048k at:0xfb600000 Alloc LP (  72M)
  3.900s: 0.221ms  2048k at:0xfb400000 Alloc LP (  74M)
  4.321s: 0.259ms  2048k at:0xfb200000 Alloc LP (  76M)
  4.321s: 0.210ms  2048k at:0xfb000000 Alloc LP (  78M)
  4.321s: 0.204ms  2048k at:0xfae00000 Alloc LP (  80M)
  4.321s: 0.235ms  2048k at:0xfac00000 Alloc LP (  82M)
  5.242s: 0.266ms  2048k at:0xfaa00000 Alloc LP (  84M)
  5.242s: 0.220ms  2048k at:0xfa800000 Alloc LP (  86M)
  5.257s: 0.213ms  2048k at:0xfa600000 Alloc LP (  88M)
  5.257s: 0.211ms  2048k at:0xfa400000 Alloc LP (  90M)
  5.990s: MemFlushCacheAll request
  6.100s: 0.262ms  2048k at:0xfa200000 Alloc LP (  92M)
  6.100s: 0.236ms  2048k at:0xfa000000 Alloc LP (  94M)
  6.100s: 0.215ms  2048k at:0xf9e00000 Alloc LP (  96M)
  6.100s: 0.213ms  2048k at:0xf9c00000 Alloc LP (  98M)
  6.334s: 0.260ms  2048k at:0xf9a00000 Alloc LP ( 100M)
  6.334s: 0.220ms  2048k at:0xf9800000 Alloc LP ( 102M)
  6.334s: 0.220ms  2048k at:0xf9600000 Alloc LP ( 104M)
  6.334s: 0.206ms  2048k at:0xf9400000 Alloc LP ( 106M)
 46.395s: MemFlushCacheAll request
184.159s: MemFlushCacheAll request
184.159s: MemFlushCacheAll request
184.159s: MemFlushCacheAll request
184.190s: MemFlushCacheAll request
184.190s: 0.609ms  6144k at:0xf8e00000 Alloc LP ( 112M)
184.190s: 4.766ms 67584k at:0xf4c00000 Alloc LP ( 178M)
184.206s: 0.647ms  2048k at:0xf4a00000 Alloc LP ( 180M)
184.206s: 0.582ms  2048k at:0xf4800000 Alloc LP ( 182M)
184.206s: 0.559ms  2048k at:0xf4600000 Alloc LP ( 184M)
184.206s: 0.565ms  2048k at:0xf4400000 Alloc LP ( 186M)
184.299s: 0.623ms  2048k at:0xf4200000 Alloc LP ( 188M)
184.299s: 0.561ms  2048k at:0xf4000000 Alloc LP ( 190M)
184.299s: 0.556ms  2048k at:0xf3e00000 Alloc LP ( 192M)
184.299s: 0.674ms  2048k at:0xf3c00000 Alloc LP ( 194M)
184.331s: 1.560ms 18432k at:0xf2a00000 Alloc LP ( 212M)
184.393s: 1.590ms 18432k at:0xf1800000 Alloc LP ( 230M)
184.409s: 2.509ms 18432k at:0xf0600000 Alloc LP ( 248M)
185.563s: 0.682ms  2048k at:0xf0400000 Alloc LP ( 250M)
185.563s: 0.601ms  2048k at:0xf0200000 Alloc LP ( 252M)
185.563s: 0.480ms  2048k at:0xf0000000 Alloc LP ( 254M)
185.563s: 0.467ms  2048k at:0xefe00000 Alloc LP ( 256M)
186.203s: 0.593ms  2048k at:0xefc00000 Alloc LP ( 258M)
186.203s: 0.531ms  2048k at:0xefa00000 Alloc LP ( 260M)
186.203s: 0.474ms  2048k at:0xef800000 Alloc LP ( 262M)
186.203s: 0.455ms  2048k at:0xef600000 Alloc LP ( 264M)
186.218s: 1.361ms 18432k at:0xee400000 Alloc LP ( 282M)
186.218s: 0.501ms 18432k at:0xee400000 Free     ( 264M)
186.296s: 0.735ms  2048k at:0xef400000 Alloc LP ( 266M)
186.296s: 0.758ms  2048k at:0xef200000 Alloc LP ( 268M)
186.296s: 0.685ms  2048k at:0xef000000 Alloc LP ( 270M)
186.296s: 0.651ms  2048k at:0xeee00000 Alloc LP ( 272M)
186.390s: 1.980ms  2048k at:0xeec00000 Alloc LP ( 274M)
186.390s: 2.245ms  2048k at:0xeea00000 Alloc LP ( 276M)
186.390s: 0.756ms  2048k at:0xee800000 Alloc LP ( 278M)
186.390s: 0.683ms  2048k at:0xee600000 Alloc LP ( 280M)
186.499s: 0.811ms  2048k at:0xee400000 Alloc LP ( 282M)
186.499s: 0.718ms  2048k at:0xee200000 Alloc LP ( 284M)
186.499s: 0.845ms  2048k at:0xee000000 Alloc LP ( 286M)
186.499s: 0.759ms  2048k at:0xede00000 Alloc LP ( 288M)
186.562s: 0.826ms  2048k at:0xedc00000 Alloc LP ( 290M)
186.562s: 0.581ms  2048k at:0xeda00000 Alloc LP ( 292M)
186.562s: 0.587ms  2048k at:0xed800000 Alloc LP ( 294M)
186.562s: 0.568ms  2048k at:0xed600000 Alloc LP ( 296M)
186.640s: 0.801ms  2048k at:0xed400000 Alloc LP ( 298M)
186.640s: 0.640ms  2048k at:0xed200000 Alloc LP ( 300M)
186.640s: 0.596ms  2048k at:0xed000000 Alloc LP ( 302M)
186.640s: 0.508ms  2048k at:0xece00000 Alloc LP ( 304M)
186.702s: 0.710ms  2048k at:0xecc00000 Alloc LP ( 306M)
186.702s: 0.858ms  2048k at:0xeca00000 Alloc LP ( 308M)
186.702s: 0.567ms  2048k at:0xec800000 Alloc LP ( 310M)
186.702s: 0.543ms  2048k at:0xec600000 Alloc LP ( 312M)
186.764s: 0.795ms  2048k at:0xec400000 Alloc LP ( 314M)
186.764s: 0.680ms  2048k at:0xec200000 Alloc LP ( 316M)
186.764s: 0.561ms  2048k at:0xec000000 Alloc LP ( 318M)
186.764s: 0.518ms  2048k at:0xebe00000 Alloc LP ( 320M)
186.811s: 0.626ms  2048k at:0xebc00000 Alloc LP ( 322M)
186.811s: 0.526ms  2048k at:0xeba00000 Alloc LP ( 324M)
186.811s: 0.634ms  2048k at:0xeb800000 Alloc LP ( 326M)
186.811s: 0.489ms  2048k at:0xeb600000 Alloc LP ( 328M)
186.874s: 0.567ms  2048k at:0xeb400000 Alloc LP ( 330M)
186.874s: 0.610ms  2048k at:0xeb200000 Alloc LP ( 332M)
186.874s: 0.484ms  2048k at:0xeb000000 Alloc LP ( 334M)
186.874s: 0.486ms  2048k at:0xeae00000 Alloc LP ( 336M)
186.920s: 0.566ms  2048k at:0xeac00000 Alloc LP ( 338M)
186.920s: 0.552ms  2048k at:0xeaa00000 Alloc LP ( 340M)
186.920s: 0.470ms  2048k at:0xea800000 Alloc LP ( 342M)
186.936s: 0.463ms  2048k at:0xea600000 Alloc LP ( 344M)
186.983s: 0.551ms  2048k at:0xea400000 Alloc LP ( 346M)
186.983s: 0.497ms  2048k at:0xea200000 Alloc LP ( 348M)
186.983s: 0.511ms  2048k at:0xea000000 Alloc LP ( 350M)
186.983s: 0.446ms  2048k at:0xe9e00000 Alloc LP ( 352M)
187.030s: 0.740ms  2048k at:0xe9c00000 Alloc LP ( 354M)
187.030s: 0.585ms  2048k at:0xe9a00000 Alloc LP ( 356M)
187.030s: 0.455ms  2048k at:0xe9800000 Alloc LP ( 358M)
187.030s: 0.467ms  2048k at:0xe9600000 Alloc LP ( 360M)
187.076s: 0.843ms  2048k at:0xe9400000 Alloc LP ( 362M)
187.076s: 0.503ms  2048k at:0xe9200000 Alloc LP ( 364M)
187.076s: 0.459ms  2048k at:0xe9000000 Alloc LP ( 366M)
187.092s: 0.454ms  2048k at:0xe8e00000 Alloc LP ( 368M)
187.139s: 0.548ms  2048k at:0xe8c00000 Alloc LP ( 370M)
187.139s: 0.737ms  2048k at:0xe8a00000 Alloc LP ( 372M)
187.139s: 0.446ms  2048k at:0xe8800000 Alloc LP ( 374M)
187.139s: 0.449ms  2048k at:0xe8600000 Alloc LP ( 376M)
187.186s: 0.816ms  2048k at:0xe8400000 Alloc LP ( 378M)
187.186s: 0.491ms  2048k at:0xe8200000 Alloc LP ( 380M)
187.186s: 0.461ms  2048k at:0xe8000000 Alloc LP ( 382M)
187.186s: 0.486ms  2048k at:0xe7e00000 Alloc LP ( 384M)
187.248s: 0.771ms  2048k at:0xe7c00000 Alloc LP ( 386M)
187.248s: 0.671ms  2048k at:0xe7a00000 Alloc LP ( 388M)
187.248s: 0.498ms  2048k at:0xe7800000 Alloc LP ( 390M)
187.248s: 0.496ms  2048k at:0xe7600000 Alloc LP ( 392M)
187.295s: 0.792ms  2048k at:0xe7400000 Alloc LP ( 394M)
187.295s: 0.650ms  2048k at:0xe7200000 Alloc LP ( 396M)
187.295s: 0.579ms  2048k at:0xe7000000 Alloc LP ( 398M)
187.295s: 0.485ms  2048k at:0xe6e00000 Alloc LP ( 400M)
187.342s: 0.003ms    16k at:0x00fe0000 Alloc SP ( 400M)
187.357s: 0.643ms  2048k at:0xe6c00000 Alloc LP ( 402M)
187.357s: 0.520ms  2048k at:0xe6a00000 Alloc LP ( 404M)
187.357s: 0.497ms  2048k at:0xe6800000 Alloc LP ( 406M)
187.357s: 0.497ms  2048k at:0xe6600000 Alloc LP ( 408M)
187.404s: 0.762ms  2048k at:0xe6400000 Alloc LP ( 410M)
187.404s: 0.618ms  2048k at:0xe6200000 Alloc LP ( 412M)
187.404s: 0.538ms  2048k at:0xe6000000 Alloc LP ( 414M)
187.404s: 0.526ms  2048k at:0xe5e00000 Alloc LP ( 416M)
187.451s: 0.793ms  2048k at:0xe5c00000 Alloc LP ( 418M)
187.451s: 0.687ms  2048k at:0xe5a00000 Alloc LP ( 420M)
187.451s: 0.663ms  2048k at:0xe5800000 Alloc LP ( 422M)
187.451s: 0.497ms  2048k at:0xe5600000 Alloc LP ( 424M)
187.513s: 0.747ms  2048k at:0xe5400000 Alloc LP ( 426M)
187.513s: 0.661ms  2048k at:0xe5200000 Alloc LP ( 428M)
187.513s: 0.591ms  2048k at:0xe5000000 Alloc LP ( 430M)
187.513s: 0.518ms  2048k at:0xe4e00000 Alloc LP ( 432M)
187.560s: 0.754ms  2048k at:0xe4c00000 Alloc LP ( 434M)
187.560s: 0.583ms  2048k at:0xe4a00000 Alloc LP ( 436M)
187.560s: 0.534ms  2048k at:0xe4800000 Alloc LP ( 438M)
187.560s: 0.481ms  2048k at:0xe4600000 Alloc LP ( 440M)
187.607s: 0.789ms  2048k at:0xe4400000 Alloc LP ( 442M)
187.607s: 0.522ms  2048k at:0xe4200000 Alloc LP ( 444M)
187.607s: 0.567ms  2048k at:0xe4000000 Alloc LP ( 446M)
187.607s: 0.519ms  2048k at:0xe3e00000 Alloc LP ( 448M)
187.654s: 0.734ms  2048k at:0xe3c00000 Alloc LP ( 450M)
187.654s: 0.645ms  2048k at:0xe3a00000 Alloc LP ( 452M)
187.654s: 0.547ms  2048k at:0xe3800000 Alloc LP ( 454M)
187.654s: 0.465ms  2048k at:0xe3600000 Alloc LP ( 456M)
187.716s: 0.650ms  2048k at:0xe3400000 Alloc LP ( 458M)
187.716s: 0.713ms  2048k at:0xe3200000 Alloc LP ( 460M)
187.716s: 0.626ms  2048k at:0xe3000000 Alloc LP ( 462M)
187.716s: 0.520ms  2048k at:0xe2e00000 Alloc LP ( 464M)
187.763s: 0.003ms    16k at:0x010b0000 Alloc SP ( 464M)
187.763s: 0.928ms  2048k at:0xe2c00000 Alloc LP ( 466M)
187.763s: 0.718ms  2048k at:0xe2a00000 Alloc LP ( 468M)
187.763s: 0.597ms  2048k at:0xe2800000 Alloc LP ( 470M)
187.763s: 0.532ms  2048k at:0xe2600000 Alloc LP ( 472M)
187.825s: 0.825ms  2048k at:0xe2400000 Alloc LP ( 474M)
187.825s: 0.687ms  2048k at:0xe2200000 Alloc LP ( 476M)
187.825s: 0.602ms  2048k at:0xe2000000 Alloc LP ( 478M)
187.825s: 0.603ms  2048k at:0xe1e00000 Alloc LP ( 480M)
187.872s: 0.806ms  2048k at:0xe1c00000 Alloc LP ( 482M)
187.872s: 0.612ms  2048k at:0xe1a00000 Alloc LP ( 484M)
187.872s: 0.547ms  2048k at:0xe1800000 Alloc LP ( 486M)
187.872s: 0.529ms  2048k at:0xe1600000 Alloc LP ( 488M)
188.059s: 0.845ms  2048k at:0xe1400000 Alloc LP ( 490M)
188.059s: 0.662ms  2048k at:0xe1200000 Alloc LP ( 492M)
188.059s: 0.574ms  2048k at:0xe1000000 Alloc LP ( 494M)
188.059s: 0.546ms  2048k at:0xe0e00000 Alloc LP ( 496M)
188.558s: 1.249ms  2048k at:0xe0c00000 Alloc LP ( 498M)
188.558s: 0.549ms  2048k at:0xe0a00000 Alloc LP ( 500M)
188.558s: 0.529ms  2048k at:0xe0800000 Alloc LP ( 502M)
188.558s: 0.511ms  2048k at:0xe0600000 Alloc LP ( 504M)
188.933s: 0.799ms  2048k at:0xe0400000 Alloc LP ( 506M)
188.933s: 0.714ms  2048k at:0xe0200000 Alloc LP ( 508M)
188.933s: 0.622ms  2048k at:0xe0000000 Alloc LP ( 510M)
188.933s: 0.597ms  2048k at:0xdfe00000 Alloc LP ( 512M)
189.120s: 0.596ms  2048k at:0xdfc00000 Alloc LP ( 514M)
189.120s: 0.494ms  2048k at:0xdfa00000 Alloc LP ( 516M)
189.120s: 0.472ms  2048k at:0xdf800000 Alloc LP ( 518M)
189.120s: 0.474ms  2048k at:0xdf600000 Alloc LP ( 520M)
189.526s: 0.610ms  2048k at:0xdf400000 Alloc LP ( 522M)
189.526s: 0.522ms  2048k at:0xdf200000 Alloc LP ( 524M)
189.526s: 0.536ms  2048k at:0xdf000000 Alloc LP ( 526M)
189.526s: 0.506ms  2048k at:0xdee00000 Alloc LP ( 528M)
189.682s: 0.004ms    16k at:0x010d0000 Alloc SP ( 528M)
189.744s: 0.593ms  2048k at:0xdec00000 Alloc LP ( 530M)
189.744s: 0.508ms  2048k at:0xdea00000 Alloc LP ( 532M)
189.744s: 0.477ms  2048k at:0xde800000 Alloc LP ( 534M)
189.744s: 0.472ms  2048k at:0xde600000 Alloc LP ( 536M)
189.994s: 0.669ms  2048k at:0xde400000 Alloc LP ( 538M)
189.994s: 0.619ms  2048k at:0xde200000 Alloc LP ( 540M)
190.009s: 0.610ms  2048k at:0xde000000 Alloc LP ( 542M)
190.009s: 0.722ms  2048k at:0xdde00000 Alloc LP ( 544M)
190.805s: 0.698ms  2048k at:0xddc00000 Alloc LP ( 546M)
190.805s: 0.664ms  2048k at:0xdda00000 Alloc LP ( 548M)
190.805s: 0.627ms  2048k at:0xdd800000 Alloc LP ( 550M)
190.805s: 0.658ms  2048k at:0xdd600000 Alloc LP ( 552M)
190.945s: 1.183ms 10240k at:0xdcc00000 Alloc LP ( 562M)
191.070s: 0.705ms  2048k at:0xdca00000 Alloc LP ( 564M)
191.070s: 0.765ms  2048k at:0xdc800000 Alloc LP ( 566M)
191.070s: 0.781ms  2048k at:0xdc600000 Alloc LP ( 568M)
191.070s: 0.759ms  2048k at:0xdc400000 Alloc LP ( 570M)
191.304s: 0.772ms  2048k at:0xdc200000 Alloc LP ( 572M)
191.304s: 0.699ms  2048k at:0xdc000000 Alloc LP ( 574M)
191.304s: 0.689ms  2048k at:0xdbe00000 Alloc LP ( 576M)
191.320s: 0.685ms  2048k at:0xdbc00000 Alloc LP ( 578M)
191.444s: 1.166ms  6144k at:0xdb600000 Alloc LP ( 584M)
191.460s: 1.488ms  6144k at:0xdb000000 Alloc LP ( 590M)
191.460s: 1.159ms  6144k at:0xdaa00000 Alloc LP ( 596M)
191.460s: 1.234ms  6144k at:0xda400000 Alloc LP ( 602M)
192.146s: 0.903ms  2048k at:0xda200000 Alloc LP ( 604M)
192.146s: 0.845ms  2048k at:0xda000000 Alloc LP ( 606M)
192.146s: 0.924ms  2048k at:0xd9e00000 Alloc LP ( 608M)
192.146s: 0.858ms  2048k at:0xd9c00000 Alloc LP ( 610M)
194.003s: 0.912ms  2048k at:0xd9a00000 Alloc LP ( 612M)
194.003s: 1.526ms  2048k at:0xd9800000 Alloc LP ( 614M)
194.003s: 0.881ms  2048k at:0xd9600000 Alloc LP ( 616M)
194.003s: 2.031ms  2048k at:0xd9400000 Alloc LP ( 618M)
194.674s: 1.217ms  2048k at:0xd9200000 Alloc LP ( 620M)
194.674s: 1.099ms  2048k at:0xd9000000 Alloc LP ( 622M)
194.674s: 2.126ms  2048k at:0xd8e00000 Alloc LP ( 624M)
194.674s: 0.988ms  2048k at:0xd8c00000 Alloc LP ( 626M)
194.752s: 1.061ms  2048k at:0xd8a00000 Alloc LP ( 628M)
194.752s: 1.036ms  2048k at:0xd8800000 Alloc LP ( 630M)
194.752s: 0.973ms  2048k at:0xd8600000 Alloc LP ( 632M)
194.752s: 0.940ms  2048k at:0xd8400000 Alloc LP ( 634M)
194.752s: 0.003ms    16k at:0x010e0000 Alloc SP ( 634M)
195.454s: 1.423ms  2048k at:0xd8200000 Alloc LP ( 636M)
195.454s: 1.362ms  2048k at:0xd8000000 Alloc LP ( 638M)
195.454s: 1.429ms  2048k at:0xd7e00000 Alloc LP ( 640M)
195.469s: 1.379ms  2048k at:0xd7c00000 Alloc LP ( 642M)
263.938s: 1.238ms  2048k at:0xd7a00000 Alloc LP ( 644M)
263.938s: 1.081ms  2048k at:0xd7800000 Alloc LP ( 646M)
263.938s: 1.046ms  2048k at:0xd7600000 Alloc LP ( 648M)
263.938s: 1.025ms  2048k at:0xd7400000 Alloc LP ( 650M)
289.819s: 2.170ms  4096k at:0xd7000000 Alloc LP ( 654M)
289.912s: 1.777ms  6144k at:0xd6a00000 Alloc LP ( 660M)
290.068s: 2.043ms 10240k at:0xd6000000 Alloc LP ( 670M)
290.068s: 0.221ms  6144k at:0xd6a00000 Free     ( 664M)
290.240s: 2.175ms  8192k at:0xd5800000 Alloc LP ( 672M)
290.240s: 0.230ms 10240k at:0xd6000000 Free     ( 662M)
290.271s: 2.124ms  8192k at:0xd6800000 Alloc LP ( 670M)
290.302s: 0.094ms  4096k at:0xd7000000 Free     ( 666M)
290.583s: 2.223ms  4096k at:0xd7000000 Alloc LP ( 670M)
290.723s: 2.473ms  6144k at:0xd6200000 Alloc LP ( 676M)
290.723s: 0.153ms  8192k at:0xd6800000 Free     ( 668M)
290.895s: 1.863ms  2048k at:0xd6e00000 Alloc LP ( 670M)
290.895s: 1.454ms  2048k at:0xd6c00000 Alloc LP ( 672M)
290.895s: 1.087ms  2048k at:0xd6a00000 Alloc LP ( 674M)
290.895s: 1.002ms  2048k at:0xd6800000 Alloc LP ( 676M)
290.957s: 1.819ms  8192k at:0xd5000000 Alloc LP ( 684M)
290.957s: 0.107ms  6144k at:0xd6200000 Free     ( 678M)
300.848s: 2.023ms  2048k at:0xd6600000 Alloc LP ( 680M)
300.848s: 1.515ms  2048k at:0xd6400000 Alloc LP ( 682M)
300.848s: 1.454ms  2048k at:0xd6200000 Alloc LP ( 684M)
300.848s: 1.390ms  2048k at:0xd6000000 Alloc LP ( 686M)
308.414s: 0.216ms  8192k at:0xd5000000 Free     ( 678M)
308.414s: 0.207ms  8192k at:0xd5800000 Free     ( 670M)
312.657s: 0.194ms  4096k at:0xd7000000 Free     ( 666M)
313.203s: 1.024ms  2048k at:0xd7200000 Alloc LP ( 668M)
313.203s: 1.025ms  2048k at:0xd7000000 Alloc LP ( 670M)
313.203s: 0.970ms  2048k at:0xd5e00000 Alloc LP ( 672M)
313.203s: 1.695ms  2048k at:0xd5c00000 Alloc LP ( 674M)
315.621s: 1.100ms  2048k at:0xd5a00000 Alloc LP ( 676M)
315.621s: 1.452ms  2048k at:0xd5800000 Alloc LP ( 678M)
315.621s: 1.089ms  2048k at:0xd5600000 Alloc LP ( 680M)
315.621s: 1.135ms  2048k at:0xd5400000 Alloc LP ( 682M)
329.646s: 1.479ms  2048k at:0xd5200000 Alloc LP ( 684M)
329.646s: 0.988ms  2048k at:0xd5000000 Alloc LP ( 686M)
329.646s: 1.039ms  2048k at:0xd4e00000 Alloc LP ( 688M)
329.646s: 1.005ms  2048k at:0xd4c00000 Alloc LP ( 690M)
353.451s: 1.292ms  2048k at:0xd4a00000 Alloc LP ( 692M)
353.451s: 1.202ms  2048k at:0xd4800000 Alloc LP ( 694M)
353.451s: 1.186ms  2048k at:0xd4600000 Alloc LP ( 696M)
353.451s: 1.050ms  2048k at:0xd4400000 Alloc LP ( 698M)
353.529s: 0.003ms    16k at:0x01130000 Alloc SP ( 698M)
353.654s: 1.236ms  2048k at:0xd4200000 Alloc LP ( 700M)
353.654s: 1.195ms  2048k at:0xd4000000 Alloc LP ( 702M)
353.654s: 1.263ms  2048k at:0xd3e00000 Alloc LP ( 704M)
353.654s: 1.118ms  2048k at:0xd3c00000 Alloc LP ( 706M)
359.067s: 1.351ms  2048k at:0xd3a00000 Alloc LP ( 708M)
359.067s: 1.334ms  2048k at:0xd3800000 Alloc LP ( 710M)
359.083s: 1.281ms  2048k at:0xd3600000 Alloc LP ( 712M)
359.083s: 1.306ms  2048k at:0xd3400000 Alloc LP ( 714M)
360.128s: 3.147ms 10240k at:0xd2a00000 Alloc LP ( 724M)
367.226s: 1.724ms  4096k at:0xd2600000 Alloc LP ( 728M)
367.601s: 1.405ms  2048k at:0xd2400000 Alloc LP ( 730M)
367.601s: 1.363ms  2048k at:0xd2200000 Alloc LP ( 732M)
367.601s: 1.436ms  2048k at:0xd2000000 Alloc LP ( 734M)
367.601s: 1.398ms  2048k at:0xd1e00000 Alloc LP ( 736M)
368.490s: 1.341ms  2048k at:0xd1c00000 Alloc LP ( 738M)
368.490s: 1.293ms  2048k at:0xd1a00000 Alloc LP ( 740M)
368.490s: 2.610ms  2048k at:0xd1800000 Alloc LP ( 742M)
368.490s: 1.348ms  2048k at:0xd1600000 Alloc LP ( 744M)
369.597s: 1.311ms  2048k at:0xd1400000 Alloc LP ( 746M)
369.597s: 1.286ms  2048k at:0xd1200000 Alloc LP ( 748M)
369.613s: 1.232ms  2048k at:0xd1000000 Alloc LP ( 750M)
369.613s: 1.269ms  2048k at:0xd0e00000 Alloc LP ( 752M)
371.813s: 2.045ms  2048k at:0xd0c00000 Alloc LP ( 754M)
371.813s: 2.011ms  2048k at:0xd0a00000 Alloc LP ( 756M)
371.813s: 1.905ms  2048k at:0xd0800000 Alloc LP ( 758M)
371.813s: 1.766ms  2048k at:0xd0600000 Alloc LP ( 760M)
373.919s: 2.957ms 10240k at:0xcfc00000 Alloc LP ( 770M)
375.947s: 2.693ms  2048k at:0xcfa00000 Alloc LP ( 772M)
375.947s: 2.873ms  2048k at:0xcf800000 Alloc LP ( 774M)
375.962s: 3.999ms  2048k at:0xcf600000 Alloc LP ( 776M)
375.962s: 2.516ms  2048k at:0xcf400000 Alloc LP ( 778M)
377.678s: 0.005ms    16k at:0x01120000 Alloc SP ( 778M)
377.881s: 2.004ms  2048k at:0xcf200000 Alloc LP ( 780M)
377.881s: 1.708ms  2048k at:0xcf000000 Alloc LP ( 782M)
377.881s: 1.811ms  2048k at:0xcee00000 Alloc LP ( 784M)
377.881s: 1.754ms  2048k at:0xcec00000 Alloc LP ( 786M)
381.064s: 2.865ms  2048k at:0xcea00000 Alloc LP ( 788M)
381.064s: 2.917ms  2048k at:0xce800000 Alloc LP ( 790M)
381.064s: 2.734ms  2048k at:0xce600000 Alloc LP ( 792M)
381.064s: 2.677ms  2048k at:0xce400000 Alloc LP ( 794M)
385.884s: 5.316ms  2048k at:0xce200000 Alloc LP ( 796M)
385.884s: 1.868ms  2048k at:0xce000000 Alloc LP ( 798M)
385.884s: 3.667ms  2048k at:0xcde00000 Alloc LP ( 800M)
385.884s: 4.133ms  2048k at:0xcdc00000 Alloc LP ( 802M)
396.211s: 4.200ms  2048k at:0xcda00000 Alloc LP ( 804M)
396.211s: 4.249ms  2048k at:0xcd800000 Alloc LP ( 806M)
396.227s: 4.145ms  2048k at:0xcd600000 Alloc LP ( 808M)
396.227s: 4.791ms  2048k at:0xcd400000 Alloc LP ( 810M)
444.962s: 5.315ms  2048k at:0xcd200000 Alloc LP ( 812M)
444.962s: 4.254ms  2048k at:0xcd000000 Alloc LP ( 814M)
444.962s: 4.474ms  2048k at:0xcce00000 Alloc LP ( 816M)
444.977s: 4.370ms  2048k at:0xccc00000 Alloc LP ( 818M)
501.309s: 4.722ms  2048k at:0xcca00000 Alloc LP ( 820M)
501.325s: 5.456ms  2048k at:0xcc800000 Alloc LP ( 822M)
501.325s: 4.724ms  2048k at:0xcc600000 Alloc LP ( 824M)
501.325s: 4.757ms  2048k at:0xcc400000 Alloc LP ( 826M)
501.450s: 0.224ms  4096k at:0xd2600000 Free     ( 822M)
559.825s: 18.159ms 10240k at:0xcba00000 Alloc LP ( 832M)
664.627s: 3.722ms  2048k at:0xd2800000 Alloc LP ( 834M)
664.627s: 3.277ms  2048k at:0xd2600000 Alloc LP ( 836M)
664.627s: 3.301ms  2048k at:0xcb800000 Alloc LP ( 838M)
664.627s: 3.478ms  2048k at:0xcb600000 Alloc LP ( 840M)
671.537s: 0.006ms    16k at:0x04920000 Alloc SP ( 840M)
731.910s: MemFlushCacheAll request
731.910s: 0.276ms  6144k at:0xdaa00000 Free     ( 834M)
731.910s: 0.285ms  6144k at:0xda400000 Free     ( 828M)
731.910s: 0.274ms  6144k at:0xdb000000 Free     ( 822M)
731.910s: 0.268ms  6144k at:0xdb600000 Free     ( 816M)
731.910s: MemFlushCacheAll request
731.910s: MemFlushCacheAll request
731.925s: 1.560ms  6144k at:0xdb600000 Alloc LP ( 822M)
731.925s: 1.543ms  6144k at:0xdb000000 Alloc LP ( 828M)
731.941s: 1.613ms  6144k at:0xdaa00000 Alloc LP ( 834M)
731.941s: 1.851ms  6144k at:0xda400000 Alloc LP ( 840M)
782.361s: 8.019ms  4096k at:0xcb200000 Alloc LP ( 844M)
782.470s: 10.498ms  6144k at:0xcac00000 Alloc LP ( 850M)
782.673s: 13.278ms 10240k at:0xca200000 Alloc LP ( 860M)
782.844s: 9.617ms  8192k at:0xc9a00000 Alloc LP ( 868M)
782.860s: 0.331ms 10240k at:0xca200000 Free     ( 858M)
782.922s: 0.132ms  4096k at:0xcb200000 Free     ( 854M)
783.094s: 5.355ms 10240k at:0xca200000 Alloc LP ( 864M)
783.390s: 5.422ms  6144k at:0xc9400000 Alloc LP ( 870M)
783.624s: 8.332ms  8192k at:0xc8c00000 Alloc LP ( 878M)
783.624s: 0.170ms  6144k at:0xc9400000 Free     ( 872M)
810.160s: 0.385ms  8192k at:0xc8c00000 Free     ( 864M)
810.160s: 0.367ms  8192k at:0xc9a00000 Free     ( 856M)
884.791s: 3.543ms  4096k at:0xcb200000 Alloc LP ( 860M)
1007.392s: 0.336ms  6144k at:0xcac00000 Free     ( 854M)
1009.280s: 2.076ms  2048k at:0xcb000000 Alloc LP ( 856M)
1009.280s: 3.126ms  2048k at:0xcae00000 Alloc LP ( 858M)
1009.280s: 2.885ms  2048k at:0xcac00000 Alloc LP ( 860M)
1009.295s: 2.602ms  2048k at:0xca000000 Alloc LP ( 862M)
1070.760s: 2.315ms  2048k at:0xc9e00000 Alloc LP ( 864M)
1070.775s: 2.426ms  2048k at:0xc9c00000 Alloc LP ( 866M)
1070.775s: 2.315ms  2048k at:0xc9a00000 Alloc LP ( 868M)
1070.775s: 2.931ms  2048k at:0xc9800000 Alloc LP ( 870M)
1153.284s: 3.466ms  2048k at:0xc9600000 Alloc LP ( 872M)
1153.284s: 2.557ms  2048k at:0xc9400000 Alloc LP ( 874M)
1153.284s: 2.574ms  2048k at:0xc9200000 Alloc LP ( 876M)
1153.284s: 2.649ms  2048k at:0xc9000000 Alloc LP ( 878M)
1205.482s: 11.752ms 10240k at:0xc8600000 Alloc LP ( 888M)
1279.130s: 4.608ms  2048k at:0xc8400000 Alloc LP ( 890M)
1279.130s: 2.351ms  2048k at:0xc8200000 Alloc LP ( 892M)
1279.130s: 2.512ms  2048k at:0xc8000000 Alloc LP ( 894M)
1279.146s: 2.574ms  2048k at:0xc7e00000 Alloc LP ( 896M)
1328.052s: 0.096ms  2048k at:0xc8000000 Free     ( 894M)
1351.421s: 2.154ms  2048k at:0xc8000000 Alloc LP ( 896M)
1351.421s: 2.117ms  2048k at:0xc7c00000 Alloc LP ( 898M)
1351.421s: 1.965ms  2048k at:0xc7a00000 Alloc LP ( 900M)
1351.421s: 1.918ms  2048k at:0xc7800000 Alloc LP ( 902M)
1523.131s: 2.525ms  2048k at:0xc7600000 Alloc LP ( 904M)
1523.147s: 2.344ms  2048k at:0xc7400000 Alloc LP ( 906M)
1523.147s: 2.512ms  2048k at:0xc7200000 Alloc LP ( 908M)
1523.147s: 2.338ms  2048k at:0xc7000000 Alloc LP ( 910M)
1657.245s: 0.266ms  4096k at:0xcb200000 Free     ( 906M)
1949.170s: 1.955ms  2048k at:0xcb400000 Alloc LP ( 908M)
1949.170s: 2.166ms  2048k at:0xcb200000 Alloc LP ( 910M)
1949.186s: 2.258ms  2048k at:0xc6e00000 Alloc LP ( 912M)
1949.186s: 2.296ms  2048k at:0xc6c00000 Alloc LP ( 914M)
2153.797s: 0.008ms    16k at:0x04980000 Alloc SP ( 914M)
2218.178s: 2.755ms  2048k at:0xc6a00000 Alloc LP ( 916M)
2218.178s: 2.449ms  2048k at:0xc6800000 Alloc LP ( 918M)
2218.178s: 2.407ms  2048k at:0xc6600000 Alloc LP ( 920M)
2218.178s: 2.459ms  2048k at:0xc6400000 Alloc LP ( 922M)
2420.979s: MemFlushCacheAll request
2430.417s: MemFlushCacheAll request
2430.464s: MemFlushCacheAll request
2431.603s: 0.065ms  2048k at:0xdda00000 Free     ( 920M)
2431.619s: 0.063ms  2048k at:0xe2c00000 Free     ( 918M)
2431.619s: 0.053ms  2048k at:0xe2000000 Free     ( 916M)
2431.619s: 0.055ms  2048k at:0xe2800000 Free     ( 914M)
2431.619s: 0.054ms  2048k at:0xe2600000 Free     ( 912M)
2431.619s: 0.057ms  2048k at:0xe2400000 Free     ( 910M)
2431.619s: 0.065ms  2048k at:0xe3000000 Free     ( 908M)
2431.619s: 0.068ms  2048k at:0xe5200000 Free     ( 906M)
2431.619s: 0.053ms  2048k at:0xe4600000 Free     ( 904M)
2431.619s: MemFlushCacheAll request
2431.619s: 0.505ms 18432k at:0xf1800000 Free     ( 886M)
2431.619s: 0.264ms 10240k at:0xdcc00000 Free     ( 876M)
2431.619s: 0.103ms  2048k at:0xdc400000 Free     ( 874M)
2431.634s: 1.964ms 67584k at:0xf4c00000 Free     ( 808M)
2431.634s: 0.077ms  2048k at:0xf4400000 Free     ( 806M)
2431.650s: 0.082ms  2048k at:0xf4a00000 Free     ( 804M)
2431.650s: 0.061ms  2048k at:0xd9600000 Free     ( 802M)
2431.650s: 0.076ms  2048k at:0xd9200000 Free     ( 800M)
2431.650s: 0.071ms  2048k at:0xd9800000 Free     ( 798M)
2431.650s: 0.077ms  2048k at:0xd9e00000 Free     ( 796M)
2431.650s: 0.056ms  2048k at:0xda000000 Free     ( 794M)
2431.650s: 0.063ms  2048k at:0xd9000000 Free     ( 792M)
2431.650s: 0.054ms  2048k at:0xd8e00000 Free     ( 790M)
2431.650s: 0.055ms  2048k at:0xd9400000 Free     ( 788M)
2431.666s: 0.467ms 18432k at:0xf0600000 Free     ( 770M)
2431.666s: 0.459ms 18432k at:0xf2a00000 Free     ( 752M)
2431.666s: 0.060ms  2048k at:0xe3200000 Free     ( 750M)
2431.666s: 0.067ms  2048k at:0xe1c00000 Free     ( 748M)
2431.666s: 0.058ms  2048k at:0xcf600000 Free     ( 746M)
2431.666s: 0.057ms  2048k at:0xe5000000 Free     ( 744M)
2431.681s: 0.076ms  2048k at:0xd8a00000 Free     ( 742M)
2431.712s: 0.073ms  2048k at:0xd0c00000 Free     ( 740M)
2431.775s: 0.078ms  2048k at:0xc9200000 Free     ( 738M)
2431.775s: 0.082ms  2048k at:0xd8c00000 Free     ( 736M)
2431.790s: 0.060ms  2048k at:0xd1600000 Free     ( 734M)
2431.790s: 0.076ms  2048k at:0xd9a00000 Free     ( 732M)
2431.806s: 0.086ms  2048k at:0xc9600000 Free     ( 730M)
2431.822s: 0.083ms  2048k at:0xc8400000 Free     ( 728M)
2431.837s: 0.058ms  2048k at:0xdc200000 Free     ( 726M)
2431.837s: 0.051ms  2048k at:0xd0e00000 Free     ( 724M)
2431.837s: 0.058ms  2048k at:0xcf000000 Free     ( 722M)
2431.900s: 0.080ms  2048k at:0xfee00000 Free     ( 720M)
2431.915s: 0.072ms  2048k at:0xf9a00000 Free     ( 718M)
2431.915s: 0.073ms  2048k at:0xcf800000 Free     ( 716M)
2431.915s: 0.065ms  2048k at:0xce400000 Free     ( 714M)
2431.915s: 0.067ms  2048k at:0xd1400000 Free     ( 712M)
2431.915s: 0.067ms  2048k at:0xcea00000 Free     ( 710M)
2431.915s: 0.062ms  2048k at:0xce800000 Free     ( 708M)
2431.915s: 0.067ms  2048k at:0xd1c00000 Free     ( 706M)
2431.915s: 0.062ms  2048k at:0xcf400000 Free     ( 704M)
2432.461s: 0.091ms  2048k at:0xfea00000 Free     ( 702M)
2432.461s: 0.108ms  2048k at:0xfe400000 Free     ( 700M)
2432.461s: 0.104ms  2048k at:0xfc800000 Free     ( 698M)
2432.477s: 0.108ms  2048k at:0xfc200000 Free     ( 696M)
2432.477s: 0.101ms  2048k at:0xfb600000 Free     ( 694M)
2432.477s: 0.092ms  2048k at:0xd1000000 Free     ( 692M)
2432.477s: 0.089ms  2048k at:0xd0600000 Free     ( 690M)
2432.477s: 0.099ms  2048k at:0xfc000000 Free     ( 688M)
2432.477s: 0.088ms  2048k at:0xdc600000 Free     ( 686M)
2432.477s: 0.099ms  2048k at:0xd9c00000 Free     ( 684M)
2432.477s: 0.102ms  2048k at:0xdea00000 Free     ( 682M)
2432.477s: 0.096ms  2048k at:0xf9400000 Free     ( 680M)
2432.477s: 0.090ms  2048k at:0xf9c00000 Free     ( 678M)
2432.477s: 0.089ms  2048k at:0xfa200000 Free     ( 676M)
2432.477s: 0.087ms  2048k at:0xd1e00000 Free     ( 674M)
2432.477s: 0.089ms  2048k at:0xdde00000 Free     ( 672M)
2432.477s: 0.085ms  2048k at:0xf0400000 Free     ( 670M)
2432.477s: 0.094ms  2048k at:0xf3e00000 Free     ( 668M)
2432.477s: 0.103ms  2048k at:0xda200000 Free     ( 666M)
2432.477s: 0.089ms  2048k at:0xfe200000 Free     ( 664M)
2432.477s: regAllocTotalDur:  554.471ms LOCstat: 13871/15488:89.6%
2432.477s: 0.094ms  2048k at:0xc6400000 Free     ( 662M)
2432.477s: 0.084ms  2048k at:0xc6600000 Free     ( 660M)
2432.477s: 0.088ms  2048k at:0xc6800000 Free     ( 658M)
2432.477s: 0.086ms  2048k at:0xc6a00000 Free     ( 656M)
2432.477s: 0.093ms  2048k at:0xc6c00000 Free     ( 654M)
2432.477s: 0.084ms  2048k at:0xc6e00000 Free     ( 652M)
2432.477s: 0.106ms  2048k at:0xcb200000 Free     ( 650M)
2432.477s: 0.087ms  2048k at:0xcb400000 Free     ( 648M)
2432.477s: 0.091ms  2048k at:0xc7000000 Free     ( 646M)
2432.477s: 0.086ms  2048k at:0xc7200000 Free     ( 644M)
2432.477s: 0.088ms  2048k at:0xc7400000 Free     ( 642M)
2432.477s: 0.088ms  2048k at:0xc7600000 Free     ( 640M)
2432.477s: 0.101ms  2048k at:0xc7800000 Free     ( 638M)
2432.477s: 0.087ms  2048k at:0xc7a00000 Free     ( 636M)
2432.477s: 0.089ms  2048k at:0xc7c00000 Free     ( 634M)
2432.477s: 0.091ms  2048k at:0xc8000000 Free     ( 632M)
2432.477s: 0.091ms  2048k at:0xc7e00000 Free     ( 630M)
2432.477s: 0.087ms  2048k at:0xc8200000 Free     ( 628M)
2432.477s: 0.422ms 10240k at:0xc8600000 Free     ( 618M)
2432.477s: 0.092ms  2048k at:0xc9000000 Free     ( 616M)
2432.477s: 0.089ms  2048k at:0xc9400000 Free     ( 614M)
2432.477s: 0.100ms  2048k at:0xc9800000 Free     ( 612M)
2432.477s: 0.092ms  2048k at:0xc9a00000 Free     ( 610M)
2432.477s: 0.087ms  2048k at:0xc9c00000 Free     ( 608M)
2432.477s: 0.100ms  2048k at:0xc9e00000 Free     ( 606M)
2432.477s: 0.088ms  2048k at:0xca000000 Free     ( 604M)
2432.477s: 0.091ms  2048k at:0xcac00000 Free     ( 602M)
2432.477s: 0.088ms  2048k at:0xcae00000 Free     ( 600M)
2432.477s: 0.098ms  2048k at:0xcb000000 Free     ( 598M)
2432.492s: 0.438ms 10240k at:0xca200000 Free     ( 588M)
2432.492s: 0.255ms  6144k at:0xda400000 Free     ( 582M)
2432.492s: 0.260ms  6144k at:0xdaa00000 Free     ( 576M)
2432.492s: 0.272ms  6144k at:0xdb000000 Free     ( 570M)
2432.492s: 0.251ms  6144k at:0xdb600000 Free     ( 564M)
2432.492s: 0.088ms  2048k at:0xcb600000 Free     ( 562M)
2432.492s: 0.088ms  2048k at:0xcb800000 Free     ( 560M)
2432.492s: 0.092ms  2048k at:0xd2600000 Free     ( 558M)
2432.492s: 0.089ms  2048k at:0xd2800000 Free     ( 556M)
2432.492s: 0.446ms 10240k at:0xcba00000 Free     ( 546M)
2432.492s: 0.091ms  2048k at:0xcc400000 Free     ( 544M)
2432.492s: 0.101ms  2048k at:0xcc600000 Free     ( 542M)
2432.492s: 0.088ms  2048k at:0xcc800000 Free     ( 540M)
2432.492s: 0.088ms  2048k at:0xcca00000 Free     ( 538M)
2432.492s: 0.093ms  2048k at:0xccc00000 Free     ( 536M)
2432.492s: 0.085ms  2048k at:0xcce00000 Free     ( 534M)
2432.492s: 0.096ms  2048k at:0xcd000000 Free     ( 532M)
2432.492s: 0.091ms  2048k at:0xcd200000 Free     ( 530M)
2432.492s: 0.085ms  2048k at:0xcd400000 Free     ( 528M)
2432.492s: 0.088ms  2048k at:0xcd600000 Free     ( 526M)
2432.492s: 0.085ms  2048k at:0xcd800000 Free     ( 524M)
2432.492s: 0.091ms  2048k at:0xcda00000 Free     ( 522M)
2432.492s: 0.087ms  2048k at:0xcdc00000 Free     ( 520M)
2432.492s: 0.089ms  2048k at:0xcde00000 Free     ( 518M)
2432.492s: 0.087ms  2048k at:0xce000000 Free     ( 516M)
2432.492s: 0.094ms  2048k at:0xce200000 Free     ( 514M)
2432.492s: 0.089ms  2048k at:0xce600000 Free     ( 512M)
2432.492s: 0.087ms  2048k at:0xcec00000 Free     ( 510M)
2432.492s: 0.091ms  2048k at:0xcee00000 Free     ( 508M)
2432.492s: 0.089ms  2048k at:0xcf200000 Free     ( 506M)
2432.492s: 0.089ms  2048k at:0xcfa00000 Free     ( 504M)
2432.492s: 0.450ms 10240k at:0xcfc00000 Free     ( 494M)
2432.492s: 0.084ms  2048k at:0xd0800000 Free     ( 492M)
2432.492s: 0.088ms  2048k at:0xd0a00000 Free     ( 490M)
2432.492s: 0.089ms  2048k at:0xd1200000 Free     ( 488M)
2432.492s: 0.091ms  2048k at:0xd1800000 Free     ( 486M)
2432.492s: 0.087ms  2048k at:0xd1a00000 Free     ( 484M)
2432.492s: 0.088ms  2048k at:0xd2000000 Free     ( 482M)
2432.492s: 0.088ms  2048k at:0xd2200000 Free     ( 480M)
2432.492s: 0.092ms  2048k at:0xd2400000 Free     ( 478M)
2432.492s: 0.435ms 10240k at:0xd2a00000 Free     ( 468M)
2432.492s: 0.101ms  2048k at:0xd3400000 Free     ( 466M)
2432.492s: 0.092ms  2048k at:0xd3600000 Free     ( 464M)
2432.492s: 0.085ms  2048k at:0xd3800000 Free     ( 462M)
2432.492s: 0.089ms  2048k at:0xd3a00000 Free     ( 460M)
2432.492s: 0.088ms  2048k at:0xd3c00000 Free     ( 458M)
2432.492s: 0.094ms  2048k at:0xd3e00000 Free     ( 456M)
2432.492s: 0.096ms  2048k at:0xd4000000 Free     ( 454M)
2432.492s: 0.088ms  2048k at:0xd4200000 Free     ( 452M)
2432.492s: 0.088ms  2048k at:0xd4400000 Free     ( 450M)
2432.492s: 0.091ms  2048k at:0xd4600000 Free     ( 448M)
2432.492s: 0.088ms  2048k at:0xd4800000 Free     ( 446M)
2432.492s: 0.086ms  2048k at:0xd4a00000 Free     ( 444M)
2432.492s: 0.091ms  2048k at:0xd4c00000 Free     ( 442M)
2432.492s: 0.083ms  2048k at:0xd4e00000 Free     ( 440M)
2432.492s: 0.089ms  2048k at:0xd5000000 Free     ( 438M)
2432.492s: 0.087ms  2048k at:0xd5200000 Free     ( 436M)
2432.492s: 0.092ms  2048k at:0xd5400000 Free     ( 434M)
2432.492s: 0.085ms  2048k at:0xd5600000 Free     ( 432M)
2432.492s: 0.088ms  2048k at:0xd5800000 Free     ( 430M)
2432.492s: 0.089ms  2048k at:0xd5a00000 Free     ( 428M)
2432.492s: 0.104ms  2048k at:0xd5c00000 Free     ( 426M)
2432.492s: 0.087ms  2048k at:0xd5e00000 Free     ( 424M)
2432.492s: 0.088ms  2048k at:0xd7000000 Free     ( 422M)
2432.492s: 0.091ms  2048k at:0xd7200000 Free     ( 420M)
2432.492s: 0.082ms  2048k at:0xd6000000 Free     ( 418M)
2432.492s: 0.094ms  2048k at:0xd6200000 Free     ( 416M)
2432.492s: 0.088ms  2048k at:0xd6400000 Free     ( 414M)
2432.492s: 0.090ms  2048k at:0xd6600000 Free     ( 412M)
2432.492s: 0.085ms  2048k at:0xd6800000 Free     ( 410M)
2432.492s: 0.088ms  2048k at:0xd6a00000 Free     ( 408M)
2432.492s: 0.088ms  2048k at:0xd6c00000 Free     ( 406M)
2432.492s: 0.097ms  2048k at:0xd6e00000 Free     ( 404M)
2432.492s: 0.089ms  2048k at:0xd7400000 Free     ( 402M)
2432.492s: 0.087ms  2048k at:0xd7600000 Free     ( 400M)
2432.492s: 0.091ms  2048k at:0xd7800000 Free     ( 398M)
2432.492s: 0.087ms  2048k at:0xd7a00000 Free     ( 396M)
2432.492s: 0.088ms  2048k at:0xd7c00000 Free     ( 394M)
2432.492s: 0.085ms  2048k at:0xd7e00000 Free     ( 392M)
2432.492s: 0.091ms  2048k at:0xd8000000 Free     ( 390M)
2432.492s: 0.084ms  2048k at:0xd8200000 Free     ( 388M)
2432.492s: 0.088ms  2048k at:0xd8400000 Free     ( 386M)
2432.492s: 0.088ms  2048k at:0xd8600000 Free     ( 384M)
2432.492s: 0.090ms  2048k at:0xd8800000 Free     ( 382M)
2432.492s: 0.089ms  2048k at:0xdbc00000 Free     ( 380M)
2432.492s: 0.087ms  2048k at:0xdbe00000 Free     ( 378M)
2432.492s: 0.090ms  2048k at:0xdc000000 Free     ( 376M)
2432.492s: 0.091ms  2048k at:0xdc800000 Free     ( 374M)
2432.492s: 0.085ms  2048k at:0xdca00000 Free     ( 372M)
2432.492s: 0.089ms  2048k at:0xdd600000 Free     ( 370M)
2432.492s: 0.087ms  2048k at:0xdd800000 Free     ( 368M)
2432.492s: 0.096ms  2048k at:0xddc00000 Free     ( 366M)
2432.492s: 0.084ms  2048k at:0xde000000 Free     ( 364M)
2432.492s: 0.088ms  2048k at:0xde200000 Free     ( 362M)
2432.492s: 0.087ms  2048k at:0xde400000 Free     ( 360M)
2432.492s: 0.091ms  2048k at:0xde600000 Free     ( 358M)
2432.492s: 0.084ms  2048k at:0xde800000 Free     ( 356M)
2432.492s: 0.088ms  2048k at:0xdec00000 Free     ( 354M)
2432.492s: 0.087ms  2048k at:0xdee00000 Free     ( 352M)
2432.508s: 0.091ms  2048k at:0xdf000000 Free     ( 350M)
2432.508s: 0.085ms  2048k at:0xdf200000 Free     ( 348M)
2432.508s: 0.099ms  2048k at:0xdf400000 Free     ( 346M)
2432.508s: 0.087ms  2048k at:0xdf600000 Free     ( 344M)
2432.508s: 0.090ms  2048k at:0xdf800000 Free     ( 342M)
2432.508s: 0.085ms  2048k at:0xdfa00000 Free     ( 340M)
2432.508s: 0.089ms  2048k at:0xdfc00000 Free     ( 338M)
2432.508s: 0.091ms  2048k at:0xdfe00000 Free     ( 336M)
2432.508s: 0.089ms  2048k at:0xe0000000 Free     ( 334M)
2432.508s: 0.090ms  2048k at:0xe0200000 Free     ( 332M)
2432.508s: 0.086ms  2048k at:0xe0400000 Free     ( 330M)
2432.508s: 0.087ms  2048k at:0xe0600000 Free     ( 328M)
2432.508s: 0.089ms  2048k at:0xe0800000 Free     ( 326M)
2432.508s: 0.102ms  2048k at:0xe0a00000 Free     ( 324M)
2432.508s: 0.087ms  2048k at:0xe0c00000 Free     ( 322M)
2432.508s: 0.087ms  2048k at:0xe0e00000 Free     ( 320M)
2432.508s: 0.105ms  2048k at:0xe1000000 Free     ( 318M)
2432.508s: 0.087ms  2048k at:0xe1200000 Free     ( 316M)
2432.508s: 0.099ms  2048k at:0xe1400000 Free     ( 314M)
2432.508s: 0.086ms  2048k at:0xe1600000 Free     ( 312M)
2432.508s: 0.090ms  2048k at:0xe1800000 Free     ( 310M)
2432.508s: 0.083ms  2048k at:0xe1a00000 Free     ( 308M)
2432.508s: 0.092ms  2048k at:0xe1e00000 Free     ( 306M)
2432.508s: 0.099ms  2048k at:0xe2200000 Free     ( 304M)
2432.508s: 0.091ms  2048k at:0xe2a00000 Free     ( 302M)
2432.508s: 0.092ms  2048k at:0xe2e00000 Free     ( 300M)
2432.508s: 0.085ms  2048k at:0xe3400000 Free     ( 298M)
2432.508s: 0.087ms  2048k at:0xe3600000 Free     ( 296M)
2432.508s: 0.088ms  2048k at:0xe3800000 Free     ( 294M)
2432.508s: 0.090ms  2048k at:0xe3a00000 Free     ( 292M)
2432.508s: 0.086ms  2048k at:0xe3c00000 Free     ( 290M)
2432.508s: 0.087ms  2048k at:0xe3e00000 Free     ( 288M)
2432.508s: 0.089ms  2048k at:0xe4000000 Free     ( 286M)
2432.508s: 0.101ms  2048k at:0xe4200000 Free     ( 284M)
2432.508s: 0.087ms  2048k at:0xe4400000 Free     ( 282M)
2432.508s: 0.086ms  2048k at:0xe4800000 Free     ( 280M)
2432.508s: 0.090ms  2048k at:0xe4a00000 Free     ( 278M)
2432.508s: 0.086ms  2048k at:0xe4c00000 Free     ( 276M)
2432.508s: 0.089ms  2048k at:0xe4e00000 Free     ( 274M)
2432.508s: 0.086ms  2048k at:0xe5400000 Free     ( 272M)
2432.508s: 0.089ms  2048k at:0xe5600000 Free     ( 270M)
2432.508s: 0.084ms  2048k at:0xe5800000 Free     ( 268M)
2432.508s: 0.087ms  2048k at:0xe5a00000 Free     ( 266M)
2432.508s: 0.085ms  2048k at:0xe5c00000 Free     ( 264M)
2432.508s: 0.090ms  2048k at:0xe5e00000 Free     ( 262M)
2432.508s: 0.083ms  2048k at:0xe6000000 Free     ( 260M)
2432.508s: 0.087ms  2048k at:0xe6200000 Free     ( 258M)
2432.508s: 0.085ms  2048k at:0xe6400000 Free     ( 256M)
2432.508s: 0.103ms  2048k at:0xe6600000 Free     ( 254M)
2432.508s: 0.084ms  2048k at:0xe6800000 Free     ( 252M)
2432.508s: 0.089ms  2048k at:0xe6a00000 Free     ( 250M)
2432.508s: 0.085ms  2048k at:0xe6c00000 Free     ( 248M)
2432.508s: 0.091ms  2048k at:0xe6e00000 Free     ( 246M)
2432.508s: 0.085ms  2048k at:0xe7000000 Free     ( 244M)
2432.508s: 0.088ms  2048k at:0xe7200000 Free     ( 242M)
2432.508s: 0.085ms  2048k at:0xe7400000 Free     ( 240M)
2432.508s: 0.090ms  2048k at:0xe7600000 Free     ( 238M)
2432.508s: 0.084ms  2048k at:0xe7800000 Free     ( 236M)
2432.508s: 0.088ms  2048k at:0xe7a00000 Free     ( 234M)
2432.508s: 0.086ms  2048k at:0xe7c00000 Free     ( 232M)
2432.508s: 0.106ms  2048k at:0xe7e00000 Free     ( 230M)
2432.508s: 0.084ms  2048k at:0xe8000000 Free     ( 228M)
2432.508s: 0.089ms  2048k at:0xe8200000 Free     ( 226M)
2432.508s: 0.086ms  2048k at:0xe8400000 Free     ( 224M)
2432.508s: 0.091ms  2048k at:0xe8600000 Free     ( 222M)
2432.508s: 0.084ms  2048k at:0xe8800000 Free     ( 220M)
2432.508s: 0.102ms  2048k at:0xe8a00000 Free     ( 218M)
2432.508s: 0.094ms  2048k at:0xe8c00000 Free     ( 216M)
2432.508s: 0.083ms  2048k at:0xe8e00000 Free     ( 214M)
2432.508s: 0.080ms  2048k at:0xe9000000 Free     ( 212M)
2432.508s: 0.098ms  2048k at:0xe9200000 Free     ( 210M)
2432.508s: 0.080ms  2048k at:0xe9400000 Free     ( 208M)
2432.508s: 0.081ms  2048k at:0xe9600000 Free     ( 206M)
2432.508s: 0.081ms  2048k at:0xe9800000 Free     ( 204M)
2432.508s: 0.079ms  2048k at:0xe9a00000 Free     ( 202M)
2432.508s: 0.089ms  2048k at:0xe9c00000 Free     ( 200M)
2432.508s: 0.078ms  2048k at:0xe9e00000 Free     ( 198M)
2432.508s: 0.080ms  2048k at:0xea000000 Free     ( 196M)
2432.508s: 0.073ms  2048k at:0xea200000 Free     ( 194M)
2432.508s: 0.092ms  2048k at:0xea400000 Free     ( 192M)
2432.508s: 0.080ms  2048k at:0xea600000 Free     ( 190M)
2432.508s: 0.073ms  2048k at:0xea800000 Free     ( 188M)
2432.508s: 0.083ms  2048k at:0xeaa00000 Free     ( 186M)
2432.508s: 0.083ms  2048k at:0xeac00000 Free     ( 184M)
2432.508s: 0.074ms  2048k at:0xeae00000 Free     ( 182M)
2432.508s: 0.087ms  2048k at:0xeb000000 Free     ( 180M)
2432.508s: 0.080ms  2048k at:0xeb200000 Free     ( 178M)
2432.508s: 0.075ms  2048k at:0xeb400000 Free     ( 176M)
2432.508s: 0.082ms  2048k at:0xeb600000 Free     ( 174M)
2432.508s: 0.089ms  2048k at:0xeb800000 Free     ( 172M)
2432.508s: 0.076ms  2048k at:0xeba00000 Free     ( 170M)
2432.508s: 0.083ms  2048k at:0xebc00000 Free     ( 168M)
2432.508s: 0.079ms  2048k at:0xebe00000 Free     ( 166M)
2432.508s: 0.074ms  2048k at:0xec000000 Free     ( 164M)
2432.508s: 0.083ms  2048k at:0xec200000 Free     ( 162M)
2432.508s: 0.078ms  2048k at:0xec400000 Free     ( 160M)
2432.508s: 0.078ms  2048k at:0xec600000 Free     ( 158M)
2432.508s: 0.084ms  2048k at:0xec800000 Free     ( 156M)
2432.508s: 0.075ms  2048k at:0xeca00000 Free     ( 154M)
2432.508s: 0.074ms  2048k at:0xecc00000 Free     ( 152M)
2432.508s: 0.092ms  2048k at:0xece00000 Free     ( 150M)
2432.508s: 0.079ms  2048k at:0xed000000 Free     ( 148M)
2432.508s: 0.081ms  2048k at:0xed200000 Free     ( 146M)
2432.508s: 0.083ms  2048k at:0xed400000 Free     ( 144M)
2432.508s: 0.079ms  2048k at:0xed600000 Free     ( 142M)
2432.508s: 0.081ms  2048k at:0xed800000 Free     ( 140M)
2432.508s: 0.080ms  2048k at:0xeda00000 Free     ( 138M)
2432.508s: 0.084ms  2048k at:0xedc00000 Free     ( 136M)
2432.508s: 0.078ms  2048k at:0xede00000 Free     ( 134M)
2432.508s: 0.080ms  2048k at:0xee000000 Free     ( 132M)
2432.508s: 0.081ms  2048k at:0xee200000 Free     ( 130M)
2432.508s: 0.093ms  2048k at:0xee400000 Free     ( 128M)
2432.508s: 0.080ms  2048k at:0xee600000 Free     ( 126M)
2432.508s: 0.078ms  2048k at:0xee800000 Free     ( 124M)
2432.508s: 0.083ms  2048k at:0xeea00000 Free     ( 122M)
2432.508s: 0.079ms  2048k at:0xeec00000 Free     ( 120M)
2432.508s: 0.081ms  2048k at:0xeee00000 Free     ( 118M)
2432.508s: 0.080ms  2048k at:0xef000000 Free     ( 116M)
2432.508s: 0.083ms  2048k at:0xef200000 Free     ( 114M)
2432.508s: 0.077ms  2048k at:0xef400000 Free     ( 112M)
2432.508s: 0.093ms  2048k at:0xef600000 Free     ( 110M)
2432.508s: 0.080ms  2048k at:0xef800000 Free     ( 108M)
2432.508s: 0.083ms  2048k at:0xefa00000 Free     ( 106M)
2432.508s: 0.078ms  2048k at:0xefc00000 Free     ( 104M)
2432.524s: 0.080ms  2048k at:0xefe00000 Free     ( 102M)
2432.524s: 0.082ms  2048k at:0xf0000000 Free     ( 100M)
2432.524s: 0.096ms  2048k at:0xf0200000 Free     (  98M)
2432.524s: 0.080ms  2048k at:0xf3c00000 Free     (  96M)
2432.524s: 0.079ms  2048k at:0xf4000000 Free     (  94M)
2432.524s: 0.083ms  2048k at:0xf4200000 Free     (  92M)
2432.524s: 0.079ms  2048k at:0xf4600000 Free     (  90M)
2432.524s: 0.080ms  2048k at:0xf4800000 Free     (  88M)
2432.524s: 0.240ms  6144k at:0xf8e00000 Free     (  82M)
2432.524s: 0.085ms  2048k at:0xf9600000 Free     (  80M)
2432.524s: 0.078ms  2048k at:0xf9800000 Free     (  78M)
2432.524s: 0.081ms  2048k at:0xf9e00000 Free     (  76M)
2432.524s: 0.081ms  2048k at:0xfa000000 Free     (  74M)
2432.524s: 0.083ms  2048k at:0xfa400000 Free     (  72M)
2432.524s: 0.078ms  2048k at:0xfa600000 Free     (  70M)
2432.524s: 0.080ms  2048k at:0xfa800000 Free     (  68M)
2432.524s: 0.080ms  2048k at:0xfaa00000 Free     (  66M)
2432.524s: 0.082ms  2048k at:0xfac00000 Free     (  64M)
2432.524s: 0.079ms  2048k at:0xfae00000 Free     (  62M)
2432.524s: 0.081ms  2048k at:0xfb000000 Free     (  60M)
2432.524s: 0.082ms  2048k at:0xfb200000 Free     (  58M)
2432.524s: 0.085ms  2048k at:0xfb400000 Free     (  56M)
2432.524s: 0.080ms  2048k at:0xfb800000 Free     (  54M)
2432.524s: 0.080ms  2048k at:0xfba00000 Free     (  52M)
2432.524s: 0.084ms  2048k at:0xfbc00000 Free     (  50M)
2432.524s: 0.085ms  2048k at:0xfbe00000 Free     (  48M)
2432.524s: 0.077ms  2048k at:0xfc400000 Free     (  46M)
2432.524s: 0.083ms  2048k at:0xfc600000 Free     (  44M)
2432.524s: 0.079ms  2048k at:0xfca00000 Free     (  42M)
2432.524s: 0.083ms  2048k at:0xfcc00000 Free     (  40M)
2432.524s: 0.079ms  2048k at:0xfce00000 Free     (  38M)
2432.524s: 0.082ms  2048k at:0xfd000000 Free     (  36M)
2432.524s: 0.079ms  2048k at:0xfd200000 Free     (  34M)
2432.524s: 0.083ms  2048k at:0xfd400000 Free     (  32M)
2432.524s: 0.077ms  2048k at:0xfd600000 Free     (  30M)
2432.524s: 0.080ms  2048k at:0xfd800000 Free     (  28M)
2432.524s: 0.079ms  2048k at:0xfda00000 Free     (  26M)
2432.524s: 0.083ms  2048k at:0xfdc00000 Free     (  24M)
2432.524s: 0.077ms  2048k at:0xfde00000 Free     (  22M)
2432.524s: 0.094ms  2048k at:0xfe000000 Free     (  20M)
2432.524s: 0.106ms  2048k at:0xfe600000 Free     (  18M)
2432.524s: 0.114ms  2048k at:0xfe800000 Free     (  16M)
2432.524s: 0.110ms  2048k at:0xfec00000 Free     (  14M)
2432.524s: 0.090ms  2048k at:0xff000000 Free     (  12M)
2432.524s: 0.079ms  2048k at:0xff200000 Free     (  10M)
2432.524s: 0.337ms  8192k at:0xff400000 Free     (   2M)
2432.524s: 0.083ms  2048k at:0xffc00000 Free     (   0M)

Edited by Numrollen

Share this post


Link to post
Share on other sites
@Kremator, yes. It helps to understand armas allocation pattern, in different scenarios and to adapt/implement some algorithms for better performance/usability.

For everybody with early 'Alloc LP failed -> fallback' messages, i added a little experimental tool, for freeing some phys. RAM before arma start (flushing the system cache and empty the standby list).

It may or may not solve this issue on your system, so just try it out.

Please read the readme.md for usage:

https://github.com/fred41/tbbmalloc_arma/tree/master/ClearMem

If this tool should help, i could implement this directly in tbbmalloc for automatic memory clearing at arma start.

Greets,

Fred41

Cool and interesting idea fred. Lemme give it a go and do a direct comparison with the previous version. The clearmem.exe then needs to be run prior to arma3 ? Or is this built into the tbbmalloc ?

Share this post


Link to post
Share on other sites

OS: Windows 8.1 64bit (Home)

CPU: I5 4670K @ 4Ghz

RAM: 8GB (some amount is reserved by Samsung SSD software for Rapid Mode)

Mission: ArmA3Mark Altis Benchmark

WindowsVersion:6.2 ServicePack:0.0 Typ:Desktop

physical RAM available: 5879M
committed memory limit: 4095M
virt address available: 3937M

SeLockMemoryPrivilege: granted, huge pages enabled

  0.000s: 0.056ms  2048k at:0xffc00000 Alloc LP (   2M)
  0.000s: 0.003ms   128k at:0x003b0000 Alloc SP (   2M)
  0.031s: 0.204ms  8192k at:0xff400000 Alloc LP (  10M)
  0.546s: 0.208ms  8192k at:0xfec00000 Alloc LP (  18M)
  0.656s: 0.112ms  4096k at:0xfe800000 Alloc LP (  22M)
  0.656s: 0.103ms  4096k at:0xfe400000 Alloc LP (  26M)
  0.656s: 0.102ms  4096k at:0xfe000000 Alloc LP (  30M)
  0.656s: 0.103ms  4096k at:0xfdc00000 Alloc LP (  34M)
  0.968s: 0.111ms  4096k at:0xfd800000 Alloc LP (  38M)
  0.968s: 0.103ms  4096k at:0xfd400000 Alloc LP (  42M)
  0.968s: 0.102ms  4096k at:0xfd000000 Alloc LP (  46M)
  0.968s: 0.104ms  4096k at:0xfcc00000 Alloc LP (  50M)
  1.390s: 0.111ms  4096k at:0xfc800000 Alloc LP (  54M)
  1.390s: 0.104ms  4096k at:0xfc400000 Alloc LP (  58M)
  1.390s: 0.103ms  4096k at:0xfc000000 Alloc LP (  62M)
  1.390s: 0.104ms  4096k at:0xfbc00000 Alloc LP (  66M)
  1.890s: 0.112ms  4096k at:0xfb800000 Alloc LP (  70M)
  1.890s: 0.105ms  4096k at:0xfb400000 Alloc LP (  74M)
  1.890s: 0.103ms  4096k at:0xfb000000 Alloc LP (  78M)
  1.906s: 0.124ms  4096k at:0xfac00000 Alloc LP (  82M)
  2.328s: 0.111ms  4096k at:0xfa800000 Alloc LP (  86M)
  2.328s: 0.106ms  4096k at:0xfa400000 Alloc LP (  90M)
  2.328s: 0.106ms  4096k at:0xfa000000 Alloc LP (  94M)
  2.328s: 0.104ms  4096k at:0xf9c00000 Alloc LP (  98M)
  2.453s: 0.898ms 34816k at:0xf7a00000 Alloc LP ( 132M)
  4.765s: 0.207ms  6144k at:0xf7400000 Alloc LP ( 138M)
  4.781s: 0.079ms  6144k at:0xf7400000 Free     ( 132M)
  4.843s: 0.047ms  4096k at:0xfa000000 Free     ( 128M)
  5.156s: 0.110ms  4096k at:0xfa000000 Alloc LP ( 132M)
  5.156s: 0.111ms  4096k at:0xf7600000 Alloc LP ( 136M)
  5.156s: 0.108ms  4096k at:0xf7200000 Alloc LP ( 140M)
  5.156s: 0.109ms  4096k at:0xf6e00000 Alloc LP ( 144M)
  6.765s: 0.271ms 10240k at:0xf6400000 Alloc LP ( 154M)
  7.234s: 0.094ms 10240k at:0xf6400000 Free     ( 144M)
  9.968s: MFCA req.
 12.796s: 0.116ms  4096k at:0xf6a00000 Alloc LP ( 148M)
 12.796s: 0.108ms  4096k at:0xf6600000 Alloc LP ( 152M)
 12.796s: 0.110ms  4096k at:0xf6200000 Alloc LP ( 156M)
 12.796s: 0.104ms  4096k at:0xf5e00000 Alloc LP ( 160M)
 13.578s: 0.114ms  4096k at:0xf5a00000 Alloc LP ( 164M)
 13.578s: 0.109ms  4096k at:0xf5600000 Alloc LP ( 168M)
 13.578s: 0.103ms  4096k at:0xf5200000 Alloc LP ( 172M)
 13.578s: 0.103ms  4096k at:0xf4e00000 Alloc LP ( 176M)
 13.609s: MFCA req.
 13.765s: MFCA req.
 13.765s: 0.458ms 18432k at:0xf3c00000 Alloc LP ( 194M)
 13.796s: 0.164ms  6144k at:0xf3600000 Alloc LP ( 200M)
 13.921s: 0.164ms  6144k at:0xf3000000 Alloc LP ( 206M)
 13.921s: 0.181ms  6144k at:0xf2a00000 Alloc LP ( 212M)
 14.843s: 0.163ms  6144k at:0xf2400000 Alloc LP ( 218M)
 14.843s: 0.070ms  6144k at:0xf2400000 Free     ( 212M)
 14.859s: 0.113ms  4096k at:0xf2600000 Alloc LP ( 216M)
 14.859s: 0.108ms  4096k at:0xf2200000 Alloc LP ( 220M)
 14.859s: 0.104ms  4096k at:0xf1e00000 Alloc LP ( 224M)
 14.859s: 0.104ms  4096k at:0xf1a00000 Alloc LP ( 228M)
 15.359s: 0.122ms  4096k at:0xf1600000 Alloc LP ( 232M)
 15.359s: 0.111ms  4096k at:0xf1200000 Alloc LP ( 236M)
 15.359s: 0.110ms  4096k at:0xf0e00000 Alloc LP ( 240M)
 15.359s: 0.105ms  4096k at:0xf0a00000 Alloc LP ( 244M)
 17.703s: 0.116ms  4096k at:0xf0600000 Alloc LP ( 248M)
 17.703s: 0.105ms  4096k at:0xf0200000 Alloc LP ( 252M)
 17.703s: 0.145ms  4096k at:0xefe00000 Alloc LP ( 256M)
 17.703s: 0.104ms  4096k at:0xefa00000 Alloc LP ( 260M)
 19.375s: 0.116ms  4096k at:0xef600000 Alloc LP ( 264M)
 19.375s: 0.104ms  4096k at:0xef200000 Alloc LP ( 268M)
 19.375s: 0.103ms  4096k at:0xeee00000 Alloc LP ( 272M)
 19.375s: 0.103ms  4096k at:0xeea00000 Alloc LP ( 276M)
 19.468s: 0.117ms  4096k at:0xee600000 Alloc LP ( 280M)
 19.468s: 0.126ms  4096k at:0xee200000 Alloc LP ( 284M)
 19.468s: 0.103ms  4096k at:0xede00000 Alloc LP ( 288M)
 19.468s: 0.105ms  4096k at:0xeda00000 Alloc LP ( 292M)
 19.546s: 0.116ms  4096k at:0xed600000 Alloc LP ( 296M)
 19.546s: 0.137ms  4096k at:0xed200000 Alloc LP ( 300M)
 19.546s: 0.103ms  4096k at:0xece00000 Alloc LP ( 304M)
 19.546s: 0.103ms  4096k at:0xeca00000 Alloc LP ( 308M)
 20.156s: 0.364ms 14336k at:0xebc00000 Alloc LP ( 322M)
 20.656s: 0.361ms 14336k at:0xeae00000 Alloc LP ( 336M)
 21.593s: 0.121ms  4096k at:0xeaa00000 Alloc LP ( 340M)
 21.593s: 0.126ms  4096k at:0xea600000 Alloc LP ( 344M)
 21.593s: 0.105ms  4096k at:0xea200000 Alloc LP ( 348M)
 21.593s: 0.115ms  4096k at:0xe9e00000 Alloc LP ( 352M)
 22.546s: 0.412ms 14336k at:0xe9000000 Alloc LP ( 366M)
 22.765s: 0.006ms    16k at:0x14fa0000 Alloc SP ( 366M)
 22.796s: 0.117ms  4096k at:0xe8c00000 Alloc LP ( 370M)
 22.796s: 0.111ms  4096k at:0xe8800000 Alloc LP ( 374M)
 22.796s: 0.106ms  4096k at:0xe8400000 Alloc LP ( 378M)
 22.796s: 0.106ms  4096k at:0xe8000000 Alloc LP ( 382M)
 23.671s: 0.374ms 14336k at:0xe7200000 Alloc LP ( 396M)
 35.703s: MFCA req.
 35.781s: MFCA req.
 35.781s: 0.062ms  6144k at:0xf3000000 Free     ( 390M)
 35.781s: 0.162ms 18432k at:0xf3c00000 Free     ( 372M)
 35.781s: 1.681ms 67584k at:0xe3000000 Alloc LP ( 438M)
 35.875s: 0.482ms 18432k at:0xf3c00000 Alloc LP ( 456M)
 35.953s: 0.484ms 18432k at:0xe1e00000 Alloc LP ( 474M)
 35.953s: 0.061ms  6144k at:0xf2a00000 Free     ( 468M)
 35.953s: 0.456ms 18432k at:0xe0c00000 Alloc LP ( 486M)
 37.984s: 0.483ms 18432k at:0xdfa00000 Alloc LP ( 504M)
 38.125s: 0.125ms  4096k at:0xf3200000 Alloc LP ( 508M)
 38.125s: 0.107ms  4096k at:0xf2e00000 Alloc LP ( 512M)
 38.125s: 0.105ms  4096k at:0xf2a00000 Alloc LP ( 516M)
 38.125s: 0.108ms  4096k at:0xdf600000 Alloc LP ( 520M)
 38.171s: 0.130ms  4096k at:0xdf200000 Alloc LP ( 524M)
 38.171s: 0.119ms  4096k at:0xdee00000 Alloc LP ( 528M)
 38.171s: 0.110ms  4096k at:0xdea00000 Alloc LP ( 532M)
 38.171s: 0.119ms  4096k at:0xde600000 Alloc LP ( 536M)
 38.218s: 0.117ms  4096k at:0xde200000 Alloc LP ( 540M)
 38.218s: 0.111ms  4096k at:0xdde00000 Alloc LP ( 544M)
 38.218s: 0.107ms  4096k at:0xdda00000 Alloc LP ( 548M)
 38.218s: 0.108ms  4096k at:0xdd600000 Alloc LP ( 552M)
 38.234s: 0.014ms    16k at:0x0b440000 Alloc SP ( 552M)
 38.265s: 0.118ms  4096k at:0xdd200000 Alloc LP ( 556M)
 38.265s: 0.104ms  4096k at:0xdce00000 Alloc LP ( 560M)
 38.265s: 0.110ms  4096k at:0xdca00000 Alloc LP ( 564M)
 38.265s: 0.104ms  4096k at:0xdc600000 Alloc LP ( 568M)
 38.296s: 0.118ms  4096k at:0xdc200000 Alloc LP ( 572M)
 38.296s: 0.104ms  4096k at:0xdbe00000 Alloc LP ( 576M)
 38.296s: 0.104ms  4096k at:0xdba00000 Alloc LP ( 580M)
 38.296s: 0.103ms  4096k at:0xdb600000 Alloc LP ( 584M)
 38.343s: 0.124ms  4096k at:0xdb200000 Alloc LP ( 588M)
 38.343s: 0.118ms  4096k at:0xdae00000 Alloc LP ( 592M)
 38.343s: 0.104ms  4096k at:0xdaa00000 Alloc LP ( 596M)
 38.343s: 0.103ms  4096k at:0xda600000 Alloc LP ( 600M)
 38.406s: 0.161ms  4096k at:0xda200000 Alloc LP ( 604M)
 38.406s: 0.112ms  4096k at:0xd9e00000 Alloc LP ( 608M)
 38.406s: 0.106ms  4096k at:0xd9a00000 Alloc LP ( 612M)
 38.406s: 0.105ms  4096k at:0xd9600000 Alloc LP ( 616M)
 38.421s: 0.015ms    16k at:0x0e620000 Alloc SP ( 616M)
 38.453s: 0.133ms  4096k at:0xd9200000 Alloc LP ( 620M)
 38.453s: 0.106ms  4096k at:0xd8e00000 Alloc LP ( 624M)
 38.453s: 0.104ms  4096k at:0xd8a00000 Alloc LP ( 628M)
 38.453s: 0.103ms  4096k at:0xd8600000 Alloc LP ( 632M)
 38.484s: 0.133ms  4096k at:0xd8200000 Alloc LP ( 636M)
 38.484s: 0.111ms  4096k at:0xd7e00000 Alloc LP ( 640M)
 38.484s: 0.108ms  4096k at:0xd7a00000 Alloc LP ( 644M)
 38.484s: 0.107ms  4096k at:0xd7600000 Alloc LP ( 648M)
 38.531s: 0.119ms  4096k at:0xd7200000 Alloc LP ( 652M)
 38.531s: 0.112ms  4096k at:0xd6e00000 Alloc LP ( 656M)
 38.531s: 0.108ms  4096k at:0xd6a00000 Alloc LP ( 660M)
 38.531s: 0.107ms  4096k at:0xd6600000 Alloc LP ( 664M)
 38.578s: 0.120ms  4096k at:0xd6200000 Alloc LP ( 668M)
 38.578s: 0.113ms  4096k at:0xd5e00000 Alloc LP ( 672M)
 38.578s: 0.108ms  4096k at:0xd5a00000 Alloc LP ( 676M)
 38.578s: 0.105ms  4096k at:0xd5600000 Alloc LP ( 680M)
 38.593s: 0.020ms    16k at:0x164c0000 Alloc SP ( 680M)
 38.625s: 0.119ms  4096k at:0xd5200000 Alloc LP ( 684M)
 38.625s: 0.126ms  4096k at:0xd4e00000 Alloc LP ( 688M)
 38.625s: 0.109ms  4096k at:0xd4a00000 Alloc LP ( 692M)
 38.625s: 0.107ms  4096k at:0xd4600000 Alloc LP ( 696M)
 38.796s: 0.124ms  4096k at:0xd4200000 Alloc LP ( 700M)
 38.796s: 0.114ms  4096k at:0xd3e00000 Alloc LP ( 704M)
 38.796s: 0.111ms  4096k at:0xd3a00000 Alloc LP ( 708M)
 38.796s: 0.106ms  4096k at:0xd3600000 Alloc LP ( 712M)
 39.296s: 0.160ms 18432k at:0xdfa00000 Free     ( 694M)
 39.609s: 0.119ms  4096k at:0xe0800000 Alloc LP ( 698M)
 39.609s: 0.113ms  4096k at:0xe0400000 Alloc LP ( 702M)
 39.609s: 0.110ms  4096k at:0xe0000000 Alloc LP ( 706M)
 39.609s: 0.108ms  4096k at:0xdfc00000 Alloc LP ( 710M)
 40.609s: 0.122ms  4096k at:0xd3200000 Alloc LP ( 714M)
 40.609s: 0.129ms  4096k at:0xd2e00000 Alloc LP ( 718M)
 40.609s: 0.110ms  4096k at:0xd2a00000 Alloc LP ( 722M)
 40.609s: 0.139ms  4096k at:0xd2600000 Alloc LP ( 726M)
 41.000s: 0.304ms 10240k at:0xd1c00000 Alloc LP ( 736M)
 41.078s: 0.022ms    16k at:0x164f0000 Alloc SP ( 736M)
 41.140s: 0.125ms  4096k at:0xd1800000 Alloc LP ( 740M)
 41.140s: 0.108ms  4096k at:0xd1400000 Alloc LP ( 744M)
 41.140s: 0.108ms  4096k at:0xd1000000 Alloc LP ( 748M)
 41.140s: 0.108ms  4096k at:0xd0c00000 Alloc LP ( 752M)
 41.265s: 0.123ms  4096k at:0xd0800000 Alloc LP ( 756M)
 41.265s: 0.108ms  4096k at:0xd0400000 Alloc LP ( 760M)
 41.265s: 0.104ms  4096k at:0xd0000000 Alloc LP ( 764M)
 41.265s: 0.104ms  4096k at:0xcfc00000 Alloc LP ( 768M)
 42.562s: 0.124ms  4096k at:0xcf800000 Alloc LP ( 772M)
 42.562s: 0.108ms  4096k at:0xcf400000 Alloc LP ( 776M)
 42.562s: 0.107ms  4096k at:0xcf000000 Alloc LP ( 780M)
 42.562s: 0.107ms  4096k at:0xcec00000 Alloc LP ( 784M)
 42.859s: 0.124ms  4096k at:0xce800000 Alloc LP ( 788M)
 42.859s: 0.120ms  4096k at:0xce400000 Alloc LP ( 792M)
 42.859s: 0.105ms  4096k at:0xce000000 Alloc LP ( 796M)
 42.859s: 0.105ms  4096k at:0xcdc00000 Alloc LP ( 800M)
 43.468s: 0.173ms  6144k at:0xcd600000 Alloc LP ( 806M)
 43.468s: 0.210ms  6144k at:0xcd000000 Alloc LP ( 812M)
 43.484s: 0.159ms  6144k at:0xcca00000 Alloc LP ( 818M)
 43.484s: 0.159ms  6144k at:0xcc400000 Alloc LP ( 824M)
 43.515s: 0.015ms    16k at:0x0b430000 Alloc SP ( 824M)
 43.890s: 0.149ms  4096k at:0xcc000000 Alloc LP ( 828M)
 43.890s: 0.109ms  4096k at:0xcbc00000 Alloc LP ( 832M)
 43.890s: 0.107ms  4096k at:0xcb800000 Alloc LP ( 836M)
 43.890s: 0.107ms  4096k at:0xcb400000 Alloc LP ( 840M)
 44.796s: 0.366ms 14336k at:0xca600000 Alloc LP ( 854M)
 45.437s: 0.436ms 16384k at:0xc9600000 Alloc LP ( 870M)
 54.171s: 0.453ms 16384k at:0xc8600000 Alloc LP ( 886M)
 57.359s: 0.469ms 16384k at:0xc7600000 Alloc LP ( 902M)
 57.375s: 0.147ms 16384k at:0xc7600000 Free     ( 886M)
 57.421s: 0.499ms 18432k at:0xc7400000 Alloc LP ( 904M)
 57.437s: 0.174ms 18432k at:0xc7400000 Free     ( 886M)
 57.484s: 0.524ms 18432k at:0xc7400000 Alloc LP ( 904M)
 57.703s: 0.176ms 18432k at:0xc7400000 Free     ( 886M)
 57.734s: 0.491ms 18432k at:0xc7400000 Alloc LP ( 904M)
 60.343s: 0.007ms    16k at:0x16520000 Alloc SP ( 904M)
 61.203s: 0.133ms  4096k at:0xc7000000 Alloc LP ( 908M)
 61.203s: 0.152ms  4096k at:0xc6c00000 Alloc LP ( 912M)
 61.203s: 0.108ms  4096k at:0xc6800000 Alloc LP ( 916M)
 61.203s: 0.108ms  4096k at:0xc6400000 Alloc LP ( 920M)
 72.203s: 0.472ms 18432k at:0xc5200000 Alloc LP ( 938M)
 72.796s: 0.581ms 18432k at:0xc4000000 Alloc LP ( 956M)
 78.968s: 0.512ms 18432k at:0xc2e00000 Alloc LP ( 974M)
 84.296s: 0.128ms  4096k at:0xc2a00000 Alloc LP ( 978M)
 84.296s: 0.112ms  4096k at:0xc2600000 Alloc LP ( 982M)
 84.296s: 0.108ms  4096k at:0xc2200000 Alloc LP ( 986M)
 84.296s: 0.107ms  4096k at:0xc1e00000 Alloc LP ( 990M)
 87.140s: 0.016ms    16k at:0x0dae0000 Alloc SP ( 990M)
 87.484s: 0.497ms 18432k at:0xc0c00000 Alloc LP (1008M)
 91.406s: 0.469ms 18432k at:0xbfa00000 Alloc LP (1026M)
 91.421s: 0.164ms 18432k at:0xbfa00000 Free     (1008M)
 93.312s: 0.479ms 18432k at:0xbfa00000 Alloc LP (1026M)
 93.375s: 0.185ms 18432k at:0xbfa00000 Free     (1008M)
 93.437s: 0.512ms 18432k at:0xbfa00000 Alloc LP (1026M)
 93.906s: 0.543ms 18432k at:0xbe800000 Alloc LP (1044M)
 93.921s: 0.206ms 18432k at:0xbe800000 Free     (1026M)
 95.218s: 0.515ms 18432k at:0xbe800000 Alloc LP (1044M)
101.171s: 0.127ms  4096k at:0xbe400000 Alloc LP (1048M)
101.171s: 0.107ms  4096k at:0xbe000000 Alloc LP (1052M)
101.171s: 0.105ms  4096k at:0xbdc00000 Alloc LP (1056M)
101.171s: 0.105ms  4096k at:0xbd800000 Alloc LP (1060M)
123.015s: 0.125ms  4096k at:0xbd400000 Alloc LP (1064M)
123.015s: 0.105ms  4096k at:0xbd000000 Alloc LP (1068M)
123.015s: 0.105ms  4096k at:0xbcc00000 Alloc LP (1072M)
123.015s: 0.105ms  4096k at:0xbc800000 Alloc LP (1076M)
125.125s: 0.005ms    16k at:0x0db30000 Alloc SP (1076M)
128.203s: 0.490ms 18432k at:0xbb600000 Alloc LP (1094M)
154.437s: 0.468ms 18432k at:0xba400000 Alloc LP (1112M)
154.453s: 0.161ms 18432k at:0xba400000 Free     (1094M)
177.437s: 0.069ms  6144k at:0xcd600000 Free     (1088M)
177.437s: 0.056ms  6144k at:0xcd000000 Free     (1082M)
177.500s: 0.060ms  6144k at:0xcca00000 Free     (1076M)
177.500s: 0.056ms  6144k at:0xcc400000 Free     (1070M)
178.031s: MFCA req.
179.921s: 0.169ms  6144k at:0xcd600000 Alloc LP (1076M)
179.921s: 0.163ms  6144k at:0xcd000000 Alloc LP (1082M)
179.921s: 0.157ms  6144k at:0xcca00000 Alloc LP (1088M)
179.921s: 0.158ms  6144k at:0xcc400000 Alloc LP (1094M)
180.203s: 0.526ms 18432k at:0xba400000 Alloc LP (1112M)
180.218s: 0.161ms 18432k at:0xba400000 Free     (1094M)
180.625s: 0.127ms  4096k at:0xbb200000 Alloc LP (1098M)
180.625s: 0.120ms  4096k at:0xbae00000 Alloc LP (1102M)
180.625s: 0.108ms  4096k at:0xbaa00000 Alloc LP (1106M)
180.625s: 0.108ms  4096k at:0xba600000 Alloc LP (1110M)
181.984s: 0.047ms  4096k at:0xba600000 Free     (1106M)
182.843s: 0.045ms  4096k at:0xbaa00000 Free     (1102M)
183.984s: 0.047ms  4096k at:0xbae00000 Free     (1098M)
184.531s: 0.095ms 10240k at:0xd1c00000 Free     (1088M)
184.984s: 0.045ms  4096k at:0xd5e00000 Free     (1084M)
184.984s: 0.043ms  4096k at:0xd5a00000 Free     (1080M)
184.984s: 0.038ms  4096k at:0xd5600000 Free     (1076M)
184.984s: 0.038ms  4096k at:0xd6600000 Free     (1072M)
184.984s: 0.038ms  4096k at:0xd7200000 Free     (1068M)
184.984s: 0.037ms  4096k at:0xd6a00000 Free     (1064M)
184.984s: 0.037ms  4096k at:0xd4600000 Free     (1060M)
184.984s: 0.038ms  4096k at:0xd7a00000 Free     (1056M)
184.984s: 0.037ms  4096k at:0xd7600000 Free     (1052M)
184.984s: 0.060ms  4096k at:0xd7e00000 Free     (1048M)
184.984s: 0.037ms  4096k at:0xdaa00000 Free     (1044M)
184.984s: 0.070ms  4096k at:0xd8e00000 Free     (1040M)
184.984s: 0.038ms  4096k at:0xdb600000 Free     (1036M)
184.984s: 0.037ms  4096k at:0xd9200000 Free     (1032M)
184.984s: 0.037ms  4096k at:0xd8200000 Free     (1028M)
184.984s: 0.037ms  4096k at:0xd8600000 Free     (1024M)
185.000s: MFCA req.
185.000s: 0.042ms  4096k at:0xd0c00000 Free     (1020M)
185.000s: 0.057ms  4096k at:0xd1000000 Free     (1016M)
185.000s: 0.050ms  4096k at:0xd2e00000 Free     (1012M)
185.015s: 0.564ms 67584k at:0xe3000000 Free     ( 946M)
185.031s: 0.164ms 18432k at:0xe0c00000 Free     ( 928M)
185.031s: 0.158ms 18432k at:0xf3c00000 Free     ( 910M)
185.031s: 0.158ms 18432k at:0xe1e00000 Free     ( 892M)
185.031s: 0.042ms  4096k at:0xd6e00000 Free     ( 888M)
185.031s: 0.038ms  4096k at:0xda200000 Free     ( 884M)
185.031s: 0.037ms  4096k at:0xd9600000 Free     ( 880M)
185.031s: 0.038ms  4096k at:0xd8a00000 Free     ( 876M)
185.046s: 0.038ms  4096k at:0xda600000 Free     ( 872M)
185.046s: 0.042ms  4096k at:0xd9a00000 Free     ( 868M)
185.046s: 0.038ms  4096k at:0xd5200000 Free     ( 864M)
185.046s: 0.037ms  4096k at:0xd6200000 Free     ( 860M)
185.046s: 0.038ms  4096k at:0xdae00000 Free     ( 856M)
185.046s: 0.042ms  4096k at:0xefe00000 Free     ( 852M)
185.046s: 0.038ms  4096k at:0xef600000 Free     ( 848M)
185.046s: 0.070ms  4096k at:0xeea00000 Free     ( 844M)
185.046s: 0.038ms  4096k at:0xf0200000 Free     ( 840M)
185.062s: 0.040ms  4096k at:0xee600000 Free     ( 836M)
185.062s: 0.037ms  4096k at:0xeee00000 Free     ( 832M)
185.062s: 0.038ms  4096k at:0xef200000 Free     ( 828M)
185.078s: 0.058ms  6144k at:0xcca00000 Free     ( 822M)
185.078s: 0.073ms  6144k at:0xcc400000 Free     ( 816M)
185.078s: 0.057ms  6144k at:0xcd000000 Free     ( 810M)
185.093s: 0.057ms  6144k at:0xcd600000 Free     ( 804M)
185.187s: 0.043ms  4096k at:0xdc200000 Free     ( 800M)
185.187s: 0.042ms  4096k at:0xee200000 Free     ( 796M)
185.187s: 0.038ms  4096k at:0xefa00000 Free     ( 792M)
185.187s: 0.038ms  4096k at:0xd9e00000 Free     ( 788M)
185.218s: 0.060ms  6144k at:0xf3600000 Free     ( 782M)
185.234s: 0.042ms  4096k at:0xcec00000 Free     ( 778M)
185.234s: 0.037ms  4096k at:0xcf800000 Free     ( 774M)
185.250s: 0.310ms 34816k at:0xf7a00000 Free     ( 740M)
185.546s: 0.073ms  4096k at:0xcf000000 Free     ( 736M)
185.546s: 0.042ms  4096k at:0xce800000 Free     ( 732M)
185.609s: 0.050ms  4096k at:0xd0400000 Free     ( 728M)
185.625s: 0.052ms  4096k at:0xd4a00000 Free     ( 724M)
185.625s: 0.046ms  4096k at:0xd1800000 Free     ( 720M)
185.625s: 0.045ms  4096k at:0xd3200000 Free     ( 716M)
185.625s: 0.045ms  4096k at:0xfb800000 Free     ( 712M)
185.625s: 0.041ms  4096k at:0xf2600000 Free     ( 708M)
185.625s: 0.048ms  4096k at:0xdfc00000 Free     ( 704M)
185.625s: 0.046ms  4096k at:0xe0000000 Free     ( 700M)
185.625s: 0.050ms  4096k at:0xd3e00000 Free     ( 696M)
185.625s: 0.106ms  4096k at:0xf6200000 Free     ( 692M)
185.625s: 0.050ms  4096k at:0xf1200000 Free     ( 688M)
185.625s: 0.046ms  4096k at:0xf0600000 Free     ( 684M)
185.625s: 0.052ms  4096k at:0xd3a00000 Free     ( 680M)
185.625s: 0.047ms  4096k at:0xfe000000 Free     ( 676M)
185.640s: 0.060ms  4096k at:0xbb200000 Free     ( 672M)
185.640s: 0.237ms 18432k at:0xbb600000 Free     ( 654M)
185.640s: 0.048ms  4096k at:0xbc800000 Free     ( 650M)
185.640s: 0.047ms  4096k at:0xbcc00000 Free     ( 646M)
185.640s: 0.046ms  4096k at:0xbd000000 Free     ( 642M)
185.640s: 0.046ms  4096k at:0xbd400000 Free     ( 638M)
185.640s: 0.051ms  4096k at:0xbd800000 Free     ( 634M)
185.640s: 0.050ms  4096k at:0xbdc00000 Free     ( 630M)
185.640s: 0.046ms  4096k at:0xbe000000 Free     ( 626M)
185.640s: 0.046ms  4096k at:0xbe400000 Free     ( 622M)
185.640s: 0.192ms 18432k at:0xbe800000 Free     ( 604M)
185.640s: 0.195ms 18432k at:0xbfa00000 Free     ( 586M)
185.640s: 0.245ms 18432k at:0xc0c00000 Free     ( 568M)
185.640s: 0.047ms  4096k at:0xc1e00000 Free     ( 564M)
185.640s: 0.048ms  4096k at:0xc2200000 Free     ( 560M)
185.640s: 0.050ms  4096k at:0xc2600000 Free     ( 556M)
185.640s: 0.048ms  4096k at:0xc2a00000 Free     ( 552M)
185.640s: 0.281ms 18432k at:0xc2e00000 Free     ( 534M)
185.640s: 0.249ms 18432k at:0xc4000000 Free     ( 516M)
185.640s: 0.255ms 18432k at:0xc5200000 Free     ( 498M)
185.640s: 0.067ms  4096k at:0xc6400000 Free     ( 494M)
185.640s: 0.074ms  4096k at:0xc6800000 Free     ( 490M)
185.640s: 0.076ms  4096k at:0xc6c00000 Free     ( 486M)
185.640s: 0.086ms  4096k at:0xc7000000 Free     ( 482M)
185.640s: 0.297ms 18432k at:0xc7400000 Free     ( 464M)
185.640s: 0.206ms 16384k at:0xc8600000 Free     ( 448M)
185.640s: 0.200ms 16384k at:0xc9600000 Free     ( 432M)
185.640s: 0.181ms 14336k at:0xca600000 Free     ( 418M)
185.640s: 0.052ms  4096k at:0xcb400000 Free     ( 414M)
185.640s: 0.050ms  4096k at:0xcb800000 Free     ( 410M)
185.640s: 0.049ms  4096k at:0xcbc00000 Free     ( 406M)
185.640s: 0.046ms  4096k at:0xcc000000 Free     ( 402M)
185.640s: 0.049ms  4096k at:0xcdc00000 Free     ( 398M)
185.640s: 0.081ms  4096k at:0xce000000 Free     ( 394M)
185.640s: 0.052ms  4096k at:0xce400000 Free     ( 390M)
185.640s: 0.049ms  4096k at:0xcf400000 Free     ( 386M)
185.640s: 0.048ms  4096k at:0xcfc00000 Free     ( 382M)
185.640s: 0.050ms  4096k at:0xd0000000 Free     ( 378M)
185.640s: 0.051ms  4096k at:0xd0800000 Free     ( 374M)
185.640s: 0.056ms  4096k at:0xd1400000 Free     ( 370M)
185.640s: 0.052ms  4096k at:0xd2600000 Free     ( 366M)
185.640s: 0.051ms  4096k at:0xd2a00000 Free     ( 362M)
185.640s: 0.048ms  4096k at:0xe0400000 Free     ( 358M)
185.640s: 0.048ms  4096k at:0xe0800000 Free     ( 354M)
185.640s: 0.053ms  4096k at:0xd3600000 Free     ( 350M)
185.640s: 0.049ms  4096k at:0xd4200000 Free     ( 346M)
185.640s: 0.049ms  4096k at:0xd4e00000 Free     ( 342M)
185.640s: 0.048ms  4096k at:0xdb200000 Free     ( 338M)
185.640s: 0.050ms  4096k at:0xdba00000 Free     ( 334M)
185.640s: 0.078ms  4096k at:0xdbe00000 Free     ( 330M)
185.640s: 0.050ms  4096k at:0xdc600000 Free     ( 326M)
185.640s: 0.051ms  4096k at:0xdca00000 Free     ( 322M)
185.640s: 0.048ms  4096k at:0xdce00000 Free     ( 318M)
185.640s: 0.045ms  4096k at:0xdd200000 Free     ( 314M)
185.640s: 0.053ms  4096k at:0xdd600000 Free     ( 310M)
185.656s: 0.049ms  4096k at:0xdda00000 Free     ( 306M)
185.656s: 0.057ms  4096k at:0xdde00000 Free     ( 302M)
185.656s: 0.102ms  4096k at:0xde200000 Free     ( 298M)
185.656s: 0.049ms  4096k at:0xde600000 Free     ( 294M)
185.656s: 0.090ms  4096k at:0xdea00000 Free     ( 290M)
185.656s: 0.051ms  4096k at:0xdee00000 Free     ( 286M)
185.656s: 0.051ms  4096k at:0xdf200000 Free     ( 282M)
185.656s: 0.049ms  4096k at:0xdf600000 Free     ( 278M)
185.656s: 0.049ms  4096k at:0xf2a00000 Free     ( 274M)
185.656s: 0.058ms  4096k at:0xf2e00000 Free     ( 270M)
185.656s: 0.071ms  4096k at:0xf3200000 Free     ( 266M)
185.656s: 0.247ms 14336k at:0xe7200000 Free     ( 252M)
185.656s: 0.077ms  4096k at:0xe8000000 Free     ( 248M)
185.656s: 0.090ms  4096k at:0xe8400000 Free     ( 244M)
185.656s: 0.080ms  4096k at:0xe8800000 Free     ( 240M)
185.656s: 0.058ms  4096k at:0xe8c00000 Free     ( 236M)
185.656s: 0.235ms 14336k at:0xe9000000 Free     ( 222M)
185.656s: 0.080ms  4096k at:0xe9e00000 Free     ( 218M)
185.656s: 0.048ms  4096k at:0xea200000 Free     ( 214M)
185.656s: 0.052ms  4096k at:0xea600000 Free     ( 210M)
185.656s: 0.047ms  4096k at:0xeaa00000 Free     ( 206M)
185.656s: 0.177ms 14336k at:0xeae00000 Free     ( 192M)
185.656s: 0.163ms 14336k at:0xebc00000 Free     ( 178M)
185.656s: 0.046ms  4096k at:0xeca00000 Free     ( 174M)
185.656s: 0.049ms  4096k at:0xece00000 Free     ( 170M)
185.656s: 0.047ms  4096k at:0xed200000 Free     ( 166M)
185.656s: 0.048ms  4096k at:0xed600000 Free     ( 162M)
185.656s: 0.049ms  4096k at:0xeda00000 Free     ( 158M)
185.656s: 0.069ms  4096k at:0xede00000 Free     ( 154M)
185.656s: 0.051ms  4096k at:0xf0a00000 Free     ( 150M)
185.656s: 0.047ms  4096k at:0xf0e00000 Free     ( 146M)
185.656s: 0.048ms  4096k at:0xf1600000 Free     ( 142M)
185.656s: 0.074ms  4096k at:0xf1a00000 Free     ( 138M)
185.656s: 0.050ms  4096k at:0xf1e00000 Free     ( 134M)
185.656s: 0.142ms  4096k at:0xf2200000 Free     ( 130M)
185.656s: 0.087ms  4096k at:0xf4e00000 Free     ( 126M)
185.656s: 0.053ms  4096k at:0xf5200000 Free     ( 122M)
185.656s: 0.049ms  4096k at:0xf5600000 Free     ( 118M)
185.656s: 0.051ms  4096k at:0xf5a00000 Free     ( 114M)
185.656s: 0.050ms  4096k at:0xf5e00000 Free     ( 110M)
185.656s: 0.051ms  4096k at:0xf6600000 Free     ( 106M)
185.656s: 0.052ms  4096k at:0xf6a00000 Free     ( 102M)
185.656s: 0.048ms  4096k at:0xf6e00000 Free     (  98M)
185.656s: 0.051ms  4096k at:0xf7200000 Free     (  94M)
185.656s: 0.085ms  4096k at:0xf7600000 Free     (  90M)
185.656s: 0.049ms  4096k at:0xfa000000 Free     (  86M)
185.656s: 0.049ms  4096k at:0xf9c00000 Free     (  82M)
185.656s: 0.048ms  4096k at:0xfa400000 Free     (  78M)
185.656s: 0.050ms  4096k at:0xfa800000 Free     (  74M)
185.656s: 0.081ms  4096k at:0xfac00000 Free     (  70M)
185.656s: 0.050ms  4096k at:0xfb000000 Free     (  66M)
185.656s: 0.048ms  4096k at:0xfb400000 Free     (  62M)
185.656s: 0.049ms  4096k at:0xfbc00000 Free     (  58M)
185.656s: 0.051ms  4096k at:0xfc000000 Free     (  54M)
185.656s: 0.084ms  4096k at:0xfc400000 Free     (  50M)
185.656s: 0.051ms  4096k at:0xfc800000 Free     (  46M)
185.656s: 0.052ms  4096k at:0xfcc00000 Free     (  42M)
185.656s: 0.052ms  4096k at:0xfd000000 Free     (  38M)
185.656s: 0.048ms  4096k at:0xfd400000 Free     (  34M)
185.656s: 0.092ms  4096k at:0xfd800000 Free     (  30M)
185.656s: 0.053ms  4096k at:0xfdc00000 Free     (  26M)
185.656s: 0.051ms  4096k at:0xfe400000 Free     (  22M)
185.656s: 0.049ms  4096k at:0xfe800000 Free     (  18M)
185.656s: 0.103ms  8192k at:0xfec00000 Free     (  10M)
185.656s: 0.100ms  8192k at:0xff400000 Free     (   2M)
185.656s: 0.026ms  2048k at:0xffc00000 Free     (   0M)
185.656s: regAllocTotalDur:   37.557ms LOCstat: 18491/21180:87.3% TLSLeft:  2

EDIT: Oh, and yes, this "magic" for me improves FPS roughly by 9%. So - thank You!

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×