author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 47103 | hotspot/src/share/vm/runtime/arguments_ext.hpp@a993ec29ec75 |
child 48138 | 78b2ecdd3c4b |
permissions | -rw-r--r-- |
26838 | 1 |
/* |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
29696
diff
changeset
|
2 |
* Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved. |
26838 | 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. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#ifndef SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP |
|
26 |
#define SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP |
|
27 |
||
28 |
#include "memory/allocation.hpp" |
|
29 |
#include "runtime/arguments.hpp" |
|
30 |
||
31 |
class ArgumentsExt: AllStatic { |
|
32 |
public: |
|
27892
06a143c836ad
8065305: Make it possible to extend the G1CollectorPolicy
jwilhelm
parents:
27244
diff
changeset
|
33 |
static inline void set_gc_specific_flags(); |
27244
a2bd9d3112d4
8060256: The loop in Arguments::parse() can be enhanced.
jiangli
parents:
27166
diff
changeset
|
34 |
// The argument processing extension. Returns true if there is |
a2bd9d3112d4
8060256: The loop in Arguments::parse() can be enhanced.
jiangli
parents:
27166
diff
changeset
|
35 |
// no additional parsing needed in Arguments::parse() for the option. |
a2bd9d3112d4
8060256: The loop in Arguments::parse() can be enhanced.
jiangli
parents:
27166
diff
changeset
|
36 |
// Otherwise returns false. |
a2bd9d3112d4
8060256: The loop in Arguments::parse() can be enhanced.
jiangli
parents:
27166
diff
changeset
|
37 |
static inline bool process_options(const JavaVMOption *option) { return false; } |
28838
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
27892
diff
changeset
|
38 |
static inline void report_unsupported_options() { } |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
29696
diff
changeset
|
39 |
static inline bool using_AppCDS() { return false; } |
26838 | 40 |
}; |
41 |
||
27892
06a143c836ad
8065305: Make it possible to extend the G1CollectorPolicy
jwilhelm
parents:
27244
diff
changeset
|
42 |
void ArgumentsExt::set_gc_specific_flags() { |
06a143c836ad
8065305: Make it possible to extend the G1CollectorPolicy
jwilhelm
parents:
27244
diff
changeset
|
43 |
Arguments::set_gc_specific_flags(); |
26838 | 44 |
} |
45 |
||
46 |
#endif // SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP |