[llvm] 2e6c15d - Make lazyload_metadata.ll resilient to the addition of new metadata kinds
David Herzka via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 25 16:00:00 PST 2019
Author: David Herzka
Date: 2019-12-25T18:59:21-05:00
New Revision: 2e6c15d1e7a47f11fab2dd3a40fcff01906923ae
URL: https://github.com/llvm/llvm-project/commit/2e6c15d1e7a47f11fab2dd3a40fcff01906923ae
DIFF: https://github.com/llvm/llvm-project/commit/2e6c15d1e7a47f11fab2dd3a40fcff01906923ae.diff
LOG: Make lazyload_metadata.ll resilient to the addition of new metadata kinds
Summary: The specific number of records loaded depends on the number of kinds, but the difference between the lazy and not lazy cases does not.
Reviewers: modocache
Subscribers: mehdi_amini, hiraditya, steven_wu, dexonsmith, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71730
Added:
Modified:
llvm/test/ThinLTO/X86/lazyload_metadata.ll
Removed:
################################################################################
diff --git a/llvm/test/ThinLTO/X86/lazyload_metadata.ll b/llvm/test/ThinLTO/X86/lazyload_metadata.ll
index 79c377724efa..3895b9faad10 100644
--- a/llvm/test/ThinLTO/X86/lazyload_metadata.ll
+++ b/llvm/test/ThinLTO/X86/lazyload_metadata.ll
@@ -7,18 +7,19 @@
; Check that importing @globalfunc1 does not trigger loading all the global
; metadata for @globalfunc2 and @globalfunc3
-; RUN: llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc \
-; RUN: -o /dev/null -stats \
-; RUN: 2>&1 | FileCheck %s -check-prefix=LAZY
-; LAZY: 65 bitcode-reader - Number of Metadata records loaded
-; LAZY: 2 bitcode-reader - Number of MDStrings loaded
-
-; RUN: llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc \
-; RUN: -o /dev/null -disable-ondemand-mds-loading -stats \
-; RUN: 2>&1 | FileCheck %s -check-prefix=NOTLAZY
-; NOTLAZY: 74 bitcode-reader - Number of Metadata records loaded
-; NOTLAZY: 7 bitcode-reader - Number of MDStrings loaded
-
+; RUN: (llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc -stats 2>&1 \
+; RUN: | awk '{print "LAZY: " $0}' && \
+; RUN: llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc -stats -disable-ondemand-mds-loading 2>&1 \
+; RUN: | awk '{print "NOTLAZY: " $0}') \
+; RUN: | FileCheck %s
+
+; Check llvm-lto call with lazy loading enabled
+; CHECK: LAZY: [[#LAZY_RECORDS:]] bitcode-reader - Number of Metadata records loaded
+; CHECK: LAZY: 2 bitcode-reader - Number of MDStrings loaded
+
+; Check llvm-lto call with lazy loading disabled
+; CHECK: NOTLAZY: [[#LAZY_RECORDS+9]] bitcode-reader - Number of Metadata records loaded
+; CHECK: NOTLAZY: 7 bitcode-reader - Number of MDStrings loaded
target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.11.0"
More information about the llvm-commits
mailing list