| 102 | unsigned sitesToString(Context* c, Value* v, char* buffer, unsigned size); |
| 103 | |
| 104 | void deadWord(Context* c, Value* v) |
| 105 | { |
| 106 | Value* nextWord = v->nextWord; |
| 107 | assertT(c, nextWord != v); |
| 108 | |
| 109 | for (SiteIterator it(c, v, true, false); it.hasMore();) { |
| 110 | Site* s = it.next(); |
| 111 | |
| 112 | if (s->registerSize(c) > TargetBytesPerWord) { |
| 113 | it.remove(c); |
| 114 | nextWord->addSite(c, s); |
| 115 | } |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | void deadBuddy(Context* c, Value* v, Read* r UNUSED) |
| 120 | { |