Skip to content
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

Missing gprof support on some target #121136

Open
wzssyqa opened this issue Dec 26, 2024 · 0 comments
Open

Missing gprof support on some target #121136

wzssyqa opened this issue Dec 26, 2024 · 0 comments
Labels
metabug Issue to collect references to a group of similar or related issues.

Comments

@wzssyqa
Copy link
Contributor

wzssyqa commented Dec 26, 2024

Test code

; bin/clang -pg test.c && ./a.out && gprof -b a.out gmon.out
int fib(int n) {return n <=1 ? 1 : fib(n-1) + fib(n-2); }
int main() {fib(10); return 0;}

Known workable platforms

X86-64
X86-32
MIPS32
MIPS64
SPARC64
PowerPC64LE

Known unworkable platforms

AARCH64   https://github.com/llvm/llvm-project/pull/121107
LoongArch64 https://github.com/llvm/llvm-project/pull/121107
RISC-V64 https://github.com/llvm/llvm-project/pull/121107
ARM32: https://github.com/llvm/llvm-project/issues/121135
S390X/SystemZ: https://github.com/llvm/llvm-project/issues/121137
@EugeneZelenko EugeneZelenko added metabug Issue to collect references to a group of similar or related issues. and removed new issue labels Dec 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
metabug Issue to collect references to a group of similar or related issues.
Projects
None yet
Development

No branches or pull requests

2 participants