mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 03:46:46 +00:00

Apologies for the large change, I looked for ways to break this up and all of the ones I saw added real complexity. This change focuses on the option's prefixed names and the array of prefixes. These are present in every option and the dominant source of dynamic relocations for PIE or PIC users of LLVM and Clang tooling. In some cases, 100s or 1000s of them for the Clang driver which has a huge number of options. This PR addresses this by building a string table and a prefixes table that can be referenced with indices rather than pointers that require dynamic relocations. This removes almost 7k dynmaic relocations from the `clang` binary, roughly 8% of the remaining dynmaic relocations outside of vtables. For busy-boxing use cases where many different option tables are linked into the same binary, the savings add up a bit more. The string table is a straightforward mechanism, but the prefixes required some subtlety. They are encoded in a Pascal-string fashion with a size followed by a sequence of offsets. This works relatively well for the small realistic prefixes arrays in use. Lots of code has to change in order to land this though: both all the option library code has to be updated to use the string table and prefixes table, and all the users of the options library have to be updated to correctly instantiate the objects. Some follow-up patches in the works to provide an abstraction for this style of code, and to start using the same technique for some of the other strings here now that the infrastructure is in place.
53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
//===--- DriverOptions.cpp - Driver Options Table -------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Driver/Options.h"
|
|
#include "llvm/Option/OptTable.h"
|
|
#include <cassert>
|
|
|
|
using namespace clang::driver;
|
|
using namespace clang::driver::options;
|
|
using namespace llvm::opt;
|
|
|
|
#define OPTTABLE_STR_TABLE_CODE
|
|
#include "clang/Driver/Options.inc"
|
|
#undef OPTTABLE_STR_TABLE_CODE
|
|
|
|
#define OPTTABLE_VALUES_CODE
|
|
#include "clang/Driver/Options.inc"
|
|
#undef OPTTABLE_VALUES_CODE
|
|
|
|
#define OPTTABLE_PREFIXES_TABLE_CODE
|
|
#include "clang/Driver/Options.inc"
|
|
#undef OPTTABLE_PREFIXES_TABLE_CODE
|
|
|
|
#define OPTTABLE_PREFIXES_UNION_CODE
|
|
#include "clang/Driver/Options.inc"
|
|
#undef OPTTABLE_PREFIXES_UNION_CODE
|
|
|
|
static constexpr OptTable::Info InfoTable[] = {
|
|
#define OPTION(...) LLVM_CONSTRUCT_OPT_INFO(__VA_ARGS__),
|
|
#include "clang/Driver/Options.inc"
|
|
#undef OPTION
|
|
};
|
|
|
|
namespace {
|
|
|
|
class DriverOptTable : public PrecomputedOptTable {
|
|
public:
|
|
DriverOptTable()
|
|
: PrecomputedOptTable(OptionStrTable, OptionPrefixesTable, InfoTable,
|
|
OptionPrefixesUnion) {}
|
|
};
|
|
}
|
|
|
|
const llvm::opt::OptTable &clang::driver::getDriverOptTable() {
|
|
static DriverOptTable Table;
|
|
return Table;
|
|
}
|