diff options
author | Teresa Johnson <tejohnson@google.com> | 2019-01-17 15:49:03 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2019-01-17 15:49:03 +0000 |
commit | 4fcf3b16212481f7debebb1f35681cff8cdf81ea (patch) | |
tree | e783c9fe4ee7c2682b4d6f77a854b3494442c95b /llvm/lib/AsmParser/LLLexer.cpp | |
parent | e50d9cb3649bdf6521f92fd1e4cee3a690638159 (diff) | |
download | bcm5719-llvm-4fcf3b16212481f7debebb1f35681cff8cdf81ea.tar.gz bcm5719-llvm-4fcf3b16212481f7debebb1f35681cff8cdf81ea.zip |
[ThinLTO] Add summary entries for index-based WPD
Summary:
If LTOUnit splitting is disabled, the module summary analysis computes
the summary information necessary to perform single implementation
devirtualization during the thin link with the index and no IR. The
information collected from the regular LTO IR in the current hybrid WPD
algorithm is summarized, including:
1) For vtable definitions, record the function pointers and their offset
within the vtable initializer (subsumes the information collected from
IR by tryFindVirtualCallTargets).
2) A record for each type metadata summarizing the vtable definitions
decorated with that metadata (subsumes the TypeIdentiferMap collected
from IR).
Also added are the necessary bitcode records, and the corresponding
assembly support.
The index-based WPD will be sent as a follow-on.
Depends on D53890.
Reviewers: pcc
Subscribers: mehdi_amini, Prazek, inglorion, eraman, steven_wu, dexonsmith, arphaman, llvm-commits
Differential Revision: https://reviews.llvm.org/D54815
llvm-svn: 351453
Diffstat (limited to 'llvm/lib/AsmParser/LLLexer.cpp')
-rw-r--r-- | llvm/lib/AsmParser/LLLexer.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/AsmParser/LLLexer.cpp b/llvm/lib/AsmParser/LLLexer.cpp index eab7ec81953..f5246d5480b 100644 --- a/llvm/lib/AsmParser/LLLexer.cpp +++ b/llvm/lib/AsmParser/LLLexer.cpp @@ -749,6 +749,8 @@ lltok::Kind LLLexer::LexIdentifier() { KEYWORD(critical); KEYWORD(relbf); KEYWORD(variable); + KEYWORD(vTableFuncs); + KEYWORD(virtFunc); KEYWORD(aliasee); KEYWORD(refs); KEYWORD(typeIdInfo); @@ -761,6 +763,7 @@ lltok::Kind LLLexer::LexIdentifier() { KEYWORD(offset); KEYWORD(args); KEYWORD(typeid); + KEYWORD(typeidMetadata); KEYWORD(summary); KEYWORD(typeTestRes); KEYWORD(kind); |