Chapter 04The Compiler's Optimization BudgetPaid chapter

Inlining — Budgets, Costs, PGO, and What Breaks It

Understand Go's inlining cost model, what causes functions to exceed the budget, how PGO changes the decision, and why inlining loss cascades into escape and allocation regressions.

Launch paywall

This chapter is part of the paid launch. The preview stays visible so readers can evaluate the exact scope before buying.

Included in

Core and Complete. Complete also includes the practical exam and free Go-version updates.

Preview

What this chapter teaches

Common belief

Extracting a helper function is free; the compiler inlines small functions anyway.

What actually happens

inlining is gated by an AST-node cost budget (80). One node over and the whole function stops inlining — which can cascade into lost escape analysis and new allocations. PGO can raise the budget for hot call sites.

Mechanisms covered
Mid-stack inlining (Go 1.19+) inlines callers of inlinable callees, but the combined cost must fit the budget.
PGO (Profile-Guided Optimization, stable since Go 1.21): with a default.pgo profile in the main package, the compiler raises the inlining budget for hot call sites identified in the profile, inlining functions it would otherwise reject.
Inlining enables further optimizations: escape analysis sees through inlined calls, BCE proves bounds across inlined code, register allocation improves.
compilebench
One-time purchase

Unlock Chapter 04 and the rest of the course.

Core unlocks every paid chapter and lab. Complete also includes the practical exam and future Go-version updates.

Core
$49

Full course access with the complete mechanics curriculum.

All paid chapters unlocked
One-time purchase
Perfect if you want the material only
Complete
$79
Best value

Best-value launch option with the exam and free Go-version course updates.

Everything in Core
Black Belt practical exam
Free Go-version updates

No subscription or account required. Access is tied to the email entered at Stripe Checkout and can be restored by email.

Free chapter
Escape Analysis — The Compiler's Fragile Decision
Understand how the compiler decides between stack and heap allocation, why the decision is fragile, and how to verify it.
Free chapter
Maps — Swiss Tables, Growth, and Permanent Memory
Understand the Go 1.24+ Swiss Table map layout, why maps don't shrink, and how to design for memory reclamation.