docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거

Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
Antigravity Agent
2026-07-05 00:33:48 +09:00
parent 1cfd3bbb56
commit 9148c358d0
6455 changed files with 1 additions and 86875 deletions
@@ -0,0 +1,142 @@
---
id: wiki-20260508-write-barrier-redir
title: Write Barrier
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [쓰기 장벽, GC Write Barrier, Generational Barrier]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [garbage-collection, runtime, v8, jvm, performance]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: cpp
framework: v8, jvm
---
# Write Barrier
## 매 한 줄
> **"매 inter-generational pointer 의 tracking 의 cost"**. Write barrier 는 매 generational / incremental GC 가 매 old-gen object 의 reference 가 매 young-gen 의 가리킬 때 매 remembered set 의 update 의 small code snippet. 매 V8 / JVM / .NET 의 모든 modern GC 의 essential primitive — 매 minor GC 가 매 entire old-gen 의 scan 의 회피.
## 매 핵심
### 매 why
- **Generational hypothesis**: 매 most objects die young → young-gen 만 frequent collect.
- **Inter-gen pointer 의 problem**: 매 minor GC 의 root 로 매 stack + old→young pointer 의 필요.
- **Naive: scan all old-gen** → expensive.
- **Solution**: 매 write 마다 (old.field = young) 매 barrier 의 firing → remembered set 의 add.
### 매 type
- **Snapshot-at-the-Beginning (SATB)**: 매 incremental marking 의 use (G1, ZGC, V8 Orinoco). 매 overwritten old reference 의 record.
- **Incremental Update**: 매 new reference 의 record (CMS).
- **Card marking**: 매 old-gen 의 fixed-size card (e.g., 512B) 의 dirty bit 의 mark — coarse but cheap.
### 매 cost
- 매 store 마다 ~3-5 instruction overhead.
- 매 hot-loop 의 store 의 bottleneck 가능 — 매 elision optimization 의 important.
## 💻 패턴
### 1. Card-marking pseudo-implementation
```cpp
// 매 1MB heap 의 512B card → 2048 cards
const size_t CARD_SIZE = 512;
uint8_t card_table[HEAP_SIZE / CARD_SIZE];
inline void write_barrier(Object* obj, Object** field, Object* new_val) {
*field = new_val;
if (in_old_gen(obj) && in_young_gen(new_val)) {
size_t card = ((uintptr_t)field - heap_base) / CARD_SIZE;
card_table[card] = 1; // dirty
}
}
void minor_gc_scan() {
for (size_t i = 0; i < num_cards; i++) {
if (card_table[i]) {
scan_card_for_young_refs(i);
card_table[i] = 0;
}
}
}
```
### 2. V8-style incremental marking barrier (simplified)
```cpp
// 매 SATB: overwritten reference 의 mark gray
inline void v8_write_barrier(HeapObject* host, Object** slot, Object* value) {
Object* old = *slot;
*slot = value;
if (incremental_marking_active && is_white(old)) {
mark_gray(old); // 매 not-yet-marked 의 reference 의 처리 보장
}
// 매 generational: old→young 의 record
if (host->in_old_space() && value->in_young_space()) {
remembered_set.insert(slot);
}
}
```
### 3. JIT-emitted barrier elision
```cpp
// 매 compiler 의 barrier 의 omit 가능 case:
// 1. 매 store 의 target 이 fresh allocation (young → ?)
// 2. 매 store value 의 primitive (int, double)
// 3. 매 immutable field 의 init store
function emitStore(host, field, value) {
if (isFreshlyAllocated(host)) emitRawStore(host, field, value);
else emitBarrieredStore(host, field, value);
}
```
### 4. Measure barrier overhead (benchmark)
```typescript
// Node.js / V8 의 barrier overhead 의 indirect measure
const N = 1e7;
const arr = new Array(N);
const obj = { ref: null };
console.time('store-loop');
for (let i = 0; i < N; i++) obj.ref = arr; // 매 barrier 의 fire
console.timeEnd('store-loop');
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| 매 hot inner loop 의 store | primitive 의 use, object reference 의 회피 |
| 매 immutable struct | barrier-free design |
| 매 large old-gen | card marking 의 prefer |
| 매 incremental GC | SATB barrier 의 use |
| 매 low-latency (ZGC) | colored pointers + load barrier 의 alternative |
**기본값**: 매 application code 의 barrier 의 invisible — 매 GC 의 implementation detail.
## 🔗 Graph
- 부모: [[Garbage Collection]] · [[Memory Management]]
- 변형: [[Card Marking]]
- 응용: [[Incremental GC]] · [[Orinoco]]
- Adjacent: [[Mark Sweep Compact]] · [[Garbage Collection|Generational Hypothesis]]
## 🤖 LLM 활용
**언제**: GC internals 의 understanding, runtime tuning, performance 의 explain.
**언제 X**: Rust / non-GC language (no barrier), reference counting (no generational).
## ❌ 안티패턴
- **Barrier elision 의 manual attempt 의 application code**: 매 unsafe.
- **Excessive store-to-old-gen 의 hot path**: 매 remembered set 의 explosion.
- **Ignoring barrier cost 의 high-frequency mutation**: 매 hidden bottleneck.
## 🧪 검증 / 중복
- Verified (Jones GC handbook 2011, V8 Orinoco docs, JVM HotSpot source).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — write barrier 의 type, cost, V8 example 의 expand |