63 lines · plain
1; REQUIRES: asserts && x86-registered-target2; RUN: opt < %s -passes='thinlto<O2>' -pgo-kind=pgo-sample-use-pipeline -sample-profile-file=%S/Inputs/pseudo-probe-callee-profile-mismatch.prof --salvage-stale-profile --salvage-unused-profile=false -S --debug-only=sample-profile,sample-profile-matcher,sample-profile-impl -pass-remarks=inline 2>&1 | FileCheck %s3 4; There is no profile-checksum-mismatch attr, even the checksum is mismatched in the pseudo_probe_desc, it doesn't run the matching.5; CHECK-NOT: Run stale profile matching for main6 7; CHECK: Run stale profile matching for bar8; CHECK: Callsite with callee:baz is matched from 4 to 29; CHECK: 'baz' inlined into 'main' to match profiling context with (cost=always): preinliner at callsite bar:3:8.4 @ main:3:10.710 11; CHECK: Probe descriptor missing for Function bar12; CHECK: Profile is invalid due to CFG mismatch for Function bar13 14 15define available_externally i32 @main() #0 {16 %1 = call i32 @bar(), !dbg !1317 ret i32 018}19 20define available_externally i32 @bar() #1 !dbg !21 {21 %1 = call i32 @baz(), !dbg !2322 ret i32 023}24 25define available_externally i32 @baz() #0 !dbg !25 {26 ret i32 027}28 29attributes #0 = { "use-sample-profile" }30attributes #1 = { "profile-checksum-mismatch" "use-sample-profile" }31 32!llvm.dbg.cu = !{!0, !7, !9}33!llvm.module.flags = !{!11}34!llvm.pseudo_probe_desc = !{!12}35 36!0 = distinct !DICompileUnit(language: DW_LANG_C11, file: !1, producer: "clang version 19.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, globals: !2, splitDebugInlining: false, nameTableKind: None)37!1 = !DIFile(filename: "test.c", directory: "/home/test", checksumkind: CSK_MD5, checksum: "7220f1a2d70ff869f1a6ab7958e3c393")38!2 = !{!3}39!3 = !DIGlobalVariableExpression(var: !4, expr: !DIExpression())40!4 = distinct !DIGlobalVariable(name: "x", scope: !0, file: !1, line: 2, type: !5, isLocal: false, isDefinition: true)41!5 = !DIDerivedType(tag: DW_TAG_volatile_type, baseType: !6)42!6 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)43!7 = distinct !DICompileUnit(language: DW_LANG_C11, file: !8, producer: "clang version 19.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, splitDebugInlining: false, nameTableKind: None)44!8 = !DIFile(filename: "test1.v1.c", directory: "/home/test", checksumkind: CSK_MD5, checksum: "76696bd6bfe16a9f227fe03cfdb6a82c")45!9 = distinct !DICompileUnit(language: DW_LANG_C11, file: !10, producer: "clang version 19.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, splitDebugInlining: false, nameTableKind: None)46!10 = !DIFile(filename: "test2.c", directory: "/home/test", checksumkind: CSK_MD5, checksum: "553093afc026f9c73562eb3b0c5b7532")47!11 = !{i32 2, !"Debug Info Version", i32 3}48; Make a checksum mismatch in the pseudo_probe_desc49!12 = !{i64 -2624081020897602054, i64 123456, !"main"}50!13 = !DILocation(line: 8, column: 10, scope: !14)51!14 = !DILexicalBlockFile(scope: !15, file: !1, discriminator: 186646591)52!15 = distinct !DILexicalBlock(scope: !16, file: !1, line: 7, column: 40)53!16 = distinct !DILexicalBlock(scope: !17, file: !1, line: 7, column: 3)54!17 = distinct !DILexicalBlock(scope: !18, file: !1, line: 7, column: 3)55!18 = distinct !DISubprogram(name: "main", scope: !1, file: !1, line: 5, type: !19, scopeLine: 6, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !20)56!19 = distinct !DISubroutineType(types: !20)57!20 = !{}58!21 = distinct !DISubprogram(name: "bar", scope: !8, file: !8, line: 3, type: !22, scopeLine: 3, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !7, retainedNodes: !20)59!22 = !DISubroutineType(types: !20)60!23 = !DILocation(line: 6, column: 8, scope: !24)61!24 = !DILexicalBlockFile(scope: !21, file: !8, discriminator: 186646567)62!25 = distinct !DISubprogram(name: "baz", scope: !10, file: !10, line: 1, type: !22, scopeLine: 1, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !9, retainedNodes: !20)63