blob: 22211c11edf32e69788a365c1d18c32acd4603ab [file] [log] [blame]
Sam Clegg03626332018-01-31 01:45:47 +00001//===- MarkLive.cpp -------------------------------------------------------===//
2//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements --gc-sections, which is a feature to remove unused
11// chunks from the output. Unused chunks are those that are not reachable from
12// known root symbols or chunks. This feature is implemented as a mark-sweep
13// garbage collector.
14//
15// Here's how it works. Each InputChunk has a "Live" bit. The bit is off by
16// default. Starting with the GC-roots, visit all reachable chunks and set their
17// Live bits. The Writer will then ignore chunks whose Live bits are off, so
18// that such chunk are not appear in the output.
19//
20//===----------------------------------------------------------------------===//
21
22#include "MarkLive.h"
23#include "Config.h"
24#include "InputChunks.h"
25#include "SymbolTable.h"
26#include "Symbols.h"
27
28#define DEBUG_TYPE "lld"
29
30using namespace llvm;
31using namespace llvm::wasm;
32using namespace lld;
33using namespace lld::wasm;
34
35void lld::wasm::markLive() {
36 if (!Config->GcSections)
37 return;
38
39 DEBUG(dbgs() << "markLive\n");
40 SmallVector<InputChunk *, 256> Q;
41
42 auto Enqueue = [&](Symbol *Sym) {
43 if (!Sym)
44 return;
45 InputChunk *Chunk = Sym->getChunk();
46 if (!Chunk || Chunk->Live)
47 return;
48 Chunk->Live = true;
49 Q.push_back(Chunk);
50 };
51
52 // Add GC root symbols.
53 if (!Config->Entry.empty())
54 Enqueue(Symtab->find(Config->Entry));
Sam Cleggf0d433d2018-02-02 22:59:56 +000055 Enqueue(WasmSym::CallCtors);
Sam Clegg03626332018-01-31 01:45:47 +000056
57 // By default we export all non-hidden, so they are gc roots too
58 for (Symbol *Sym : Symtab->getSymbols())
59 if (!Sym->isHidden())
60 Enqueue(Sym);
61
Sam Clegg3d1f4b92018-02-16 18:37:32 +000062 // The ctor functions are all used in the synthetic __wasm_call_ctors
63 // function, but since this function is created in-place it doesn't contain
Rui Ueyama34133b232018-02-19 22:34:47 +000064 // relocations which mean we have to manually mark the ctors.
Sam Clegg03626332018-01-31 01:45:47 +000065 for (const ObjFile *Obj : Symtab->ObjectFiles) {
66 const WasmLinkingData &L = Obj->getWasmObj()->linkingData();
67 for (const WasmInitFunc &F : L.InitFunctions)
Sam Clegg93102972018-02-23 05:08:53 +000068 Enqueue(Obj->getFunctionSymbol(F.Symbol));
Sam Clegg03626332018-01-31 01:45:47 +000069 }
70
Rui Ueyama34133b232018-02-19 22:34:47 +000071 // Follow relocations to mark all reachable chunks.
72 while (!Q.empty()) {
73 InputChunk *C = Q.pop_back_val();
74
75 for (const WasmRelocation Reloc : C->getRelocations()) {
Sam Clegg93102972018-02-23 05:08:53 +000076 if (Reloc.Type != R_WEBASSEMBLY_TYPE_INDEX_LEB)
77 Enqueue(C->File->getSymbol(Reloc.Index));
Sam Clegg03626332018-01-31 01:45:47 +000078 }
Rui Ueyama34133b232018-02-19 22:34:47 +000079 }
Sam Clegg03626332018-01-31 01:45:47 +000080
81 // Report garbage-collected sections.
82 if (Config->PrintGcSections) {
Sam Clegg03626332018-01-31 01:45:47 +000083 for (const ObjFile *Obj : Symtab->ObjectFiles) {
84 for (InputChunk *C : Obj->Functions)
Rui Ueyama81bee042018-02-19 22:29:48 +000085 if (!C->Live)
86 message("removing unused section " + toString(C));
Sam Clegg03626332018-01-31 01:45:47 +000087 for (InputChunk *C : Obj->Segments)
Rui Ueyama81bee042018-02-19 22:29:48 +000088 if (!C->Live)
89 message("removing unused section " + toString(C));
Sam Clegg03626332018-01-31 01:45:47 +000090 }
91 }
92}