Lines Matching refs:live
114 bool isLive(uint64_t off) const override { return live; } in isLive()
115 void markLive(uint64_t off) override { live = true; } in markLive()
117 bool shouldOmitFromOutput() const { return !live || isCoalescedWeak(); } in shouldOmitFromOutput()
143 bool live = !config->deadStrip; variable
176 uint32_t live : 1; member
183 : inSecOff(off), live(!config->deadStrip), hash(hash) {} in StringPiece()
206 bool isLive(uint64_t off) const override { return getStringPiece(off).live; } in isLive()
207 void markLive(uint64_t off) override { getStringPiece(off).live = true; } in markLive()
253 return live[off >> power2LiteralSize]; in isLive()
256 live[off >> power2LiteralSize] = true; in markLive()
266 llvm::BitVector live; variable