src/share/vm/c1/c1_Compilation.hpp

Thu, 29 Aug 2013 18:56:29 -0400

author
coleenp
date
Thu, 29 Aug 2013 18:56:29 -0400
changeset 5614
9758d9f36299
parent 4860
46f6f063b272
child 5914
d13d7aba8c12
permissions
-rw-r--r--

8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
Summary: declare all user-defined operator new()s within Hotspot code with the empty throw() exception specification
Reviewed-by: coleenp, twisti, dholmes, hseigel, dcubed, kvn, ccheung
Contributed-by: lois.foltan@oracle.com

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

mercurial