Skip to content
1 change: 1 addition & 0 deletions lld/wasm/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ struct Config {
// for shared libraries (since they always added to a dynamic offset at
// runtime).
uint64_t tableBase;
uint64_t functionPointerAlignment;
uint64_t zStackSize;
unsigned ltoPartitions;
unsigned ltoo;
Expand Down
1 change: 1 addition & 0 deletions lld/wasm/Driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ static void readConfigs(opt::InputArgList &args) {
LLVM_DEBUG(errorHandler().verbose = true);

ctx.arg.tableBase = args::getInteger(args, OPT_table_base, 0);
ctx.arg.functionPointerAlignment = args::getInteger(args, OPT_function_pointer_alignment, 0);
ctx.arg.globalBase = args::getInteger(args, OPT_global_base, 0);
ctx.arg.initialHeap = args::getInteger(args, OPT_initial_heap, 0);
ctx.arg.initialMemory = args::getInteger(args, OPT_initial_memory, 0);
Expand Down
3 changes: 3 additions & 0 deletions lld/wasm/Options.td
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,9 @@ def stack_first: FF<"stack-first">,
def table_base: JJ<"table-base=">,
HelpText<"Table offset at which to place address taken functions (Defaults to 1)">;

def function_pointer_alignment: JJ<"function-pointer-alignment=">,
HelpText<"Align function pointers at a given value (Defaults to 1)">;

defm whole_archive: B<"whole-archive",
"Force load of all members in a static library",
"Do not force load of all members in a static library (default)">;
Expand Down
12 changes: 12 additions & 0 deletions lld/wasm/SyntheticSections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,12 @@ void ElemSection::addEntry(FunctionSymbol *sym) {
return;
sym->setTableIndex(ctx.arg.tableBase + indirectFunctions.size());
indirectFunctions.emplace_back(sym);

if (ctx.arg.functionPointerAlignment > 1) {
for (uint32_t i=0; i<ctx.arg.functionPointerAlignment-1; i++) {
indirectFunctions.push_back(nullptr);
}
}
}

void ElemSection::writeBody() {
Expand Down Expand Up @@ -604,6 +610,12 @@ void ElemSection::writeBody() {
writeUleb128(os, indirectFunctions.size(), "elem count");
uint32_t tableIndex = ctx.arg.tableBase;
for (const FunctionSymbol *sym : indirectFunctions) {
if (sym == nullptr) {
(void) tableIndex;
writeUleb128(os, 0, "function index");
++tableIndex;
continue;
}
assert(sym->getTableIndex() == tableIndex);
(void) tableIndex;
writeUleb128(os, sym->getFunctionIndex(), "function index");
Expand Down
Loading