Tag: #garbage-collection
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 3 posts
The goroutineleak Profile in Go 1.26 — Catching Goroutine Leaks with GC Marking
Go 1.26 (released February 10, 2026) added a goroutineleak profile to runtime/pprof as an experimental feature. The idea is to recycle the GC's marking phase — mark using only runnable goroutines as roots, then report as
2026-07-16 · 17 min read #go#goroutine#garbage-collection#profiling#debuggingCompilers and Modern Language Runtimes — LLVM, JIT, GC, V8 TurboFan/Maglev, Inline Caching, Escape Analysis, Rust Monomorphization Complete Guide (2025)
Everything that happens from a line of code to CPU execution. LLVM's dominance, V8's 4-tier JIT, Hidden Classes and Inline Caching, Escape Analysis, GC lineage from Mark & Sweep to ZGC, Go's work-stealing scheduler, Rust
2026-04-15 · 11 min read #compiler#runtime#llvm#jit#garbage-collectionMemory Management & Garbage Collection Complete Guide 2025: Stack/Heap, GC Algorithms, Memory Leak Debugging
Everything about memory management! Stack vs Heap, GC algorithms (Mark-Sweep/Generational/Concurrent), V8 GC (Orinoco), JVM GC (G1/ZGC/Shenandoah), Rust ownership system, memory leak detection (Chrome DevTools/VisualVM),
2026-04-14 · 25 min read #memory-management#garbage-collection#stack#heap#gc-algorithm