[llvm-branch-commits] [llvm] 7fdec55 - Revert "Reland "[PGO][GlobalValue][LTO]In GlobalValues::getGlobalIdentifier, use semicolon as delimiter for local-linkage varibles. " (#75860)"

2023-12-18 Thread via llvm-branch-commits
Author: Mingming Liu Date: 2023-12-18T19:27:30-08:00 New Revision: 7fdec55eb3e359bd56f87f49eecc5bc6a6473199 URL: https://github.com/llvm/llvm-project/commit/7fdec55eb3e359bd56f87f49eecc5bc6a6473199 DIFF: https://github.com/llvm/llvm-project/commit/7fdec55eb3e359bd56f87f49eecc5bc6a6473199.diff

[llvm-branch-commits] [llvm] [clang] [clang-tools-extra] [NFC, Clangd] Refactor Check to have more explicit cli args. (PR #75867)

2023-12-18 Thread Andres Villegas via llvm-branch-commits
https://github.com/avillega edited https://github.com/llvm/llvm-project/pull/75867 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [compiler-rt] [flang] [llvm] [mlir] [lld] [libcxx] [clang] [lldb] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Pavel Iliin via llvm-branch-commits
https://github.com/ilinpv edited https://github.com/llvm/llvm-project/pull/75636 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [clang] [libcxx] [flang] [lld] [compiler-rt] [llvm] [lldb] [mlir] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Pavel Iliin via llvm-branch-commits
@@ -0,0 +1,69 @@ +#include +#if TARGET_OS_OSX || TARGET_OS_IPHONE +#include +#include + +static bool isKnownAndSupported(const char *name) { + int32_t val = 0; + size_t size = sizeof(val); + if (sysctlbyname(name, &val, &size, NULL, 0)) +return false; + return val; +} +

[llvm-branch-commits] [llvm] [lld] [libcxx] [flang] [mlir] [lldb] [compiler-rt] [clang] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
@@ -0,0 +1,69 @@ +#include +#if TARGET_OS_OSX || TARGET_OS_IPHONE +#include +#include + +static bool isKnownAndSupported(const char *name) { + int32_t val = 0; + size_t size = sizeof(val); + if (sysctlbyname(name, &val, &size, NULL, 0)) +return false; + return val; +} +

[llvm-branch-commits] [clang] [libcxx] [mlir] [lld] [llvm] [compiler-rt] [flang] [lldb] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs edited https://github.com/llvm/llvm-project/pull/75636 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [clang] [libcxx] [mlir] [lld] [llvm] [compiler-rt] [flang] [lldb] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs edited https://github.com/llvm/llvm-project/pull/75636 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [clang] [libcxx] [mlir] [lld] [llvm] [compiler-rt] [flang] [lldb] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
@@ -0,0 +1,69 @@ +#include +#if TARGET_OS_OSX || TARGET_OS_IPHONE +#include +#include + +static bool isKnownAndSupported(const char *name) { + int32_t val = 0; + size_t size = sizeof(val); + if (sysctlbyname(name, &val, &size, NULL, 0)) +return false; + return val; +} +

[llvm-branch-commits] [mlir] [libcxx] [clang] [lld] [flang] [compiler-rt] [lldb] [llvm] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
@@ -0,0 +1,69 @@ +#include +#if TARGET_OS_OSX || TARGET_OS_IPHONE +#include +#include + +static bool isKnownAndSupported(const char *name) { + int32_t val = 0; + size_t size = sizeof(val); + if (sysctlbyname(name, &val, &size, NULL, 0)) +return false; + return val; +} +

[llvm-branch-commits] [mlir] [lld] [flang] [clang] [lldb] [libcxx] [llvm] [compiler-rt] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Pavel Iliin via llvm-branch-commits
@@ -0,0 +1,69 @@ +#include +#if TARGET_OS_OSX || TARGET_OS_IPHONE +#include +#include + +static bool isKnownAndSupported(const char *name) { + int32_t val = 0; + size_t size = sizeof(val); + if (sysctlbyname(name, &val, &size, NULL, 0)) +return false; + return val; +} +

[llvm-branch-commits] [clang-tools-extra] [clang] [llvm] [Clangd] Refactor Check to have more explicit cli args. (PR #75867)

2023-12-18 Thread Andres Villegas via llvm-branch-commits
https://github.com/avillega updated https://github.com/llvm/llvm-project/pull/75867 >From e31560e8462108869f80b39dfd186efcf45a77f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Villegas?= Date: Mon, 18 Dec 2023 22:56:01 + Subject: [PATCH] Run git clang-format Created using spr 1.3

[llvm-branch-commits] [clang-tools-extra] [clang] [llvm] [Clangd] Refactor Check to have more explicit cli args. (PR #75867)

2023-12-18 Thread via llvm-branch-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff 8be985072459ebc888fa4ec26651b9bac356be7a 75c8037b6b7788d1a0f57eed6a712204555a43d1 --

[llvm-branch-commits] [clang-tools-extra] [clang] [llvm] [Clangd] Refactor Check to have more explicit cli args. (PR #75867)

2023-12-18 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clangd Author: Andres Villegas (avillega) Changes Move the definition of the Check* command line options into the ClangdMain file, to make them more explicit. This is in preparation of moving Clangd to use OptTable to parse its commnad line options. -

[llvm-branch-commits] [clang-tools-extra] [clang] [llvm] [Clangd] Refactor Check to have more explicit cli args. (PR #75867)

2023-12-18 Thread Andres Villegas via llvm-branch-commits
https://github.com/avillega created https://github.com/llvm/llvm-project/pull/75867 Move the definition of the Check* command line options into the ClangdMain file, to make them more explicit. This is in preparation of moving Clangd to use OptTable to parse its commnad line options.

[llvm-branch-commits] [compiler-rt] 79a2b23 - Revert "[PGO][GlobalValue][LTO]In GlobalValues::getGlobalIdentifier, use semicolon as delimiter for local-linkage varibles. (#74008)"

2023-12-18 Thread via llvm-branch-commits
Author: Mingming Liu Date: 2023-12-18T09:38:43-08:00 New Revision: 79a2b23077757dc658cd8f1bff266a8e3a447f8c URL: https://github.com/llvm/llvm-project/commit/79a2b23077757dc658cd8f1bff266a8e3a447f8c DIFF: https://github.com/llvm/llvm-project/commit/79a2b23077757dc658cd8f1bff266a8e3a447f8c.diff

[llvm-branch-commits] [compiler-rt] [libcxx] [flang] [clang] [lld] [lldb] [mlir] [llvm] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/75636 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [compiler-rt] [lldb] [llvm] [mlir] [lld] [flang] [clang] [libcxx] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/75636 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [compiler-rt] [libcxx] [flang] [clang] [lld] [lldb] [mlir] [llvm] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/75636 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [compiler-rt] [libcxx] [flang] [clang] [lld] [lldb] [mlir] [llvm] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/75636 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [lldb] [mlir] [compiler-rt] [llvm] [libcxx] [lld] [flang] [clang] [builtins][arm64] Implement __init_cpu_features_resolver on Apple platforms (PR #75636)

2023-12-18 Thread Jon Roelofs via llvm-branch-commits
https://github.com/jroelofs updated https://github.com/llvm/llvm-project/pull/75636 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits