Skip to content

Commit e4888be

Browse files
committed
[WebAssembly] Avoid unused function imports in PIC mode
In PIC mode we import function address via `GOT.mem` imports but for direct function calls we still import the first class function. However, if the function is never directly called we can avoid the first class import completely. Differential Revision: https://reviews.llvm.org/D108345
1 parent a9095f0 commit e4888be

File tree

4 files changed

+22
-19
lines changed

4 files changed

+22
-19
lines changed

lld/test/wasm/shared.s

+5-9
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,6 @@ get_local_func_address:
167167
# CHECK-NEXT: Kind: GLOBAL
168168
# CHECK-NEXT: GlobalType: I32
169169
# CHECK-NEXT: GlobalMutable: false
170-
# CHECK-NEXT: - Module: env
171-
# CHECK-NEXT: Field: func_external
172-
# CHECK-NEXT: Kind: FUNCTION
173-
# CHECK-NEXT: SigIndex: 1
174170
# CHECK-NEXT: - Module: GOT.mem
175171
# CHECK-NEXT: Field: indirect_func
176172
# CHECK-NEXT: Kind: GLOBAL
@@ -197,7 +193,7 @@ get_local_func_address:
197193
# CHECK-NEXT: Exports:
198194
# CHECK-NEXT: - Name: __wasm_call_ctors
199195
# CHECK-NEXT: Kind: FUNCTION
200-
# CHECK-NEXT: Index: 1
196+
# CHECK-NEXT: Index: 0
201197

202198
# check for elem segment initialized with __table_base global as offset
203199

@@ -206,17 +202,17 @@ get_local_func_address:
206202
# CHECK-NEXT: - Offset:
207203
# CHECK-NEXT: Opcode: GLOBAL_GET
208204
# CHECK-NEXT: Index: 2
209-
# CHECK-NEXT: Functions: [ 4, 3 ]
205+
# CHECK-NEXT: Functions: [ 3, 2 ]
210206

211207
# check the generated code in __wasm_call_ctors and __wasm_apply_data_relocs functions
212208
# TODO(sbc): Disassemble and verify instructions.
213209

214210
# CHECK: - Type: CODE
215211
# CHECK-NEXT: Functions:
216-
# CHECK-NEXT: - Index: 1
212+
# CHECK-NEXT: - Index: 0
217213
# CHECK-NEXT: Locals: []
218-
# CHECK-NEXT: Body: 10020B
219-
# CHECK-NEXT: - Index: 2
214+
# CHECK-NEXT: Body: 10010B
215+
# CHECK-NEXT: - Index: 1
220216
# CHECK-NEXT: Locals: []
221217
# CHECK-NEXT: Body: 230141046A2304360200230141086A230241016A3602002301410C6A230141006A360200230141106A2305360200230141146A230641046A3602000B
222218

lld/test/wasm/shared64.s

+5-9
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,6 @@ get_local_func_address:
174174
# CHECK-NEXT: Kind: GLOBAL
175175
# CHECK-NEXT: GlobalType: I32
176176
# CHECK-NEXT: GlobalMutable: false
177-
# CHECK-NEXT: - Module: env
178-
# CHECK-NEXT: Field: func_external
179-
# CHECK-NEXT: Kind: FUNCTION
180-
# CHECK-NEXT: SigIndex: 1
181177
# CHECK-NEXT: - Module: GOT.mem
182178
# CHECK-NEXT: Field: indirect_func
183179
# CHECK-NEXT: Kind: GLOBAL
@@ -204,7 +200,7 @@ get_local_func_address:
204200
# CHECK-NEXT: Exports:
205201
# CHECK-NEXT: - Name: __wasm_call_ctors
206202
# CHECK-NEXT: Kind: FUNCTION
207-
# CHECK-NEXT: Index: 1
203+
# CHECK-NEXT: Index: 0
208204

209205
# check for elem segment initialized with __table_base global as offset
210206

@@ -213,17 +209,17 @@ get_local_func_address:
213209
# CHECK-NEXT: - Offset:
214210
# CHECK-NEXT: Opcode: GLOBAL_GET
215211
# CHECK-NEXT: Index: 3
216-
# CHECK-NEXT: Functions: [ 4, 3 ]
212+
# CHECK-NEXT: Functions: [ 3, 2 ]
217213

218214
# check the generated code in __wasm_call_ctors and __wasm_apply_data_relocs functions
219215
# TODO(sbc): Disassemble and verify instructions.
220216

221217
# CHECK: - Type: CODE
222218
# CHECK-NEXT: Functions:
223-
# CHECK-NEXT: - Index: 1
219+
# CHECK-NEXT: - Index: 0
224220
# CHECK-NEXT: Locals: []
225-
# CHECK-NEXT: Body: 10020B
226-
# CHECK-NEXT: - Index: 2
221+
# CHECK-NEXT: Body: 10010B
222+
# CHECK-NEXT: - Index: 1
227223
# CHECK-NEXT: Locals: []
228224
# CHECK-NEXT: Body: 230142047C23053702002301420C7C230242017C370200230142147C230141006A360200230142187C2306370200230142207C230741046A3602000B
229225

lld/wasm/SymbolTable.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -548,9 +548,12 @@ Symbol *SymbolTable::addUndefinedFunction(StringRef name,
548548
else if (getFunctionVariant(s, sig, file, &s))
549549
replaceSym();
550550
}
551-
if (existingUndefined)
551+
if (existingUndefined) {
552552
setImportAttributes(existingUndefined, importName, importModule, flags,
553553
file);
554+
if (isCalledDirectly)
555+
existingUndefined->isCalledDirectly = true;
556+
}
554557
}
555558

556559
return s;

lld/wasm/Writer.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,14 @@ static bool shouldImport(Symbol *sym) {
562562
if (isa<DataSymbol>(sym))
563563
return false;
564564

565+
// In PIC mode we only need to import functions when they are called directly.
566+
// Indirect usage all goes via GOT imports.
567+
if (config->isPic) {
568+
if (auto *f = dyn_cast<UndefinedFunction>(sym))
569+
if (!f->isCalledDirectly)
570+
return false;
571+
}
572+
565573
if (config->isPic || config->relocatable || config->importUndefined)
566574
return true;
567575
if (config->allowUndefinedSymbols.count(sym->getName()) != 0)

0 commit comments

Comments
 (0)