comparison src/share/vm/compiler/compilerOracle.hpp @ 6150:1e76463170b3

7110720: Issue with vm config file loadingIssue with vm config file loading Summary: disabling default config files if -XX:-ReadDefaultConfigFiles Reviewed-by: phh, jrose, dcubed, dholmes
author kamg
date Thu, 29 Mar 2012 18:55:32 -0400
parents 1d1603768966
children 14b356bbca27
comparison
equal deleted inserted replaced
4813:e850d8e7ea54 6150:1e76463170b3
1 /* 1 /*
2 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 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 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
34 class CompilerOracle : AllStatic { 34 class CompilerOracle : AllStatic {
35 private: 35 private:
36 static bool _quiet; 36 static bool _quiet;
37 37
38 public: 38 public:
39
40 // True if the command file has been specified or is implicit
41 static bool has_command_file();
42
39 // Reads from file and adds to lists 43 // Reads from file and adds to lists
40 static void parse_from_file(); 44 static void parse_from_file();
41 45
42 // Tells whether we to exclude compilation of method 46 // Tells whether we to exclude compilation of method
43 static bool should_exclude(methodHandle method, bool& quietly); 47 static bool should_exclude(methodHandle method, bool& quietly);