blob: ced094c0f2290db3df029f79f9342aa2d666595c [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(),
155 lit->is_expression(), true, script);
156
157 // Hint to the runtime system used when allocating space for initial
158 // property space by setting the expected number of properties for
159 // the instances of the function.
160 SetExpectedNofPropertiesFromEstimate(fun, lit->expected_property_count());
161
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000162 // Notify debugger
163 Debugger::OnAfterCompile(script, fun);
164
165 return fun;
166}
167
168
169static StaticResource<SafeStringInputBuffer> safe_string_input_buffer;
170
171
172Handle<JSFunction> Compiler::Compile(Handle<String> source,
mads.s.agercbaa0602008-08-14 13:41:48 +0000173 Handle<Object> script_name,
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000174 int line_offset, int column_offset,
175 v8::Extension* extension,
176 ScriptDataImpl* input_pre_data) {
ager@chromium.org870a0b62008-11-04 11:43:05 +0000177 int source_length = source->length();
178 Counters::total_load_size.Increment(source_length);
179 Counters::total_compile_size.Increment(source_length);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000180
181 // The VM is in the COMPILER state until exiting this function.
182 VMState state(COMPILER);
183
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000184 // Do a lookup in the compilation cache but not for extensions.
185 Handle<JSFunction> result;
186 if (extension == NULL) {
187 result = CompilationCache::LookupScript(source,
188 script_name,
189 line_offset,
190 column_offset);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000191 }
192
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000193 if (result.is_null()) {
194 // No cache entry found. Do pre-parsing and compile the script.
195 ScriptDataImpl* pre_data = input_pre_data;
ager@chromium.org870a0b62008-11-04 11:43:05 +0000196 if (pre_data == NULL && source_length >= FLAG_min_preparse_length) {
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000197 Access<SafeStringInputBuffer> buf(&safe_string_input_buffer);
198 buf->Reset(source.location());
199 pre_data = PreParse(buf.value(), extension);
200 }
201
202 // Create a script object describing the script to be compiled.
203 Handle<Script> script = Factory::NewScript(source);
204 if (!script_name.is_null()) {
205 script->set_name(*script_name);
206 script->set_line_offset(Smi::FromInt(line_offset));
207 script->set_column_offset(Smi::FromInt(column_offset));
208 }
209
210 // Compile the function and add it to the cache.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000211 result = MakeFunction(true,
212 false,
213 script,
214 Handle<Context>::null(),
215 extension,
216 pre_data);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000217 if (extension == NULL && !result.is_null()) {
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000218 CompilationCache::PutScript(source, result);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000219 }
220
221 // Get rid of the pre-parsing data (if necessary).
222 if (input_pre_data == NULL && pre_data != NULL) {
223 delete pre_data;
224 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000225 }
226
ager@chromium.org8bb60582008-12-11 12:02:20 +0000227 if (result.is_null()) Top::ReportPendingMessages();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000228 return result;
229}
230
231
ager@chromium.org236ad962008-09-25 09:45:57 +0000232Handle<JSFunction> Compiler::CompileEval(Handle<String> source,
ager@chromium.org381abbb2009-02-25 13:23:22 +0000233 Handle<Context> context,
ager@chromium.org236ad962008-09-25 09:45:57 +0000234 int line_offset,
235 bool is_global) {
ager@chromium.orgc3e50d82008-11-05 11:53:10 +0000236 int source_length = source->length();
ager@chromium.org870a0b62008-11-04 11:43:05 +0000237 Counters::total_eval_size.Increment(source_length);
238 Counters::total_compile_size.Increment(source_length);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000239
240 // The VM is in the COMPILER state until exiting this function.
241 VMState state(COMPILER);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000242 CompilationCache::Entry entry = is_global
243 ? CompilationCache::EVAL_GLOBAL
244 : CompilationCache::EVAL_CONTEXTUAL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000245
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000246 // Do a lookup in the compilation cache; if the entry is not there,
247 // invoke the compiler and add the result to the cache.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000248 Handle<JSFunction> result =
249 CompilationCache::LookupEval(source, context, entry);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000250 if (result.is_null()) {
251 // Create a script object describing the script to be compiled.
252 Handle<Script> script = Factory::NewScript(source);
ager@chromium.org236ad962008-09-25 09:45:57 +0000253 script->set_line_offset(Smi::FromInt(line_offset));
ager@chromium.org381abbb2009-02-25 13:23:22 +0000254 result = MakeFunction(is_global, true, script, context, NULL, NULL);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000255 if (!result.is_null()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000256 CompilationCache::PutEval(source, context, entry, result);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000257 }
258 }
ager@chromium.org8bb60582008-12-11 12:02:20 +0000259
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000260 return result;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000261}
262
263
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000264bool Compiler::CompileLazy(Handle<SharedFunctionInfo> shared,
265 int loop_nesting) {
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000266 ZoneScope zone_scope(DELETE_ON_EXIT);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000267
268 // The VM is in the COMPILER state until exiting this function.
269 VMState state(COMPILER);
270
271 // Make sure we have an initial stack limit.
272 StackGuard guard;
kasper.lund44510672008-07-25 07:37:58 +0000273 PostponeInterruptsScope postpone;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000274
275 // Compute name, source code and script data.
276 Handle<String> name(String::cast(shared->name()));
277 Handle<Script> script(Script::cast(shared->script()));
278
279 int start_position = shared->start_position();
280 int end_position = shared->end_position();
281 bool is_expression = shared->is_expression();
282 Counters::total_compile_size.Increment(end_position - start_position);
283
284 // Generate the AST for the lazily compiled function. The AST may be
285 // NULL in case of parser stack overflow.
286 FunctionLiteral* lit = MakeLazyAST(script, name,
287 start_position,
288 end_position,
289 is_expression);
290
kasper.lund212ac232008-07-16 07:07:30 +0000291 // Check for parse errors.
292 if (lit == NULL) {
293 ASSERT(Top::has_pending_exception());
kasper.lund212ac232008-07-16 07:07:30 +0000294 return false;
295 }
296
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000297 // Update the loop nesting in the function literal.
298 lit->set_loop_nesting(loop_nesting);
299
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000300 // Measure how long it takes to do the lazy compilation; only take
301 // the rest of the function into account to avoid overlap with the
302 // lazy parsing statistics.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000303 HistogramTimerScope timer(&Counters::compile_lazy);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000304
kasper.lund212ac232008-07-16 07:07:30 +0000305 // Compile the code.
ager@chromium.org381abbb2009-02-25 13:23:22 +0000306 Handle<Code> code = MakeCode(lit, script, Handle<Context>::null(), false);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000307
kasper.lund212ac232008-07-16 07:07:30 +0000308 // Check for stack-overflow exception.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000309 if (code.is_null()) {
kasper.lund212ac232008-07-16 07:07:30 +0000310 Top::StackOverflow();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000311 return false;
312 }
313
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000314#if defined ENABLE_LOGGING_AND_PROFILING || defined ENABLE_OPROFILE_AGENT
iposva@chromium.org245aa852009-02-10 00:49:54 +0000315 // Log the code generation. If source information is available include script
316 // name and line number. Check explicit whether logging is enabled as finding
317 // the line number is not for free.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000318 if (Logger::is_enabled() || OProfileAgent::is_enabled()) {
iposva@chromium.org245aa852009-02-10 00:49:54 +0000319 if (script->name()->IsString()) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000320 int line_num = GetScriptLineNumber(script, start_position);
iposva@chromium.org245aa852009-02-10 00:49:54 +0000321 if (line_num > 0) {
322 line_num += script->line_offset()->value() + 1;
323 }
324 LOG(CodeCreateEvent("LazyCompile", *code, *lit->name(),
325 String::cast(script->name()), line_num));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000326 OProfileAgent::CreateNativeCodeRegion(*lit->name(),
327 String::cast(script->name()),
328 line_num, code->address(),
329 code->ExecutableSize());
iposva@chromium.org245aa852009-02-10 00:49:54 +0000330 } else {
331 LOG(CodeCreateEvent("LazyCompile", *code, *lit->name()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000332 OProfileAgent::CreateNativeCodeRegion(*lit->name(), code->address(),
333 code->ExecutableSize());
iposva@chromium.org245aa852009-02-10 00:49:54 +0000334 }
335 }
336#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000337
338 // Update the shared function info with the compiled code.
339 shared->set_code(*code);
340
341 // Set the expected number of properties for instances.
342 SetExpectedNofPropertiesFromEstimate(shared, lit->expected_property_count());
343
344 // Check the function has compiled code.
345 ASSERT(shared->is_compiled());
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000346 return true;
347}
348
349
350} } // namespace v8::internal