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

[AArch64] AArch64ISelDAGToDAG.cpp - disable inlining on MSVC release builds #115292

Merged
merged 1 commit into from
Nov 7, 2024

Conversation

RKSimon
Copy link
Collaborator

@RKSimon RKSimon commented Nov 7, 2024

Similar to #110986 - disabling inlining on MSVC release builds avoids an excessive build time issue affecting all recent versions of CL.EXE

Fixes #114425

@llvmbot
Copy link
Member

llvmbot commented Nov 7, 2024

@llvm/pr-subscribers-backend-aarch64

Author: Simon Pilgrim (RKSimon)

Changes

Similar to #110986 - disabling inlining on MSVC release builds avoids an excessive build time issue affecting all recent versions of CL.EXE

Fixes #114425


Full diff: https://github.com/llvm/llvm-project/pull/115292.diff

1 Files Affected:

  • (modified) llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp (+5)
diff --git a/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp b/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
index 511ab4fe7e9a39..97050ba2476ff5 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
@@ -31,6 +31,11 @@ using namespace llvm;
 #define DEBUG_TYPE "aarch64-isel"
 #define PASS_NAME "AArch64 Instruction Selection"
 
+// https://github.com/llvm/llvm-project/issues/114425
+#if defined(_WIN32) && !defined(__clang__) && !defined(NDEBUG)
+#pragma inline_depth(0)
+#endif
+
 //===--------------------------------------------------------------------===//
 /// AArch64DAGToDAGISel - AArch64 specific code to select AArch64 machine
 /// instructions for SelectionDAG operations.

@@ -31,6 +31,11 @@ using namespace llvm;
#define DEBUG_TYPE "aarch64-isel"
#define PASS_NAME "AArch64 Instruction Selection"

// https://github.com/llvm/llvm-project/issues/114425
#if defined(_WIN32) && !defined(__clang__) && !defined(NDEBUG)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this test for MSVC specifically, rather than !defined(__clang__) ?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've matched #110986 - which IIRC is doing this to avoid it firing on clang-cl

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just to make sure I understand, does the clang-cl driver define the MSVC macro for compatibility reasons such that checking for MSVC here doesn't mean it's actually the MSVC compiler?

Copy link
Collaborator Author

@RKSimon RKSimon Nov 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes - clang-cl defines the _MSC_VER macro as well as __clang__ :https://clang.godbolt.org/z/fo9aMYosK

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But this condition as it stands, defined(_WIN32) && !defined(__clang__) will also match for GCC.

The correct one for singling out MSVC but not clang in msvc mode, would be defined(_MSC_VER) && !defined(__clang__).

Copy link
Collaborator Author

@RKSimon RKSimon Nov 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I assume you mean mignw builds? I'll create a patch

@RKSimon RKSimon requested a review from bd1976bris November 7, 2024 11:16
…builds

Similar to llvm#110986 - disabling inlining on MSVC release builds avoids an excessive build time issue affecting all recent versions of CL.EXE

Fixes llvm#114425
@RKSimon RKSimon force-pushed the aarch64-msvc-build-time-fix branch from c0104e4 to 25ac7a8 Compare November 7, 2024 11:59
@RKSimon RKSimon merged commit 9123dc6 into llvm:main Nov 7, 2024
6 of 8 checks passed
@RKSimon RKSimon deleted the aarch64-msvc-build-time-fix branch November 7, 2024 12:36
Groverkss pushed a commit to iree-org/llvm-project that referenced this pull request Nov 15, 2024

Verified

This commit was signed with the committer’s verified signature.
Groverkss Kunwar Grover
…builds (llvm#115292)

Similar to llvm#110986 - disabling inlining on MSVC release builds avoids an excessive build time issue affecting all recent versions of CL.EXE

Fixes llvm#114425
RKSimon added a commit to RKSimon/llvm-project that referenced this pull request Nov 18, 2024
Alter the #ifdef values from llvm#110986 and llvm#115292 to use _MSC_VER instead of _WIN32 to stop the pragmas being used on gcc/mingw builds

Noticed by @mstorsjo
RKSimon added a commit to RKSimon/llvm-project that referenced this pull request Nov 21, 2024
Alter the #ifdef values from llvm#110986 and llvm#115292 to use _MSC_VER instead of _WIN32 to stop the pragmas being used on gcc/mingw builds

Noticed by @mstorsjo
RKSimon added a commit that referenced this pull request Nov 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Alter the #ifdef values from #110986 and #115292 to use _MSC_VER instead of _WIN32 to stop the pragmas being used on gcc/mingw builds

Noticed by @mstorsjo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[AArch64] Severe AArch64DAGToDAGISel::Select build time regression on MSVC builds
4 participants