From: Hongtao Yu Date: Sat, 6 Feb 2021 01:56:45 +0000 (-0800) Subject: [ELF] Rewriting the path of sample profile file for --reproduce response.txt X-Git-Tag: llvmorg-14-init~15678 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b8db127a30f583c5437579c8a9412d07745f2b1;p=platform%2Fupstream%2Fllvm.git [ELF] Rewriting the path of sample profile file for --reproduce response.txt Rewritting the path of the sample profile file in response.txt to be relative to the repro tar. Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D96193 --- diff --git a/lld/ELF/DriverUtils.cpp b/lld/ELF/DriverUtils.cpp index fd64980..a3fc522c 100644 --- a/lld/ELF/DriverUtils.cpp +++ b/lld/ELF/DriverUtils.cpp @@ -186,6 +186,9 @@ std::string elf::createResponseFile(const opt::InputArgList &args) { // Strip directories to prevent the issue. os << "-o " << quote(path::filename(arg->getValue())) << "\n"; break; + case OPT_lto_sample_profile: + os << arg->getSpelling() << quote(rewritePath(arg->getValue())) << "\n"; + break; case OPT_call_graph_ordering_file: case OPT_dynamic_list: case OPT_just_symbols: diff --git a/lld/test/ELF/reproduce-lto.s b/lld/test/ELF/reproduce-lto.s index 36838f2..2e673fd 100644 --- a/lld/test/ELF/reproduce-lto.s +++ b/lld/test/ELF/reproduce-lto.s @@ -10,8 +10,13 @@ # RUN: cd %t.dir # RUN: ld.lld build1/foo.o -o /dev/null --reproduce repro1.tar --lto-sample-profile=%t.dir/build1/empty_profile.txt # RUN: tar tvf repro1.tar | FileCheck %s --implicit-check-not={{.}} +# RUN: tar xvf repro1.tar &> %t2 +# RUN: cat repro1/response.txt >> %t2 +# RUN: FileCheck %s --check-prefix=RSP < %t2 # CHECK-DAG: {{.*}} repro1/{{.*}}/empty_profile.txt # CHECK-DAG: {{.*}} repro1/response.txt # CHECK-DAG: {{.*}} repro1/version.txt # CHECK-DAG: {{.*}} repro1/{{.*}}/foo.o +# RSP: repro1/[[PATH:.*]]/empty_profile.txt +# RSP: --lto-sample-profile=[[PATH]]/empty_profile.txt