[PATCH] D90578: [llvm] New worker for ThinLTO whole program devirtualization
Teresa Johnson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Nov 1 18:05:45 PST 2020
tejohnson created this revision.
tejohnson added reviewers: gkistanova, mtrofin.
Herald added subscribers: pengfei, inglorion, Prazek.
tejohnson requested review of this revision.
Adds a new x86_64 Ubuntu worker to test ThinLTO bootstrap with
whole program devirtualization enabled.
Repository:
rZORG LLVM Github Zorg
https://reviews.llvm.org/D90578
Files:
buildbot/osuosl/master/config/builders.py
buildbot/osuosl/master/config/status.py
buildbot/osuosl/master/config/workers.py
Index: buildbot/osuosl/master/config/workers.py
===================================================================
--- buildbot/osuosl/master/config/workers.py
+++ buildbot/osuosl/master/config/workers.py
@@ -226,4 +226,7 @@
properties={'jobs': 64}, max_builds=1),
create_worker("ml-opt-devrel-x86-64-b1",
properties={'jobs': 64}, max_builds=1),
+
+ # Ubuntu x86_64
+ create_worker("thinlto-x86-64-bot1", properties={'jobs': 64}, max_builds=1),
]
Index: buildbot/osuosl/master/config/status.py
===================================================================
--- buildbot/osuosl/master/config/status.py
+++ buildbot/osuosl/master/config/status.py
@@ -238,6 +238,14 @@
builders = [
"flang-aarch64-ubuntu", "flang-aarch64-ubuntu-clang",
"flang-aarch64-ubuntu-gcc10"]),
+ reporters.MailNotifier(
+ fromaddr="llvm.buildmaster at lab.llvm.org",
+ sendToInterestedUsers = False,
+ extraRecipients=[
+ "tejohnson at google.com"],
+ subject = "ThinLTO WPD Failure: %(builder)s",
+ mode = "failing",
+ builders = ["thinlto-x86-64-bot1"]),
]
Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -1056,6 +1056,18 @@
'builddir': "clang-with-thin-lto-ubuntu",
'factory' : ClangLTOBuilder.getClangWithLTOBuildFactory(jobs=72, lto='thin')},
+ {'name' : "clang-with-thin-lto-wpd-ubuntu",
+ 'tags' : ["clang","lld","LTO"],
+ 'workernames' : ["thinlto-x86-64-bot1"],
+ 'builddir': "clang-with-thin-lto-wpd-ubuntu",
+ 'factory' : ClangLTOBuilder.getClangWithLTOBuildFactory(
+ jobs=72,
+ lto='thin',
+ extra_configure_args=[
+ '-DCMAKE_CXX_FLAGS="-O3 -Xclang -fwhole-program-vtables -fno-split-lto-unit"',
+ '-DCMAKE_C_FLAGS="-O3 -Xclang -fwhole-program-vtables -fno-split-lto-unit"',
+ '-DCMAKE_EXE_LINKER_FLAGS="-Wl,--lto-whole-program-visibility"'])},
+
{'name' : "clang-with-lto-ubuntu",
'tags' : ["clang","lld","LTO"],
'workernames' : ["as-worker-91"],
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D90578.302196.patch
Type: text/x-patch
Size: 2338 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20201102/abb9dea7/attachment.bin>
More information about the llvm-commits
mailing list