최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 performance bug 의 95% 는 'where is CPU time spent?' — 매 call stack sampling 이 답한다.". 매 stack trace 를 statistical 하게 sampling → flame graph 로 visualize 하면 hot path 가 즉시 보임. 매 2026 표준 stack 은 Linux perf + eBPF, 매 inferno / pyroscope / Datadog Continuous Profiler.
매 핵심
매 sampling vs instrumentation
Sampling profiler: 매 N Hz (보통 99/999Hz) 마다 stack capture → low overhead, statistical.
Instrumented profiler: 매 every entry/exit hook → exact, but 10-100x overhead.
현대 default: 매 sampling — 매 production-safe.
매 stack source
Frame pointer (RBP) walk: 매 fastest, requires -fno-omit-frame-pointer.
DWARF unwind: 매 .eh_frame 사용 — frame pointer 불필요하나 expensive.
ORC unwinder: 매 Linux kernel 의 lightweight DWARF subset.
eBPF stackmap: 매 user+kernel stack 통합.
매 visualization
Flame graph (Brendan Gregg): 매 x=share of samples, y=stack depth, width=hot.
Icicle graph: 매 flipped flame — root at top.
Differential flame graph: 매 두 profile diff — perf regression 사냥.
매 응용
CPU bottleneck 진단: 매 hot function 식별.
Lock contention: 매 off-CPU profile + futex stack.
GC pressure: 매 alloc-stack profile.
Cold start: 매 startup phase flame graph.
Continuous profiling: 매 prod 24/7 sample → regression alerting.