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

[clang] Add getClangVendor() and use it in CodeGenModule.cpp #75935

Merged
merged 1 commit into from
Dec 20, 2023

Conversation

DimitryAndric
Copy link
Collaborator

In 9a38a72 ProductId was assigned from the stringified value of CLANG_VENDOR, if that macro was defined. However, CLANG_VENDOR is supposed to be a string, as it is defined (optionally) as such in the top-level clang CMakeLists.txt.

Move the addition of -DCLANG_VENDOR to the compiler flags from clang/lib/Basic/CMakeLists.txt to the top-level CMakeLists.txt, so it is consistent across the whole clang codebase. Then remove the stringification from CodeGenModule.cpp, to make it work correctly.

Fixes: 9a38a72

@llvmbot llvmbot added clang Clang issues not falling into any other category clang:frontend Language frontend issues, e.g. anything involving "Sema" clang:codegen IR generation bugs: mangling, exceptions, etc. labels Dec 19, 2023
@llvmbot
Copy link
Member

llvmbot commented Dec 19, 2023

@llvm/pr-subscribers-clang-codegen

Author: Dimitry Andric (DimitryAndric)

Changes

In 9a38a72 ProductId was assigned from the stringified value of CLANG_VENDOR, if that macro was defined. However, CLANG_VENDOR is supposed to be a string, as it is defined (optionally) as such in the top-level clang CMakeLists.txt.

Move the addition of -DCLANG_VENDOR to the compiler flags from clang/lib/Basic/CMakeLists.txt to the top-level CMakeLists.txt, so it is consistent across the whole clang codebase. Then remove the stringification from CodeGenModule.cpp, to make it work correctly.

Fixes: 9a38a72


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

3 Files Affected:

  • (modified) clang/CMakeLists.txt (+4)
  • (modified) clang/lib/Basic/CMakeLists.txt (-5)
  • (modified) clang/lib/CodeGen/CodeGenModule.cpp (+1-1)
diff --git a/clang/CMakeLists.txt b/clang/CMakeLists.txt
index 2ca6db02e58791..c7461bc510e4ac 100644
--- a/clang/CMakeLists.txt
+++ b/clang/CMakeLists.txt
@@ -241,6 +241,10 @@ set(CLANG_SYSTEMZ_DEFAULT_ARCH "z10" CACHE STRING "SystemZ Default Arch")
 set(CLANG_VENDOR ${PACKAGE_VENDOR} CACHE STRING
   "Vendor-specific text for showing with version information.")
 
+if(CLANG_VENDOR)
+  add_definitions(-DCLANG_VENDOR="${CLANG_VENDOR}")
+endif()
+
 set(CLANG_REPOSITORY_STRING "" CACHE STRING
   "Vendor-specific text for showing the repository the source is taken from.")
 
diff --git a/clang/lib/Basic/CMakeLists.txt b/clang/lib/Basic/CMakeLists.txt
index 2e218ba7c84cca..6b6fde9b5a9a6b 100644
--- a/clang/lib/Basic/CMakeLists.txt
+++ b/clang/lib/Basic/CMakeLists.txt
@@ -49,11 +49,6 @@ set_source_files_properties("${version_inc}"
   PROPERTIES GENERATED TRUE
              HEADER_FILE_ONLY TRUE)
 
-if(CLANG_VENDOR)
-  set_source_files_properties(Version.cpp
-    PROPERTIES COMPILE_DEFINITIONS "CLANG_VENDOR=\"${CLANG_VENDOR} \"")
-endif()
-
 add_clang_library(clangBasic
   Attributes.cpp
   Builtins.cpp
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp
index 7ad26ace328ab2..c8007aef675cb4 100644
--- a/clang/lib/CodeGen/CodeGenModule.cpp
+++ b/clang/lib/CodeGen/CodeGenModule.cpp
@@ -997,7 +997,7 @@ void CodeGenModule::Release() {
                               uint32_t(CLANG_VERSION_PATCHLEVEL));
     std::string ProductId;
 #ifdef CLANG_VENDOR
-    ProductId = #CLANG_VENDOR;
+    ProductId = CLANG_VENDOR;
 #else
     ProductId = "clang";
 #endif

@llvmbot
Copy link
Member

llvmbot commented Dec 19, 2023

@llvm/pr-subscribers-clang

Author: Dimitry Andric (DimitryAndric)

Changes

In 9a38a72 ProductId was assigned from the stringified value of CLANG_VENDOR, if that macro was defined. However, CLANG_VENDOR is supposed to be a string, as it is defined (optionally) as such in the top-level clang CMakeLists.txt.

Move the addition of -DCLANG_VENDOR to the compiler flags from clang/lib/Basic/CMakeLists.txt to the top-level CMakeLists.txt, so it is consistent across the whole clang codebase. Then remove the stringification from CodeGenModule.cpp, to make it work correctly.

Fixes: 9a38a72


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

3 Files Affected:

  • (modified) clang/CMakeLists.txt (+4)
  • (modified) clang/lib/Basic/CMakeLists.txt (-5)
  • (modified) clang/lib/CodeGen/CodeGenModule.cpp (+1-1)
diff --git a/clang/CMakeLists.txt b/clang/CMakeLists.txt
index 2ca6db02e58791..c7461bc510e4ac 100644
--- a/clang/CMakeLists.txt
+++ b/clang/CMakeLists.txt
@@ -241,6 +241,10 @@ set(CLANG_SYSTEMZ_DEFAULT_ARCH "z10" CACHE STRING "SystemZ Default Arch")
 set(CLANG_VENDOR ${PACKAGE_VENDOR} CACHE STRING
   "Vendor-specific text for showing with version information.")
 
+if(CLANG_VENDOR)
+  add_definitions(-DCLANG_VENDOR="${CLANG_VENDOR}")
+endif()
+
 set(CLANG_REPOSITORY_STRING "" CACHE STRING
   "Vendor-specific text for showing the repository the source is taken from.")
 
diff --git a/clang/lib/Basic/CMakeLists.txt b/clang/lib/Basic/CMakeLists.txt
index 2e218ba7c84cca..6b6fde9b5a9a6b 100644
--- a/clang/lib/Basic/CMakeLists.txt
+++ b/clang/lib/Basic/CMakeLists.txt
@@ -49,11 +49,6 @@ set_source_files_properties("${version_inc}"
   PROPERTIES GENERATED TRUE
              HEADER_FILE_ONLY TRUE)
 
-if(CLANG_VENDOR)
-  set_source_files_properties(Version.cpp
-    PROPERTIES COMPILE_DEFINITIONS "CLANG_VENDOR=\"${CLANG_VENDOR} \"")
-endif()
-
 add_clang_library(clangBasic
   Attributes.cpp
   Builtins.cpp
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp
index 7ad26ace328ab2..c8007aef675cb4 100644
--- a/clang/lib/CodeGen/CodeGenModule.cpp
+++ b/clang/lib/CodeGen/CodeGenModule.cpp
@@ -997,7 +997,7 @@ void CodeGenModule::Release() {
                               uint32_t(CLANG_VERSION_PATCHLEVEL));
     std::string ProductId;
 #ifdef CLANG_VENDOR
-    ProductId = #CLANG_VENDOR;
+    ProductId = CLANG_VENDOR;
 #else
     ProductId = "clang";
 #endif

Copy link
Collaborator

@smeenai smeenai left a comment

Choose a reason for hiding this comment

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

IIRC, applying definitions like this only to a small set of files was an intentional decision, to minimize rebuilding when their values changed. It matters much more for the commit hash than the vendor, but passing defines like this to every single compilation in Clang is ugly IMO. Can we instead add a function to Version.cpp to access the vendor (so that the correct type gets encoded in the function signature) and use that from CodeGenModule.cpp instead of referencing CLANG_VENDOR directly?

Copy link
Contributor

@ysyeda ysyeda left a comment

Choose a reason for hiding this comment

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

LGTM, thanks

Copy link
Member

@petrhosek petrhosek left a comment

Choose a reason for hiding this comment

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

I agree with @smeenai, we shouldn't be setting CLANG_VENDOR as a global define.

@DimitryAndric DimitryAndric force-pushed the users/DimitryAndric/codegen-clang-vendor branch from ce2f310 to 4b3db6b Compare December 20, 2023 12:46
@DimitryAndric DimitryAndric changed the title [clang][CodeGen] Always use CLANG_VENDOR as a quoted string [clang] Add getClangVendor() and use it in CodeGenModule.cpp Dec 20, 2023
Copy link

github-actions bot commented Dec 20, 2023

✅ With the latest revision this PR passed the C/C++ code formatter.

In 9a38a72 `ProductId` was assigned from the stringified value of
`CLANG_VENDOR`, if that macro was defined. However, `CLANG_VENDOR` is
supposed to be a string, as it is defined (optionally) as such in the
top-level clang `CMakeLists.txt`.

Furthermore, `CLANG_VENDOR` is only passed as a build-time define when
compiling `Version.cpp`, so add a `getClangVendor()` function to
`Version.h`, and use it in `CodegGenModule.cpp`, instead of relying on
the macro.

Fixes: 9a38a72
@DimitryAndric DimitryAndric force-pushed the users/DimitryAndric/codegen-clang-vendor branch from 4b3db6b to ab5263e Compare December 20, 2023 12:50
#else
ProductId = "clang";
#endif
std::string ProductId = getClangVendor() + "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.

Note that this is the way you are supposed to get a "product-id-with-vendor", as the vendor tag itself normally does not contain the word "clang". For example, FreeBSD uses "FreeBSD " (so with a trailing space), and Apple uses "Apple " (also with trailing space). If any space is desired between the vendor tag and the word "clang", it has to be specified in the vendor tag, and not appended here in the string concatenation.

Copy link
Collaborator

@smeenai smeenai left a comment

Choose a reason for hiding this comment

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

LGTM, thanks!

@DimitryAndric DimitryAndric merged commit 9055519 into main Dec 20, 2023
@DimitryAndric DimitryAndric deleted the users/DimitryAndric/codegen-clang-vendor branch December 20, 2023 19:03
@DimitryAndric DimitryAndric restored the users/DimitryAndric/codegen-clang-vendor branch December 20, 2023 19:05
DimitryAndric added a commit that referenced this pull request Dec 20, 2023
…75935)"

This reverts commit 9055519, due to an
incorrectly chosen commit message.
DimitryAndric added a commit that referenced this pull request Dec 20, 2023
In 9a38a72 `ProductId` was assigned from the stringified value of
`CLANG_VENDOR`, if that macro was defined. However, `CLANG_VENDOR` is
supposed to be a string, as it is defined (optionally) as such in the
top-level clang `CMakeLists.txt`.

Furthermore, `CLANG_VENDOR` is only passed as a build-time define when
compiling `Version.cpp`, so add a `getClangVendor()` function to
`Version.h`, and use it in `CodegGenModule.cpp`, instead of relying on
the macro.

Fixes: 9a38a72
@DimitryAndric DimitryAndric deleted the users/DimitryAndric/codegen-clang-vendor branch December 20, 2023 19:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
clang:codegen IR generation bugs: mangling, exceptions, etc. clang:frontend Language frontend issues, e.g. anything involving "Sema" clang Clang issues not falling into any other category
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants