annotate src/share/vm/c1/c1_Compilation.hpp @ 1476:1f81c0d18c75

Build also release version of VM. Fix towards making SpecJVM2008 run.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 26 Nov 2010 12:12:35 +0100
parents b4776199210f
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1397
b4776199210f 6943485: JVMTI always on capabilities change code generation too much
never
parents: 0
diff changeset
2 * Copyright 1999-2010 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class BlockBegin;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class CompilationResourceObj;
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class XHandlers;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 class ExceptionInfo;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class DebugInformationRecorder;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class FrameMap;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class IR;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class IRScope;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class Instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class LinearScan;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class OopMap;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class LIR_Emitter;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 class LIR_Assembler;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class CodeEmitInfo;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class ciEnv;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class ciMethod;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class ValueStack;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class LIR_OprDesc;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class C1_MacroAssembler;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 class CFGPrinter;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 typedef LIR_OprDesc* LIR_Opr;
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 define_array(BasicTypeArray, BasicType)
a61af66fc99e Initial load
duke
parents:
diff changeset
49 define_stack(BasicTypeList, BasicTypeArray)
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 define_array(ExceptionInfoArray, ExceptionInfo*)
a61af66fc99e Initial load
duke
parents:
diff changeset
52 define_stack(ExceptionInfoList, ExceptionInfoArray)
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 class Compilation: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 friend class CompilationResourceObj;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static Arena* _arena;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 static Arena* arena() { return _arena; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static Compilation* _compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // compilation specifics
a61af66fc99e Initial load
duke
parents:
diff changeset
65 AbstractCompiler* _compiler;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 ciEnv* _env;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 ciMethod* _method;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 int _osr_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 IR* _hir;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 int _max_spills;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 FrameMap* _frame_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 C1_MacroAssembler* _masm;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 bool _has_exception_handlers;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 bool _has_fpu_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool _has_unsafe_access;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 const char* _bailout_msg;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ExceptionInfoList* _exception_info_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ExceptionHandlerTable _exception_handler_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 ImplicitExceptionTable _implicit_exception_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 LinearScan* _allocator;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 CodeOffsets _offsets;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 CodeBuffer _code;
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // compilation helpers
a61af66fc99e Initial load
duke
parents:
diff changeset
85 void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
86 void build_hir();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 void emit_lir();
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 void emit_code_epilog(LIR_Assembler* assembler);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int emit_code_body();
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 int compile_java_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void install_code(int frame_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 void compile_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void generate_exception_handler_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 ExceptionInfoList* exception_info_list() const { return _exception_info_list; }
a61af66fc99e Initial load
duke
parents:
diff changeset
99 ExceptionHandlerTable* exception_handler_table() { return &_exception_handler_table; }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 LinearScan* allocator() { return _allocator; }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void set_allocator(LinearScan* allocator) { _allocator = allocator; }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 Instruction* _current_instruction; // the instruction currently being processed
a61af66fc99e Initial load
duke
parents:
diff changeset
105 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
106 Instruction* _last_instruction_printed; // the last instruction printed during traversal
a61af66fc99e Initial load
duke
parents:
diff changeset
107 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // creation
a61af66fc99e Initial load
duke
parents:
diff changeset
111 Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method, int osr_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ~Compilation();
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 static Compilation* current_compilation() { return _compilation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ciEnv* env() const { return _env; }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 AbstractCompiler* compiler() const { return _compiler; }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 bool has_exception_handlers() const { return _has_exception_handlers; }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 bool has_fpu_code() const { return _has_fpu_code; }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 bool has_unsafe_access() const { return _has_unsafe_access; }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 ciMethod* method() const { return _method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 int osr_bci() const { return _osr_bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 bool is_osr_compile() const { return osr_bci() >= 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 IR* hir() const { return _hir; }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 int max_spills() const { return _max_spills; }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 FrameMap* frame_map() const { return _frame_map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
128 CodeBuffer* code() { return &_code; }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 C1_MacroAssembler* masm() const { return _masm; }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 CodeOffsets* offsets() { return &_offsets; }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // setters
a61af66fc99e Initial load
duke
parents:
diff changeset
133 void set_has_exception_handlers(bool f) { _has_exception_handlers = f; }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 void set_has_fpu_code(bool f) { _has_fpu_code = f; }
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void set_has_unsafe_access(bool f) { _has_unsafe_access = f; }
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Add a set of exception handlers covering the given PC offset
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Statistics gathering
a61af66fc99e Initial load
duke
parents:
diff changeset
139 void notice_inlined_method(ciMethod* method);
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 DebugInformationRecorder* debug_info_recorder() const; // = _env->debug_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 Dependencies* dependency_recorder() const; // = _env->dependencies()
a61af66fc99e Initial load
duke
parents:
diff changeset
143 ImplicitExceptionTable* implicit_exception_table() { return &_implicit_exception_table; }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 Instruction* current_instruction() const { return _current_instruction; }
a61af66fc99e Initial load
duke
parents:
diff changeset
146 Instruction* set_current_instruction(Instruction* instr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 Instruction* previous = _current_instruction;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 _current_instruction = instr;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 return previous;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
153 void maybe_print_current_instruction();
a61af66fc99e Initial load
duke
parents:
diff changeset
154 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // error handling
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void bailout(const char* msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 bool bailed_out() const { return _bailout_msg != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 const char* bailout_msg() const { return _bailout_msg; }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // timers
a61af66fc99e Initial load
duke
parents:
diff changeset
162 static void print_timers();
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // debugging support.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // produces a file named c1compileonly in the current directory with
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // directives to compile only the current method and it's inlines.
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // The file can be passed to the command line option -XX:Flags=<filename>
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void compile_only_this_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 void compile_only_this_scope(outputStream* st, IRScope* scope);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 void exclude_this_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
172 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
173 };
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Macro definitions for unified bailout-support
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // The methods bailout() and bailed_out() are present in all classes
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // that might bailout, but forward all calls to Compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
179 #define BAILOUT(msg) { bailout(msg); return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 #define BAILOUT_(msg, res) { bailout(msg); return res; }
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 #define CHECK_BAILOUT() { if (bailed_out()) return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
183 #define CHECK_BAILOUT_(res) { if (bailed_out()) return res; }
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 class InstructionMark: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
188 Compilation* _compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 Instruction* _previous;
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
192 InstructionMark(Compilation* compilation, Instruction* instr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 _compilation = compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _previous = _compilation->set_current_instruction(instr);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 ~InstructionMark() {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 _compilation->set_current_instruction(_previous);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 };
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 //----------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // Base class for objects allocated by the compiler in the compilation arena
a61af66fc99e Initial load
duke
parents:
diff changeset
204 class CompilationResourceObj ALLOCATION_SUPER_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
206 void* operator new(size_t size) { return Compilation::arena()->Amalloc(size); }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 void operator delete(void* p) {} // nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
208 };
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 //----------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // Class for aggregating exception handler information.
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // Effectively extends XHandlers class with PC offset of
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // potentially exception-throwing instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // This class is used at the end of the compilation to build the
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // ExceptionHandlerTable.
a61af66fc99e Initial load
duke
parents:
diff changeset
218 class ExceptionInfo: public CompilationResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
220 int _pco; // PC of potentially exception-throwing instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
221 XHandlers* _exception_handlers; // flat list of exception handlers covering this PC
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
224 ExceptionInfo(int pco, XHandlers* exception_handlers)
a61af66fc99e Initial load
duke
parents:
diff changeset
225 : _pco(pco)
a61af66fc99e Initial load
duke
parents:
diff changeset
226 , _exception_handlers(exception_handlers)
a61af66fc99e Initial load
duke
parents:
diff changeset
227 { }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 int pco() { return _pco; }
a61af66fc99e Initial load
duke
parents:
diff changeset
230 XHandlers* exception_handlers() { return _exception_handlers; }
a61af66fc99e Initial load
duke
parents:
diff changeset
231 };