https://github.com/kyulee-com updated https://github.com/llvm/llvm-project/pull/90304
>From 966922b9921669d48eb750c36ce3c9b792ba8161 Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee <kyu...@meta.com> Date: Fri, 26 Apr 2024 12:58:54 -0700 Subject: [PATCH 1/6] [CGData] Clang Optinos --- clang/include/clang/Driver/Options.td | 12 ++++++ clang/lib/Driver/ToolChains/CommonArgs.cpp | 27 +++++++++++++ clang/lib/Driver/ToolChains/Darwin.cpp | 46 ++++++++++++++++++++++ clang/test/Driver/codegen-data.c | 42 ++++++++++++++++++++ 4 files changed, 127 insertions(+) create mode 100644 clang/test/Driver/codegen-data.c diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index f78032255f036f..b400af5d99c654 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -1894,6 +1894,18 @@ def fprofile_selected_function_group : Visibility<[ClangOption, CC1Option]>, MetaVarName<"<i>">, HelpText<"Partition functions into N groups using -fprofile-function-groups and select only functions in group i to be instrumented. The valid range is 0 to N-1 inclusive">, MarshallingInfoInt<CodeGenOpts<"ProfileSelectedFunctionGroup">>; +def fcodegen_data_generate : Joined<["-"], "fcodegen-data-generate">, + Group<f_Group>, Visibility<[ClangOption, CC1Option]>, + HelpText<"Emit codegen data into object file. LLD for MachO (for now) merges them into default.cgdata">; +def fcodegen_data_generate_EQ : Joined<["-"], "fcodegen-data-generate=">, + Group<f_Group>, Visibility<[ClangOption, CC1Option]>, MetaVarName<"<directory>">, + HelpText<"Emit codegen data into object file. LLD for MachO (for now) merges them into <directory>/default.cgdata">; +def fcodegen_data_use : Joined<["-"], "fcodegen-data-use">, + Group<f_Group>, Visibility<[ClangOption, CC1Option]>, + HelpText<"Use codegen data read from default.cgdata to optimize the binary">; +def fcodegen_data_use_EQ : Joined<["-"], "fcodegen-data-use=">, + Group<f_Group>, Visibility<[ClangOption, CC1Option]>, MetaVarName<"<directory>">, + HelpText<"Use codegen data read from <directory>/default.cgdata to optimize the binary">; def fswift_async_fp_EQ : Joined<["-"], "fswift-async-fp=">, Group<f_Group>, Visibility<[ClangOption, CC1Option, CC1AsOption, CLOption]>, diff --git a/clang/lib/Driver/ToolChains/CommonArgs.cpp b/clang/lib/Driver/ToolChains/CommonArgs.cpp index 2ce6779f4b43e3..5fa502d64c0300 100644 --- a/clang/lib/Driver/ToolChains/CommonArgs.cpp +++ b/clang/lib/Driver/ToolChains/CommonArgs.cpp @@ -2753,6 +2753,33 @@ void tools::addMachineOutlinerArgs(const Driver &D, addArg(Twine("-enable-machine-outliner=never")); } } + + auto *CodeGenDataGenArg = + Args.getLastArg(options::OPT_fcodegen_data_generate, + options::OPT_fcodegen_data_generate_EQ); + auto *CodeGenDataUseArg = Args.getLastArg(options::OPT_fcodegen_data_use, + options::OPT_fcodegen_data_use_EQ); + + // We only allow one of them to be specified. + if (CodeGenDataGenArg && CodeGenDataUseArg) + D.Diag(diag::err_drv_argument_not_allowed_with) + << CodeGenDataGenArg->getAsString(Args) + << CodeGenDataUseArg->getAsString(Args); + + // For codegen data gen, the output file is passed to the linker + // while a boolean flag is passed to the LLVM backend. + if (CodeGenDataGenArg) + addArg(Twine("-codegen-data-generate")); + + // For codegen data use, the input file is passed to the LLVM backend. + if (CodeGenDataUseArg) { + SmallString<128> Path(CodeGenDataUseArg->getNumValues() == 0 + ? "" + : CodeGenDataUseArg->getValue()); + if (Path.empty() || llvm::sys::fs::is_directory(Path)) + llvm::sys::path::append(Path, "default.cgdata"); + addArg(Twine("-codegen-data-use-path=" + Path.str())); + } } void tools::addOpenMPDeviceRTL(const Driver &D, diff --git a/clang/lib/Driver/ToolChains/Darwin.cpp b/clang/lib/Driver/ToolChains/Darwin.cpp index 5e7f9290e2009d..9e72e280109640 100644 --- a/clang/lib/Driver/ToolChains/Darwin.cpp +++ b/clang/lib/Driver/ToolChains/Darwin.cpp @@ -476,6 +476,19 @@ void darwin::Linker::AddLinkArgs(Compilation &C, const ArgList &Args, llvm::sys::path::append(Path, "default.profdata"); CmdArgs.push_back(Args.MakeArgString(Twine("--cs-profile-path=") + Path)); } + + auto *CodeGenDataGenArg = + Args.getLastArg(options::OPT_fcodegen_data_generate, + options::OPT_fcodegen_data_generate_EQ); + if (CodeGenDataGenArg) { + SmallString<128> Path(CodeGenDataGenArg->getNumValues() == 0 + ? "" + : CodeGenDataGenArg->getValue()); + if (Path.empty() || llvm::sys::fs::is_directory(Path)) + llvm::sys::path::append(Path, "default.cgdata"); + CmdArgs.push_back( + Args.MakeArgString(Twine("--codegen-data-generate-path=") + Path)); + } } } @@ -633,6 +646,39 @@ void darwin::Linker::ConstructJob(Compilation &C, const JobAction &JA, CmdArgs.push_back("-mllvm"); CmdArgs.push_back("-enable-linkonceodr-outlining"); + // Propagate codegen data flags to the linker for the LLVM backend. + auto *CodeGenDataGenArg = + Args.getLastArg(options::OPT_fcodegen_data_generate, + options::OPT_fcodegen_data_generate_EQ); + auto *CodeGenDataUseArg = Args.getLastArg(options::OPT_fcodegen_data_use, + options::OPT_fcodegen_data_use_EQ); + + // We only allow one of them to be specified. + const Driver &D = getToolChain().getDriver(); + if (CodeGenDataGenArg && CodeGenDataUseArg) + D.Diag(diag::err_drv_argument_not_allowed_with) + << CodeGenDataGenArg->getAsString(Args) + << CodeGenDataUseArg->getAsString(Args); + + // For codegen data gen, the output file is passed to the linker + // while a boolean flag is passed to the LLVM backend. + if (CodeGenDataGenArg) { + CmdArgs.push_back("-mllvm"); + CmdArgs.push_back("-codegen-data-generate"); + } + + // For codegen data use, the input file is passed to the LLVM backend. + if (CodeGenDataUseArg) { + SmallString<128> Path(CodeGenDataUseArg->getNumValues() == 0 + ? "" + : CodeGenDataUseArg->getValue()); + if (Path.empty() || llvm::sys::fs::is_directory(Path)) + llvm::sys::path::append(Path, "default.cgdata"); + CmdArgs.push_back("-mllvm"); + CmdArgs.push_back( + Args.MakeArgString("-codegen-data-use-path=" + Path.str())); + } + // Setup statistics file output. SmallString<128> StatsFile = getStatsFileName(Args, Output, Inputs[0], getToolChain().getDriver()); diff --git a/clang/test/Driver/codegen-data.c b/clang/test/Driver/codegen-data.c new file mode 100644 index 00000000000000..a72850afc59736 --- /dev/null +++ b/clang/test/Driver/codegen-data.c @@ -0,0 +1,42 @@ +// Verify only one of codegen-data flag is passed. +// RUN: not %clang -### -S --target=aarch64-linux-gnu -fcodegen-data-generate -fcodegen-data-use %s 2>&1 | FileCheck %s --check-prefix=CONFLICT +// RUN: not %clang -### -S --target=arm64-apple-darwin -fcodegen-data-generate -fcodegen-data-use %s 2>&1 | FileCheck %s --check-prefix=CONFLICT +// CONFLICT: error: invalid argument '-fcodegen-data-generate' not allowed with '-fcodegen-data-use' + +// Verify the codegen-data-generate (boolean) flag is passed to LLVM +// RUN: %clang -### -S --target=aarch64-linux-gnu -fcodegen-data-generate %s 2>&1| FileCheck %s --check-prefix=GENERATE +// RUN: %clang -### -S --target=arm64-apple-darwin -fcodegen-data-generate %s 2>&1| FileCheck %s --check-prefix=GENERATE +// GENERATE: "-mllvm" "-codegen-data-generate" + +// Verify the codegen-data-use-path flag (with a default value) is passed to LLVM. +// RUN: %clang -### -S --target=aarch64-linux-gnu -fcodegen-data-use %s 2>&1| FileCheck %s --check-prefix=USE +// RUN: %clang -### -S --target=arm64-apple-darwin -fcodegen-data-use %s 2>&1| FileCheck %s --check-prefix=USE +// RUN: mkdir -p %t.d/some/dir +// RUN: %clang -### -S --target=aarch64-linux-gnu -fcodegen-data-use=%t.d/some/dir %s 2>&1 | FileCheck %s --check-prefix=USE-DIR +// RUN: %clang -### -S --target=arm64-apple-darwin -fcodegen-data-use=%t.d/some/dir %s 2>&1 | FileCheck %s --check-prefix=USE-DIR +// RUN: %clang -### -S --target=aarch64-linux-gnu -fcodegen-data-use=file %s 2>&1 | FileCheck %s --check-prefix=USE-FILE +// RUN: %clang -### -S --target=arm64-apple-darwin -fcodegen-data-use=file %s 2>&1 | FileCheck %s --check-prefix=USE-FILE +// USE: "-mllvm" "-codegen-data-use-path=default.cgdata" +// USE-DIR: "-mllvm" "-codegen-data-use-path={{.*}}.d/some/dir{{/|\\\\}}default.cgdata" +// USE-FILE: "-mllvm" "-codegen-data-use-path=file" + +// Verify the codegen-data-generate (boolean) flag with a LTO. +// RUN: %clang -### -flto --target=aarch64-linux-gnu -fcodegen-data-generate %s 2>&1 | FileCheck %s --check-prefix=GENERATE-LTO +// GENERATE-LTO: {{ld(.exe)?"}} +// GENERATE-LTO-SAME: "-plugin-opt=-codegen-data-generate" +// RUN: %clang -### -flto --target=arm64-apple-darwin -fcodegen-data-generate %s 2>&1 | FileCheck %s --check-prefix=GENERATE-LTO-DARWIN +// GENERATE-LTO-DARWIN: {{ld(.exe)?"}} +// GENERATE-LTO-DARWIN-SAME: "-mllvm" "-codegen-data-generate" + +// Verify the codegen-data-use-path flag with a LTO is passed to LLVM. +// RUN: %clang -### -flto=thin --target=aarch64-linux-gnu -fcodegen-data-use %s 2>&1 | FileCheck %s --check-prefix=USE-LTO +// USE-LTO: {{ld(.exe)?"}} +// USE-LTO-SAME: "-plugin-opt=-codegen-data-use-path=default.cgdata" +// RUN: %clang -### -flto=thin --target=arm64-apple-darwin -fcodegen-data-use %s 2>&1 | FileCheck %s --check-prefix=USE-LTO-DARWIN +// USE-LTO-DARWIN: {{ld(.exe)?"}} +// USE-LTO-DARWIN-SAME: "-mllvm" "-codegen-data-use-path=default.cgdata" + +// For now, LLD MachO supports for generating the codegen data at link time. +// RUN: %clang -### -fuse-ld=lld -B%S/Inputs/lld --target=arm64-apple-darwin -fcodegen-data-generate %s 2>&1 | FileCheck %s --check-prefix=GENERATE-LLD-DARWIN +// GENERATE-LLD-DARWIN: {{ld(.exe)?"}} +// GENERATE-LLD-DARWIN-SAME: "--codegen-data-generate-path=default.cgdata" >From 3a3da69515c10819541a25c0dbcfdc98efd55ba1 Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee <kyu...@meta.com> Date: Wed, 11 Sep 2024 15:54:35 -0700 Subject: [PATCH 2/6] Address comments from ellishg --- clang/include/clang/Driver/Options.td | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index b400af5d99c654..92b5bb8fea77ae 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -1894,18 +1894,18 @@ def fprofile_selected_function_group : Visibility<[ClangOption, CC1Option]>, MetaVarName<"<i>">, HelpText<"Partition functions into N groups using -fprofile-function-groups and select only functions in group i to be instrumented. The valid range is 0 to N-1 inclusive">, MarshallingInfoInt<CodeGenOpts<"ProfileSelectedFunctionGroup">>; -def fcodegen_data_generate : Joined<["-"], "fcodegen-data-generate">, - Group<f_Group>, Visibility<[ClangOption, CC1Option]>, - HelpText<"Emit codegen data into object file. LLD for MachO (for now) merges them into default.cgdata">; def fcodegen_data_generate_EQ : Joined<["-"], "fcodegen-data-generate=">, - Group<f_Group>, Visibility<[ClangOption, CC1Option]>, MetaVarName<"<directory>">, - HelpText<"Emit codegen data into object file. LLD for MachO (for now) merges them into <directory>/default.cgdata">; -def fcodegen_data_use : Joined<["-"], "fcodegen-data-use">, - Group<f_Group>, Visibility<[ClangOption, CC1Option]>, - HelpText<"Use codegen data read from default.cgdata to optimize the binary">; + Group<f_Group>, Visibility<[ClangOption, CC1Option]>, MetaVarName<"<path>">, + HelpText<"Emit codegen data into the object file. LLD for MachO (currently) merges them into a <path> file. If the path is a directory, it writes to <path>/default.cgdata.">; +def fcodegen_data_generate : Flag<["-"], "fcodegen-data-generate">, + Group<f_Group>, Visibility<[ClangOption, CLOption]>, Alias<fcodegen_data_generate_EQ>, + HelpText<"Emit codegen data into the object file. LLD for MachO (currently) merges them into default.cgdata.">; def fcodegen_data_use_EQ : Joined<["-"], "fcodegen-data-use=">, - Group<f_Group>, Visibility<[ClangOption, CC1Option]>, MetaVarName<"<directory>">, - HelpText<"Use codegen data read from <directory>/default.cgdata to optimize the binary">; + Group<f_Group>, Visibility<[ClangOption, CC1Option]>, MetaVarName<"<path>">, + HelpText<"Use codegen data read from a <path> file. If the path is a directory, it reads from <path>/default.cgdata.">; +def fcodegen_data_use : Flag<["-"], "fcodegen-data-use">, + Group<f_Group>, Visibility<[ClangOption, CC1Option]>, Alias<fcodegen_data_use_EQ>, + HelpText<"Use codegen data read from default.cgdata to optimize the binary">; def fswift_async_fp_EQ : Joined<["-"], "fswift-async-fp=">, Group<f_Group>, Visibility<[ClangOption, CC1Option, CC1AsOption, CLOption]>, >From 0710ef49ce246c4bf6ed465ff3d813f2a7acea8c Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee <kyu...@meta.com> Date: Thu, 12 Sep 2024 09:43:25 -0700 Subject: [PATCH 3/6] Address comments from jansvoboda11 --- clang/include/clang/Driver/Options.td | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 92b5bb8fea77ae..ab7ba65662ff6b 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -1895,16 +1895,16 @@ def fprofile_selected_function_group : HelpText<"Partition functions into N groups using -fprofile-function-groups and select only functions in group i to be instrumented. The valid range is 0 to N-1 inclusive">, MarshallingInfoInt<CodeGenOpts<"ProfileSelectedFunctionGroup">>; def fcodegen_data_generate_EQ : Joined<["-"], "fcodegen-data-generate=">, - Group<f_Group>, Visibility<[ClangOption, CC1Option]>, MetaVarName<"<path>">, + Group<f_Group>, Visibility<[ClangOption, CLOption]>, MetaVarName<"<path>">, HelpText<"Emit codegen data into the object file. LLD for MachO (currently) merges them into a <path> file. If the path is a directory, it writes to <path>/default.cgdata.">; def fcodegen_data_generate : Flag<["-"], "fcodegen-data-generate">, Group<f_Group>, Visibility<[ClangOption, CLOption]>, Alias<fcodegen_data_generate_EQ>, HelpText<"Emit codegen data into the object file. LLD for MachO (currently) merges them into default.cgdata.">; def fcodegen_data_use_EQ : Joined<["-"], "fcodegen-data-use=">, - Group<f_Group>, Visibility<[ClangOption, CC1Option]>, MetaVarName<"<path>">, + Group<f_Group>, Visibility<[ClangOption, CLOption]>, MetaVarName<"<path>">, HelpText<"Use codegen data read from a <path> file. If the path is a directory, it reads from <path>/default.cgdata.">; def fcodegen_data_use : Flag<["-"], "fcodegen-data-use">, - Group<f_Group>, Visibility<[ClangOption, CC1Option]>, Alias<fcodegen_data_use_EQ>, + Group<f_Group>, Visibility<[ClangOption, CLOption]>, Alias<fcodegen_data_use_EQ>, HelpText<"Use codegen data read from default.cgdata to optimize the binary">; def fswift_async_fp_EQ : Joined<["-"], "fswift-async-fp=">, Group<f_Group>, >From e7be9e233c90a87270e425f638750c5ee89e9f6e Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee <kyu...@meta.com> Date: Thu, 12 Sep 2024 11:08:43 -0700 Subject: [PATCH 4/6] Remove the directory condition in path per discussion in #90166 --- clang/include/clang/Driver/Options.td | 4 ++-- clang/lib/Driver/ToolChains/CommonArgs.cpp | 2 +- clang/lib/Driver/ToolChains/Darwin.cpp | 4 ++-- clang/test/Driver/codegen-data.c | 4 ---- 4 files changed, 5 insertions(+), 9 deletions(-) diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index ab7ba65662ff6b..0da7808d817b26 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -1896,13 +1896,13 @@ def fprofile_selected_function_group : MarshallingInfoInt<CodeGenOpts<"ProfileSelectedFunctionGroup">>; def fcodegen_data_generate_EQ : Joined<["-"], "fcodegen-data-generate=">, Group<f_Group>, Visibility<[ClangOption, CLOption]>, MetaVarName<"<path>">, - HelpText<"Emit codegen data into the object file. LLD for MachO (currently) merges them into a <path> file. If the path is a directory, it writes to <path>/default.cgdata.">; + HelpText<"Emit codegen data into the object file. LLD for MachO (currently) merges them into the specified <path>.">; def fcodegen_data_generate : Flag<["-"], "fcodegen-data-generate">, Group<f_Group>, Visibility<[ClangOption, CLOption]>, Alias<fcodegen_data_generate_EQ>, HelpText<"Emit codegen data into the object file. LLD for MachO (currently) merges them into default.cgdata.">; def fcodegen_data_use_EQ : Joined<["-"], "fcodegen-data-use=">, Group<f_Group>, Visibility<[ClangOption, CLOption]>, MetaVarName<"<path>">, - HelpText<"Use codegen data read from a <path> file. If the path is a directory, it reads from <path>/default.cgdata.">; + HelpText<"Use codegen data read from the specified <path>.">; def fcodegen_data_use : Flag<["-"], "fcodegen-data-use">, Group<f_Group>, Visibility<[ClangOption, CLOption]>, Alias<fcodegen_data_use_EQ>, HelpText<"Use codegen data read from default.cgdata to optimize the binary">; diff --git a/clang/lib/Driver/ToolChains/CommonArgs.cpp b/clang/lib/Driver/ToolChains/CommonArgs.cpp index 5fa502d64c0300..02239cda59efdc 100644 --- a/clang/lib/Driver/ToolChains/CommonArgs.cpp +++ b/clang/lib/Driver/ToolChains/CommonArgs.cpp @@ -2776,7 +2776,7 @@ void tools::addMachineOutlinerArgs(const Driver &D, SmallString<128> Path(CodeGenDataUseArg->getNumValues() == 0 ? "" : CodeGenDataUseArg->getValue()); - if (Path.empty() || llvm::sys::fs::is_directory(Path)) + if (Path.empty()) llvm::sys::path::append(Path, "default.cgdata"); addArg(Twine("-codegen-data-use-path=" + Path.str())); } diff --git a/clang/lib/Driver/ToolChains/Darwin.cpp b/clang/lib/Driver/ToolChains/Darwin.cpp index 9e72e280109640..7bd91614ee1467 100644 --- a/clang/lib/Driver/ToolChains/Darwin.cpp +++ b/clang/lib/Driver/ToolChains/Darwin.cpp @@ -484,7 +484,7 @@ void darwin::Linker::AddLinkArgs(Compilation &C, const ArgList &Args, SmallString<128> Path(CodeGenDataGenArg->getNumValues() == 0 ? "" : CodeGenDataGenArg->getValue()); - if (Path.empty() || llvm::sys::fs::is_directory(Path)) + if (Path.empty()) llvm::sys::path::append(Path, "default.cgdata"); CmdArgs.push_back( Args.MakeArgString(Twine("--codegen-data-generate-path=") + Path)); @@ -672,7 +672,7 @@ void darwin::Linker::ConstructJob(Compilation &C, const JobAction &JA, SmallString<128> Path(CodeGenDataUseArg->getNumValues() == 0 ? "" : CodeGenDataUseArg->getValue()); - if (Path.empty() || llvm::sys::fs::is_directory(Path)) + if (Path.empty()) llvm::sys::path::append(Path, "default.cgdata"); CmdArgs.push_back("-mllvm"); CmdArgs.push_back( diff --git a/clang/test/Driver/codegen-data.c b/clang/test/Driver/codegen-data.c index a72850afc59736..28638f61d641c5 100644 --- a/clang/test/Driver/codegen-data.c +++ b/clang/test/Driver/codegen-data.c @@ -11,13 +11,9 @@ // Verify the codegen-data-use-path flag (with a default value) is passed to LLVM. // RUN: %clang -### -S --target=aarch64-linux-gnu -fcodegen-data-use %s 2>&1| FileCheck %s --check-prefix=USE // RUN: %clang -### -S --target=arm64-apple-darwin -fcodegen-data-use %s 2>&1| FileCheck %s --check-prefix=USE -// RUN: mkdir -p %t.d/some/dir -// RUN: %clang -### -S --target=aarch64-linux-gnu -fcodegen-data-use=%t.d/some/dir %s 2>&1 | FileCheck %s --check-prefix=USE-DIR -// RUN: %clang -### -S --target=arm64-apple-darwin -fcodegen-data-use=%t.d/some/dir %s 2>&1 | FileCheck %s --check-prefix=USE-DIR // RUN: %clang -### -S --target=aarch64-linux-gnu -fcodegen-data-use=file %s 2>&1 | FileCheck %s --check-prefix=USE-FILE // RUN: %clang -### -S --target=arm64-apple-darwin -fcodegen-data-use=file %s 2>&1 | FileCheck %s --check-prefix=USE-FILE // USE: "-mllvm" "-codegen-data-use-path=default.cgdata" -// USE-DIR: "-mllvm" "-codegen-data-use-path={{.*}}.d/some/dir{{/|\\\\}}default.cgdata" // USE-FILE: "-mllvm" "-codegen-data-use-path=file" // Verify the codegen-data-generate (boolean) flag with a LTO. >From 03641f3e75bf79c9d98d5a05bec22b4e8ee0f07f Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee <kyu...@meta.com> Date: Thu, 12 Sep 2024 16:21:52 -0700 Subject: [PATCH 5/6] Document --- clang/docs/UsersManual.rst | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst index f27fa4ace917ea..4b160d6b2a904f 100644 --- a/clang/docs/UsersManual.rst +++ b/clang/docs/UsersManual.rst @@ -2410,6 +2410,39 @@ are listed below. link-time optimizations like whole program inter-procedural basic block reordering. +.. option:: -fcodegen-data-generate[=<path>] + + Emit the raw codegen (CG) data into custom sections in the object file. + Currently, this option also combines the raw CG data from the object files + into an indexed CG data file specified by the <path>, for LLD MachO only. + When the <path> is not specified, `default.cgdata` is created. + The CG data file combines all the outlining instances that occurred locally + in each object file. + + .. code-block:: console + + $ clang -fuse-ld=lld -Oz -fcodegen-data-generate code.cc + + For linkers that do not yet support this feature, `llvm-cgdata` can be used + manually to merge this CG data in object files. + + .. code-block:: console + + $ clang -c -fuse-ld=lld -Oz -fcodegen-data-generate code.cc + $ llvm-cgdata --merge -o default.cgdata code.o + +.. option:: -fcodegen-data-use[=<path>] + + Read the codegen data from the specified path to more effectively outline + functions across compilation units. When the <path> is not specified, + `default.cgdata` is used. This option can create many identically outlined + functions that can be optimized by the conventional linker’s identical code + folding (ICF). + + .. code-block:: console + + $ clang -fuse-ld=lld -Oz -Wl,--icf=O2 -fcodegen-data-use code.cc + Profile Guided Optimization --------------------------- >From b8fbe9408d33d6fb1ac769e4f030aaa16a3c7ec7 Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee <kyu...@meta.com> Date: Thu, 12 Sep 2024 16:42:08 -0700 Subject: [PATCH 6/6] Address 2nd comments from jansvoboda11 --- clang/lib/Driver/ToolChains/CommonArgs.cpp | 6 ++---- clang/lib/Driver/ToolChains/Darwin.cpp | 9 +++------ 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/clang/lib/Driver/ToolChains/CommonArgs.cpp b/clang/lib/Driver/ToolChains/CommonArgs.cpp index 02239cda59efdc..da4af2ddde8fd5 100644 --- a/clang/lib/Driver/ToolChains/CommonArgs.cpp +++ b/clang/lib/Driver/ToolChains/CommonArgs.cpp @@ -2755,10 +2755,8 @@ void tools::addMachineOutlinerArgs(const Driver &D, } auto *CodeGenDataGenArg = - Args.getLastArg(options::OPT_fcodegen_data_generate, - options::OPT_fcodegen_data_generate_EQ); - auto *CodeGenDataUseArg = Args.getLastArg(options::OPT_fcodegen_data_use, - options::OPT_fcodegen_data_use_EQ); + Args.getLastArg(options::OPT_fcodegen_data_generate_EQ); + auto *CodeGenDataUseArg = Args.getLastArg(options::OPT_fcodegen_data_use_EQ); // We only allow one of them to be specified. if (CodeGenDataGenArg && CodeGenDataUseArg) diff --git a/clang/lib/Driver/ToolChains/Darwin.cpp b/clang/lib/Driver/ToolChains/Darwin.cpp index 7bd91614ee1467..efb0b2fe0a9a79 100644 --- a/clang/lib/Driver/ToolChains/Darwin.cpp +++ b/clang/lib/Driver/ToolChains/Darwin.cpp @@ -478,8 +478,7 @@ void darwin::Linker::AddLinkArgs(Compilation &C, const ArgList &Args, } auto *CodeGenDataGenArg = - Args.getLastArg(options::OPT_fcodegen_data_generate, - options::OPT_fcodegen_data_generate_EQ); + Args.getLastArg(options::OPT_fcodegen_data_generate_EQ); if (CodeGenDataGenArg) { SmallString<128> Path(CodeGenDataGenArg->getNumValues() == 0 ? "" @@ -648,10 +647,8 @@ void darwin::Linker::ConstructJob(Compilation &C, const JobAction &JA, // Propagate codegen data flags to the linker for the LLVM backend. auto *CodeGenDataGenArg = - Args.getLastArg(options::OPT_fcodegen_data_generate, - options::OPT_fcodegen_data_generate_EQ); - auto *CodeGenDataUseArg = Args.getLastArg(options::OPT_fcodegen_data_use, - options::OPT_fcodegen_data_use_EQ); + Args.getLastArg(options::OPT_fcodegen_data_generate_EQ); + auto *CodeGenDataUseArg = Args.getLastArg(options::OPT_fcodegen_data_use_EQ); // We only allow one of them to be specified. const Driver &D = getToolChain().getDriver(); _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits