hotspot/src/share/vm/c1/c1_Compilation.hpp
author roland
Tue, 29 Dec 2009 19:08:54 +0100
changeset 6745 a34ef8968a84
parent 6453 970dc585ab63
child 7100 6bcf9255d470
permissions -rw-r--r--
6986046: C1 valuestack cleanup Summary: fixes an historical oddity in C1 with inlining where all of the expression stacks are kept in the topmost ValueStack instead of being in their respective ValueStacks. Reviewed-by: never Contributed-by: Christian Wimmer <cwimmer@uci.edu>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5353
diff changeset
     2
 * Copyright (c) 1999, 2010, 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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class CompilationResourceObj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class XHandlers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class ExceptionInfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class DebugInformationRecorder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class FrameMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class IR;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class IRScope;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class Instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class LinearScan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class OopMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class LIR_Emitter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class LIR_Assembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class CodeEmitInfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class ciMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class ValueStack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class LIR_OprDesc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class C1_MacroAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class CFGPrinter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
typedef LIR_OprDesc* LIR_Opr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
define_array(BasicTypeArray, BasicType)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
define_stack(BasicTypeList, BasicTypeArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
define_array(ExceptionInfoArray, ExceptionInfo*)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
define_stack(ExceptionInfoList,  ExceptionInfoArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class Compilation: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  friend class CompilationResourceObj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // compilation specifics
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    57
  Arena* _arena;
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    58
  int _next_id;
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    59
  int _next_block_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  AbstractCompiler*  _compiler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  ciEnv*             _env;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ciMethod*          _method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  int                _osr_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  IR*                _hir;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  int                _max_spills;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  FrameMap*          _frame_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  C1_MacroAssembler* _masm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  bool               _has_exception_handlers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  bool               _has_fpu_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  bool               _has_unsafe_access;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
    71
  bool               _would_profile;
6186
7eef4cda471c 6975855: don't emit deopt MH handler in C1 if not required
twisti
parents: 6176
diff changeset
    72
  bool               _has_method_handle_invokes;  // True if this method has MethodHandle invokes.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  const char*        _bailout_msg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  ExceptionInfoList* _exception_info_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  ExceptionHandlerTable _exception_handler_table;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  ImplicitExceptionTable _implicit_exception_table;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  LinearScan*        _allocator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  CodeOffsets        _offsets;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  CodeBuffer         _code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // compilation helpers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  void build_hir();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  void emit_lir();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  void emit_code_epilog(LIR_Assembler* assembler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  int  emit_code_body();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  int  compile_java_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  void install_code(int frame_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  void compile_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void generate_exception_handler_table();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  ExceptionInfoList* exception_info_list() const { return _exception_info_list; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  ExceptionHandlerTable* exception_handler_table() { return &_exception_handler_table; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  LinearScan* allocator()                          { return _allocator;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  void        set_allocator(LinearScan* allocator) { _allocator = allocator; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  Instruction*       _current_instruction;       // the instruction currently being processed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  Instruction*       _last_instruction_printed;  // the last instruction printed during traversal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // creation
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   108
  Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method,
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   109
              int osr_bci, BufferBlob* buffer_blob);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  ~Compilation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   112
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   113
  static Compilation* current() {
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   114
    return (Compilation*) ciEnv::current()->compiler_data();
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   115
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  ciEnv* env() const                             { return _env; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  AbstractCompiler* compiler() const             { return _compiler; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  bool has_exception_handlers() const            { return _has_exception_handlers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  bool has_fpu_code() const                      { return _has_fpu_code; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  bool has_unsafe_access() const                 { return _has_unsafe_access; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  ciMethod* method() const                       { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  int osr_bci() const                            { return _osr_bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  bool is_osr_compile() const                    { return osr_bci() >= 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  IR* hir() const                                { return _hir; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  int max_spills() const                         { return _max_spills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  FrameMap* frame_map() const                    { return _frame_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  CodeBuffer* code()                             { return &_code; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  C1_MacroAssembler* masm() const                { return _masm; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  CodeOffsets* offsets()                         { return &_offsets; }
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   132
  Arena* arena()                                 { return _arena; }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   133
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   134
  // Instruction ids
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   135
  int get_next_id()                              { return _next_id++; }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   136
  int number_of_instructions() const             { return _next_id; }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   137
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   138
  // BlockBegin ids
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   139
  int get_next_block_id()                        { return _next_block_id++; }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   140
  int number_of_blocks() const                   { return _next_block_id; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // setters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  void set_has_exception_handlers(bool f)        { _has_exception_handlers = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  void set_has_fpu_code(bool f)                  { _has_fpu_code = f; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  void set_has_unsafe_access(bool f)             { _has_unsafe_access = f; }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   146
  void set_would_profile(bool f)                 { _would_profile = f; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Add a set of exception handlers covering the given PC offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  void add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // Statistics gathering
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  void notice_inlined_method(ciMethod* method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
6186
7eef4cda471c 6975855: don't emit deopt MH handler in C1 if not required
twisti
parents: 6176
diff changeset
   152
  // JSR 292
7eef4cda471c 6975855: don't emit deopt MH handler in C1 if not required
twisti
parents: 6176
diff changeset
   153
  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
   154
  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
   155
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  DebugInformationRecorder* debug_info_recorder() const; // = _env->debug_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  Dependencies* dependency_recorder() const; // = _env->dependencies()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  ImplicitExceptionTable* implicit_exception_table()     { return &_implicit_exception_table; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  Instruction* current_instruction() const       { return _current_instruction; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  Instruction* set_current_instruction(Instruction* instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    Instruction* previous = _current_instruction;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    _current_instruction = instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    return previous;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  void maybe_print_current_instruction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // error handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void bailout(const char* msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  bool bailed_out() const                        { return _bailout_msg != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  const char* bailout_msg() const                { return _bailout_msg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   176
  static int desired_max_code_buffer_size() {
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   177
#ifndef PPC
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   178
    return (int) NMethodSizeLimit;  // default 256K or 512K
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   179
#else
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   180
    // conditional branches on PPC are restricted to 16 bit signed
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   181
    return MAX2((unsigned int)NMethodSizeLimit,32*K);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   182
#endif
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   183
  }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   184
  static int desired_max_constant_size() {
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   185
#ifndef PPC
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   186
    return (int) NMethodSizeLimit / 10;  // about 25K
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   187
#else
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   188
    return (MAX2((unsigned int)NMethodSizeLimit, 32*K)) / 10;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   189
#endif
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   190
  }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   191
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   192
  static void setup_code_buffer(CodeBuffer* cb, int call_stub_estimate);
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   193
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // timers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  static void print_timers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // debugging support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // produces a file named c1compileonly in the current directory with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // directives to compile only the current method and it's inlines.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // The file can be passed to the command line option -XX:Flags=<filename>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  void compile_only_this_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  void compile_only_this_scope(outputStream* st, IRScope* scope);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  void exclude_this_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
#endif // PRODUCT
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   206
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   207
  bool is_profiling() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   208
    return env()->comp_level() == CompLevel_full_profile ||
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   209
           env()->comp_level() == CompLevel_limited_profile;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   210
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   211
  bool count_invocations() { return is_profiling(); }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   212
  bool count_backedges()   { return is_profiling(); }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   213
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   214
  // Helpers for generation of profile information
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   215
  bool profile_branches() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   216
    return env()->comp_level() == CompLevel_full_profile &&
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   217
      C1UpdateMethodData && C1ProfileBranches;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   218
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   219
  bool profile_calls() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   220
    return env()->comp_level() == CompLevel_full_profile &&
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   221
      C1UpdateMethodData && C1ProfileCalls;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   222
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   223
  bool profile_inlined_calls() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   224
    return profile_calls() && C1ProfileInlinedCalls;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   225
  }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   226
  bool profile_checkcasts() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   227
    return env()->comp_level() == CompLevel_full_profile &&
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   228
      C1UpdateMethodData && C1ProfileCheckcasts;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6186
diff changeset
   229
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
// Macro definitions for unified bailout-support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// The methods bailout() and bailed_out() are present in all classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
// that might bailout, but forward all calls to Compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
#define BAILOUT(msg)               { bailout(msg); return;              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
#define BAILOUT_(msg, res)         { bailout(msg); return res;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
#define CHECK_BAILOUT()            { if (bailed_out()) return;          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
#define CHECK_BAILOUT_(res)        { if (bailed_out()) return res;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
class InstructionMark: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  Compilation* _compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  Instruction*  _previous;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  InstructionMark(Compilation* compilation, Instruction* instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    _compilation = compilation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    _previous = _compilation->set_current_instruction(instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  ~InstructionMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    _compilation->set_current_instruction(_previous);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
//----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
// Base class for objects allocated by the compiler in the compilation arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
class CompilationResourceObj ALLOCATION_SUPER_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
 public:
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   263
  void* operator new(size_t size) { return Compilation::current()->arena()->Amalloc(size); }
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   264
  void* operator new(size_t size, Arena* arena) {
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   265
    return arena->Amalloc(size);
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   266
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  void  operator delete(void* p) {} // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
//----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// Class for aggregating exception handler information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// Effectively extends XHandlers class with PC offset of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// potentially exception-throwing instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
// This class is used at the end of the compilation to build the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// ExceptionHandlerTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
class ExceptionInfo: public CompilationResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  int             _pco;                // PC of potentially exception-throwing instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  XHandlers*      _exception_handlers; // flat list of exception handlers covering this PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  ExceptionInfo(int pco, XHandlers* exception_handlers)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    : _pco(pco)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    , _exception_handlers(exception_handlers)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  int pco()                                      { return _pco; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  XHandlers* exception_handlers()                { return _exception_handlers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
};