build-performance.m4 revision 1789:11b31df300ae
1147072Sbrooks#
2147072Sbrooks# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
3147072Sbrooks# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4147072Sbrooks#
5147072Sbrooks# This code is free software; you can redistribute it and/or modify it
6147072Sbrooks# under the terms of the GNU General Public License version 2 only, as
7147072Sbrooks# published by the Free Software Foundation.  Oracle designates this
8147072Sbrooks# particular file as subject to the "Classpath" exception as provided
9147072Sbrooks# by Oracle in the LICENSE file that accompanied this code.
10147072Sbrooks#
11147072Sbrooks# This code is distributed in the hope that it will be useful, but WITHOUT
12147072Sbrooks# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13147072Sbrooks# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14147072Sbrooks# version 2 for more details (a copy is included in the LICENSE file that
15147072Sbrooks# accompanied this code).
16147072Sbrooks#
17147072Sbrooks# You should have received a copy of the GNU General Public License version
18147072Sbrooks# 2 along with this work; if not, write to the Free Software Foundation,
19147072Sbrooks# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20147072Sbrooks#
21147072Sbrooks# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22147072Sbrooks# or visit www.oracle.com if you need additional information or have any
23147072Sbrooks# questions.
24147072Sbrooks#
25147072Sbrooks
26147072SbrooksAC_DEFUN([BPERF_CHECK_CORES],
27147072Sbrooks[
28147072Sbrooks  AC_MSG_CHECKING([for number of cores])
29147072Sbrooks  NUM_CORES=1
30147072Sbrooks  FOUND_CORES=no
31147072Sbrooks
32147072Sbrooks  if test -f /proc/cpuinfo; then
33147072Sbrooks    # Looks like a Linux (or cygwin) system
34147072Sbrooks    NUM_CORES=`cat /proc/cpuinfo  | grep -c processor`
35147072Sbrooks    FOUND_CORES=yes
36147072Sbrooks  elif test -x /usr/sbin/psrinfo; then
37147072Sbrooks    # Looks like a Solaris system
38147528Sru    NUM_CORES=`LC_MESSAGES=C /usr/sbin/psrinfo -v | grep -c on-line`
39147528Sru    FOUND_CORES=yes
40147528Sru  elif test -x /usr/sbin/system_profiler; then
41226345Sdes    # Looks like a MacOSX system
42147072Sbrooks    NUM_CORES=`/usr/sbin/system_profiler -detailLevel full SPHardwareDataType | grep 'Cores' | awk  '{print [$]5}'`
43147072Sbrooks    FOUND_CORES=yes
44147072Sbrooks  elif test "x$OPENJDK_BUILD_OS" = xaix ; then
45147072Sbrooks    NUM_CORES=`/usr/sbin/prtconf | grep "^Number Of Processors" | awk '{ print [$]4 }'`
46147528Sru    FOUND_CORES=yes
47147072Sbrooks  elif test -n "$NUMBER_OF_PROCESSORS"; then
48147072Sbrooks    # On windows, look in the env
49161514Sbrian    NUM_CORES=$NUMBER_OF_PROCESSORS
50147072Sbrooks    FOUND_CORES=yes
51147072Sbrooks  fi
52226345Sdes
53147072Sbrooks  if test "x$FOUND_CORES" = xyes; then
54147072Sbrooks    AC_MSG_RESULT([$NUM_CORES])
55147072Sbrooks  else
56147072Sbrooks    AC_MSG_RESULT([could not detect number of cores, defaulting to 1])
57147072Sbrooks    AC_MSG_WARN([This will disable all parallelism from build!])
58147072Sbrooks  fi
59147072Sbrooks])
60147072Sbrooks
61147072SbrooksAC_DEFUN([BPERF_CHECK_MEMORY_SIZE],
62147072Sbrooks[
63147072Sbrooks  AC_MSG_CHECKING([for memory size])
64147072Sbrooks  # Default to 1024 MB
65147072Sbrooks  MEMORY_SIZE=1024
66147528Sru  FOUND_MEM=no
67148214Smarks
68148214Smarks  if test -f /proc/meminfo; then
69148214Smarks    # Looks like a Linux (or cygwin) system
70148214Smarks    MEMORY_SIZE=`cat /proc/meminfo | grep MemTotal | awk '{print [$]2}'`
71147072Sbrooks    MEMORY_SIZE=`expr $MEMORY_SIZE / 1024`
72147072Sbrooks    FOUND_MEM=yes
73147072Sbrooks  elif test -x /usr/sbin/prtconf; then
74147072Sbrooks    # Looks like a Solaris or AIX system
75147072Sbrooks    MEMORY_SIZE=`/usr/sbin/prtconf | grep "^Memory [[Ss]]ize" | awk '{ print [$]3 }'`
76147072Sbrooks    FOUND_MEM=yes
77147072Sbrooks  elif test -x /usr/sbin/system_profiler; then
78147072Sbrooks    # Looks like a MacOSX system
79147072Sbrooks    MEMORY_SIZE=`/usr/sbin/system_profiler -detailLevel full SPHardwareDataType | grep 'Memory' | awk  '{print [$]2}'`
80147072Sbrooks    MEMORY_SIZE=`expr $MEMORY_SIZE \* 1024`
81147072Sbrooks    FOUND_MEM=yes
82147072Sbrooks  elif test "x$OPENJDK_BUILD_OS" = xwindows; then
83147072Sbrooks    # Windows, but without cygwin
84147072Sbrooks    MEMORY_SIZE=`wmic computersystem get totalphysicalmemory -value | grep = | cut -d "=" -f 2-`
85147072Sbrooks    MEMORY_SIZE=`expr $MEMORY_SIZE / 1024 / 1024`
86147072Sbrooks    FOUND_MEM=yes
87226345Sdes  fi
88226345Sdes
89226345Sdes  if test "x$FOUND_MEM" = xyes; then
90226345Sdes    AC_MSG_RESULT([$MEMORY_SIZE MB])
91147072Sbrooks  else
92147072Sbrooks    AC_MSG_RESULT([could not detect memory size, defaulting to $MEMORY_SIZE MB])
93147072Sbrooks    AC_MSG_WARN([This might seriously impact build performance!])
94147072Sbrooks  fi
95147072Sbrooks])
96147072Sbrooks
97147072SbrooksAC_DEFUN_ONCE([BPERF_SETUP_BUILD_CORES],
98147072Sbrooks[
99147072Sbrooks  # How many cores do we have on this build system?
100147072Sbrooks  AC_ARG_WITH(num-cores, [AS_HELP_STRING([--with-num-cores],
101147072Sbrooks      [number of cores in the build system, e.g. --with-num-cores=8 @<:@probed@:>@])])
102147072Sbrooks  if test "x$with_num_cores" = x; then
103147072Sbrooks    # The number of cores were not specified, try to probe them.
104147072Sbrooks    BPERF_CHECK_CORES
105147072Sbrooks  else
106147072Sbrooks    NUM_CORES=$with_num_cores
107147072Sbrooks  fi
108147072Sbrooks  AC_SUBST(NUM_CORES)
109147072Sbrooks])
110147072Sbrooks
111147072SbrooksAC_DEFUN_ONCE([BPERF_SETUP_BUILD_MEMORY],
112147072Sbrooks[
113147072Sbrooks  # How much memory do we have on this build system?
114147072Sbrooks  AC_ARG_WITH(memory-size, [AS_HELP_STRING([--with-memory-size],
115147072Sbrooks      [memory (in MB) available in the build system, e.g. --with-memory-size=1024 @<:@probed@:>@])])
116147072Sbrooks  if test "x$with_memory_size" = x; then
117147072Sbrooks    # The memory size was not specified, try to probe it.
118147072Sbrooks    BPERF_CHECK_MEMORY_SIZE
119147072Sbrooks  else
120147072Sbrooks    MEMORY_SIZE=$with_memory_size
121147072Sbrooks  fi
122147072Sbrooks  AC_SUBST(MEMORY_SIZE)
123147072Sbrooks])
124147072Sbrooks
125147528SruAC_DEFUN_ONCE([BPERF_SETUP_BUILD_JOBS],
126147072Sbrooks[
127147528Sru  # Provide a decent default number of parallel jobs for make depending on
128147072Sbrooks  # number of cores, amount of memory and machine architecture.
129147528Sru  AC_ARG_WITH(jobs, [AS_HELP_STRING([--with-jobs],
130147528Sru      [number of parallel jobs to let make run @<:@calculated based on cores and memory@:>@])])
131147072Sbrooks  if test "x$with_jobs" = x; then
132147072Sbrooks    # Number of jobs was not specified, calculate.
133147072Sbrooks    AC_MSG_CHECKING([for appropriate number of jobs to run in parallel])
134147072Sbrooks    # Approximate memory in GB.
135147072Sbrooks    memory_gb=`expr $MEMORY_SIZE / 1024`
136147072Sbrooks    # Pick the lowest of memory in gb and number of cores.
137147072Sbrooks    if test "$memory_gb" -lt "$NUM_CORES"; then
138147072Sbrooks      JOBS="$memory_gb"
139147072Sbrooks    else
140147072Sbrooks      JOBS="$NUM_CORES"
141147072Sbrooks      # On bigger machines, leave some room for other processes to run
142147072Sbrooks      if test "$JOBS" -gt "4"; then
143147072Sbrooks        JOBS=`expr $JOBS '*' 90 / 100`
144147528Sru      fi
145147072Sbrooks    fi
146147072Sbrooks    # Cap number of jobs to 16
147147072Sbrooks    if test "$JOBS" -gt "16"; then
148147072Sbrooks      JOBS=16
149147072Sbrooks    fi
150147072Sbrooks    if test "$JOBS" -eq "0"; then
151147072Sbrooks      JOBS=1
152147072Sbrooks    fi
153147072Sbrooks    AC_MSG_RESULT([$JOBS])
154147072Sbrooks  else
155147072Sbrooks    JOBS=$with_jobs
156147072Sbrooks  fi
157147072Sbrooks  AC_SUBST(JOBS)
158147072Sbrooks])
159147072Sbrooks
160147072SbrooksAC_DEFUN([BPERF_SETUP_CCACHE],
161147072Sbrooks[
162147072Sbrooks  AC_ARG_ENABLE([ccache],
163147072Sbrooks      [AS_HELP_STRING([--enable-ccache],
164147072Sbrooks      [enable using ccache to speed up recompilations @<:@disabled@:>@])])
165147528Sru
166147072Sbrooks  CCACHE=
167147528Sru  CCACHE_STATUS=
168147072Sbrooks  AC_MSG_CHECKING([is ccache enabled])
169147072Sbrooks  if test "x$enable_ccache" = xyes; then
170147528Sru    if test "x$TOOLCHAIN_TYPE" = "xgcc" -o "x$TOOLCHAIN_TYPE" = "xclang"; then
171147072Sbrooks      AC_MSG_RESULT([yes])
172147072Sbrooks      OLD_PATH="$PATH"
173147072Sbrooks      if test "x$TOOLCHAIN_PATH" != x; then
174147072Sbrooks        PATH=$TOOLCHAIN_PATH:$PATH
175147528Sru      fi
176147072Sbrooks      BASIC_REQUIRE_PROGS(CCACHE, ccache)
177147072Sbrooks      PATH="$OLD_PATH"
178147528Sru      CCACHE_VERSION=[`$CCACHE --version | head -n1 | $SED 's/[A-Za-z ]*//'`]
179147072Sbrooks      CCACHE_STATUS="Active ($CCACHE_VERSION)"
180147072Sbrooks    else
181147072Sbrooks      AC_MSG_RESULT([no])
182147072Sbrooks      AC_MSG_WARN([ccache is not supported with toolchain type $TOOLCHAIN_TYPE])
183147072Sbrooks    fi
184172252Sgabor  elif test "x$enable_ccache" = xno; then
185147072Sbrooks    AC_MSG_RESULT([no, explicitly disabled])
186147528Sru    CCACHE_STATUS="Disabled"
187147528Sru  elif test "x$enable_ccache" = x; then
188147072Sbrooks    AC_MSG_RESULT([no])
189147528Sru  else
190147072Sbrooks    AC_MSG_RESULT([unknown])
191147072Sbrooks    AC_MSG_ERROR([--enable-ccache does not accept any parameters])
192147072Sbrooks  fi
193147072Sbrooks  AC_SUBST(CCACHE)
194147072Sbrooks
195147072Sbrooks  AC_ARG_WITH([ccache-dir],
196147072Sbrooks      [AS_HELP_STRING([--with-ccache-dir],
197      [where to store ccache files @<:@~/.ccache@:>@])])
198
199  if test "x$with_ccache_dir" != x; then
200    # When using a non home ccache directory, assume the use is to share ccache files
201    # with other users. Thus change the umask.
202    SET_CCACHE_DIR="CCACHE_DIR=$with_ccache_dir CCACHE_UMASK=002"
203    if test "x$CCACHE" = x; then
204      AC_MSG_WARN([--with-ccache-dir has no meaning when ccache is not enabled])
205    fi
206  fi
207
208  if test "x$CCACHE" != x; then
209    BPERF_SETUP_CCACHE_USAGE
210  fi
211])
212
213AC_DEFUN([BPERF_SETUP_CCACHE_USAGE],
214[
215  if test "x$CCACHE" != x; then
216    if test "x$USE_PRECOMPILED_HEADER" = "x1"; then
217      HAS_BAD_CCACHE=[`$ECHO $CCACHE_VERSION | \
218          $GREP -e '^1.*' -e '^2.*' -e '^3\.0.*' -e '^3\.1\.[0123]$'`]
219      if test "x$HAS_BAD_CCACHE" != "x"; then
220        AC_MSG_ERROR([Precompiled headers requires ccache 3.1.4 or later, found $CCACHE_VERSION])
221      fi
222      AC_MSG_CHECKING([if C-compiler supports ccache precompiled headers])
223      CCACHE_PRECOMP_FLAG="-fpch-preprocess"
224      PUSHED_FLAGS="$CXXFLAGS"
225      CXXFLAGS="$CCACHE_PRECOMP_FLAG $CXXFLAGS"
226      AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [CC_KNOWS_CCACHE_TRICK=yes], [CC_KNOWS_CCACHE_TRICK=no])
227      CXXFLAGS="$PUSHED_FLAGS"
228      if test "x$CC_KNOWS_CCACHE_TRICK" = xyes; then
229        AC_MSG_RESULT([yes])
230        CFLAGS_CCACHE="$CCACHE_PRECOMP_FLAG"
231        AC_SUBST(CFLAGS_CCACHE)
232        CCACHE_SLOPPINESS=pch_defines,time_macros
233      else
234        AC_MSG_RESULT([no])
235        AC_MSG_ERROR([Cannot use ccache with precompiled headers without compiler support for $CCACHE_PRECOMP_FLAG])
236      fi
237    fi
238
239    CCACHE="CCACHE_COMPRESS=1 $SET_CCACHE_DIR \
240        CCACHE_SLOPPINESS=$CCACHE_SLOPPINESS CCACHE_BASEDIR=$TOPDIR $CCACHE"
241
242    if test "x$SET_CCACHE_DIR" != x; then
243      mkdir -p $CCACHE_DIR > /dev/null 2>&1
244      chmod a+rwxs $CCACHE_DIR > /dev/null 2>&1
245    fi
246  fi
247])
248
249AC_DEFUN_ONCE([BPERF_SETUP_PRECOMPILED_HEADERS],
250[
251
252  ###############################################################################
253  #
254  # Can the C/C++ compiler use precompiled headers?
255  #
256  AC_ARG_ENABLE([precompiled-headers], [AS_HELP_STRING([--disable-precompiled-headers],
257      [disable using precompiled headers when compiling C++ @<:@enabled@:>@])],
258      [ENABLE_PRECOMPH=${enable_precompiled_headers}], [ENABLE_PRECOMPH=yes])
259
260  USE_PRECOMPILED_HEADER=1
261  if test "x$ENABLE_PRECOMPH" = xno; then
262    USE_PRECOMPILED_HEADER=0
263  fi
264
265  if test "x$ENABLE_PRECOMPH" = xyes; then
266    # Check that the compiler actually supports precomp headers.
267    if test "x$TOOLCHAIN_TYPE" = xgcc; then
268      AC_MSG_CHECKING([that precompiled headers work])
269      echo "int alfa();" > conftest.h
270      $CXX -x c++-header conftest.h -o conftest.hpp.gch 2>&AS_MESSAGE_LOG_FD >&AS_MESSAGE_LOG_FD
271      if test ! -f conftest.hpp.gch; then
272        USE_PRECOMPILED_HEADER=0
273        AC_MSG_RESULT([no])
274      else
275        AC_MSG_RESULT([yes])
276      fi
277      rm -f conftest.h conftest.hpp.gch
278    fi
279  fi
280
281  AC_SUBST(USE_PRECOMPILED_HEADER)
282])
283
284
285AC_DEFUN_ONCE([BPERF_SETUP_SMART_JAVAC],
286[
287  AC_ARG_WITH(sjavac-server-java, [AS_HELP_STRING([--with-sjavac-server-java],
288      [use this java binary for running the sjavac background server @<:@Boot JDK java@:>@])])
289
290  if test "x$with_sjavac_server_java" != x; then
291    SJAVAC_SERVER_JAVA="$with_sjavac_server_java"
292    FOUND_VERSION=`$SJAVAC_SERVER_JAVA -version 2>&1 | grep " version \""`
293    if test "x$FOUND_VERSION" = x; then
294      AC_MSG_ERROR([Could not execute server java: $SJAVAC_SERVER_JAVA])
295    fi
296  else
297    SJAVAC_SERVER_JAVA="$JAVA"
298  fi
299  AC_SUBST(SJAVAC_SERVER_JAVA)
300
301  if test "$MEMORY_SIZE" -gt "3000"; then
302    ADD_JVM_ARG_IF_OK([-d64],SJAVAC_SERVER_JAVA_FLAGS,[$SJAVAC_SERVER_JAVA])
303    if test "$JVM_ARG_OK" = true; then
304      JVM_64BIT=true
305      JVM_ARG_OK=false
306    fi
307  fi
308
309  MX_VALUE=`expr $MEMORY_SIZE / 2`
310  if test "$JVM_64BIT" = true; then
311    # Set ms lower than mx since more than one instance of the server might
312    # get launched at the same time before they figure out which instance won.
313    MS_VALUE=512
314    if test "$MX_VALUE" -gt "2048"; then
315      MX_VALUE=2048
316    fi
317  else
318    MS_VALUE=256
319    if test "$MX_VALUE" -gt "1500"; then
320      MX_VALUE=1500
321    fi
322  fi
323  if test "$MX_VALUE" -lt "512"; then
324    MX_VALUE=512
325  fi
326  ADD_JVM_ARG_IF_OK([-Xms${MS_VALUE}M -Xmx${MX_VALUE}M],SJAVAC_SERVER_JAVA_FLAGS,[$SJAVAC_SERVER_JAVA])
327  AC_SUBST(SJAVAC_SERVER_JAVA_FLAGS)
328
329  AC_ARG_ENABLE([sjavac], [AS_HELP_STRING([--enable-sjavac],
330      [use sjavac to do fast incremental compiles @<:@disabled@:>@])],
331      [ENABLE_SJAVAC="${enableval}"], [ENABLE_SJAVAC="no"])
332  if test "x$JVM_ARG_OK" = "xfalse"; then
333    AC_MSG_WARN([Could not set -Xms${MS_VALUE}M -Xmx${MX_VALUE}M, disabling sjavac])
334    ENABLE_SJAVAC="no"
335  fi
336  AC_MSG_CHECKING([whether to use sjavac])
337  AC_MSG_RESULT([$ENABLE_SJAVAC])
338  AC_SUBST(ENABLE_SJAVAC)
339
340  AC_ARG_ENABLE([javac-server], [AS_HELP_STRING([--enable-javac-server],
341      [use only the server part of sjavac for faster javac compiles @<:@disabled@:>@])],
342      [ENABLE_JAVAC_SERVER="${enableval}"], [ENABLE_JAVAC_SERVER="no"])
343  if test "x$JVM_ARG_OK" = "xfalse"; then
344    AC_MSG_WARN([Could not set -Xms${MS_VALUE}M -Xmx${MX_VALUE}M, disabling javac server])
345    ENABLE_JAVAC_SERVER="no"
346  fi
347  AC_MSG_CHECKING([whether to use javac server])
348  AC_MSG_RESULT([$ENABLE_JAVAC_SERVER])
349  AC_SUBST(ENABLE_JAVAC_SERVER)
350
351  if test "x$ENABLE_JAVAC_SERVER" = "xyes" || "x$ENABLE_SJAVAC" = "xyes"; then
352    # When using a server javac, the small client instances do not need much
353    # resources.
354    JAVA_FLAGS_JAVAC="$JAVA_FLAGS_SMALL"
355  fi
356])
357