hotspot/src/share/vm/c1/c1_Compilation.hpp
author fzhinkin
Wed, 06 Apr 2016 18:51:03 +0300
changeset 38031 e0b822facc03
parent 35576 1f1cca67a48e
child 40071 53e12df44b7b
permissions -rw-r--r--
8149374: Replace C1-specific collection classes with universal collection classes Reviewed-by: kvn, mgerdin, coleenp
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: 35576
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: 5353
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5353
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: 5353
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: 7100
diff changeset
    25
#ifndef SHARE_VM_C1_C1_COMPILATION_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7100
diff changeset
    26
#define SHARE_VM_C1_C1_COMPILATION_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7100
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7100
diff changeset
    28
#include "ci/ciEnv.hpp"
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
    29
#include "ci/ciMethodData.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7100
diff changeset
    30
#include "code/exceptionHandlerTable.hpp"
35576
1f1cca67a48e 8147433: PrintNMethods no longer works with JVMCI
never
parents: 35071
diff changeset
    31
#include "compiler/compilerDirectives.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7100
diff changeset
    32
#include "memory/resourceArea.hpp"
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
    33
#include "runtime/deoptimization.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7100
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class CompilationResourceObj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class XHandlers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class ExceptionInfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class DebugInformationRecorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class FrameMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class IR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class IRScope;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class Instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class LinearScan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class OopMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class LIR_Emitter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class LIR_Assembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class CodeEmitInfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class ciMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
class ValueStack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class LIR_OprDesc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class C1_MacroAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class CFGPrinter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
typedef LIR_OprDesc* LIR_Opr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 35576
diff changeset
    56
typedef GrowableArray<BasicType> BasicTypeArray;
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 35576
diff changeset
    57
typedef GrowableArray<BasicType> BasicTypeList;
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 35576
diff changeset
    58
typedef GrowableArray<ExceptionInfo*> ExceptionInfoList;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
class Compilation: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  friend class CompilationResourceObj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // compilation specifics
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    64
  Arena* _arena;
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    65
  int _next_id;
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    66
  int _next_block_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  AbstractCompiler*  _compiler;
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 24442
diff changeset
    68
  DirectiveSet*      _directive;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  ciEnv*             _env;
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13883
diff changeset
    70
  CompileLog*        _log;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  ciMethod*          _method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  int                _osr_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  IR*                _hir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  int                _max_spills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  FrameMap*          _frame_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  C1_MacroAssembler* _masm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  bool               _has_exception_handlers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  bool               _has_fpu_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  bool               _has_unsafe_access;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
    80
  bool               _would_profile;
6186
7eef4cda471c 6975855: don't emit deopt MH handler in C1 if not required
twisti
parents: 6176
diff changeset
    81
  bool               _has_method_handle_invokes;  // True if this method has MethodHandle invokes.
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34220
diff changeset
    82
  bool               _has_reserved_stack_access;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  const char*        _bailout_msg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  ExceptionInfoList* _exception_info_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  ExceptionHandlerTable _exception_handler_table;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  ImplicitExceptionTable _implicit_exception_table;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  LinearScan*        _allocator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  CodeOffsets        _offsets;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  CodeBuffer         _code;
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
    90
  bool               _has_access_indexed;
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
    91
  int                _interpreter_frame_size; // Stack space needed in case of a deoptimization
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // compilation helpers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void build_hir();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  void emit_lir();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void emit_code_epilog(LIR_Assembler* assembler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  int  emit_code_body();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  int  compile_java_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  void install_code(int frame_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void compile_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  void generate_exception_handler_table();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  ExceptionInfoList* exception_info_list() const { return _exception_info_list; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  ExceptionHandlerTable* exception_handler_table() { return &_exception_handler_table; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  LinearScan* allocator()                          { return _allocator;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  void        set_allocator(LinearScan* allocator) { _allocator = allocator; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  Instruction*       _current_instruction;       // the instruction currently being processed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  Instruction*       _last_instruction_printed;  // the last instruction printed during traversal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // creation
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   120
  Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method,
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 24442
diff changeset
   121
              int osr_bci, BufferBlob* buffer_blob, DirectiveSet* directive);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  ~Compilation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   124
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   125
  static Compilation* current() {
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   126
    return (Compilation*) ciEnv::current()->compiler_data();
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   127
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  ciEnv* env() const                             { return _env; }
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 24442
diff changeset
   131
  DirectiveSet* directive() const                { return _directive; }
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13883
diff changeset
   132
  CompileLog* log() const                        { return _log; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  AbstractCompiler* compiler() const             { return _compiler; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  bool has_exception_handlers() const            { return _has_exception_handlers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  bool has_fpu_code() const                      { return _has_fpu_code; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  bool has_unsafe_access() const                 { return _has_unsafe_access; }
13883
6979b9850feb 7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents: 8921
diff changeset
   137
  int max_vector_size() const                    { return 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  ciMethod* method() const                       { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  int osr_bci() const                            { return _osr_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  bool is_osr_compile() const                    { return osr_bci() >= 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  IR* hir() const                                { return _hir; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  int max_spills() const                         { return _max_spills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  FrameMap* frame_map() const                    { return _frame_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  CodeBuffer* code()                             { return &_code; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  C1_MacroAssembler* masm() const                { return _masm; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  CodeOffsets* offsets()                         { return &_offsets; }
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   147
  Arena* arena()                                 { return _arena; }
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   148
  bool has_access_indexed()                      { return _has_access_indexed; }
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   149
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   150
  // Instruction ids
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   151
  int get_next_id()                              { return _next_id++; }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   152
  int number_of_instructions() const             { return _next_id; }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   153
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   154
  // BlockBegin ids
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   155
  int get_next_block_id()                        { return _next_block_id++; }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   156
  int number_of_blocks() const                   { return _next_block_id; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // setters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  void set_has_exception_handlers(bool f)        { _has_exception_handlers = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  void set_has_fpu_code(bool f)                  { _has_fpu_code = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  void set_has_unsafe_access(bool f)             { _has_unsafe_access = f; }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   162
  void set_would_profile(bool f)                 { _would_profile = f; }
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   163
  void set_has_access_indexed(bool f)            { _has_access_indexed = f; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Add a set of exception handlers covering the given PC offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  void add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // Statistics gathering
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  void notice_inlined_method(ciMethod* method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
6186
7eef4cda471c 6975855: don't emit deopt MH handler in C1 if not required
twisti
parents: 6176
diff changeset
   169
  // JSR 292
7eef4cda471c 6975855: don't emit deopt MH handler in C1 if not required
twisti
parents: 6176
diff changeset
   170
  bool     has_method_handle_invokes() const { return _has_method_handle_invokes;     }
7eef4cda471c 6975855: don't emit deopt MH handler in C1 if not required
twisti
parents: 6176
diff changeset
   171
  void set_has_method_handle_invokes(bool z) {        _has_method_handle_invokes = z; }
7eef4cda471c 6975855: don't emit deopt MH handler in C1 if not required
twisti
parents: 6176
diff changeset
   172
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34220
diff changeset
   173
  bool     has_reserved_stack_access() const { return _has_reserved_stack_access; }
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34220
diff changeset
   174
  void set_has_reserved_stack_access(bool z) { _has_reserved_stack_access = z; }
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 34220
diff changeset
   175
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  DebugInformationRecorder* debug_info_recorder() const; // = _env->debug_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  Dependencies* dependency_recorder() const; // = _env->dependencies()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  ImplicitExceptionTable* implicit_exception_table()     { return &_implicit_exception_table; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  Instruction* current_instruction() const       { return _current_instruction; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  Instruction* set_current_instruction(Instruction* instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    Instruction* previous = _current_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    _current_instruction = instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    return previous;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void maybe_print_current_instruction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // error handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void bailout(const char* msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  bool bailed_out() const                        { return _bailout_msg != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  const char* bailout_msg() const                { return _bailout_msg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   196
  static int desired_max_code_buffer_size() {
34220
1ba69cb5585c 8138952: C1: Distinguish between PPC32 and PPC64
mdoerr
parents: 33451
diff changeset
   197
#ifndef PPC32
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   198
    return (int) NMethodSizeLimit;  // default 256K or 512K
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   199
#else
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   200
    // conditional branches on PPC are restricted to 16 bit signed
7100
6bcf9255d470 6991577: add IfOp optimization to C1
roland
parents: 6745
diff changeset
   201
    return MIN2((unsigned int)NMethodSizeLimit,32*K);
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   202
#endif
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   203
  }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   204
  static int desired_max_constant_size() {
7100
6bcf9255d470 6991577: add IfOp optimization to C1
roland
parents: 6745
diff changeset
   205
    return desired_max_code_buffer_size() / 10;
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   206
  }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   207
7722
f0bd3dd3192f 7009268: guarantee(middle - slop > start) failed: need enough space to divide up
bobv
parents: 7397
diff changeset
   208
  static bool setup_code_buffer(CodeBuffer* cb, int call_stub_estimate);
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   209
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // timers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  static void print_timers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // debugging support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // produces a file named c1compileonly in the current directory with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // directives to compile only the current method and it's inlines.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // The file can be passed to the command line option -XX:Flags=<filename>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void compile_only_this_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void compile_only_this_scope(outputStream* st, IRScope* scope);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void exclude_this_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
#endif // PRODUCT
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   222
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   223
  bool is_profiling() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   224
    return env()->comp_level() == CompLevel_full_profile ||
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   225
           env()->comp_level() == CompLevel_limited_profile;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   226
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   227
  bool count_invocations() { return is_profiling(); }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   228
  bool count_backedges()   { return is_profiling(); }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   229
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   230
  // Helpers for generation of profile information
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   231
  bool profile_branches() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   232
    return env()->comp_level() == CompLevel_full_profile &&
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   233
      C1UpdateMethodData && C1ProfileBranches;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   234
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   235
  bool profile_calls() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   236
    return env()->comp_level() == CompLevel_full_profile &&
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   237
      C1UpdateMethodData && C1ProfileCalls;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   238
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   239
  bool profile_inlined_calls() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   240
    return profile_calls() && C1ProfileInlinedCalls;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   241
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   242
  bool profile_checkcasts() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   243
    return env()->comp_level() == CompLevel_full_profile &&
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   244
      C1UpdateMethodData && C1ProfileCheckcasts;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   245
  }
21095
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   246
  bool profile_parameters() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   247
    return env()->comp_level() == CompLevel_full_profile &&
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   248
      C1UpdateMethodData && MethodData::profile_parameters();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   249
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   250
  bool profile_arguments() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   251
    return env()->comp_level() == CompLevel_full_profile &&
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   252
      C1UpdateMethodData && MethodData::profile_arguments();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   253
  }
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   254
  bool profile_return() {
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   255
    return env()->comp_level() == CompLevel_full_profile &&
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   256
      C1UpdateMethodData && MethodData::profile_return();
1a04f7b3946e 8026251: New type profiling points: parameters to methods
roland
parents: 20702
diff changeset
   257
  }
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   258
  bool age_code() const {
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   259
    return _method->profile_aging();
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   260
  }
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 24018
diff changeset
   261
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   262
  // will compilation make optimistic assumptions that might lead to
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   263
  // deoptimization and that the runtime will account for?
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   264
  bool is_optimistic() const                             {
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   265
    return !TieredCompilation &&
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   266
      (RangeCheckElimination || UseLoopInvariantCodeMotion) &&
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   267
      method()->method_data()->trap_count(Deoptimization::Reason_none) == 0;
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13974
diff changeset
   268
  }
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 19696
diff changeset
   269
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 19696
diff changeset
   270
  ciKlass* cha_exact_type(ciType* type);
22243
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21095
diff changeset
   271
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21095
diff changeset
   272
  // Dump inlining replay data to the stream.
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 21095
diff changeset
   273
  void dump_inline_data(outputStream* out) { /* do nothing now */ }
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   274
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   275
  // How much stack space would the interpreter need in case of a
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   276
  // deoptimization (worst case)
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   277
  void update_interpreter_frame_size(int size) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   278
    if (_interpreter_frame_size < size) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   279
      _interpreter_frame_size = size;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   280
    }
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   281
  }
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   282
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   283
  int interpreter_frame_size() const {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   284
    return _interpreter_frame_size;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 22243
diff changeset
   285
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
// Macro definitions for unified bailout-support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
// The methods bailout() and bailed_out() are present in all classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
// that might bailout, but forward all calls to Compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
#define BAILOUT(msg)               { bailout(msg); return;              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#define BAILOUT_(msg, res)         { bailout(msg); return res;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
#define CHECK_BAILOUT()            { if (bailed_out()) return;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
#define CHECK_BAILOUT_(res)        { if (bailed_out()) return res;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
class InstructionMark: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  Compilation* _compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  Instruction*  _previous;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  InstructionMark(Compilation* compilation, Instruction* instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    _compilation = compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    _previous = _compilation->set_current_instruction(instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  ~InstructionMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    _compilation->set_current_instruction(_previous);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  }
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
//----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
// Base class for objects allocated by the compiler in the compilation arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
class CompilationResourceObj ALLOCATION_SUPER_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
 public:
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 16611
diff changeset
   319
  void* operator new(size_t size) throw() { return Compilation::current()->arena()->Amalloc(size); }
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 16611
diff changeset
   320
  void* operator new(size_t size, Arena* arena) throw() {
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   321
    return arena->Amalloc(size);
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   322
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  void  operator delete(void* p) {} // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
//----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
// Class for aggregating exception handler information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// Effectively extends XHandlers class with PC offset of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// potentially exception-throwing instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// This class is used at the end of the compilation to build the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
// ExceptionHandlerTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
class ExceptionInfo: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  int             _pco;                // PC of potentially exception-throwing instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  XHandlers*      _exception_handlers; // flat list of exception handlers covering this PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  ExceptionInfo(int pco, XHandlers* exception_handlers)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    : _pco(pco)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    , _exception_handlers(exception_handlers)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  int pco()                                      { return _pco; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  XHandlers* exception_handlers()                { return _exception_handlers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7100
diff changeset
   348
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7100
diff changeset
   349
#endif // SHARE_VM_C1_C1_COMPILATION_HPP