Skip to content

[ctx_prof] Insert the ctx prof flattener after the module inliner #107499

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

mtrofin
Copy link
Member

@mtrofin mtrofin commented Sep 6, 2024

This patch enables experimenting with the contextual profile. ICP is currently disabled in this case - will reenable it subsequently. Also subsequently the inline cost model / decision making would be updated to be context-aware. Right now, this just achieves "complete use" of the profile, in that it's ingested, maintained, and sunk to a flat profile when not needed anymore.

Issue #89287

Copy link
Member Author

mtrofin commented Sep 6, 2024

@mtrofin mtrofin force-pushed the users/mtrofin/09-05-_ctx_prof_insert_the_ctx_prof_flattener_after_the_module_inliner branch from e90265d to 75fd23b Compare September 6, 2024 01:39
@mtrofin mtrofin marked this pull request as ready for review September 6, 2024 01:39
@llvmbot llvmbot added llvm:analysis Includes value tracking, cost tables and constant folding llvm:transforms labels Sep 6, 2024
@llvmbot
Copy link
Member

llvmbot commented Sep 6, 2024

@llvm/pr-subscribers-lto
@llvm/pr-subscribers-llvm-transforms

@llvm/pr-subscribers-llvm-analysis

Author: Mircea Trofin (mtrofin)

Changes

This patch enables experimenting with the contextual profile. ICP is currently disabled in this case - will reenable it subsequently. Also subsequently the inline cost model / decision making would be updated to be context-aware. Right now, this just achieves "complete use" of the profile, in that it's ingested, maintained, and sunk to a flat profile when not needed anymore.

(Issue #89287)


Full diff: https://github.com/llvm/llvm-project/pull/107499.diff

4 Files Affected:

  • (modified) llvm/lib/Passes/PassBuilderPipelines.cpp (+13-5)
  • (modified) llvm/lib/Transforms/IPO/ModuleInliner.cpp (+4-2)
  • (modified) llvm/test/Analysis/CtxProfAnalysis/inline.ll (+17)
  • (modified) llvm/test/Other/opt-hot-cold-split.ll (+1-1)
diff --git a/llvm/lib/Passes/PassBuilderPipelines.cpp b/llvm/lib/Passes/PassBuilderPipelines.cpp
index 38297dc02b8be6..f9b5f584e00c07 100644
--- a/llvm/lib/Passes/PassBuilderPipelines.cpp
+++ b/llvm/lib/Passes/PassBuilderPipelines.cpp
@@ -1017,6 +1017,11 @@ PassBuilder::buildModuleInlinerPipeline(OptimizationLevel Level,
   IP.EnableDeferral = false;
 
   MPM.addPass(ModuleInlinerPass(IP, UseInlineAdvisor, Phase));
+  if (!UseCtxProfile.empty()) {
+    MPM.addPass(GlobalOptPass());
+    MPM.addPass(GlobalDCEPass());
+    MPM.addPass(PGOCtxProfFlatteningPass());
+  }
 
   MPM.addPass(createModuleToFunctionPassAdaptor(
       buildFunctionSimplificationPipeline(Level, Phase),
@@ -1744,11 +1749,14 @@ ModulePassManager PassBuilder::buildThinLTODefaultPipeline(
     MPM.addPass(GlobalDCEPass());
     return MPM;
   }
-
-  // Add the core simplification pipeline.
-  MPM.addPass(buildModuleSimplificationPipeline(
-      Level, ThinOrFullLTOPhase::ThinLTOPostLink));
-
+  if (!UseCtxProfile.empty()) {
+    MPM.addPass(
+        buildModuleInlinerPipeline(Level, ThinOrFullLTOPhase::ThinLTOPostLink));
+  } else {
+    // Add the core simplification pipeline.
+    MPM.addPass(buildModuleSimplificationPipeline(
+        Level, ThinOrFullLTOPhase::ThinLTOPostLink));
+  }
   // Now add the optimization pipeline.
   MPM.addPass(buildModuleOptimizationPipeline(
       Level, ThinOrFullLTOPhase::ThinLTOPostLink));
diff --git a/llvm/lib/Transforms/IPO/ModuleInliner.cpp b/llvm/lib/Transforms/IPO/ModuleInliner.cpp
index b7e4531c8e390d..542c319b880747 100644
--- a/llvm/lib/Transforms/IPO/ModuleInliner.cpp
+++ b/llvm/lib/Transforms/IPO/ModuleInliner.cpp
@@ -241,8 +241,10 @@ PreservedAnalyses ModuleInlinerPass::run(Module &M,
           // the post-inline cleanup and the next DevirtSCCRepeatedPass
           // iteration because the next iteration may not happen and we may
           // miss inlining it.
-          if (tryPromoteCall(*ICB))
-            NewCallee = ICB->getCalledFunction();
+          // FIXME: enable for ctxprof.
+          if (!CtxProf)
+            if (tryPromoteCall(*ICB))
+              NewCallee = ICB->getCalledFunction();
         }
         if (NewCallee)
           if (!NewCallee->isDeclaration())
diff --git a/llvm/test/Analysis/CtxProfAnalysis/inline.ll b/llvm/test/Analysis/CtxProfAnalysis/inline.ll
index 875bc4938653b9..9381418c4e3f12 100644
--- a/llvm/test/Analysis/CtxProfAnalysis/inline.ll
+++ b/llvm/test/Analysis/CtxProfAnalysis/inline.ll
@@ -31,6 +31,23 @@
 ; CHECK-NEXT:    %call2 = call i32 @a(i32 %x) #1
 ; CHECK-NEXT:    br label %exit
 
+; Make sure the postlink thinlto pipeline is aware of ctxprof
+; RUN: opt -passes='thinlto<O2>' -use-ctx-profile=%t/profile.ctxprofdata \
+; RUN:   %t/module.ll -S -o - | FileCheck %s --check-prefix=PIPELINE
+
+; PIPELINE-LABEL: define i32 @entrypoint
+; PIPELINE-SAME: !prof ![[ENTRYPOINT_COUNT:[0-9]+]]
+; PIPELINE-LABEL: loop.i:
+; PIPELINE:         br i1 %cond.i, label %loop.i, label %exit, !prof ![[LOOP_BW_INL:[0-9]+]]
+; PIPELINE-LABEL: define i32 @a
+; PIPELINE-LABEL: loop:
+; PIPELINE:         br i1 %cond, label %loop, label %exit, !prof ![[LOOP_BW_ORIG:[0-9]+]]
+
+; PIPELINE: ![[ENTRYPOINT_COUNT]] = !{!"function_entry_count", i64 10}
+; These are the weights of the inlined @a, where the counters were 2, 100 (2 for entry, 100 for loop)
+; PIPELINE: ![[LOOP_BW_INL]] = !{!"branch_weights", i32 98, i32 2}
+; These are the weights of the un-inlined @a, where the counters were 8, 500 (8 for entry, 500 for loop)
+; PIPELINE: ![[LOOP_BW_ORIG]] = !{!"branch_weights", i32 492, i32 8}
 
 ;--- module.ll
 define i32 @entrypoint(i32 %x) !guid !0 {
diff --git a/llvm/test/Other/opt-hot-cold-split.ll b/llvm/test/Other/opt-hot-cold-split.ll
index 21c713d35bb746..cd290dcc306570 100644
--- a/llvm/test/Other/opt-hot-cold-split.ll
+++ b/llvm/test/Other/opt-hot-cold-split.ll
@@ -2,7 +2,7 @@
 ; RUN: opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < %s -o /dev/null 2>&1 | FileCheck %s -check-prefix=LTO-PRELINK-Os
 ; RUN: opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < %s -o /dev/null 2>&1 | FileCheck %s -check-prefix=THINLTO-PRELINK-Os
 ; RUN: opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < %s -o /dev/null 2>&1 | FileCheck %s -check-prefix=LTO-POSTLINK-Os
-; RUN: opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto<Os>' -debug-pass-manager < %s -o /dev/null 2>&1 | FileCheck %s -check-prefix=THINLTO-POSTLINK-Os
+; RUN: opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
 
 ; REQUIRES: asserts
 

@mtrofin mtrofin force-pushed the users/mtrofin/09-03-_ctx_prof_flattened_profile_lowering_pass branch from 0c3c448 to 22e94e4 Compare September 6, 2024 18:21
@mtrofin mtrofin force-pushed the users/mtrofin/09-05-_ctx_prof_insert_the_ctx_prof_flattener_after_the_module_inliner branch from 75fd23b to 3cd88ec Compare September 6, 2024 18:21
@mtrofin mtrofin requested a review from david-xl September 6, 2024 20:34
@mtrofin mtrofin force-pushed the users/mtrofin/09-03-_ctx_prof_flattened_profile_lowering_pass branch from 22e94e4 to d75a5da Compare September 6, 2024 20:45
Base automatically changed from users/mtrofin/09-03-_ctx_prof_flattened_profile_lowering_pass to main September 6, 2024 20:47
@mtrofin mtrofin force-pushed the users/mtrofin/09-05-_ctx_prof_insert_the_ctx_prof_flattener_after_the_module_inliner branch from 3cd88ec to 1609e89 Compare September 6, 2024 20:49
Copy link
Contributor

@david-xl david-xl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is problem with ICP?

Level, ThinOrFullLTOPhase::ThinLTOPostLink));

if (!UseCtxProfile.empty()) {
MPM.addPass(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change reduces the number of simplification passes (pre and post inliner) run. What is the reason?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OR the intention is to do a quick e2e integration?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right now yes, it's just to integrate. The next step plan is to run some of the module simplification after all IPO and flattened profile lowering happens, but I want to see first what the more meaningful to do that is - special case through buildModuleSimplificationPipeline or have them spelled out separately. I'll evaluate this experimentally.

@mtrofin mtrofin force-pushed the users/mtrofin/09-05-_ctx_prof_insert_the_ctx_prof_flattener_after_the_module_inliner branch from 1609e89 to 4f6d51e Compare September 7, 2024 03:10
Copy link
Member Author

mtrofin commented Sep 7, 2024

what is problem with ICP?

There's no problem, but I need to add a criteria for when to ICP, and that would increase the size of this patch. That's why it's punted to a subsequent patch.

@mtrofin mtrofin force-pushed the users/mtrofin/09-05-_ctx_prof_insert_the_ctx_prof_flattener_after_the_module_inliner branch from 4f6d51e to 0c148ab Compare September 7, 2024 05:02
Copy link
Contributor

@david-xl david-xl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK as an incremental step for an experimental feature.

@mtrofin mtrofin force-pushed the users/mtrofin/09-05-_ctx_prof_insert_the_ctx_prof_flattener_after_the_module_inliner branch from 0c148ab to ad71b95 Compare September 9, 2024 18:21
@mtrofin mtrofin force-pushed the users/mtrofin/09-05-_ctx_prof_insert_the_ctx_prof_flattener_after_the_module_inliner branch from ad71b95 to 9dd9646 Compare September 9, 2024 22:12
@llvmbot llvmbot added the LTO Link time optimization (regular/full LTO or ThinLTO) label Sep 9, 2024
Copy link
Member Author

mtrofin commented Sep 10, 2024

Merge activity

  • Sep 9, 9:15 PM EDT: @mtrofin started a stack merge that includes this pull request via Graphite.
  • Sep 9, 9:16 PM EDT: @mtrofin merged this pull request with Graphite.

@mtrofin mtrofin merged commit 3b22618 into main Sep 10, 2024
6 of 9 checks passed
@mtrofin mtrofin deleted the users/mtrofin/09-05-_ctx_prof_insert_the_ctx_prof_flattener_after_the_module_inliner branch September 10, 2024 01:16
@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-nvptx64-nvidia-ubuntu running on as-builder-7 while building llvm at step 6 "test-build-unified-tree-check-llvm".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/160/builds/4802

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
RUN: at line 2: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-sie-ubuntu-fast running on sie-linux-worker while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/144/builds/6602

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
RUN: at line 2: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder clang-aarch64-quick running on linaro-clang-aarch64-quick while building llvm at step 5 "ninja check 1".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/65/builds/4232

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
RUN: at line 2: /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder openmp-offload-sles-build-only running on rocm-worker-hw-04-sles while building llvm at step 8 "Add check check-llvm".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/140/builds/6166

Here is the relevant piece of the build log for the reference
Step 8 (Add check check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
RUN: at line 2: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder arc-builder running on arc-worker while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/3/builds/4334

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /buildbot/worker/arc-folder/build/bin/FileCheck /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /buildbot/worker/arc-folder/build/bin/FileCheck /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
RUN: at line 2: /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /buildbot/worker/arc-folder/build/bin/FileCheck /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /buildbot/worker/arc-folder/build/bin/FileCheck /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /buildbot/worker/arc-folder/build/bin/FileCheck /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /buildbot/worker/arc-folder/build/bin/FileCheck /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /buildbot/worker/arc-folder/build/bin/FileCheck /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /buildbot/worker/arc-folder/build/bin/FileCheck /buildbot/worker/arc-folder/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /buildbot/worker/arc-folder/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/buildbot/worker/arc-folder/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-nvptx-nvidia-ubuntu running on as-builder-7 while building llvm at step 6 "test-build-unified-tree-check-llvm".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/180/builds/4800

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/FileCheck /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder ml-opt-rel-x86-64 running on ml-opt-rel-x86-64-b2 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/185/builds/4892

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/b/ml-opt-rel-x86-64-b1/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder ml-opt-devrel-x86-64 running on ml-opt-devrel-x86-64-b1 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/175/builds/4903

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/b/ml-opt-devrel-x86-64-b1/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder ml-opt-dev-x86-64 running on ml-opt-dev-x86-64-b2 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/137/builds/4931

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/b/ml-opt-dev-x86-64-b1/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


mtrofin added a commit that referenced this pull request Sep 10, 2024
@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder clang-armv8-quick running on linaro-clang-armv8-quick while building llvm at step 5 "ninja check 1".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/154/builds/4126

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-gcc-ubuntu running on sie-linux-worker3 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/174/builds/4805

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-sie-win running on sie-win-worker while building llvm at step 7 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/46/builds/4653

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
# RUN: at line 1
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -o /dev/null 2>&1 | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll' -check-prefix=DEFAULT-Os
# RUN: at line 2
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -o /dev/null 2>&1 | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll' -check-prefix=LTO-PRELINK-Os
# RUN: at line 3
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -o /dev/null 2>&1 | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll' -check-prefix=THINLTO-PRELINK-Os
# RUN: at line 4
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -o /dev/null 2>&1 | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll' -check-prefix=LTO-POSTLINK-Os
# RUN: at line 5
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
# .---command stderr------------
# | opt.exe: Unknown command line argument '-LINK-Os'.  Try: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe --help'
# | opt.exe: Did you mean '--Os'?
# `-----------------------------
# error: command failed with exit status: 1

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-aarch64-darwin running on doug-worker-5 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/190/builds/5400

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-nvptx64-nvidia-win running on as-builder-8 while building llvm at step 7 "test-build-unified-tree-check-llvm".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/155/builds/2259

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
# RUN: at line 1
c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -o /dev/null 2>&1 | c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\filecheck.exe C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\filecheck.exe' 'C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll' -check-prefix=DEFAULT-Os
# RUN: at line 2
c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -o /dev/null 2>&1 | c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\filecheck.exe C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\filecheck.exe' 'C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll' -check-prefix=LTO-PRELINK-Os
# RUN: at line 3
c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -o /dev/null 2>&1 | c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\filecheck.exe C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\filecheck.exe' 'C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll' -check-prefix=THINLTO-PRELINK-Os
# RUN: at line 4
c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -o /dev/null 2>&1 | c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\filecheck.exe C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\filecheck.exe' 'C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\test\Other\opt-hot-cold-split.ll' -check-prefix=LTO-POSTLINK-Os
# RUN: at line 5
c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
# executed command: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe' -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
# .---command stderr------------
# | opt.exe: Unknown command line argument '-LINK-Os'.  Try: 'c:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\bin\opt.exe --help'
# | opt.exe: Did you mean '--Os'?
# `-----------------------------
# error: command failed with exit status: 1

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder openmp-offload-libc-amdgpu-runtime running on omp-vega20-1 while building llvm at step 8 "Add check check-llvm".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/73/builds/5235

Here is the relevant piece of the build log for the reference
Step 8 (Add check check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/FileCheck /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/FileCheck /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/FileCheck /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/FileCheck /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/FileCheck /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/FileCheck /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/FileCheck /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/FileCheck /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/ompworker/bbot/openmp-offload-libc-amdgpu-runtime/llvm.build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder clang-debian-cpp20 running on clang-debian-cpp20 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/108/builds/3513

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder clang-ppc64le-linux-test-suite running on ppc64le-clang-test-suite while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/95/builds/3591

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder premerge-monolithic-linux running on premerge-linux-1 while building llvm at step 7 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/153/builds/8345

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
RUN: at line 2: /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/build/buildbot/premerge-monolithic-linux/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder ppc64le-lld-multistage-test running on ppc64le-lld-multistage-test while building llvm at step 7 "test-build-stage1-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/168/builds/3125

Here is the relevant piece of the build log for the reference
Step 7 (test-build-stage1-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage1/bin/opt --help'
opt: Did you mean '--Os'?

--

********************

Step 13 (test-build-stage2-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/buildbots/llvm-external-buildbots/workers/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/build/stage2/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-darwin running on doug-worker-3 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/23/builds/2845

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder sanitizer-x86_64-linux-fast running on sanitizer-buildbot4 while building llvm at step 2 "annotate".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/169/builds/3033

Here is the relevant piece of the build log for the reference
Step 2 (annotate) failure: 'python ../sanitizer_buildbot/sanitizers/zorg/buildbot/builders/sanitizers/buildbot_selector.py' (failure)
...
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/ld.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/main.py:72: note: The test suite configuration requested an individual test timeout of 0 seconds but a timeout of 900 seconds was requested on the command line. Forcing timeout to be 900 seconds.
-- Testing: 85643 of 85644 tests, 88 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: Other/opt-hot-cold-split.ll (16733 of 85643)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt --help'
opt: Did you mean '--Os'?

--

********************
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.. 
Slowest Tests:
--------------------------------------------------------------------------
401.00s: LLVM :: CodeGen/AMDGPU/sched-group-barrier-pipeline-solver.mir
304.32s: Clang :: Driver/fsanitize.c
279.14s: Clang :: OpenMP/target_defaultmap_codegen_01.cpp
277.04s: Clang :: OpenMP/target_update_codegen.cpp
269.14s: Clang :: Preprocessor/riscv-target-features.c
222.48s: Clang :: Driver/arm-cortex-cpus-2.c
214.83s: Clang :: Driver/arm-cortex-cpus-1.c
208.21s: Clang :: Preprocessor/aarch64-target-features.c
205.10s: Clang :: Preprocessor/arm-target-features.c
196.16s: Clang :: Analysis/a_flaky_crash.cpp
Step 9 (stage2/asan_ubsan check) failure: stage2/asan_ubsan check (failure)
...
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/ld.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/main.py:72: note: The test suite configuration requested an individual test timeout of 0 seconds but a timeout of 900 seconds was requested on the command line. Forcing timeout to be 900 seconds.
-- Testing: 85643 of 85644 tests, 88 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: Other/opt-hot-cold-split.ll (16733 of 85643)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/b/sanitizer-x86_64-linux-fast/build/llvm_build_asan_ubsan/bin/opt --help'
opt: Did you mean '--Os'?

--

********************
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.. 
Slowest Tests:
--------------------------------------------------------------------------
401.00s: LLVM :: CodeGen/AMDGPU/sched-group-barrier-pipeline-solver.mir
304.32s: Clang :: Driver/fsanitize.c
279.14s: Clang :: OpenMP/target_defaultmap_codegen_01.cpp
277.04s: Clang :: OpenMP/target_update_codegen.cpp
269.14s: Clang :: Preprocessor/riscv-target-features.c
222.48s: Clang :: Driver/arm-cortex-cpus-2.c
214.83s: Clang :: Driver/arm-cortex-cpus-1.c
208.21s: Clang :: Preprocessor/aarch64-target-features.c
205.10s: Clang :: Preprocessor/arm-target-features.c
196.16s: Clang :: Analysis/a_flaky_crash.cpp
Step 12 (stage2/msan check) failure: stage2/msan check (failure)
...
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/ld.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/utils/lit/lit/main.py:72: note: The test suite configuration requested an individual test timeout of 0 seconds but a timeout of 900 seconds was requested on the command line. Forcing timeout to be 900 seconds.
-- Testing: 85641 tests, 88 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80
FAIL: LLVM :: Other/opt-hot-cold-split.ll (20377 of 85641)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/FileCheck /home/b/sanitizer-x86_64-linux-fast/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/b/sanitizer-x86_64-linux-fast/build/llvm_build_msan/bin/opt --help'
opt: Did you mean '--Os'?

--

********************
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90..
Slowest Tests:
--------------------------------------------------------------------------
244.96s: LLVM :: CodeGen/AMDGPU/sched-group-barrier-pipeline-solver.mir
163.41s: Clang :: CodeGen/aarch64-sve-intrinsics/acle_sve_reinterpret.c
156.78s: Clang :: CodeGen/aarch64-sve-intrinsics/acle_sve_reinterpret-bfloat.c
142.64s: LLVM :: CodeGen/X86/vector-interleaved-load-i8-stride-8.ll
128.67s: Clang :: Headers/arm-neon-header.c
128.23s: Clang :: CodeGen/X86/rot-intrinsics.c
126.76s: LLVM :: MC/Mips/mips-jump-pc-region.s
105.69s: LLVM :: CodeGen/AMDGPU/llvm.amdgcn.permlane.ll
103.50s: LLVM :: CodeGen/RISCV/atomic-rmw.ll
100.36s: LLVM :: CodeGen/X86/vector-interleaved-load-i16-stride-8.ll

@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder lld-x86_64-ubuntu-fast running on as-builder-4 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/33/builds/2706

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
RUN: at line 2: /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder sanitizer-x86_64-linux-bootstrap-asan running on sanitizer-buildbot1 while building llvm at step 2 "annotate".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/52/builds/2154

Here is the relevant piece of the build log for the reference
Step 2 (annotate) failure: 'python ../sanitizer_buildbot/sanitizers/zorg/buildbot/builders/sanitizers/buildbot_selector.py' (failure)
...
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/ld.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/main.py:72: note: The test suite configuration requested an individual test timeout of 0 seconds but a timeout of 900 seconds was requested on the command line. Forcing timeout to be 900 seconds.
-- Testing: 85643 of 85644 tests, 88 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 
FAIL: LLVM :: Other/opt-hot-cold-split.ll (61472 of 85643)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt --help'
opt: Did you mean '--Os'?

--

********************
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.. 
Slowest Tests:
--------------------------------------------------------------------------
268.48s: LLVM :: CodeGen/AMDGPU/sched-group-barrier-pipeline-solver.mir
132.49s: Clang :: Driver/fsanitize.c
119.50s: Clang :: Preprocessor/riscv-target-features.c
106.87s: Clang :: OpenMP/target_defaultmap_codegen_01.cpp
101.35s: Clang :: OpenMP/target_update_codegen.cpp
98.18s: Clang :: Driver/arm-cortex-cpus-2.c
94.61s: Clang :: Driver/arm-cortex-cpus-1.c
86.14s: Clang :: Preprocessor/aarch64-target-features.c
86.01s: Clang :: Preprocessor/arm-target-features.c
77.08s: Clang :: Preprocessor/predefined-arch-macros.c
Step 10 (stage2/asan check) failure: stage2/asan check (failure)
...
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/ld.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/main.py:72: note: The test suite configuration requested an individual test timeout of 0 seconds but a timeout of 900 seconds was requested on the command line. Forcing timeout to be 900 seconds.
-- Testing: 85643 of 85644 tests, 88 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 
FAIL: LLVM :: Other/opt-hot-cold-split.ll (61472 of 85643)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
RUN: at line 4: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build_asan/bin/opt --help'
opt: Did you mean '--Os'?

--

********************
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.. 
Slowest Tests:
--------------------------------------------------------------------------
268.48s: LLVM :: CodeGen/AMDGPU/sched-group-barrier-pipeline-solver.mir
132.49s: Clang :: Driver/fsanitize.c
119.50s: Clang :: Preprocessor/riscv-target-features.c
106.87s: Clang :: OpenMP/target_defaultmap_codegen_01.cpp
101.35s: Clang :: OpenMP/target_update_codegen.cpp
98.18s: Clang :: Driver/arm-cortex-cpus-2.c
94.61s: Clang :: Driver/arm-cortex-cpus-1.c
86.14s: Clang :: Preprocessor/aarch64-target-features.c
86.01s: Clang :: Preprocessor/arm-target-features.c
77.08s: Clang :: Preprocessor/predefined-arch-macros.c
Step 13 (stage3/asan check) failure: stage3/asan check (failure)
...
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/ld.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using lld-link: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/lld-link
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using ld64.lld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/ld64.lld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/llvm/config.py:506: note: using wasm-ld: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/wasm-ld
llvm-lit: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/utils/lit/lit/main.py:72: note: The test suite configuration requested an individual test timeout of 0 seconds but a timeout of 900 seconds was requested on the command line. Forcing timeout to be 900 seconds.
-- Testing: 82801 tests, 88 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70
FAIL: LLVM :: Other/opt-hot-cold-split.ll (61481 of 82801)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/FileCheck /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/home/b/sanitizer-x86_64-linux-bootstrap-asan/build/llvm_build2_asan/bin/opt --help'
opt: Did you mean '--Os'?

--

********************
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.. 
Slowest Tests:
--------------------------------------------------------------------------
23.52s: LLVM :: tools/llvm-reduce/parallel-workitem-kill.ll
20.98s: Clang :: OpenMP/target_defaultmap_codegen_01.cpp
20.21s: Clang :: Driver/darwin-ld.c
18.92s: Clang :: Driver/riscv-fixed-x-register.c
16.03s: Clang :: Driver/clang-offload-bundler.c
14.72s: Clang :: OpenMP/target_teams_distribute_parallel_for_simd_codegen_registration.cpp
14.56s: Clang :: OpenMP/target_parallel_for_codegen_registration.cpp
14.54s: Clang :: OpenMP/target_data_codegen.cpp
14.53s: Clang :: OpenMP/target_parallel_for_simd_codegen_registration.cpp
14.50s: Clang :: Driver/linker-wrapper.c

@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder clang-x86_64-debian-fast running on gribozavr4 while building llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/56/builds/6921

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 3: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
RUN: at line 5: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


@llvm-ci
Copy link
Collaborator

llvm-ci commented Sep 10, 2024

LLVM Buildbot has detected a new failure on builder llvm-x86_64-debian-dylib running on gribozavr4 while building llvm at step 7 "test-build-unified-tree-check-llvm".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/60/builds/7129

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/opt-hot-cold-split.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 1: /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='default<Os>' -debug-pass-manager < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=default<Os>' -debug-pass-manager -o /dev/null
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=DEFAULT-Os
RUN: at line 2: /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto-pre-link<Os>' -debug-pass-manager < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto-pre-link<Os>' -debug-pass-manager -o /dev/null
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-PRELINK-Os
RUN: at line 3: /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='thinlto-pre-link<Os>' -debug-pass-manager < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=THINLTO-PRELINK-Os
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=thinlto-pre-link<Os>' -debug-pass-manager -o /dev/null
RUN: at line 4: /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -passes='lto<Os>' -debug-pass-manager < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -o /dev/null 2>&1 | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/opt-hot-cold-split.ll -check-prefix=LTO-POSTLINK-Os
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true '-passes=lto<Os>' -debug-pass-manager -o /dev/null
RUN: at line 5: /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -mtriple=x86_64-- -hot-cold-split=true -LINK-Os
opt: Unknown command line argument '-LINK-Os'.  Try: '/b/1/llvm-x86_64-debian-dylib/build/bin/opt --help'
opt: Did you mean '--Os'?

--

********************


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
llvm:analysis Includes value tracking, cost tables and constant folding llvm:transforms LTO Link time optimization (regular/full LTO or ThinLTO)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants