mmap vs sbrk, performance comparison

前端 未结 1 390
清歌不尽
清歌不尽 2021-01-01 02:35

Which of these calls is faster on average? I\'ve heard that mmap is faster for smaller allocations but I haven\'t heard a comparison of either. Any information

相关标签:
1条回答
  • 2021-01-01 03:40

    You should tag this with a particular implementation (like linux) since the answer surely varies by implementation. For now I'll assume Linux since it's the most popular.

    With that said, brk is in theory more optimizable, and in practice it runs about 10% faster on my machine. Allocating one page, these are the times I get:

    • brk: min 2550 cycles, typical 2650 cycles
    • mmap: min 2700 cycles, typical 2800 cycles

    I remember hearing something along the lines of brk being able to skip locking the mmap semaphore, which would explain the discrepancy.

    Note: I updated these times after adjusting my test to make a dummy calls prior to timing, to ensure that the code would all be in the cache.

    0 讨论(0)
提交回复
热议问题