jdk

Форк
0
/
build-performance.m4 
391 строка · 14.2 Кб
1
#
2
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
#
5
# This code is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License version 2 only, as
7
# published by the Free Software Foundation.  Oracle designates this
8
# particular file as subject to the "Classpath" exception as provided
9
# by Oracle in the LICENSE file that accompanied this code.
10
#
11
# This code is distributed in the hope that it will be useful, but WITHOUT
12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14
# version 2 for more details (a copy is included in the LICENSE file that
15
# accompanied this code).
16
#
17
# You should have received a copy of the GNU General Public License version
18
# 2 along with this work; if not, write to the Free Software Foundation,
19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
#
21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
# or visit www.oracle.com if you need additional information or have any
23
# questions.
24
#
25

26
AC_DEFUN([BPERF_CHECK_CORES],
27
[
28
  AC_MSG_CHECKING([for number of cores])
29

30
  if test -f /proc/cpuinfo; then
31
    # Looks like a Linux (or cygwin) system
32
    NUM_CORES=`cat /proc/cpuinfo  | grep -cw processor`
33
    if test "$NUM_CORES" -eq "0"; then
34
      NUM_CORES=`cat /proc/cpuinfo  | grep -c ^CPU`
35
    fi
36
  elif test -x /usr/sbin/sysctl; then
37
    # Looks like a MacOSX system
38
    NUM_CORES=`/usr/sbin/sysctl -n hw.ncpu`
39
  elif test "x$OPENJDK_BUILD_OS" = xaix ; then
40
    NUM_CORES=`lparstat -m 2> /dev/null | $GREP -o "lcpu=[[0-9]]*" | $CUT -d "=" -f 2`
41
  elif test -n "$NUMBER_OF_PROCESSORS"; then
42
    # On windows, look in the env
43
    NUM_CORES=$NUMBER_OF_PROCESSORS
44
  fi
45

46
  if test "$NUM_CORES" -eq "0"; then
47
    NUM_CORES=1
48
    AC_MSG_RESULT([could not detect number of cores, defaulting to 1])
49
    AC_MSG_WARN([This will disable all parallelism from build!])
50
  else
51
    AC_MSG_RESULT([$NUM_CORES])
52
  fi
53
])
54

55
AC_DEFUN([BPERF_CHECK_MEMORY_SIZE],
56
[
57
  AC_MSG_CHECKING([for memory size])
58
  # Default to 1024 MB
59
  MEMORY_SIZE=1024
60
  FOUND_MEM=no
61

62
  if test -f /proc/meminfo; then
63
    # Looks like a Linux (or cygwin) system
64
    MEMORY_SIZE=`cat /proc/meminfo | grep MemTotal | awk '{print [$]2}'`
65
    MEMORY_SIZE=`expr $MEMORY_SIZE / 1024`
66
    FOUND_MEM=yes
67
  elif test -x /usr/sbin/prtconf; then
68
    # Looks like an AIX system
69
    MEMORY_SIZE=`/usr/sbin/prtconf 2> /dev/null | grep "^Memory [[Ss]]ize" | awk '{ print [$]3 }'`
70
    FOUND_MEM=yes
71
  elif test -x /usr/sbin/sysctl; then
72
    # Looks like a MacOSX system
73
    MEMORY_SIZE=`/usr/sbin/sysctl -n hw.memsize`
74
    MEMORY_SIZE=`expr $MEMORY_SIZE / 1024 / 1024`
75
    FOUND_MEM=yes
76
  elif test "x$OPENJDK_BUILD_OS" = xwindows; then
77
    # Windows, but without cygwin
78
    MEMORY_SIZE=`wmic computersystem get totalphysicalmemory -value | grep = | cut -d "=" -f 2-`
79
    MEMORY_SIZE=`expr $MEMORY_SIZE / 1024 / 1024`
80
    FOUND_MEM=yes
81
  fi
82

83
  if test "x$FOUND_MEM" = xyes; then
84
    AC_MSG_RESULT([$MEMORY_SIZE MB])
85
  else
86
    AC_MSG_RESULT([could not detect memory size, defaulting to $MEMORY_SIZE MB])
87
    AC_MSG_WARN([This might seriously impact build performance!])
88
  fi
89
])
90

91
AC_DEFUN_ONCE([BPERF_SETUP_BUILD_CORES],
92
[
93
  # How many cores do we have on this build system?
94
  AC_ARG_WITH(num-cores, [AS_HELP_STRING([--with-num-cores],
95
      [number of cores in the build system, e.g. --with-num-cores=8 @<:@probed@:>@])])
96
  if test "x$with_num_cores" = x; then
97
    # The number of cores were not specified, try to probe them.
98
    BPERF_CHECK_CORES
99
  else
100
    NUM_CORES=$with_num_cores
101
  fi
102
  AC_SUBST(NUM_CORES)
103
])
104

105
AC_DEFUN_ONCE([BPERF_SETUP_BUILD_MEMORY],
106
[
107
  # How much memory do we have on this build system?
108
  AC_ARG_WITH(memory-size, [AS_HELP_STRING([--with-memory-size],
109
      [memory (in MB) available in the build system, e.g. --with-memory-size=1024 @<:@probed@:>@])])
110
  if test "x$with_memory_size" = x; then
111
    # The memory size was not specified, try to probe it.
112
    BPERF_CHECK_MEMORY_SIZE
113
  else
114
    MEMORY_SIZE=$with_memory_size
115
  fi
116
  AC_SUBST(MEMORY_SIZE)
117
])
118

119
AC_DEFUN_ONCE([BPERF_SETUP_BUILD_JOBS],
120
[
121
  # Provide a decent default number of parallel jobs for make depending on
122
  # number of cores, amount of memory and machine architecture.
123
  AC_ARG_WITH(jobs, [AS_HELP_STRING([--with-jobs],
124
      [number of parallel jobs to let make run @<:@calculated based on cores and memory@:>@])])
125
  if test "x$with_jobs" = x; then
126
    # Number of jobs was not specified, calculate.
127
    AC_MSG_CHECKING([for appropriate number of jobs to run in parallel])
128
    # Approximate memory in GB.
129
    memory_gb=`expr $MEMORY_SIZE / 1024`
130
    # Pick the lowest of memory in gb and number of cores.
131
    if test "$memory_gb" -lt "$NUM_CORES"; then
132
      JOBS="$memory_gb"
133
    else
134
      JOBS="$NUM_CORES"
135
    fi
136
    if test "$JOBS" -eq "0"; then
137
      JOBS=1
138
    fi
139
    AC_MSG_RESULT([$JOBS])
140
  else
141
    JOBS=$with_jobs
142
  fi
143
  AC_SUBST(JOBS)
144
])
145

146
AC_DEFUN_ONCE([BPERF_SETUP_TEST_JOBS],
147
[
148
  # The number of test jobs will be chosen automatically if TEST_JOBS is 0
149
  AC_ARG_WITH(test-jobs, [AS_HELP_STRING([--with-test-jobs],
150
      [number of parallel tests jobs to run @<:@based on build jobs@:>@])])
151
  if test "x$with_test_jobs" = x; then
152
      TEST_JOBS=0
153
  else
154
      TEST_JOBS=$with_test_jobs
155
  fi
156
  AC_SUBST(TEST_JOBS)
157
])
158

159
AC_DEFUN([BPERF_SETUP_CCACHE],
160
[
161
  # Check if ccache is available
162
  CCACHE_AVAILABLE=true
163

164
  OLD_PATH="$PATH"
165
  if test "x$TOOLCHAIN_PATH" != x; then
166
    PATH=$TOOLCHAIN_PATH:$PATH
167
  fi
168
  UTIL_LOOKUP_PROGS(CCACHE, ccache)
169
  PATH="$OLD_PATH"
170

171
  AC_MSG_CHECKING([if ccache is available])
172
  if test "x$TOOLCHAIN_TYPE" != "xgcc" && test "x$TOOLCHAIN_TYPE" != "xclang"; then
173
    AC_MSG_RESULT([no, not supported for toolchain type $TOOLCHAIN_TYPE])
174
    CCACHE_AVAILABLE=false
175
  elif test "x$CCACHE" = "x"; then
176
    AC_MSG_RESULT([no, ccache binary missing or not executable])
177
    CCACHE_AVAILABLE=false
178
  else
179
    AC_MSG_RESULT([yes])
180
  fi
181

182
  CCACHE_STATUS=""
183
  UTIL_ARG_ENABLE(NAME: ccache, DEFAULT: false, AVAILABLE: $CCACHE_AVAILABLE,
184
      DESC: [enable using ccache to speed up recompilations],
185
      CHECKING_MSG: [if ccache is enabled],
186
      IF_ENABLED: [
187
        CCACHE_VERSION=[`$CCACHE --version | head -n1 | $SED 's/[A-Za-z ]*//'`]
188
        CCACHE_STATUS="Active ($CCACHE_VERSION)"
189
      ],
190
      IF_DISABLED: [
191
        CCACHE=""
192
      ])
193
  AC_SUBST(CCACHE)
194

195
  AC_ARG_WITH([ccache-dir],
196
      [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

213
AC_DEFUN([BPERF_SETUP_CCACHE_USAGE],
214
[
215
  if test "x$CCACHE" != x; then
216
    if test "x$OPENJDK_BUILD_OS" = "xmacosx"; then
217
      HAS_BAD_CCACHE=[`$ECHO $CCACHE_VERSION | \
218
          $GREP -e '^1\.' -e '^2\.' -e '^3\.0\.' -e '^3\.1\.'`]
219
      if test "x$HAS_BAD_CCACHE" != "x"; then
220
        AC_MSG_ERROR([On macosx, ccache 3.2 or later is required, found $CCACHE_VERSION])
221
      fi
222
    fi
223
    if test "x$USE_PRECOMPILED_HEADER" = "xtrue"; then
224
      HAS_BAD_CCACHE=[`$ECHO $CCACHE_VERSION | \
225
          $GREP -e '^1.*' -e '^2.*' -e '^3\.0.*' -e '^3\.1\.[0123]$'`]
226
      if test "x$HAS_BAD_CCACHE" != "x"; then
227
        AC_MSG_ERROR([Precompiled headers requires ccache 3.1.4 or later, found $CCACHE_VERSION])
228
      fi
229
      AC_MSG_CHECKING([if C-compiler supports ccache precompiled headers])
230
      CCACHE_PRECOMP_FLAG="-fpch-preprocess"
231
      PUSHED_FLAGS="$CXXFLAGS"
232
      CXXFLAGS="$CCACHE_PRECOMP_FLAG $CXXFLAGS"
233
      AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [CC_KNOWS_CCACHE_TRICK=yes], [CC_KNOWS_CCACHE_TRICK=no])
234
      CXXFLAGS="$PUSHED_FLAGS"
235
      if test "x$CC_KNOWS_CCACHE_TRICK" = xyes; then
236
        AC_MSG_RESULT([yes])
237
        CFLAGS_CCACHE="$CCACHE_PRECOMP_FLAG"
238
        AC_SUBST(CFLAGS_CCACHE)
239
        CCACHE_SLOPPINESS=pch_defines,time_macros
240
      else
241
        AC_MSG_RESULT([no])
242
        AC_MSG_ERROR([Cannot use ccache with precompiled headers without compiler support for $CCACHE_PRECOMP_FLAG])
243
      fi
244
    fi
245

246
    # The CCACHE_BASEDIR needs to end with '/' as ccache will otherwise think
247
    # directories next to it, that have the base dir name as a prefix, are sub
248
    # directories of CCACHE_BASEDIR.
249
    CCACHE="CCACHE_COMPRESS=1 $SET_CCACHE_DIR \
250
        CCACHE_SLOPPINESS=$CCACHE_SLOPPINESS CCACHE_BASEDIR=$WORKSPACE_ROOT/ $CCACHE"
251

252
    if test "x$SET_CCACHE_DIR" != x; then
253
      mkdir -p $CCACHE_DIR > /dev/null 2>&1
254
      chmod a+rwxs $CCACHE_DIR > /dev/null 2>&1
255
    fi
256
  fi
257
])
258

259
################################################################################
260
#
261
# Runs icecc-create-env once and prints the error if it fails
262
#
263
# $1: arguments to icecc-create-env
264
# $2: log file
265
#
266
AC_DEFUN([BPERF_RUN_ICECC_CREATE_ENV],
267
[
268
  ( cd ${CONFIGURESUPPORT_OUTPUTDIR}/icecc \
269
      && ${ICECC_CREATE_ENV} $1 > $2 2>&1 )
270
  if test "$?" != "0"; then
271
    AC_MSG_NOTICE([icecc-create-env output:])
272
    cat $2
273
    AC_MSG_ERROR([Failed to create icecc compiler environment])
274
  fi
275
])
276

277
################################################################################
278
#
279
# Optionally enable distributed compilation of native code using icecc/icecream
280
#
281
AC_DEFUN([BPERF_SETUP_ICECC],
282
[
283
  UTIL_ARG_ENABLE(NAME: icecc, DEFAULT: false, RESULT: ENABLE_ICECC,
284
      DESC: [enable distributed compilation of native code using icecc/icecream])
285

286
  if test "x$ENABLE_ICECC" = "xtrue"; then
287
    UTIL_REQUIRE_PROGS(ICECC_CMD, icecc)
288
    old_path="$PATH"
289

290
    # Look for icecc-create-env in some known places
291
    PATH="$PATH:/usr/lib/icecc:/usr/lib64/icecc"
292
    UTIL_REQUIRE_PROGS(ICECC_CREATE_ENV, icecc-create-env)
293
    # Use icecc-create-env to create a minimal compilation environment that can
294
    # be sent to the other hosts in the icecream cluster.
295
    icecc_create_env_log="${CONFIGURESUPPORT_OUTPUTDIR}/icecc/icecc_create_env.log"
296
    ${MKDIR} -p ${CONFIGURESUPPORT_OUTPUTDIR}/icecc
297
    # Older versions of icecc does not have the --gcc parameter
298
    if ${ICECC_CREATE_ENV} | $GREP -q -e --gcc; then
299
      icecc_gcc_arg="--gcc"
300
    fi
301
    if test "x${TOOLCHAIN_TYPE}" = "xgcc"; then
302
      BPERF_RUN_ICECC_CREATE_ENV([${icecc_gcc_arg} ${CC} ${CXX}], \
303
          ${icecc_create_env_log})
304
    elif test "x$TOOLCHAIN_TYPE" = "xclang"; then
305
      # For clang, the icecc compilerwrapper is needed. It usually resides next
306
      # to icecc-create-env.
307
      UTIL_REQUIRE_PROGS(ICECC_WRAPPER, compilerwrapper)
308
      BPERF_RUN_ICECC_CREATE_ENV([--clang ${CC} ${ICECC_WRAPPER}], ${icecc_create_env_log})
309
    else
310
      AC_MSG_ERROR([Can only create icecc compiler packages for toolchain types gcc and clang])
311
    fi
312
    PATH="$old_path"
313
    # The bundle with the compiler gets a name based on checksums. Parse log file
314
    # to find it.
315
    ICECC_ENV_BUNDLE_BASENAME="`${SED} -n '/^creating/s/creating //p' ${icecc_create_env_log}`"
316
    ICECC_ENV_BUNDLE="${CONFIGURESUPPORT_OUTPUTDIR}/icecc/${ICECC_ENV_BUNDLE_BASENAME}"
317
    if test ! -f ${ICECC_ENV_BUNDLE}; then
318
      AC_MSG_ERROR([icecc-create-env did not produce an environment ${ICECC_ENV_BUNDLE}])
319
    fi
320
    AC_MSG_CHECKING([for icecc build environment for target compiler])
321
    AC_MSG_RESULT([${ICECC_ENV_BUNDLE}])
322
    ICECC="ICECC_VERSION=${ICECC_ENV_BUNDLE} ICECC_CC=${CC} ICECC_CXX=${CXX} ${ICECC_CMD}"
323

324
    if test "x${COMPILE_TYPE}" = "xcross"; then
325
      # If cross compiling, create a separate env package for the build compiler
326
      # Assume "gcc" or "cc" is gcc and "clang" is clang. Otherwise bail.
327
      icecc_create_env_log_build="${CONFIGURESUPPORT_OUTPUTDIR}/icecc/icecc_create_env_build.log"
328
      if test "x${BUILD_CC##*/}" = "xgcc" ||  test "x${BUILD_CC##*/}" = "xcc"; then
329
        BPERF_RUN_ICECC_CREATE_ENV([${icecc_gcc_arg} ${BUILD_CC} ${BUILD_CXX}], \
330
            ${icecc_create_env_log_build})
331
      elif test "x${BUILD_CC##*/}" = "xclang"; then
332
        BPERF_RUN_ICECC_CREATE_ENV([--clang ${BUILD_CC} ${ICECC_WRAPPER}], ${icecc_create_env_log_build})
333
      else
334
        AC_MSG_ERROR([Cannot create icecc compiler package for ${BUILD_CC}])
335
      fi
336
      ICECC_ENV_BUNDLE_BASENAME="`${SED} -n '/^creating/s/creating //p' ${icecc_create_env_log_build}`"
337
      ICECC_ENV_BUNDLE="${CONFIGURESUPPORT_OUTPUTDIR}/icecc/${ICECC_ENV_BUNDLE_BASENAME}"
338
      if test ! -f ${ICECC_ENV_BUNDLE}; then
339
        AC_MSG_ERROR([icecc-create-env did not produce an environment ${ICECC_ENV_BUNDLE}])
340
      fi
341
      AC_MSG_CHECKING([for icecc build environment for build compiler])
342
      AC_MSG_RESULT([${ICECC_ENV_BUNDLE}])
343
      BUILD_ICECC="ICECC_VERSION=${ICECC_ENV_BUNDLE} ICECC_CC=${BUILD_CC} \
344
          ICECC_CXX=${BUILD_CXX} ${ICECC_CMD}"
345
    else
346
      BUILD_ICECC="${ICECC}"
347
    fi
348
  fi
349

350
  AC_SUBST(ICECC)
351
  AC_SUBST(BUILD_ICECC)
352
])
353

354
AC_DEFUN_ONCE([BPERF_SETUP_PRECOMPILED_HEADERS],
355
[
356
  # Are precompiled headers available?
357
  PRECOMPILED_HEADERS_AVAILABLE=true
358
  AC_MSG_CHECKING([if precompiled headers are available])
359
  if test "x$ICECC" != "x"; then
360
    AC_MSG_RESULT([no, does not work effectively with icecc])
361
    PRECOMPILED_HEADERS_AVAILABLE=false
362
  elif test "x$TOOLCHAIN_TYPE" = xgcc; then
363
    # Check that the compiler actually supports precomp headers.
364
    echo "int alfa();" > conftest.h
365
    $CXX -x c++-header conftest.h -o conftest.hpp.gch 2>&AS_MESSAGE_LOG_FD >&AS_MESSAGE_LOG_FD
366
    if test ! -f conftest.hpp.gch; then
367
      PRECOMPILED_HEADERS_AVAILABLE=false
368
      AC_MSG_RESULT([no, gcc fails to compile properly with -x c++-header])
369
    else
370
      AC_MSG_RESULT([yes])
371
    fi
372
    $RM conftest.h conftest.hpp.gch
373
  else
374
    AC_MSG_RESULT([yes])
375
  fi
376

377
  UTIL_ARG_ENABLE(NAME: precompiled-headers, DEFAULT: auto,
378
      RESULT: USE_PRECOMPILED_HEADER, AVAILABLE: $PRECOMPILED_HEADERS_AVAILABLE,
379
      DESC: [enable using precompiled headers when compiling C++])
380
  AC_SUBST(USE_PRECOMPILED_HEADER)
381
])
382

383

384
AC_DEFUN_ONCE([BPERF_SETUP_JAVAC_SERVER],
385
[
386
  UTIL_ARG_ENABLE(NAME: javac-server, DEFAULT: true,
387
      RESULT: ENABLE_JAVAC_SERVER,
388
      DESC: [enable javac server],
389
      CHECKING_MSG: [whether to use javac server])
390
  AC_SUBST(ENABLE_JAVAC_SERVER)
391
])
392

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.