< prev index next >

src/hotspot/cpu/sparc/vm_version_sparc.cpp

Print this page
rev 52689 : 8213224: Move code related to GC threads calculation out of AdaptiveSizePolicy
Summary: Consolidate code related to GC threads calculation into a single class

*** 1,7 **** /* ! * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 519,535 **** } void VM_Version::revert() { _features = saved_features; } - - /* Determine a suitable number of threads on this particular machine. - * - * FIXME: Simply checking the processor family is insufficient. - */ - unsigned int VM_Version::calc_parallel_worker_threads() { - const int num = 5; - const int den = is_post_niagara() ? 16 : 8; - const int threshold = 8; - - return nof_parallel_worker_threads(num, den, threshold); - } --- 519,523 ----
< prev index next >