blob: 63fed4a1b6a11a43e3eccccc1735cde286de8930 [file] [log] [blame]
ager@chromium.org71daaf62009-04-01 07:22:49 +00001// Copyright 2009 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#include "v8.h"
29
30#include "bootstrapper.h"
31#include "codegen-inl.h"
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000032#include "compilation-cache.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000033#include "compiler.h"
34#include "debug.h"
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000035#include "oprofile-agent.h"
ager@chromium.org71daaf62009-04-01 07:22:49 +000036#include "rewriter.h"
37#include "scopes.h"
38#include "usage-analyzer.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000039
40namespace v8 { namespace internal {
41
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000042static Handle<Code> MakeCode(FunctionLiteral* literal,
43 Handle<Script> script,
ager@chromium.org381abbb2009-02-25 13:23:22 +000044 Handle<Context> context,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000045 bool is_eval) {
46 ASSERT(literal != NULL);
47
48 // Rewrite the AST by introducing .result assignments where needed.
49 if (!Rewriter::Process(literal) || !AnalyzeVariableUsage(literal)) {
kasper.lund212ac232008-07-16 07:07:30 +000050 // Signal a stack overflow by returning a null handle. The stack
51 // overflow exception will be thrown by the caller.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000052 return Handle<Code>::null();
53 }
54
55 // Compute top scope and allocate variables. For lazy compilation
56 // the top scope only contains the single lazily compiled function,
57 // so this doesn't re-allocate variables repeatedly.
58 Scope* top = literal->scope();
59 while (top->outer_scope() != NULL) top = top->outer_scope();
ager@chromium.org381abbb2009-02-25 13:23:22 +000060 top->AllocateVariables(context);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000061
62#ifdef DEBUG
63 if (Bootstrapper::IsActive() ?
64 FLAG_print_builtin_scopes :
65 FLAG_print_scopes) {
66 literal->scope()->Print();
67 }
68#endif
69
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000070 // Optimize the AST.
ager@chromium.org3bf7b912008-11-17 09:09:45 +000071 if (!Rewriter::Optimize(literal)) {
72 // Signal a stack overflow by returning a null handle. The stack
73 // overflow exception will be thrown by the caller.
74 return Handle<Code>::null();
75 }
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000076
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000077 // Generate code and return it.
78 Handle<Code> result = CodeGenerator::MakeCode(literal, script, is_eval);
79 return result;
80}
81
82
83static Handle<JSFunction> MakeFunction(bool is_global,
84 bool is_eval,
85 Handle<Script> script,
ager@chromium.org381abbb2009-02-25 13:23:22 +000086 Handle<Context> context,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000087 v8::Extension* extension,
88 ScriptDataImpl* pre_data) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000089 ZoneScope zone_scope(DELETE_ON_EXIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000090
91 // Make sure we have an initial stack limit.
92 StackGuard guard;
kasper.lund44510672008-07-25 07:37:58 +000093 PostponeInterruptsScope postpone;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000094
95 // Notify debugger
96 Debugger::OnBeforeCompile(script);
97
98 // Only allow non-global compiles for eval.
99 ASSERT(is_eval || is_global);
100
101 // Build AST.
102 FunctionLiteral* lit = MakeAST(is_global, script, extension, pre_data);
103
kasper.lund212ac232008-07-16 07:07:30 +0000104 // Check for parse errors.
105 if (lit == NULL) {
106 ASSERT(Top::has_pending_exception());
kasper.lund212ac232008-07-16 07:07:30 +0000107 return Handle<JSFunction>::null();
108 }
109
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000110 // Measure how long it takes to do the compilation; only take the
111 // rest of the function into account to avoid overlap with the
112 // parsing statistics.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000113 HistogramTimer* rate = is_eval
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000114 ? &Counters::compile_eval
115 : &Counters::compile;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000116 HistogramTimerScope timer(rate);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000117
118 // Compile the code.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000119 Handle<Code> code = MakeCode(lit, script, context, is_eval);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000120
kasper.lund212ac232008-07-16 07:07:30 +0000121 // Check for stack-overflow exceptions.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000122 if (code.is_null()) {
kasper.lund212ac232008-07-16 07:07:30 +0000123 Top::StackOverflow();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000124 return Handle<JSFunction>::null();
125 }
126
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000127#if defined ENABLE_LOGGING_AND_PROFILING || defined ENABLE_OPROFILE_AGENT
iposva@chromium.org245aa852009-02-10 00:49:54 +0000128 // Log the code generation for the script. Check explicit whether logging is
129 // to avoid allocating when not required.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000130 if (Logger::is_enabled() || OProfileAgent::is_enabled()) {
iposva@chromium.org245aa852009-02-10 00:49:54 +0000131 if (script->name()->IsString()) {
132 SmartPointer<char> data =
133 String::cast(script->name())->ToCString(DISALLOW_NULLS);
134 LOG(CodeCreateEvent(is_eval ? "Eval" : "Script", *code, *data));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000135 OProfileAgent::CreateNativeCodeRegion(*data, code->address(),
136 code->ExecutableSize());
iposva@chromium.org245aa852009-02-10 00:49:54 +0000137 } else {
138 LOG(CodeCreateEvent(is_eval ? "Eval" : "Script", *code, ""));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000139 OProfileAgent::CreateNativeCodeRegion(is_eval ? "Eval" : "Script",
140 code->address(), code->ExecutableSize());
iposva@chromium.org245aa852009-02-10 00:49:54 +0000141 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000142 }
iposva@chromium.org245aa852009-02-10 00:49:54 +0000143#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000144
145 // Allocate function.
146 Handle<JSFunction> fun =
147 Factory::NewFunctionBoilerplate(lit->name(),
148 lit->materialized_literal_count(),
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000149 lit->contains_array_literal(),
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000150 code);
151
152 CodeGenerator::SetFunctionInfo(fun, lit->scope()->num_parameters(),
ager@chromium.org236ad962008-09-25 09:45:57 +0000153 RelocInfo::kNoPosition,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000154 lit->start_position(), lit->end_position(),
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +0000155 lit->is_expression(), true, script,
156 lit->inferred_name());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000157
158 // Hint to the runtime system used when allocating space for initial
159 // property space by setting the expected number of properties for
160 // the instances of the function.
161 SetExpectedNofPropertiesFromEstimate(fun, lit->expected_property_count());
162
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000163 // Notify debugger
164 Debugger::OnAfterCompile(script, fun);
165
166 return fun;
167}
168
169
170static StaticResource<SafeStringInputBuffer> safe_string_input_buffer;
171
172
173Handle<JSFunction> Compiler::Compile(Handle<String> source,
mads.s.agercbaa0602008-08-14 13:41:48 +0000174 Handle<Object> script_name,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000175 int line_offset, int column_offset,
176 v8::Extension* extension,
177 ScriptDataImpl* input_pre_data) {
ager@chromium.org870a0b62008-11-04 11:43:05 +0000178 int source_length = source->length();
179 Counters::total_load_size.Increment(source_length);
180 Counters::total_compile_size.Increment(source_length);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000181
182 // The VM is in the COMPILER state until exiting this function.
183 VMState state(COMPILER);
184
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000185 // Do a lookup in the compilation cache but not for extensions.
186 Handle<JSFunction> result;
187 if (extension == NULL) {
188 result = CompilationCache::LookupScript(source,
189 script_name,
190 line_offset,
191 column_offset);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000192 }
193
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000194 if (result.is_null()) {
195 // No cache entry found. Do pre-parsing and compile the script.
196 ScriptDataImpl* pre_data = input_pre_data;
ager@chromium.org870a0b62008-11-04 11:43:05 +0000197 if (pre_data == NULL && source_length >= FLAG_min_preparse_length) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000198 Access<SafeStringInputBuffer> buf(&safe_string_input_buffer);
199 buf->Reset(source.location());
200 pre_data = PreParse(buf.value(), extension);
201 }
202
203 // Create a script object describing the script to be compiled.
204 Handle<Script> script = Factory::NewScript(source);
205 if (!script_name.is_null()) {
206 script->set_name(*script_name);
207 script->set_line_offset(Smi::FromInt(line_offset));
208 script->set_column_offset(Smi::FromInt(column_offset));
209 }
210
211 // Compile the function and add it to the cache.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000212 result = MakeFunction(true,
213 false,
214 script,
215 Handle<Context>::null(),
216 extension,
217 pre_data);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000218 if (extension == NULL && !result.is_null()) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000219 CompilationCache::PutScript(source, result);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000220 }
221
222 // Get rid of the pre-parsing data (if necessary).
223 if (input_pre_data == NULL && pre_data != NULL) {
224 delete pre_data;
225 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000226 }
227
ager@chromium.org8bb60582008-12-11 12:02:20 +0000228 if (result.is_null()) Top::ReportPendingMessages();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000229 return result;
230}
231
232
ager@chromium.org236ad962008-09-25 09:45:57 +0000233Handle<JSFunction> Compiler::CompileEval(Handle<String> source,
ager@chromium.org381abbb2009-02-25 13:23:22 +0000234 Handle<Context> context,
ager@chromium.org236ad962008-09-25 09:45:57 +0000235 int line_offset,
236 bool is_global) {
ager@chromium.orgc3e50d82008-11-05 11:53:10 +0000237 int source_length = source->length();
ager@chromium.org870a0b62008-11-04 11:43:05 +0000238 Counters::total_eval_size.Increment(source_length);
239 Counters::total_compile_size.Increment(source_length);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000240
241 // The VM is in the COMPILER state until exiting this function.
242 VMState state(COMPILER);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000243 CompilationCache::Entry entry = is_global
244 ? CompilationCache::EVAL_GLOBAL
245 : CompilationCache::EVAL_CONTEXTUAL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000246
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000247 // Do a lookup in the compilation cache; if the entry is not there,
248 // invoke the compiler and add the result to the cache.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000249 Handle<JSFunction> result =
250 CompilationCache::LookupEval(source, context, entry);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000251 if (result.is_null()) {
252 // Create a script object describing the script to be compiled.
253 Handle<Script> script = Factory::NewScript(source);
ager@chromium.org236ad962008-09-25 09:45:57 +0000254 script->set_line_offset(Smi::FromInt(line_offset));
ager@chromium.org381abbb2009-02-25 13:23:22 +0000255 result = MakeFunction(is_global, true, script, context, NULL, NULL);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000256 if (!result.is_null()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000257 CompilationCache::PutEval(source, context, entry, result);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000258 }
259 }
ager@chromium.org8bb60582008-12-11 12:02:20 +0000260
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000261 return result;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000262}
263
264
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000265bool Compiler::CompileLazy(Handle<SharedFunctionInfo> shared,
266 int loop_nesting) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000267 ZoneScope zone_scope(DELETE_ON_EXIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000268
269 // The VM is in the COMPILER state until exiting this function.
270 VMState state(COMPILER);
271
272 // Make sure we have an initial stack limit.
273 StackGuard guard;
kasper.lund44510672008-07-25 07:37:58 +0000274 PostponeInterruptsScope postpone;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000275
276 // Compute name, source code and script data.
277 Handle<String> name(String::cast(shared->name()));
278 Handle<Script> script(Script::cast(shared->script()));
279
280 int start_position = shared->start_position();
281 int end_position = shared->end_position();
282 bool is_expression = shared->is_expression();
283 Counters::total_compile_size.Increment(end_position - start_position);
284
285 // Generate the AST for the lazily compiled function. The AST may be
286 // NULL in case of parser stack overflow.
287 FunctionLiteral* lit = MakeLazyAST(script, name,
288 start_position,
289 end_position,
290 is_expression);
291
kasper.lund212ac232008-07-16 07:07:30 +0000292 // Check for parse errors.
293 if (lit == NULL) {
294 ASSERT(Top::has_pending_exception());
kasper.lund212ac232008-07-16 07:07:30 +0000295 return false;
296 }
297
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000298 // Update the loop nesting in the function literal.
299 lit->set_loop_nesting(loop_nesting);
300
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000301 // Measure how long it takes to do the lazy compilation; only take
302 // the rest of the function into account to avoid overlap with the
303 // lazy parsing statistics.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000304 HistogramTimerScope timer(&Counters::compile_lazy);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000305
kasper.lund212ac232008-07-16 07:07:30 +0000306 // Compile the code.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000307 Handle<Code> code = MakeCode(lit, script, Handle<Context>::null(), false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000308
kasper.lund212ac232008-07-16 07:07:30 +0000309 // Check for stack-overflow exception.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000310 if (code.is_null()) {
kasper.lund212ac232008-07-16 07:07:30 +0000311 Top::StackOverflow();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000312 return false;
313 }
314
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000315#if defined ENABLE_LOGGING_AND_PROFILING || defined ENABLE_OPROFILE_AGENT
iposva@chromium.org245aa852009-02-10 00:49:54 +0000316 // Log the code generation. If source information is available include script
317 // name and line number. Check explicit whether logging is enabled as finding
318 // the line number is not for free.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000319 if (Logger::is_enabled() || OProfileAgent::is_enabled()) {
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +0000320 Handle<String> func_name(lit->name()->length() > 0 ?
321 *lit->name() : shared->inferred_name());
iposva@chromium.org245aa852009-02-10 00:49:54 +0000322 if (script->name()->IsString()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000323 int line_num = GetScriptLineNumber(script, start_position);
iposva@chromium.org245aa852009-02-10 00:49:54 +0000324 if (line_num > 0) {
325 line_num += script->line_offset()->value() + 1;
326 }
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +0000327 LOG(CodeCreateEvent("LazyCompile", *code, *func_name,
iposva@chromium.org245aa852009-02-10 00:49:54 +0000328 String::cast(script->name()), line_num));
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +0000329 OProfileAgent::CreateNativeCodeRegion(*func_name,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000330 String::cast(script->name()),
331 line_num, code->address(),
332 code->ExecutableSize());
iposva@chromium.org245aa852009-02-10 00:49:54 +0000333 } else {
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +0000334 LOG(CodeCreateEvent("LazyCompile", *code, *func_name));
335 OProfileAgent::CreateNativeCodeRegion(*func_name, code->address(),
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000336 code->ExecutableSize());
iposva@chromium.org245aa852009-02-10 00:49:54 +0000337 }
338 }
339#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000340
341 // Update the shared function info with the compiled code.
342 shared->set_code(*code);
343
344 // Set the expected number of properties for instances.
345 SetExpectedNofPropertiesFromEstimate(shared, lit->expected_property_count());
346
347 // Check the function has compiled code.
348 ASSERT(shared->is_compiled());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000349 return true;
350}
351
352
353} } // namespace v8::internal