hotspot/src/share/vm/compiler/compilerOracle.hpp
author neliasso
Wed, 16 Dec 2015 15:39:11 +0100
changeset 35130 223598d44a8b
parent 33626 3c94db05e903
permissions -rw-r--r--
8145345: LogCompilation output is empty after JEP165: Compiler Control Summary: Fix default init and compilecommand update Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
     2
 * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_COMPILER_COMPILERORACLE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_COMPILER_COMPILERORACLE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/oopsHierarchy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// CompilerOracle is an interface for turning on and off compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// for some methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class CompilerOracle : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  static bool _quiet;
28496
f9753412d4f5 8027829: CompileCommand does not accept all JLS-conformant class/method names
neliasso
parents: 26430
diff changeset
    37
  static void print_tip();
33069
d8eed614f298 8135068: Extract method matchers from CompilerOracle
neliasso
parents: 28496
diff changeset
    38
  static void print_parse_error(const char*&  error_msg, char* original_line);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 public:
12981
b557c10f5444 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 8921
diff changeset
    41
b557c10f5444 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 8921
diff changeset
    42
  // True if the command file has been specified or is implicit
b557c10f5444 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 8921
diff changeset
    43
  static bool has_command_file();
b557c10f5444 7110720: Issue with vm config file loadingIssue with vm config file loading
kamg
parents: 8921
diff changeset
    44
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // Reads from file and adds to lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static void parse_from_file();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // Tells whether we to exclude compilation of method
33626
jwilhelm
parents: 33593 33451
diff changeset
    49
  static bool should_exclude(const methodHandle& method);
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33069
diff changeset
    50
  static bool should_exclude_quietly() { return _quiet; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // Tells whether we want to inline this method
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
    53
  static bool should_inline(const methodHandle& method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Tells whether we want to disallow inlining of this method
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
    56
  static bool should_not_inline(const methodHandle& method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // Tells whether we should print the assembly for this method
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
    59
  static bool should_print(const methodHandle& method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Tells whether we should log the compilation data for this method
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
    62
  static bool should_log(const methodHandle& method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Tells whether to break when compiling method
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
    65
  static bool should_break_at(const methodHandle& method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // Check to see if this method has option set for it
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
    68
  static bool has_option_string(const methodHandle& method, const char * option);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
26430
7f20c536cd5b 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 24658
diff changeset
    70
  // Check if method has option and value set. If yes, overwrite value and return true,
7f20c536cd5b 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 24658
diff changeset
    71
  // otherwise leave value unchanged and return false.
7f20c536cd5b 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 24658
diff changeset
    72
  template<typename T>
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
    73
  static bool has_option_value(const methodHandle& method, const char* option, T& value);
26430
7f20c536cd5b 8055286: Extend CompileCommand=option to handle numeric parameters
zmajo
parents: 24658
diff changeset
    74
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33069
diff changeset
    75
  // Fast check if there is any option available that compile control needs to know about
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33069
diff changeset
    76
  static bool has_any_option();
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33069
diff changeset
    77
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Reads from string instead of file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static void parse_from_string(const char* command_string, void (*parser)(char*));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static void parse_from_line(char* line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static void parse_compile_only(char * line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // For updating the oracle file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static void append_comment_to_file(const char* message);
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33069
diff changeset
    86
  static void append_exclude_to_file(const methodHandle& method);
24658
e41df2fc6e87 8042727: nsk/jdb/unwatch/unwatch001 crash in InstanceKlass::methods_do(void (*)(Method*))
coleenp
parents: 12981
diff changeset
    87
e41df2fc6e87 8042727: nsk/jdb/unwatch/unwatch001 crash in InstanceKlass::methods_do(void (*)(Method*))
coleenp
parents: 12981
diff changeset
    88
  // Tells whether there are any methods to print for print_method_statistics()
e41df2fc6e87 8042727: nsk/jdb/unwatch/unwatch001 crash in InstanceKlass::methods_do(void (*)(Method*))
coleenp
parents: 12981
diff changeset
    89
  static bool should_print_methods();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    91
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    92
#endif // SHARE_VM_COMPILER_COMPILERORACLE_HPP