hotspot/src/share/vm/compiler/abstractCompiler.hpp
author zmajo
Tue, 28 Jul 2015 19:20:42 +0200
changeset 31962 d05e0a4d1b43
parent 22236 44508442b8da
child 32085 d869c505b624
permissions -rw-r--r--
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics Summary: Add a new method, sun.hotspot.WhiteBox.isIntrinsicAvailable, that can be used to determine if an intrinsic is available. Reviewed-by: kvn, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
     2
 * Copyright (c) 1999, 2014, 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
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    43
  // The (closed set) of concrete compiler classes.
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    44
  enum Type {
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    45
    none,
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    46
    c1,
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    47
    c2,
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    48
    shark
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    49
  };
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    50
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    51
 private:
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    52
  Type _type;
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    53
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 public:
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    55
  AbstractCompiler(Type type) : _type(type), _compiler_state(uninitialized), _num_compiler_threads(0) {}
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    56
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    57
  // This function determines the compiler thread that will perform the
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    58
  // shutdown of the corresponding compiler runtime.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    59
  bool should_perform_shutdown();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Name of this compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  virtual const char* name() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Missing feature tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual bool supports_native()                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  virtual bool supports_osr   ()                 { return true; }
15207
86fd7c602ddf 8005820: Shark: enable JSR292 support
twisti
parents: 13963
diff changeset
    67
  virtual bool can_compile_method(methodHandle method)  { return true; }
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    68
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    69
  // Determine if the current compiler provides an intrinsic
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    70
  // for method 'method'. An intrinsic is available if:
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    71
  //  - the intrinsic is enabled (by using the appropriate command-line flag) and
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    72
  //  - the platform on which the VM is running supports the intrinsic
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    73
  //    (i.e., the platform provides the instructions necessary for the compiler
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    74
  //    to generate the intrinsic code).
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    75
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    76
  // The second parameter, 'compilation_context', is needed to implement functionality
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    77
  // related to the DisableIntrinsic command-line flag. The DisableIntrinsic flag can
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    78
  // be used to prohibit the C2 compiler (but not the C1 compiler) to use an intrinsic.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    79
  // There are three ways to disable an intrinsic using the DisableIntrinsic flag:
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    80
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    81
  // (1) -XX:DisableIntrinsic=_hashCode,_getClass
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    82
  //     Disables intrinsification of _hashCode and _getClass globally
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    83
  //     (i.e., the intrinsified version the methods will not be used at all).
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    84
  // (2) -XX:CompileCommand=option,aClass::aMethod,ccstr,DisableIntrinsic,_hashCode
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    85
  //     Disables intrinsification of _hashCode if it is called from
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    86
  //     aClass::aMethod (but not for any other call site of _hashCode)
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    87
  // (3) -XX:CompileCommand=option,java.lang.ref.Reference::get,ccstr,DisableIntrinsic,_Reference_get
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    88
  //     Some methods are not compiled by C2. Instead, the C2 compiler
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    89
  //     returns directly the intrinsified version of these methods.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    90
  //     The command above forces C2 to compile _Reference_get, but
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    91
  //     allows using the intrinsified version of _Reference_get at all
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    92
  //     other call sites.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    93
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    94
  // From the modes above, (1) disable intrinsics globally, (2) and (3)
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    95
  // disable intrinsics on a per-method basis. In cases (2) and (3) the
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    96
  // compilation context is aClass::aMethod and java.lang.ref.Reference::get,
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    97
  // respectively.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    98
  virtual bool is_intrinsic_available(methodHandle method, methodHandle compilation_context) {
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
    99
    return false;
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   100
  }
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   101
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   102
  // Determines if an intrinsic is supported by the compiler, that is,
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   103
  // the compiler provides the instructions necessary to generate
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   104
  // the intrinsic code for method 'method'.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   105
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   106
  // The 'is_intrinsic_supported' method is a white list, that is,
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   107
  // by default no intrinsics are supported by a compiler except
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   108
  // the ones listed in the method. Overriding methods should conform
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   109
  // to this behavior.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   110
  virtual bool is_intrinsic_supported(methodHandle method) {
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   111
    return false;
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   112
  }
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   113
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   114
  // Implements compiler-specific processing of command-line flags.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   115
  // Processing of command-line flags common to all compilers is implemented
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   116
  // in vmIntrinsicss::is_disabled_by_flag.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   117
  virtual bool is_intrinsic_disabled_by_flag(methodHandle method) {
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   118
    return false;
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   119
  }
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   120
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   121
  // Compiler type queries.
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   122
  bool is_c1()                                   { return _type == c1; }
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   123
  bool is_c2()                                   { return _type == c2; }
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   124
  bool is_shark()                                { return _type == shark; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Customization
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   127
  virtual void initialize () = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   129
  void set_num_compiler_threads(int num) { _num_compiler_threads = num;  }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   130
  int num_compiler_threads()             { return _num_compiler_threads; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   132
  // Get/set state of compiler objects
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   133
  bool is_initialized()           { return _compiler_state == initialized; }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   134
  bool is_failed     ()           { return _compiler_state == failed;}
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   135
  void set_state     (int state);
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   136
  void set_shut_down ()           { set_state(shut_down); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // Compilation entry point for methods
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   138
  virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Print compilation timers and statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  virtual void print_timers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   148
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   149
#endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP