hotspot/src/share/vm/c1/c1_CodeStubs.hpp
author neliasso
Thu, 10 Nov 2016 18:08:31 +0100
changeset 42553 2aeb79d952f3
parent 38031 e0b822facc03
child 44738 11431bbc9549
child 46448 b5350a83520b
permissions -rw-r--r--
8167656: Unstable MethodHandle inlining causing huge performance variations Summary: Profile calls without a reciever Reviewed-by: jrose, vlivanov, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 28637
diff changeset
     2
 * Copyright (c) 1999, 2016, 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: 5046
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
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: 5046
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: 6453
diff changeset
    25
#ifndef SHARE_VM_C1_C1_CODESTUBS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#define SHARE_VM_C1_C1_CODESTUBS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "c1/c1_FrameMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "c1/c1_IR.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "c1/c1_Instruction.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "c1/c1_LIR.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "c1/c1_Runtime1.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24442
diff changeset
    33
#include "code/nativeInst.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "utilities/array.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    35
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class CodeEmitInfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class LIR_Assembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class LIR_OpVisitState;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// CodeStubs are little 'out-of-line' pieces of code that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// usually handle slow cases of operations. All code stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// are collected and code is emitted at the end of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// nmethod.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class CodeStub: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  Label _entry;                                  // label at the stub entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  Label _continuation;                           // label where stub continues, if any
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  CodeStub() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // code generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  void assert_no_unbound_labels()                { assert(!_entry.is_unbound() && !_continuation.is_unbound(), "unbound label"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  virtual void emit_code(LIR_Assembler* e) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  virtual CodeEmitInfo* info() const             { return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  virtual bool is_exception_throw_stub() const   { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  virtual bool is_range_check_stub() const       { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  virtual bool is_divbyzero_stub() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  virtual void print_name(outputStream* out) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // label access
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  Label* entry()                                 { return &_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  Label* continuation()                          { return &_continuation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // for LIR
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  virtual void visit(LIR_OpVisitState* visit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    if (LIRTracePeephole && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      tty->print("no visitor for ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      print_name(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 28637
diff changeset
    80
class CodeStubList: public GrowableArray<CodeStub*> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
 public:
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 28637
diff changeset
    82
  CodeStubList(): GrowableArray<CodeStub*>() {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  void append(CodeStub* stub) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    if (!contains(stub)) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 28637
diff changeset
    86
      GrowableArray<CodeStub*>::append(stub);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
class CounterOverflowStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  CodeEmitInfo* _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  int           _bci;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
    95
  LIR_Opr       _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
public:
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
    98
  CounterOverflowStub(CodeEmitInfo* info, int bci, LIR_Opr method) :  _info(info), _bci(bci), _method(method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    visitor->do_slow_case(_info);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
   105
    visitor->do_input(_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  virtual void print_name(outputStream* out) const { out->print("CounterOverflowStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
class ConversionStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  Bytecodes::Code _bytecode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  LIR_Opr         _input;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  LIR_Opr         _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  static float float_zero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  static double double_zero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  ConversionStub(Bytecodes::Code bytecode, LIR_Opr input, LIR_Opr result)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    : _bytecode(bytecode), _input(input), _result(result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  Bytecodes::Code bytecode() { return _bytecode; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  LIR_Opr         input()    { return _input; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  LIR_Opr         result()   { return _result; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    visitor->do_slow_case();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    visitor->do_input(_input);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    visitor->do_output(_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  virtual void print_name(outputStream* out) const { out->print("ConversionStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
#endif // PRODUCT
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
// Throws ArrayIndexOutOfBoundsException by default but can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// configured to throw IndexOutOfBoundsException in constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
class RangeCheckStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  CodeEmitInfo* _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  LIR_Opr       _index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  bool          _throw_index_out_of_bounds_exception;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  RangeCheckStub(CodeEmitInfo* info, LIR_Opr index, bool throw_index_out_of_bounds_exception = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  virtual bool is_exception_throw_stub() const   { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  virtual bool is_range_check_stub() const       { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    visitor->do_input(_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  virtual void print_name(outputStream* out) const { out->print("RangeCheckStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   166
// stub used when predicate fails and deoptimization is needed
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   167
class PredicateFailedStub: public CodeStub {
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   168
 private:
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   169
  CodeEmitInfo* _info;
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   170
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   171
 public:
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   172
  PredicateFailedStub(CodeEmitInfo* info);
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   173
  virtual void emit_code(LIR_Assembler* e);
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   174
  virtual CodeEmitInfo* info() const             { return _info; }
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   175
  virtual void visit(LIR_OpVisitState* visitor) {
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   176
    visitor->do_slow_case(_info);
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   177
  }
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   178
#ifndef PRODUCT
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   179
  virtual void print_name(outputStream* out) const { out->print("PredicateFailedStub"); }
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   180
#endif // PRODUCT
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 15482
diff changeset
   181
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
class DivByZeroStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  CodeEmitInfo* _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  int           _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  DivByZeroStub(CodeEmitInfo* info)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    : _info(info), _offset(-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  DivByZeroStub(int offset, CodeEmitInfo* info)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    : _info(info), _offset(offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  virtual bool is_exception_throw_stub() const   { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  virtual bool is_divbyzero_stub() const         { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  virtual void print_name(outputStream* out) const { out->print("DivByZeroStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
class ImplicitNullCheckStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  CodeEmitInfo* _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  int           _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  ImplicitNullCheckStub(int offset, CodeEmitInfo* info)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    : _offset(offset), _info(info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  virtual bool is_exception_throw_stub() const   { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  virtual void print_name(outputStream* out) const { out->print("ImplicitNullCheckStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
class NewInstanceStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  ciInstanceKlass* _klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  LIR_Opr          _klass_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  LIR_Opr          _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  CodeEmitInfo*    _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  Runtime1::StubID _stub_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  NewInstanceStub(LIR_Opr klass_reg, LIR_Opr result, ciInstanceKlass* klass, CodeEmitInfo* info, Runtime1::StubID stub_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    visitor->do_input(_klass_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    visitor->do_output(_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  virtual void print_name(outputStream* out) const { out->print("NewInstanceStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
class NewTypeArrayStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  LIR_Opr       _klass_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  LIR_Opr       _length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  LIR_Opr       _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  CodeEmitInfo* _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  NewTypeArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    visitor->do_input(_klass_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    visitor->do_input(_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    assert(_result->is_valid(), "must be valid"); visitor->do_output(_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  virtual void print_name(outputStream* out) const { out->print("NewTypeArrayStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
class NewObjectArrayStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  LIR_Opr        _klass_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  LIR_Opr        _length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  LIR_Opr        _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  CodeEmitInfo*  _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  NewObjectArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    visitor->do_input(_klass_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    visitor->do_input(_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    assert(_result->is_valid(), "must be valid"); visitor->do_output(_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  virtual void print_name(outputStream* out) const { out->print("NewObjectArrayStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
class MonitorAccessStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  LIR_Opr _obj_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  LIR_Opr _lock_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  MonitorAccessStub(LIR_Opr obj_reg, LIR_Opr lock_reg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    _obj_reg  = obj_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    _lock_reg  = lock_reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  virtual void print_name(outputStream* out) const { out->print("MonitorAccessStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
class MonitorEnterStub: public MonitorAccessStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  CodeEmitInfo* _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  MonitorEnterStub(LIR_Opr obj_reg, LIR_Opr lock_reg, CodeEmitInfo* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    visitor->do_input(_obj_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    visitor->do_input(_lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  virtual void print_name(outputStream* out) const { out->print("MonitorEnterStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
class MonitorExitStub: public MonitorAccessStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  bool _compute_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  int  _monitor_ix;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  MonitorExitStub(LIR_Opr lock_reg, bool compute_lock, int monitor_ix)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    : MonitorAccessStub(LIR_OprFact::illegalOpr, lock_reg),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      _compute_lock(compute_lock), _monitor_ix(monitor_ix) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    assert(_obj_reg->is_illegal(), "unused");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    if (_compute_lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
      visitor->do_temp(_lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
      visitor->do_input(_lock_reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  virtual void print_name(outputStream* out) const { out->print("MonitorExitStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
class PatchingStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  enum PatchID {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    access_field_id,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13486
diff changeset
   363
    load_klass_id,
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 16611
diff changeset
   364
    load_mirror_id,
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 16611
diff changeset
   365
    load_appendix_id
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  enum constants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    patch_info_size = 3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  PatchID       _id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  address       _pc_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  int           _bytes_to_copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  Label         _patched_code_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  Label         _patch_site_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  Label         _patch_site_continuation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  Register      _obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  CodeEmitInfo* _info;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13486
diff changeset
   379
  int           _index;  // index of the patchable oop or Klass* in nmethod oop or metadata table if needed
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  static int    _patch_info_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  void align_patch_site(MacroAssembler* masm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  static int patch_info_offset() { return _patch_info_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13486
diff changeset
   387
  PatchingStub(MacroAssembler* masm, PatchID id, int index = -1):
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
      _id(id)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    , _info(NULL)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13486
diff changeset
   390
    , _index(index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    if (os::is_MP()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      // force alignment of patch sites on MP hardware so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      // can guarantee atomic writes to the patch site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
      align_patch_site(masm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    _pc_start = masm->pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    masm->bind(_patch_site_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  void install(MacroAssembler* masm, LIR_PatchCode patch_code, Register obj, CodeEmitInfo* info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    _info = info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    _obj = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    masm->bind(_patch_site_continuation);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    _bytes_to_copy = masm->pc() - pc_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    if (_id == PatchingStub::access_field_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
      // embed a fixed offset to handle long patches which need to be offset by a word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
      // the patching code will just add the field offset field to this offset so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
      // that we can refernce either the high or low word of a double word field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
      int field_offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
      switch (patch_code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
      case lir_patch_low:         field_offset = lo_word_offset_in_bytes; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
      case lir_patch_high:        field_offset = hi_word_offset_in_bytes; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
      case lir_patch_normal:      field_offset = 0;                       break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      NativeMovRegMem* n_move = nativeMovRegMem_at(pc_start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
      n_move->set_offset(field_offset);
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 16611
diff changeset
   418
    } else if (_id == load_klass_id || _id == load_mirror_id || _id == load_appendix_id) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13486
diff changeset
   419
      assert(_obj != noreg, "must have register object for load_klass/load_mirror");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      // verify that we're pointing at a NativeMovConstReg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
      nativeMovConstReg_at(pc_start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    assert(_bytes_to_copy <= (masm->pc() - pc_start()), "not enough bytes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  address pc_start() const                       { return _pc_start; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  PatchID id() const                             { return _id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  virtual void print_name(outputStream* out) const { out->print("PatchingStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   444
//------------------------------------------------------------------------------
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   445
// DeoptimizeStub
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   446
//
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   447
class DeoptimizeStub : public CodeStub {
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   448
private:
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   449
  CodeEmitInfo* _info;
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 22234
diff changeset
   450
  jint _trap_request;
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   451
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   452
public:
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 22234
diff changeset
   453
  DeoptimizeStub(CodeEmitInfo* info, Deoptimization::DeoptReason reason, Deoptimization::DeoptAction action) :
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 22234
diff changeset
   454
    _info(new CodeEmitInfo(info)), _trap_request(Deoptimization::make_trap_request(reason, action)) {}
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   455
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   456
  virtual void emit_code(LIR_Assembler* e);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   457
  virtual CodeEmitInfo* info() const           { return _info; }
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   458
  virtual bool is_exception_throw_stub() const { return true; }
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   459
  virtual void visit(LIR_OpVisitState* visitor) {
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   460
    visitor->do_slow_case(_info);
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   461
  }
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   462
#ifndef PRODUCT
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   463
  virtual void print_name(outputStream* out) const { out->print("DeoptimizeStub"); }
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   464
#endif // PRODUCT
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   465
};
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   466
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1374
diff changeset
   467
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
class SimpleExceptionStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  LIR_Opr          _obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  Runtime1::StubID _stub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  CodeEmitInfo*    _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  SimpleExceptionStub(Runtime1::StubID stub, LIR_Opr obj, CodeEmitInfo* info):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    _obj(obj), _info(info), _stub(stub) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   479
  void set_obj(LIR_Opr obj) {
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   480
    _obj = obj;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   481
  }
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   482
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  virtual CodeEmitInfo* info() const             { return _info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  virtual bool is_exception_throw_stub() const   { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    if (_obj->is_valid()) visitor->do_input(_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    visitor->do_slow_case(_info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  virtual void print_name(outputStream* out) const { out->print("SimpleExceptionStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
8067
f5f4eac4c48f 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 7397
diff changeset
   497
class ArrayStoreExceptionStub: public SimpleExceptionStub {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  CodeEmitInfo* _info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
 public:
8067
f5f4eac4c48f 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 7397
diff changeset
   502
  ArrayStoreExceptionStub(LIR_Opr obj, CodeEmitInfo* info): SimpleExceptionStub(Runtime1::throw_array_store_exception_id, obj, info) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  virtual void print_name(outputStream* out) const { out->print("ArrayStoreExceptionStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
class ArrayCopyStub: public CodeStub {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  LIR_OpArrayCopy* _op;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  ArrayCopyStub(LIR_OpArrayCopy* op): _op(op) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  LIR_Opr src() const                         { return _op->src(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  LIR_Opr src_pos() const                     { return _op->src_pos(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  LIR_Opr dst() const                         { return _op->dst(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  LIR_Opr dst_pos() const                     { return _op->dst_pos(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  LIR_Opr length() const                      { return _op->length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  LIR_Opr tmp() const                         { return _op->tmp(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  virtual void emit_code(LIR_Assembler* e);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  virtual CodeEmitInfo* info() const          { return _op->info(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  virtual void visit(LIR_OpVisitState* visitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    // don't pass in the code emit info since it's processed in the fast path
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    visitor->do_slow_case();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  virtual void print_name(outputStream* out) const { out->print("ArrayCopyStub"); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
};
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   533
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   534
//////////////////////////////////////////////////////////////////////////////////////////
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
   535
#if INCLUDE_ALL_GCS
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   536
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   537
// Code stubs for Garbage-First barriers.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   538
class G1PreBarrierStub: public CodeStub {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   539
 private:
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   540
  bool _do_load;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   541
  LIR_Opr _addr;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   542
  LIR_Opr _pre_val;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   543
  LIR_PatchCode _patch_code;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   544
  CodeEmitInfo* _info;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   545
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   546
 public:
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   547
  // Version that _does_ generate a load of the previous value from addr.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   548
  // addr (the address of the field to be read) must be a LIR_Address
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   549
  // pre_val (a temporary register) must be a register;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   550
  G1PreBarrierStub(LIR_Opr addr, LIR_Opr pre_val, LIR_PatchCode patch_code, CodeEmitInfo* info) :
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   551
    _addr(addr), _pre_val(pre_val), _do_load(true),
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   552
    _patch_code(patch_code), _info(info)
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   553
  {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   554
    assert(_pre_val->is_register(), "should be temporary register");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   555
    assert(_addr->is_address(), "should be the address of the field");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   556
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   557
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   558
  // Version that _does not_ generate load of the previous value; the
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   559
  // previous value is assumed to have already been loaded into pre_val.
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   560
  G1PreBarrierStub(LIR_Opr pre_val) :
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   561
    _addr(LIR_OprFact::illegalOpr), _pre_val(pre_val), _do_load(false),
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   562
    _patch_code(lir_patch_none), _info(NULL)
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   563
  {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   564
    assert(_pre_val->is_register(), "should be a register");
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   565
  }
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   566
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   567
  LIR_Opr addr() const { return _addr; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   568
  LIR_Opr pre_val() const { return _pre_val; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   569
  LIR_PatchCode patch_code() const { return _patch_code; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   570
  CodeEmitInfo* info() const { return _info; }
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   571
  bool do_load() const { return _do_load; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   572
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   573
  virtual void emit_code(LIR_Assembler* e);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   574
  virtual void visit(LIR_OpVisitState* visitor) {
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   575
    if (_do_load) {
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   576
      // don't pass in the code emit info since it's processed in the fast
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   577
      // path
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   578
      if (_info != NULL)
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   579
        visitor->do_slow_case(_info);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   580
      else
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   581
        visitor->do_slow_case();
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   582
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   583
      visitor->do_input(_addr);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   584
      visitor->do_temp(_pre_val);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   585
    } else {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   586
      visitor->do_slow_case();
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   587
      visitor->do_input(_pre_val);
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8067
diff changeset
   588
    }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   589
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   590
#ifndef PRODUCT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   591
  virtual void print_name(outputStream* out) const { out->print("G1PreBarrierStub"); }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   592
#endif // PRODUCT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   593
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   594
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   595
class G1PostBarrierStub: public CodeStub {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   596
 private:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   597
  LIR_Opr _addr;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   598
  LIR_Opr _new_val;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   599
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   600
 public:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   601
  // addr (the address of the object head) and new_val must be registers.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   602
  G1PostBarrierStub(LIR_Opr addr, LIR_Opr new_val): _addr(addr), _new_val(new_val) { }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   603
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   604
  LIR_Opr addr() const { return _addr; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   605
  LIR_Opr new_val() const { return _new_val; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   606
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   607
  virtual void emit_code(LIR_Assembler* e);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   608
  virtual void visit(LIR_OpVisitState* visitor) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   609
    // don't pass in the code emit info since it's processed in the fast path
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   610
    visitor->do_slow_case();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   611
    visitor->do_input(_addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   612
    visitor->do_input(_new_val);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   613
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   614
#ifndef PRODUCT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   615
  virtual void print_name(outputStream* out) const { out->print("G1PostBarrierStub"); }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   616
#endif // PRODUCT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   617
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   618
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
   619
#endif // INCLUDE_ALL_GCS
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   620
//////////////////////////////////////////////////////////////////////////////////////////
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   621
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   622
#endif // SHARE_VM_C1_C1_CODESTUBS_HPP