hotspot/src/share/vm/compiler/abstractCompiler.hpp
author anoll
Fri, 25 Oct 2013 22:57:13 +0200
changeset 21204 1c993523cf85
parent 20707 b3b658c6d1f8
child 22234 da823d78ad65
permissions -rw-r--r--
8026949: -Xint flag prints wrong warning: Initialization of C1 thread failed (no space to run compilers) Summary: Exit compiler threads early during startup so that wrong error message is not printed Reviewed-by: iveresov, twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 13195
diff changeset
     2
 * Copyright (c) 1999, 2012, 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: 6187
diff changeset
    25
#ifndef SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    26
#define SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    28
#include "ci/compilerInterface.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    29
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    30
class AbstractCompiler : public CHeapObj<mtCompiler> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
 private:
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    32
  volatile int _num_compiler_threads;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 protected:
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    35
  volatile int _compiler_state;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // Used for tracking global state of compiler runtime initialization
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    37
  enum { uninitialized, initializing, initialized, failed, shut_down };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    39
  // This method returns true for the first compiler thread that reaches that methods.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    40
  // This thread will initialize the compiler runtime.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    41
  bool should_perform_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
 public:
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    44
  AbstractCompiler() : _compiler_state(uninitialized), _num_compiler_threads(0) {}
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    45
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    46
  // This function determines the compiler thread that will perform the
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    47
  // shutdown of the corresponding compiler runtime.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    48
  bool should_perform_shutdown();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Name of this compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  virtual const char* name() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // Missing feature tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  virtual bool supports_native()                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  virtual bool supports_osr   ()                 { return true; }
15207
86fd7c602ddf 8005820: Shark: enable JSR292 support
twisti
parents: 13963
diff changeset
    56
  virtual bool can_compile_method(methodHandle method)  { return true; }
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    57
#if defined(TIERED) || ( !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  virtual bool is_c1   ()                        { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  virtual bool is_c2   ()                        { return false; }
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    60
  virtual bool is_shark()                        { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#ifdef COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  bool is_c1   ()                                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  bool is_c2   ()                                { return false; }
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    65
  bool is_shark()                                { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
#endif // COMPILER1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  bool is_c1   ()                                { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  bool is_c2   ()                                { return true; }
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    70
  bool is_shark()                                { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
#endif // COMPILER2
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    72
#ifdef SHARK
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    73
  bool is_c1   ()                                { return false; }
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    74
  bool is_c2   ()                                { return false; }
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    75
  bool is_shark()                                { return true; }
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 5547
diff changeset
    76
#endif // SHARK
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Customization
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    80
  virtual void initialize () = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    82
  void set_num_compiler_threads(int num) { _num_compiler_threads = num;  }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    83
  int num_compiler_threads()             { return _num_compiler_threads; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    85
  // Get/set state of compiler objects
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    86
  bool is_initialized()           { return _compiler_state == initialized; }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    87
  bool is_failed     ()           { return _compiler_state == failed;}
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    88
  void set_state     (int state);
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    89
  void set_shut_down ()           { set_state(shut_down); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Compilation entry point for methods
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    91
  virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Print compilation timers and statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  virtual void print_timers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   101
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   102
#endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP