Skip to content

[PseudoProbe] Use probe id as the base dwarf discriminator for callsites #65685

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

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions llvm/include/llvm/IR/DebugInfoMetadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include "llvm/ADT/iterator_range.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/Metadata.h"
#include "llvm/IR/PseudoProbe.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Discriminator.h"
Expand Down Expand Up @@ -2075,6 +2076,14 @@ class DILocation : public MDNode {
static unsigned
getBaseDiscriminatorFromDiscriminator(unsigned D,
bool IsFSDiscriminator = false) {
// Return the probe id instead of zero for a pseudo probe discriminator.
// This should help differenciate callsites with same line numbers to
// achieve a decent AutoFDO profile under -fpseudo-probe-for-profiling,
// where the original callsite dwarf discriminator is overwritten by
// callsite probe information.
if (isPseudoProbeDiscriminator(D))
return PseudoProbeDwarfDiscriminator::extractProbeIndex(D);

if (IsFSDiscriminator)
return getMaskedDiscriminator(D, getBaseDiscriminatorBits());
return getUnsignedFromPrefixEncoding(D);
Expand Down
2 changes: 2 additions & 0 deletions llvm/test/Transforms/SampleProfile/pseudo-probe-inline.ll
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ if.end:
;YAML-NEXT: - Line: '1'
;YAML-NEXT: - String: ':'
;YAML-NEXT: - Column: '11'
;YAML-NEXT: - String: .
;YAML-NEXT: - Disc: '2'
;YAML-NEXT: - String: ';'
;YAML-NEXT: ...
;YAML: --- !Analysis
Expand Down
82 changes: 82 additions & 0 deletions llvm/test/tools/llvm-profgen/inline-probe-afdo.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
; RUN: llvm-profgen --format=text --use-dwarf-correlation --ignore-stack-samples --perfscript=%S/Inputs/cs-preinline-cost.perfscript --binary=%S/Inputs/cs-preinline-cost.perfbin --output %t
; RUN: FileCheck %s --input-file %t

; CHECK: main:947937:0
; CHECK-NEXT: 2: 545
; CHECK-NEXT: 3: 545
; CHECK-NEXT: 5: 545
; CHECK-NEXT: 7: 0
; CHECK-NEXT: 65496: 545
; CHECK-NEXT: 3.7: _Z3fooi:915794
; CHECK-NEXT: 1: 545
; CHECK-NEXT: 5: 545
; CHECK-NEXT: 6: 272
; CHECK-NEXT: 10: 273
; CHECK-NEXT: 11: 180
; CHECK-NEXT: 12: 6965
; CHECK-NEXT: 13: 6965
; CHECK-NEXT: 14: 6965
; CHECK-NEXT: 15: 6965
; CHECK-NEXT: 20: 182
; CHECK-NEXT: 21: 6958
; CHECK-NEXT: 22: 6958
; CHECK-NEXT: 23: 6958
; CHECK-NEXT: 24: 6958
; CHECK-NEXT: 29: 272
; CHECK-NEXT: 65529: 182
; CHECK-NEXT: 4.8: _Z3fooi:16338
; CHECK-NEXT: 1: 272
; CHECK-NEXT: 6: 545




; binary is built with the source below using the following command line:
; clang -O3 -g -fpseudo-probe-for-profiling test.cpp
;
;#include <stdio.h>
;
;volatile int state = 9000;
;
;int foo(int x) {
; if (x == 0) {
; return 7;
; }
;
; if ((x & 1) == 0) {
; state--;
; return 9;
; }
;
; if (state > 5000) {
; while (state > 5000) {
; for (int i = 50; i >= 0; i--) {
; state *= 6;
; state /= 7;
; state -= 1;
; }
; }
; }
; else {
; while (state < 5000) {
; for (int i = 50; i >= 0; i--) {
; state *= 6;
; state /= 5;
; state += 1;
; }
; }
; }
;
; return state;
;}
;
;volatile int cnt = 10000000;//10000000;
;int main() {
; int r = 0;
; for (int i = 0; i < cnt; i++) {
; r += foo(i);
; r -= foo(i & (~1));
; r += foo(0);
; }
; return r;
;}