惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Inside My Custom malloc: Bins, tcache, mmap, and Thread S...
Prajwal zore · 2026-05-03 · via DEV Community

Most developers use malloc without thinking much about what happens underneath.

This project is an attempt to explore that layer by building a memory allocator from scratch in C.

The allocator implements malloc, free, calloc, and realloc without relying on libc’s heap functions. It focuses on:

  • Thread safety
  • Per-thread caching (tcache)
  • Efficient free block management using bins
  • mmap-based memory growth
  • Handling large allocations separately

This article breaks down the design, implementation decisions, performance characteristics, and limitations of the allocator.


What is a Memory Allocator?

A memory allocator is responsible for managing dynamic memory at runtime.

Functions like malloc, free, calloc, and realloc are part of this layer.

At a high level, an allocator:

  • Requests memory from the operating system (e.g., using mmap)
  • Splits that memory into smaller blocks
  • Tracks which blocks are free or in use
  • Reuses freed blocks to avoid unnecessary system calls

This layer sits between user programs and the OS, making memory allocation efficient and reusable.


Why Allocators Are Non-Trivial

A good allocator must balance multiple competing goals:

  • Performance → allocations should be fast
  • Memory efficiency → minimize fragmentation
  • Scalability → handle multi-threaded workloads
  • System overhead → reduce expensive syscalls

Modern allocators like those in libc (e.g., ptmalloc) are highly optimized and use techniques such as arenas, bins, and thread-local caching.

This project implements a simplified version of those ideas to understand how they work in practice.


Allocator Overview

At a high level, the allocator follows two distinct paths based on allocation size:

  • Small allocations (< 128KB) → handled through heap, bins, and per-thread cache
  • Large allocations (≥ 128KB) → handled using mmap

Allocation Flow

flow chart

  1. mymalloc(size) is called
  2. Size is aligned to 8 bytes
  3. If size < 128KB:
    • Check per-thread tcache
    • If hit → return immediately (no locking)
    • If miss → acquire global heap lock
      • Search free bins
      • If not found → request space via mmap chunk
      • Split block if necessary
  4. If size ≥ 128KB:
    • Try large block cache
    • Otherwise call mmap

Free Flow

  1. If block belongs to heap:
    • Push to thread-local tcache
    • If tcache is full → flush to global bins + coalesce
  2. If block is mmap’d:
    • Store in large cache or release via munmap

Each allocation is preceded by a metadata header:

[ block_header | user_data ]

The header stores:

  • size
  • allocation state
  • mmap flag
  • pointers for heap and bin lists
┌──────────────────────────────┐
│ block_header_t               │  48 bytes
│  size_t size                 │
│  int isfree                  │
│  int ismmapped               │
│  block_header_t *next/prev   │  heap linked list
│  block_header_t *bin_next    │  bin free list
│  block_header_t *bin_prev    │  bin free list
├──────────────────────────────┤
│ user data                    │  size bytes  ← returned pointer
└──────────────────────────────┘

Enter fullscreen mode Exit fullscreen mode


Free blocks are organized into 8 bins based on size ranges which allows:

  • Faster lookup (O(1) class selection)
  • Reduced search overhead free chart

Each thread maintains its own cache of free blocks.

which means every thread now has it's own temporary storage to keep the free blocks in it and access them as per need easily.

Benefits:

  • No locking on fast path
  • High cache locality
  • Significant performance boost in multi-threaded workloads

tcache


Free Block Bins

Free blocks are organized into 8 size-based bins.

This enables:

  • O(1) size class lookup
  • Reduced search overhead
  • Better reuse of memory blocks

Benchmarks

Tests were run on x86-64 Linux with 8 threads and -O2.

Test Custom libc Result
Single alloc/free 58ms 29ms 2x slower
Batch alloc 1.44ms 3.59ms 2.5x faster
Batch free 0.36ms 1.54ms 4x faster
Mixed sizes 6.46ms 2.95ms 2x slower
Realloc chain 6.42ms 2.56ms 2.5x slower
Multithreaded 64ms 67ms Comparable

Observations

  • Batch workloads benefit heavily from tcache
  • Large allocation cache reduces mmap calls significantly
  • Global lock limits scalability
  • libc remains more optimized for general workloads
  • Next, I plan to implement per-thread arenas to eliminate global lock contention.

Limitations

  • Single global lock limits scalability
  • No in-place realloc
  • No coalescing inside tcache
  • Large mmap blocks may waste memory
  • No cleanup on thread exit

Source Code

You can explore the full source here.


Final Thoughts

Building a memory allocator from scratch highlights the trade-offs between performance, complexity, and correctness.

Even a simplified allocator quickly grows in complexity when thread safety, caching, and fragmentation are considered.

If you have suggestions, optimizations, or questions, feel free to ask or start a discussion.