[Tizen] Enable PGO for Linux/arm accepted/tizen/unified/20190612.044604 submit/tizen/20190611.050004 submit/tizen/20190611.060241 submit/tizen/20190611.091314
authorKonstantin Baladurin <k.baladurin@samsung.com>
Thu, 18 Apr 2019 09:29:56 +0000 (12:29 +0300)
committer이형주/Common Platform Lab(SR)/Staff Engineer/삼성전자 <leee.lee@samsung.com>
Mon, 20 May 2019 04:27:34 +0000 (13:27 +0900)
packages/optimization.linux-arm.pgo.coreclr/99.99.99-master-20190116.5/data/clrjit.profdata [new file with mode: 0644]
packages/optimization.linux-arm.pgo.coreclr/99.99.99-master-20190116.5/data/coreclr.profdata [new file with mode: 0644]
packaging/coreclr.spec
pgosupport.cmake

diff --git a/packages/optimization.linux-arm.pgo.coreclr/99.99.99-master-20190116.5/data/clrjit.profdata b/packages/optimization.linux-arm.pgo.coreclr/99.99.99-master-20190116.5/data/clrjit.profdata
new file mode 100644 (file)
index 0000000..5a56484
Binary files /dev/null and b/packages/optimization.linux-arm.pgo.coreclr/99.99.99-master-20190116.5/data/clrjit.profdata differ
diff --git a/packages/optimization.linux-arm.pgo.coreclr/99.99.99-master-20190116.5/data/coreclr.profdata b/packages/optimization.linux-arm.pgo.coreclr/99.99.99-master-20190116.5/data/coreclr.profdata
new file mode 100644 (file)
index 0000000..072b466
Binary files /dev/null and b/packages/optimization.linux-arm.pgo.coreclr/99.99.99-master-20190116.5/data/coreclr.profdata differ
index 9bd45f5..df57d00 100755 (executable)
@@ -2,6 +2,10 @@
 
 %define skipnative 0
 %define skipmscorlib 0
+
+%define pgo_instrument 0
+%define pgo_optimize 1
+
 %ifarch %{ix86}
 %define dotnet_buildtype Release
 %endif
@@ -79,6 +83,11 @@ BuildRequires:  libopenssl-64bit
 %endif
 %endif
 
+%if 0%{pgo_instrument} || 0%{pgo_optimize}
+BuildRequires:  binutils-gold
+BuildRequires:  compiler-rt
+%endif
+
 %description
 The CoreCLR repo contains the complete runtime implementation for .NET Core. It includes RyuJIT, the .NET GC, native interop and many other components. It is cross-platform, with multiple OS and CPU ports in progress.
 
@@ -180,12 +189,26 @@ export CXXFLAGS+="-fstack-protector-strong"
 %endif
 %endif
 
+%if 0%{skipnative}
+%else
+%if 0%{pgo_instrument}
+%define _pgo_flags -pgoinstrument
+%else
+%if 0%{pgo_optimize}
+# pgo optimization is enabled by default
+%define _pgo_flags ""
+%else
+%define _pgo_flags -nopgooptimize
+%endif
+%endif
+%endif
+
 %if 0%{skipmscorlib}
 %if 0%{skipnative}
 # No build native and mscorlib.
 %else
 # Build native only.
-./build.sh -%{_barch} -%{_buildtype} -numproc %{_numproc} -clang3.8 -skipmscorlib -skipgenerateversion -skipnuget -msbuildonunsupportedplatform -cmakeargs "-DFEATURE_GDBJIT=TRUE -DCLR_ADDITIONAL_LINKER_FLAGS=-Wl,-z,relro"
+./build.sh -%{_barch} -%{_buildtype} -numproc %{_numproc} -skipmscorlib -skipgenerateversion -skipnuget -msbuildonunsupportedplatform -cmakeargs "-DFEATURE_GDBJIT=TRUE -DCLR_ADDITIONAL_LINKER_FLAGS=-Wl,-z,relro" %{_pgo_flags}
 %endif
 %else
 %if 0%{skipnative}
@@ -193,7 +216,7 @@ export CXXFLAGS+="-fstack-protector-strong"
 ./build.sh -%{_barch} -%{_buildtype} -numproc %{_numproc} -skiprestore -skipnative -skipnuget -skipcrossgen -msbuildonunsupportedplatform
 %else
 # Build native and mscorlib.
-./build.sh -%{_barch} -%{_buildtype} -numproc %{_numproc} -clang3.8 -skipgenerateversion -skiprestore -skipnuget -skipcrossgen -msbuildonunsupportedplatform -cmakeargs "-DFEATURE_GDBJIT=TRUE -DCLR_ADDITIONAL_LINKER_FLAGS=-Wl,-z,relro"
+./build.sh -%{_barch} -%{_buildtype} -numproc %{_numproc} -skipgenerateversion -skiprestore -skipnuget -skipcrossgen -msbuildonunsupportedplatform -cmakeargs "-DFEATURE_GDBJIT=TRUE -DCLR_ADDITIONAL_LINKER_FLAGS=-Wl,-z,relro" %{_pgo_flags}
 %endif
 %endif
 
index bc331be..421f3d5 100644 (file)
@@ -22,8 +22,8 @@ function(add_pgo TargetName)
             set_property(TARGET ${TargetName} APPEND_STRING PROPERTY LINK_FLAGS_RELWITHDEBINFO " /LTCG /GENPROFILE")
         else(WIN32)
             if(UPPERCASE_CMAKE_BUILD_TYPE STREQUAL RELEASE OR UPPERCASE_CMAKE_BUILD_TYPE STREQUAL RELWITHDEBINFO)
-                target_compile_options(${TargetName} PRIVATE -flto -fprofile-instr-generate)
-                set_property(TARGET ${TargetName} APPEND_STRING PROPERTY LINK_FLAGS " -flto -fuse-ld=gold -fprofile-instr-generate")
+                target_compile_options(${TargetName} PRIVATE -flto -fprofile-instr-generate=/tmp/${TargetName}-%p.profdata)
+                set_property(TARGET ${TargetName} APPEND_STRING PROPERTY LINK_FLAGS " -flto -fuse-ld=gold -fprofile-instr-generate=/tmp/${TargetName}-%p.profdata")
             endif(UPPERCASE_CMAKE_BUILD_TYPE STREQUAL RELEASE OR UPPERCASE_CMAKE_BUILD_TYPE STREQUAL RELWITHDEBINFO)
         endif(WIN32)
     elseif(CLR_CMAKE_PGO_OPTIMIZE)