1 /*
   2  * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_C1_C1_COMPILATION_HPP
  26 #define SHARE_VM_C1_C1_COMPILATION_HPP
  27 
  28 #include "ci/ciEnv.hpp"
  29 #include "code/exceptionHandlerTable.hpp"
  30 #include "memory/resourceArea.hpp"
  31 
  32 class CompilationResourceObj;
  33 class XHandlers;
  34 class ExceptionInfo;
  35 class DebugInformationRecorder;
  36 class FrameMap;
  37 class IR;
  38 class IRScope;
  39 class Instruction;
  40 class LinearScan;
  41 class OopMap;
  42 class LIR_Emitter;
  43 class LIR_Assembler;
  44 class CodeEmitInfo;
  45 class ciEnv;
  46 class ciMethod;
  47 class ValueStack;
  48 class LIR_OprDesc;
  49 class C1_MacroAssembler;
  50 class CFGPrinter;
  51 typedef LIR_OprDesc* LIR_Opr;
  52 
  53 
  54 define_array(BasicTypeArray, BasicType)
  55 define_stack(BasicTypeList, BasicTypeArray)
  56 
  57 define_array(ExceptionInfoArray, ExceptionInfo*)
  58 define_stack(ExceptionInfoList,  ExceptionInfoArray)
  59 
  60 class Compilation: public StackObj {
  61   friend class CompilationResourceObj;
  62  private:
  63   // compilation specifics
  64   Arena* _arena;
  65   int _next_id;
  66   int _next_block_id;
  67   AbstractCompiler*  _compiler;
  68   ciEnv*             _env;
  69   ciMethod*          _method;
  70   int                _osr_bci;
  71   IR*                _hir;
  72   int                _max_spills;
  73   FrameMap*          _frame_map;
  74   C1_MacroAssembler* _masm;
  75   bool               _has_exception_handlers;
  76   bool               _has_fpu_code;
  77   bool               _has_unsafe_access;
  78   bool               _would_profile;
  79   bool               _has_method_handle_invokes;  // True if this method has MethodHandle invokes.
  80   const char*        _bailout_msg;
  81   ExceptionInfoList* _exception_info_list;
  82   ExceptionHandlerTable _exception_handler_table;
  83   ImplicitExceptionTable _implicit_exception_table;
  84   LinearScan*        _allocator;
  85   CodeOffsets        _offsets;
  86   CodeBuffer         _code;
  87 
  88   // compilation helpers
  89   void initialize();
  90   void build_hir();
  91   void emit_lir();
  92 
  93   void emit_code_epilog(LIR_Assembler* assembler);
  94   int  emit_code_body();
  95 
  96   int  compile_java_method();
  97   void install_code(int frame_size);
  98   void compile_method();
  99 
 100   void generate_exception_handler_table();
 101 
 102   ExceptionInfoList* exception_info_list() const { return _exception_info_list; }
 103   ExceptionHandlerTable* exception_handler_table() { return &_exception_handler_table; }
 104 
 105   LinearScan* allocator()                          { return _allocator;      }
 106   void        set_allocator(LinearScan* allocator) { _allocator = allocator; }
 107 
 108   Instruction*       _current_instruction;       // the instruction currently being processed
 109 #ifndef PRODUCT
 110   Instruction*       _last_instruction_printed;  // the last instruction printed during traversal
 111 #endif // PRODUCT
 112 
 113  public:
 114   // creation
 115   Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method,
 116               int osr_bci, BufferBlob* buffer_blob);
 117   ~Compilation();
 118 
 119 
 120   static Compilation* current() {
 121     return (Compilation*) ciEnv::current()->compiler_data();
 122   }
 123 
 124   // accessors
 125   ciEnv* env() const                             { return _env; }
 126   AbstractCompiler* compiler() const             { return _compiler; }
 127   bool has_exception_handlers() const            { return _has_exception_handlers; }
 128   bool has_fpu_code() const                      { return _has_fpu_code; }
 129   bool has_unsafe_access() const                 { return _has_unsafe_access; }
 130   ciMethod* method() const                       { return _method; }
 131   int osr_bci() const                            { return _osr_bci; }
 132   bool is_osr_compile() const                    { return osr_bci() >= 0; }
 133   IR* hir() const                                { return _hir; }
 134   int max_spills() const                         { return _max_spills; }
 135   FrameMap* frame_map() const                    { return _frame_map; }
 136   CodeBuffer* code()                             { return &_code; }
 137   C1_MacroAssembler* masm() const                { return _masm; }
 138   CodeOffsets* offsets()                         { return &_offsets; }
 139   Arena* arena()                                 { return _arena; }
 140 
 141   // Instruction ids
 142   int get_next_id()                              { return _next_id++; }
 143   int number_of_instructions() const             { return _next_id; }
 144 
 145   // BlockBegin ids
 146   int get_next_block_id()                        { return _next_block_id++; }
 147   int number_of_blocks() const                   { return _next_block_id; }
 148 
 149   // setters
 150   void set_has_exception_handlers(bool f)        { _has_exception_handlers = f; }
 151   void set_has_fpu_code(bool f)                  { _has_fpu_code = f; }
 152   void set_has_unsafe_access(bool f)             { _has_unsafe_access = f; }
 153   void set_would_profile(bool f)                 { _would_profile = f; }
 154   // Add a set of exception handlers covering the given PC offset
 155   void add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers);
 156   // Statistics gathering
 157   void notice_inlined_method(ciMethod* method);
 158 
 159   // JSR 292
 160   bool     has_method_handle_invokes() const { return _has_method_handle_invokes;     }
 161   void set_has_method_handle_invokes(bool z) {        _has_method_handle_invokes = z; }
 162 
 163   DebugInformationRecorder* debug_info_recorder() const; // = _env->debug_info();
 164   Dependencies* dependency_recorder() const; // = _env->dependencies()
 165   ImplicitExceptionTable* implicit_exception_table()     { return &_implicit_exception_table; }
 166 
 167   Instruction* current_instruction() const       { return _current_instruction; }
 168   Instruction* set_current_instruction(Instruction* instr) {
 169     Instruction* previous = _current_instruction;
 170     _current_instruction = instr;
 171     return previous;
 172   }
 173 
 174 #ifndef PRODUCT
 175   void maybe_print_current_instruction();
 176 #endif // PRODUCT
 177 
 178   // error handling
 179   void bailout(const char* msg);
 180   bool bailed_out() const                        { return _bailout_msg != NULL; }
 181   const char* bailout_msg() const                { return _bailout_msg; }
 182 
 183   static int desired_max_code_buffer_size() {
 184 #ifndef PPC
 185     return (int) NMethodSizeLimit;  // default 256K or 512K
 186 #else
 187     // conditional branches on PPC are restricted to 16 bit signed
 188     return MAX2((unsigned int)NMethodSizeLimit,32*K);
 189 #endif
 190   }
 191   static int desired_max_constant_size() {
 192 #ifndef PPC
 193     return (int) NMethodSizeLimit / 10;  // about 25K
 194 #else
 195     return (MAX2((unsigned int)NMethodSizeLimit, 32*K)) / 10;
 196 #endif
 197   }
 198 
 199   static void setup_code_buffer(CodeBuffer* cb, int call_stub_estimate);
 200 
 201   // timers
 202   static void print_timers();
 203 
 204 #ifndef PRODUCT
 205   // debugging support.
 206   // produces a file named c1compileonly in the current directory with
 207   // directives to compile only the current method and it's inlines.
 208   // The file can be passed to the command line option -XX:Flags=<filename>
 209   void compile_only_this_method();
 210   void compile_only_this_scope(outputStream* st, IRScope* scope);
 211   void exclude_this_method();
 212 #endif // PRODUCT
 213 
 214   bool is_profiling() {
 215     return env()->comp_level() == CompLevel_full_profile ||
 216            env()->comp_level() == CompLevel_limited_profile;
 217   }
 218   bool count_invocations() { return is_profiling(); }
 219   bool count_backedges()   { return is_profiling(); }
 220 
 221   // Helpers for generation of profile information
 222   bool profile_branches() {
 223     return env()->comp_level() == CompLevel_full_profile &&
 224       C1UpdateMethodData && C1ProfileBranches;
 225   }
 226   bool profile_calls() {
 227     return env()->comp_level() == CompLevel_full_profile &&
 228       C1UpdateMethodData && C1ProfileCalls;
 229   }
 230   bool profile_inlined_calls() {
 231     return profile_calls() && C1ProfileInlinedCalls;
 232   }
 233   bool profile_checkcasts() {
 234     return env()->comp_level() == CompLevel_full_profile &&
 235       C1UpdateMethodData && C1ProfileCheckcasts;
 236   }
 237 };
 238 
 239 
 240 // Macro definitions for unified bailout-support
 241 // The methods bailout() and bailed_out() are present in all classes
 242 // that might bailout, but forward all calls to Compilation
 243 #define BAILOUT(msg)               { bailout(msg); return;              }
 244 #define BAILOUT_(msg, res)         { bailout(msg); return res;          }
 245 
 246 #define CHECK_BAILOUT()            { if (bailed_out()) return;          }
 247 #define CHECK_BAILOUT_(res)        { if (bailed_out()) return res;      }
 248 
 249 
 250 class InstructionMark: public StackObj {
 251  private:
 252   Compilation* _compilation;
 253   Instruction*  _previous;
 254 
 255  public:
 256   InstructionMark(Compilation* compilation, Instruction* instr) {
 257     _compilation = compilation;
 258     _previous = _compilation->set_current_instruction(instr);
 259   }
 260   ~InstructionMark() {
 261     _compilation->set_current_instruction(_previous);
 262   }
 263 };
 264 
 265 
 266 //----------------------------------------------------------------------
 267 // Base class for objects allocated by the compiler in the compilation arena
 268 class CompilationResourceObj ALLOCATION_SUPER_CLASS_SPEC {
 269  public:
 270   void* operator new(size_t size) { return Compilation::current()->arena()->Amalloc(size); }
 271   void* operator new(size_t size, Arena* arena) {
 272     return arena->Amalloc(size);
 273   }
 274   void  operator delete(void* p) {} // nothing to do
 275 };
 276 
 277 
 278 //----------------------------------------------------------------------
 279 // Class for aggregating exception handler information.
 280 
 281 // Effectively extends XHandlers class with PC offset of
 282 // potentially exception-throwing instruction.
 283 // This class is used at the end of the compilation to build the
 284 // ExceptionHandlerTable.
 285 class ExceptionInfo: public CompilationResourceObj {
 286  private:
 287   int             _pco;                // PC of potentially exception-throwing instruction
 288   XHandlers*      _exception_handlers; // flat list of exception handlers covering this PC
 289 
 290  public:
 291   ExceptionInfo(int pco, XHandlers* exception_handlers)
 292     : _pco(pco)
 293     , _exception_handlers(exception_handlers)
 294   { }
 295 
 296   int pco()                                      { return _pco; }
 297   XHandlers* exception_handlers()                { return _exception_handlers; }
 298 };
 299 
 300 #endif // SHARE_VM_C1_C1_COMPILATION_HPP