User Details
- User Since
- Sep 8 2014, 1:20 PM (472 w, 6 d)
Thu, Sep 21
Please update InstrProfilingPlatformAIX.c as well, specifically add new dummy vars for the new section.
Edit: I can post the patch if you wish.
Tue, Sep 19
Thu, Sep 7
Wed, Sep 6
address code review comments,
Aug 31 2023
Aug 30 2023
Aug 16 2023
Aug 10 2023
Aug 9 2023
clang-format
Aug 2 2023
address MaskRay's comments
Jul 31 2023
Jul 28 2023
Jul 26 2023
Jul 24 2023
Jul 21 2023
@fhahn can you please review when you have a chance. Thanks
Jul 19 2023
move tests into its own file
Jul 11 2023
Jun 30 2023
@fhahn ping. Thanks
Jun 26 2023
forgot to touch dummy input file.
Jun 22 2023
this was caught when I tried running test-suite with -flto=thin
Apr 4 2023
Mar 29 2023
Mar 28 2023
Mar 27 2023
Mar 25 2023
Let's document the option as well under: https://clang.llvm.org/docs/ClangCommandLineReference.html#powerpc
Mar 24 2023
Fix bug: StringRef::lower() returns a std::string as a temporary, and Twine doesn't own the memory of the substrings.
The temporary should be used in the same C++ statement so that there's no lifetime issues.
Mar 22 2023
Is there any reason to require an even number of hex digits? Or to convert the hex string to lower case?
Mar 20 2023
add new test
add "<0xHEXSTRING>" to the option documentation.
Mar 18 2023
Mar 14 2023
LGTM. Would be nice to get @daltenty 's approval too.
Mar 13 2023
testcase?
Mar 8 2023
Feb 21 2023
LGTM
Feb 2 2023
Jan 25 2023
Jan 24 2023
Jan 12 2023
Dec 19 2022
Nov 29 2022
Nov 25 2022
Oct 27 2022
Fixed by D136192
Oct 26 2022
Oct 25 2022
I wasn't included as a reviewer on D124857 and I missed that change so couldn't comment there, but I'm not a fan of including the AIX support in InstrProfilingPlatformLinux.c. AIX is neither Linux nor ELF-based and big chunks of that file are now #ifdefed out making it harder to comprehend which part is used where. I'd prefer introducing InstrProfilingPlatformAIX.c, moving the AIX-specific logic there, and then figuring out how to possibly share common parts between InstrProfilingPlatformLinux.c and InstrProfilingPlatformAIX.c, for example by moving them to an .inc file.
Oct 21 2022
Oct 20 2022
@phosek @MaskRay If you can kindly review this patch as it affects non-AIX platforms with the changes in compiler-rt/lib/profile/InstrProfilingRuntime.cpp. I'm hoping the change are like for like but I cannot be sure for all platforms.