blob: ecac5cba69065c1226df0d281d14fd66db6cb5af [file] [log] [blame]
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001// Copyright 2012 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +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
Ben Murdochf87a2032010-10-22 12:50:53 +010030#include "compiler.h"
31
Steve Blocka7e24c12009-10-30 11:49:00 +000032#include "bootstrapper.h"
Ben Murdoch8b112d22011-06-08 16:22:53 +010033#include "codegen.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000034#include "compilation-cache.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000035#include "debug.h"
Leon Clarked91b9f72010-01-27 17:25:45 +000036#include "full-codegen.h"
Ben Murdochb8e0da22011-05-16 14:20:40 +010037#include "gdb-jit.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010038#include "hydrogen.h"
Ben Murdoch3ef787d2012-04-12 10:51:47 +010039#include "isolate-inl.h"
Steve Block1e0659c2011-05-24 12:43:12 +010040#include "lithium.h"
Steve Block6ded16b2010-05-10 14:33:55 +010041#include "liveedit.h"
Ben Murdochf87a2032010-10-22 12:50:53 +010042#include "parser.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000043#include "rewriter.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010044#include "runtime-profiler.h"
Ben Murdoch589d6972011-11-30 16:04:58 +000045#include "scanner-character-streams.h"
Ben Murdoch3bec4d22010-07-22 14:51:16 +010046#include "scopeinfo.h"
Ben Murdochf87a2032010-10-22 12:50:53 +010047#include "scopes.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010048#include "vm-state-inl.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000049
50namespace v8 {
51namespace internal {
52
Ben Murdochf87a2032010-10-22 12:50:53 +010053
54CompilationInfo::CompilationInfo(Handle<Script> script)
Steve Block44f0eee2011-05-26 01:26:41 +010055 : isolate_(script->GetIsolate()),
Ben Murdoch3ef787d2012-04-12 10:51:47 +010056 flags_(LanguageModeField::encode(CLASSIC_MODE)),
Ben Murdochf87a2032010-10-22 12:50:53 +010057 function_(NULL),
58 scope_(NULL),
Ben Murdoch3ef787d2012-04-12 10:51:47 +010059 global_scope_(NULL),
Ben Murdochf87a2032010-10-22 12:50:53 +010060 script_(script),
61 extension_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010062 pre_parse_data_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010063 osr_ast_id_(AstNode::kNoNumber) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +010064 Initialize(BASE);
Ben Murdochf87a2032010-10-22 12:50:53 +010065}
66
67
68CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info)
Steve Block44f0eee2011-05-26 01:26:41 +010069 : isolate_(shared_info->GetIsolate()),
Ben Murdoch3ef787d2012-04-12 10:51:47 +010070 flags_(LanguageModeField::encode(CLASSIC_MODE) |
71 IsLazy::encode(true)),
Ben Murdochf87a2032010-10-22 12:50:53 +010072 function_(NULL),
73 scope_(NULL),
Ben Murdoch3ef787d2012-04-12 10:51:47 +010074 global_scope_(NULL),
Ben Murdochf87a2032010-10-22 12:50:53 +010075 shared_info_(shared_info),
76 script_(Handle<Script>(Script::cast(shared_info->script()))),
77 extension_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010078 pre_parse_data_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010079 osr_ast_id_(AstNode::kNoNumber) {
80 Initialize(BASE);
Ben Murdochf87a2032010-10-22 12:50:53 +010081}
82
83
84CompilationInfo::CompilationInfo(Handle<JSFunction> closure)
Steve Block44f0eee2011-05-26 01:26:41 +010085 : isolate_(closure->GetIsolate()),
Ben Murdoch3ef787d2012-04-12 10:51:47 +010086 flags_(LanguageModeField::encode(CLASSIC_MODE) |
87 IsLazy::encode(true)),
Ben Murdochf87a2032010-10-22 12:50:53 +010088 function_(NULL),
89 scope_(NULL),
Ben Murdoch3ef787d2012-04-12 10:51:47 +010090 global_scope_(NULL),
Ben Murdochf87a2032010-10-22 12:50:53 +010091 closure_(closure),
92 shared_info_(Handle<SharedFunctionInfo>(closure->shared())),
93 script_(Handle<Script>(Script::cast(shared_info_->script()))),
94 extension_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010095 pre_parse_data_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010096 osr_ast_id_(AstNode::kNoNumber) {
97 Initialize(BASE);
Ben Murdochf87a2032010-10-22 12:50:53 +010098}
99
100
Ben Murdoch257744e2011-11-30 15:57:28 +0000101// Disable optimization for the rest of the compilation pipeline.
Ben Murdochb8e0da22011-05-16 14:20:40 +0100102void CompilationInfo::DisableOptimization() {
Ben Murdoch257744e2011-11-30 15:57:28 +0000103 bool is_optimizable_closure =
104 FLAG_optimize_closures &&
105 closure_.is_null() &&
106 !scope_->HasTrivialOuterContext() &&
107 !scope_->outer_scope_calls_non_strict_eval() &&
108 !scope_->inside_with();
109 SetMode(is_optimizable_closure ? BASE : NONOPT);
110}
Ben Murdochb8e0da22011-05-16 14:20:40 +0100111
Ben Murdoch257744e2011-11-30 15:57:28 +0000112
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100113// Primitive functions are unlikely to be picked up by the stack-walking
114// profiler, so they trigger their own optimization when they're called
115// for the SharedFunctionInfo::kCallsUntilPrimitiveOptimization-th time.
116bool CompilationInfo::ShouldSelfOptimize() {
117 return FLAG_self_optimization &&
118 FLAG_crankshaft &&
119 !function()->flags()->Contains(kDontSelfOptimize) &&
120 !function()->flags()->Contains(kDontOptimize) &&
Ben Murdoch4768e9d2012-05-24 11:17:13 +0100121 function()->scope()->AllowsLazyRecompilation() &&
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100122 (shared_info().is_null() || !shared_info()->optimization_disabled());
123}
124
125
Ben Murdoch257744e2011-11-30 15:57:28 +0000126void CompilationInfo::AbortOptimization() {
127 Handle<Code> code(shared_info()->code());
128 SetCode(code);
Ben Murdochb8e0da22011-05-16 14:20:40 +0100129}
130
131
Ben Murdochb0fe1622011-05-05 13:52:32 +0100132// Determine whether to use the full compiler for all code. If the flag
133// --always-full-compiler is specified this is the case. For the virtual frame
134// based compiler the full compiler is also used if a debugger is connected, as
135// the code from the full compiler supports mode precise break points. For the
136// crankshaft adaptive compiler debugging the optimized code is not possible at
137// all. However crankshaft support recompilation of functions, so in this case
138// the full compiler need not be be used if a debugger is attached, but only if
139// break points has actually been set.
Ben Murdoch257744e2011-11-30 15:57:28 +0000140static bool is_debugging_active() {
Leon Clarkef7060e22010-06-03 12:02:55 +0100141#ifdef ENABLE_DEBUGGER_SUPPORT
Steve Block44f0eee2011-05-26 01:26:41 +0100142 Isolate* isolate = Isolate::Current();
Ben Murdoch257744e2011-11-30 15:57:28 +0000143 return V8::UseCrankshaft() ?
144 isolate->debug()->has_break_points() :
145 isolate->debugger()->IsDebuggerActive();
Leon Clarkef7060e22010-06-03 12:02:55 +0100146#else
Ben Murdoch257744e2011-11-30 15:57:28 +0000147 return false;
Leon Clarkef7060e22010-06-03 12:02:55 +0100148#endif
149}
150
Steve Block3ce2e202009-11-05 08:53:23 +0000151
Ben Murdoch257744e2011-11-30 15:57:28 +0000152static bool AlwaysFullCompiler() {
153 return FLAG_always_full_compiler || is_debugging_active();
154}
155
156
Ben Murdochb0fe1622011-05-05 13:52:32 +0100157static void FinishOptimization(Handle<JSFunction> function, int64_t start) {
158 int opt_count = function->shared()->opt_count();
159 function->shared()->set_opt_count(opt_count + 1);
160 double ms = static_cast<double>(OS::Ticks() - start) / 1000;
161 if (FLAG_trace_opt) {
162 PrintF("[optimizing: ");
163 function->PrintName();
164 PrintF(" / %" V8PRIxPTR, reinterpret_cast<intptr_t>(*function));
165 PrintF(" - took %0.3f ms]\n", ms);
166 }
167 if (FLAG_trace_opt_stats) {
168 static double compilation_time = 0.0;
169 static int compiled_functions = 0;
170 static int code_size = 0;
171
172 compilation_time += ms;
173 compiled_functions++;
174 code_size += function->shared()->SourceSize();
175 PrintF("Compiled: %d functions with %d byte source size in %fms.\n",
176 compiled_functions,
177 code_size,
178 compilation_time);
179 }
180}
181
182
Ben Murdochb0fe1622011-05-05 13:52:32 +0100183static bool MakeCrankshaftCode(CompilationInfo* info) {
184 // Test if we can optimize this function when asked to. We can only
185 // do this after the scopes are computed.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100186 if (!V8::UseCrankshaft()) {
187 info->DisableOptimization();
188 }
Ben Murdochb0fe1622011-05-05 13:52:32 +0100189
190 // In case we are not optimizing simply return the code from
191 // the full code generator.
192 if (!info->IsOptimizing()) {
193 return FullCodeGenerator::MakeCode(info);
194 }
195
196 // We should never arrive here if there is not code object on the
197 // shared function object.
198 Handle<Code> code(info->shared_info()->code());
199 ASSERT(code->kind() == Code::FUNCTION);
200
Steve Block44f0eee2011-05-26 01:26:41 +0100201 // We should never arrive here if optimization has been disabled on the
202 // shared function info.
203 ASSERT(!info->shared_info()->optimization_disabled());
204
Ben Murdochb0fe1622011-05-05 13:52:32 +0100205 // Fall back to using the full code generator if it's not possible
206 // to use the Hydrogen-based optimizing compiler. We already have
207 // generated code for this from the shared function object.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100208 if (AlwaysFullCompiler()) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100209 info->SetCode(code);
210 return true;
211 }
212
213 // Limit the number of times we re-compile a functions with
214 // the optimizing compiler.
Ben Murdochb8e0da22011-05-16 14:20:40 +0100215 const int kMaxOptCount =
216 FLAG_deopt_every_n_times == 0 ? Compiler::kDefaultMaxOptCount : 1000;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100217 if (info->shared_info()->opt_count() > kMaxOptCount) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000218 info->AbortOptimization();
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100219 info->shared_info()->DisableOptimization();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100220 // True indicates the compilation pipeline is still going, not
221 // necessarily that we optimized the code.
222 return true;
223 }
224
225 // Due to an encoding limit on LUnallocated operands in the Lithium
226 // language, we cannot optimize functions with too many formal parameters
227 // or perform on-stack replacement for function with too many
228 // stack-allocated local variables.
229 //
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100230 // The encoding is as a signed value, with parameters and receiver using
231 // the negative indices and locals the non-negative ones.
Ben Murdoch7d3e7fc2011-07-12 16:37:06 +0100232 const int parameter_limit = -LUnallocated::kMinFixedIndex;
233 const int locals_limit = LUnallocated::kMaxFixedIndex;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100234 Scope* scope = info->scope();
Ben Murdoch7d3e7fc2011-07-12 16:37:06 +0100235 if ((scope->num_parameters() + 1) > parameter_limit ||
236 (info->osr_ast_id() != AstNode::kNoNumber &&
237 scope->num_parameters() + 1 + scope->num_stack_slots() > locals_limit)) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000238 info->AbortOptimization();
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100239 info->shared_info()->DisableOptimization();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100240 // True indicates the compilation pipeline is still going, not
241 // necessarily that we optimized the code.
242 return true;
243 }
244
245 // Take --hydrogen-filter into account.
Ben Murdochb0fe1622011-05-05 13:52:32 +0100246 Handle<String> name = info->function()->debug_name();
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100247 if (*FLAG_hydrogen_filter != '\0') {
248 Vector<const char> filter = CStrVector(FLAG_hydrogen_filter);
249 if ((filter[0] == '-'
250 && name->IsEqualTo(filter.SubVector(1, filter.length())))
251 || (filter[0] != '-' && !name->IsEqualTo(filter))) {
252 info->SetCode(code);
253 return true;
254 }
Ben Murdochb0fe1622011-05-05 13:52:32 +0100255 }
256
257 // Recompile the unoptimized version of the code if the current version
258 // doesn't have deoptimization support. Alternatively, we may decide to
259 // run the full code generator to get a baseline for the compile-time
260 // performance of the hydrogen-based compiler.
261 int64_t start = OS::Ticks();
262 bool should_recompile = !info->shared_info()->has_deoptimization_support();
Steve Block44f0eee2011-05-26 01:26:41 +0100263 if (should_recompile || FLAG_hydrogen_stats) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100264 HPhase phase(HPhase::kFullCodeGen);
265 CompilationInfo unoptimized(info->shared_info());
266 // Note that we use the same AST that we will use for generating the
267 // optimized code.
268 unoptimized.SetFunction(info->function());
269 unoptimized.SetScope(info->scope());
270 if (should_recompile) unoptimized.EnableDeoptimizationSupport();
271 bool succeeded = FullCodeGenerator::MakeCode(&unoptimized);
272 if (should_recompile) {
273 if (!succeeded) return false;
274 Handle<SharedFunctionInfo> shared = info->shared_info();
275 shared->EnableDeoptimizationSupport(*unoptimized.code());
276 // The existing unoptimized code was replaced with the new one.
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100277 Compiler::RecordFunctionCompilation(
278 Logger::LAZY_COMPILE_TAG, &unoptimized, shared);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100279 }
280 }
281
282 // Check that the unoptimized, shared code is ready for
283 // optimizations. When using the always_opt flag we disregard the
284 // optimizable marker in the code object and optimize anyway. This
285 // is safe as long as the unoptimized code has deoptimization
286 // support.
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100287 ASSERT(FLAG_always_opt || code->optimizable());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100288 ASSERT(info->shared_info()->has_deoptimization_support());
289
290 if (FLAG_trace_hydrogen) {
291 PrintF("-----------------------------------------------------------\n");
292 PrintF("Compiling method %s using hydrogen\n", *name->ToCString());
293 HTracer::Instance()->TraceCompilation(info->function());
294 }
295
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100296 Handle<Context> global_context(info->closure()->context()->global_context());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100297 TypeFeedbackOracle oracle(code, global_context, info->isolate());
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100298 HGraphBuilder builder(info, &oracle);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100299 HPhase phase(HPhase::kTotal);
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100300 HGraph* graph = builder.CreateGraph();
Steve Block44f0eee2011-05-26 01:26:41 +0100301 if (info->isolate()->has_pending_exception()) {
Steve Block1e0659c2011-05-24 12:43:12 +0100302 info->SetCode(Handle<Code>::null());
303 return false;
304 }
305
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100306 if (graph != NULL) {
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100307 Handle<Code> optimized_code = graph->Compile(info);
308 if (!optimized_code.is_null()) {
309 info->SetCode(optimized_code);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100310 FinishOptimization(info->closure(), start);
311 return true;
312 }
313 }
314
Ben Murdoch257744e2011-11-30 15:57:28 +0000315 // Keep using the shared code.
316 info->AbortOptimization();
317 if (!builder.inline_bailout()) {
318 // Mark the shared code as unoptimizable unless it was an inlined
319 // function that bailed out.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100320 info->shared_info()->DisableOptimization();
Ben Murdoch257744e2011-11-30 15:57:28 +0000321 }
Ben Murdochb0fe1622011-05-05 13:52:32 +0100322 // True indicates the compilation pipeline is still going, not necessarily
323 // that we optimized the code.
324 return true;
325}
326
327
Ben Murdoch257744e2011-11-30 15:57:28 +0000328static bool GenerateCode(CompilationInfo* info) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100329 return info->IsCompilingForDebugging() || !V8::UseCrankshaft() ?
330 FullCodeGenerator::MakeCode(info) :
331 MakeCrankshaftCode(info);
Ben Murdoch257744e2011-11-30 15:57:28 +0000332}
333
334
Ben Murdochf87a2032010-10-22 12:50:53 +0100335static bool MakeCode(CompilationInfo* info) {
336 // Precondition: code has been parsed. Postcondition: the code field in
337 // the compilation info is set if compilation succeeded.
338 ASSERT(info->function() != NULL);
Ben Murdoch257744e2011-11-30 15:57:28 +0000339 return Rewriter::Rewrite(info) && Scope::Analyze(info) && GenerateCode(info);
Steve Blocka7e24c12009-10-30 11:49:00 +0000340}
341
342
Steve Block6ded16b2010-05-10 14:33:55 +0100343#ifdef ENABLE_DEBUGGER_SUPPORT
Ben Murdochf87a2032010-10-22 12:50:53 +0100344bool Compiler::MakeCodeForLiveEdit(CompilationInfo* info) {
345 // Precondition: code has been parsed. Postcondition: the code field in
346 // the compilation info is set if compilation succeeded.
347 bool succeeded = MakeCode(info);
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100348 if (!info->shared_info().is_null()) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100349 Handle<ScopeInfo> scope_info = ScopeInfo::Create(info->scope());
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100350 info->shared_info()->set_scope_info(*scope_info);
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100351 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100352 return succeeded;
Steve Block6ded16b2010-05-10 14:33:55 +0100353}
354#endif
355
356
Ben Murdochf87a2032010-10-22 12:50:53 +0100357static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) {
Steve Block44f0eee2011-05-26 01:26:41 +0100358 Isolate* isolate = info->isolate();
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000359 ZoneScope zone_scope(isolate, DELETE_ON_EXIT);
Steve Block44f0eee2011-05-26 01:26:41 +0100360 PostponeInterruptsScope postpone(isolate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000361
Steve Block44f0eee2011-05-26 01:26:41 +0100362 ASSERT(!isolate->global_context().is_null());
Ben Murdochf87a2032010-10-22 12:50:53 +0100363 Handle<Script> script = info->script();
Steve Block44f0eee2011-05-26 01:26:41 +0100364 script->set_context_data((*isolate->global_context())->data());
Steve Blocka7e24c12009-10-30 11:49:00 +0000365
Leon Clarke4515c472010-02-03 11:58:03 +0000366#ifdef ENABLE_DEBUGGER_SUPPORT
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800367 if (info->is_eval()) {
368 Script::CompilationType compilation_type = Script::COMPILATION_TYPE_EVAL;
Ben Murdochf87a2032010-10-22 12:50:53 +0100369 script->set_compilation_type(Smi::FromInt(compilation_type));
Steve Blocka7e24c12009-10-30 11:49:00 +0000370 // For eval scripts add information on the function from which eval was
371 // called.
Ben Murdochf87a2032010-10-22 12:50:53 +0100372 if (info->is_eval()) {
Ben Murdoch8b112d22011-06-08 16:22:53 +0100373 StackTraceFrameIterator it(isolate);
Leon Clarke4515c472010-02-03 11:58:03 +0000374 if (!it.done()) {
375 script->set_eval_from_shared(
376 JSFunction::cast(it.frame()->function())->shared());
Ben Murdoch8b112d22011-06-08 16:22:53 +0100377 Code* code = it.frame()->LookupCode();
Leon Clarke4515c472010-02-03 11:58:03 +0000378 int offset = static_cast<int>(
Steve Block44f0eee2011-05-26 01:26:41 +0100379 it.frame()->pc() - code->instruction_start());
Leon Clarke4515c472010-02-03 11:58:03 +0000380 script->set_eval_from_instructions_offset(Smi::FromInt(offset));
381 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000382 }
383 }
384
385 // Notify debugger
Steve Block44f0eee2011-05-26 01:26:41 +0100386 isolate->debugger()->OnBeforeCompile(script);
Steve Blocka7e24c12009-10-30 11:49:00 +0000387#endif
388
389 // Only allow non-global compiles for eval.
Ben Murdochf87a2032010-10-22 12:50:53 +0100390 ASSERT(info->is_eval() || info->is_global());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100391 ParsingFlags flags = kNoParsingFlags;
392 if (info->pre_parse_data() != NULL ||
393 String::cast(script->source())->length() > FLAG_min_preparse_length) {
394 flags = kAllowLazy;
395 }
396 if (!ParserApi::Parse(info, flags)) {
397 return Handle<SharedFunctionInfo>::null();
398 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000399
Steve Blocka7e24c12009-10-30 11:49:00 +0000400 // Measure how long it takes to do the compilation; only take the
401 // rest of the function into account to avoid overlap with the
402 // parsing statistics.
Ben Murdochf87a2032010-10-22 12:50:53 +0100403 HistogramTimer* rate = info->is_eval()
Steve Block44f0eee2011-05-26 01:26:41 +0100404 ? info->isolate()->counters()->compile_eval()
405 : info->isolate()->counters()->compile();
Steve Blocka7e24c12009-10-30 11:49:00 +0000406 HistogramTimerScope timer(rate);
407
408 // Compile the code.
Ben Murdochf87a2032010-10-22 12:50:53 +0100409 FunctionLiteral* lit = info->function();
Steve Block44f0eee2011-05-26 01:26:41 +0100410 LiveEditFunctionTracker live_edit_tracker(isolate, lit);
Ben Murdochf87a2032010-10-22 12:50:53 +0100411 if (!MakeCode(info)) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100412 if (!isolate->has_pending_exception()) isolate->StackOverflow();
Steve Block6ded16b2010-05-10 14:33:55 +0100413 return Handle<SharedFunctionInfo>::null();
Steve Blocka7e24c12009-10-30 11:49:00 +0000414 }
415
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100416 // Allocate function.
Ben Murdochf87a2032010-10-22 12:50:53 +0100417 ASSERT(!info->code().is_null());
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100418 Handle<SharedFunctionInfo> result =
Steve Block44f0eee2011-05-26 01:26:41 +0100419 isolate->factory()->NewSharedFunctionInfo(
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100420 lit->name(),
421 lit->materialized_literal_count(),
422 info->code(),
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100423 ScopeInfo::Create(info->scope()));
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100424
425 ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
426 Compiler::SetFunctionInfo(result, lit, true, script);
427
Steve Block6ded16b2010-05-10 14:33:55 +0100428 if (script->name()->IsString()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100429 PROFILE(isolate, CodeCreateEvent(
Ben Murdochf87a2032010-10-22 12:50:53 +0100430 info->is_eval()
431 ? Logger::EVAL_TAG
432 : Logger::ToNativeByScript(Logger::SCRIPT_TAG, *script),
433 *info->code(),
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100434 *result,
Ben Murdochf87a2032010-10-22 12:50:53 +0100435 String::cast(script->name())));
Ben Murdochb8e0da22011-05-16 14:20:40 +0100436 GDBJIT(AddCode(Handle<String>(String::cast(script->name())),
437 script,
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000438 info->code(),
439 info));
Steve Block6ded16b2010-05-10 14:33:55 +0100440 } else {
Steve Block44f0eee2011-05-26 01:26:41 +0100441 PROFILE(isolate, CodeCreateEvent(
Ben Murdochf87a2032010-10-22 12:50:53 +0100442 info->is_eval()
443 ? Logger::EVAL_TAG
444 : Logger::ToNativeByScript(Logger::SCRIPT_TAG, *script),
445 *info->code(),
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100446 *result,
Steve Block44f0eee2011-05-26 01:26:41 +0100447 isolate->heap()->empty_string()));
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000448 GDBJIT(AddCode(Handle<String>(), script, info->code(), info));
Steve Blocka7e24c12009-10-30 11:49:00 +0000449 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000450
Steve Blocka7e24c12009-10-30 11:49:00 +0000451 // Hint to the runtime system used when allocating space for initial
452 // property space by setting the expected number of properties for
453 // the instances of the function.
Steve Block6ded16b2010-05-10 14:33:55 +0100454 SetExpectedNofPropertiesFromEstimate(result, lit->expected_property_count());
Steve Blocka7e24c12009-10-30 11:49:00 +0000455
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100456 script->set_compilation_state(
457 Smi::FromInt(Script::COMPILATION_STATE_COMPILED));
458
Steve Blocka7e24c12009-10-30 11:49:00 +0000459#ifdef ENABLE_DEBUGGER_SUPPORT
460 // Notify debugger
Steve Block44f0eee2011-05-26 01:26:41 +0100461 isolate->debugger()->OnAfterCompile(
462 script, Debugger::NO_AFTER_COMPILE_FLAGS);
Steve Blocka7e24c12009-10-30 11:49:00 +0000463#endif
464
Steve Block6ded16b2010-05-10 14:33:55 +0100465 live_edit_tracker.RecordFunctionInfo(result, lit);
466
467 return result;
Steve Blocka7e24c12009-10-30 11:49:00 +0000468}
469
470
Steve Block6ded16b2010-05-10 14:33:55 +0100471Handle<SharedFunctionInfo> Compiler::Compile(Handle<String> source,
472 Handle<Object> script_name,
473 int line_offset,
474 int column_offset,
475 v8::Extension* extension,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100476 ScriptDataImpl* pre_data,
Steve Block6ded16b2010-05-10 14:33:55 +0100477 Handle<Object> script_data,
478 NativesFlag natives) {
Steve Block44f0eee2011-05-26 01:26:41 +0100479 Isolate* isolate = source->GetIsolate();
Steve Blocka7e24c12009-10-30 11:49:00 +0000480 int source_length = source->length();
Steve Block44f0eee2011-05-26 01:26:41 +0100481 isolate->counters()->total_load_size()->Increment(source_length);
482 isolate->counters()->total_compile_size()->Increment(source_length);
Steve Blocka7e24c12009-10-30 11:49:00 +0000483
484 // The VM is in the COMPILER state until exiting this function.
Steve Block44f0eee2011-05-26 01:26:41 +0100485 VMState state(isolate, COMPILER);
486
487 CompilationCache* compilation_cache = isolate->compilation_cache();
Steve Blocka7e24c12009-10-30 11:49:00 +0000488
489 // Do a lookup in the compilation cache but not for extensions.
Steve Block6ded16b2010-05-10 14:33:55 +0100490 Handle<SharedFunctionInfo> result;
Steve Blocka7e24c12009-10-30 11:49:00 +0000491 if (extension == NULL) {
Steve Block44f0eee2011-05-26 01:26:41 +0100492 result = compilation_cache->LookupScript(source,
493 script_name,
494 line_offset,
495 column_offset);
Steve Blocka7e24c12009-10-30 11:49:00 +0000496 }
497
498 if (result.is_null()) {
Steve Block59151502010-09-22 15:07:15 +0100499 // No cache entry found. Do pre-parsing, if it makes sense, and compile
500 // the script.
501 // Building preparse data that is only used immediately after is only a
502 // saving if we might skip building the AST for lazily compiled functions.
503 // I.e., preparse data isn't relevant when the lazy flag is off, and
504 // for small sources, odds are that there aren't many functions
505 // that would be compiled lazily anyway, so we skip the preparse step
506 // in that case too.
Steve Blocka7e24c12009-10-30 11:49:00 +0000507
508 // Create a script object describing the script to be compiled.
Steve Block44f0eee2011-05-26 01:26:41 +0100509 Handle<Script> script = FACTORY->NewScript(source);
Andrei Popescu31002712010-02-23 13:46:05 +0000510 if (natives == NATIVES_CODE) {
511 script->set_type(Smi::FromInt(Script::TYPE_NATIVE));
512 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000513 if (!script_name.is_null()) {
514 script->set_name(*script_name);
515 script->set_line_offset(Smi::FromInt(line_offset));
516 script->set_column_offset(Smi::FromInt(column_offset));
517 }
518
Steve Block44f0eee2011-05-26 01:26:41 +0100519 script->set_data(script_data.is_null() ? HEAP->undefined_value()
Andrei Popescu402d9372010-02-26 13:31:12 +0000520 : *script_data);
521
Steve Blocka7e24c12009-10-30 11:49:00 +0000522 // Compile the function and add it to the cache.
Ben Murdochf87a2032010-10-22 12:50:53 +0100523 CompilationInfo info(script);
524 info.MarkAsGlobal();
525 info.SetExtension(extension);
526 info.SetPreParseData(pre_data);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100527 if (FLAG_use_strict) {
528 info.SetLanguageMode(FLAG_harmony_scoping ? EXTENDED_MODE : STRICT_MODE);
529 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100530 result = MakeFunctionInfo(&info);
Steve Blocka7e24c12009-10-30 11:49:00 +0000531 if (extension == NULL && !result.is_null()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100532 compilation_cache->PutScript(source, result);
Steve Blocka7e24c12009-10-30 11:49:00 +0000533 }
Ben Murdoch8f9999f2012-04-23 10:39:17 +0100534 } else {
535 if (result->ic_age() != HEAP->global_ic_age()) {
536 result->ResetForNewContext(HEAP->global_ic_age());
537 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000538 }
539
Steve Block44f0eee2011-05-26 01:26:41 +0100540 if (result.is_null()) isolate->ReportPendingMessages();
Steve Blocka7e24c12009-10-30 11:49:00 +0000541 return result;
542}
543
544
Steve Block6ded16b2010-05-10 14:33:55 +0100545Handle<SharedFunctionInfo> Compiler::CompileEval(Handle<String> source,
546 Handle<Context> context,
Steve Block1e0659c2011-05-24 12:43:12 +0100547 bool is_global,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100548 LanguageMode language_mode,
549 int scope_position) {
Steve Block44f0eee2011-05-26 01:26:41 +0100550 Isolate* isolate = source->GetIsolate();
Steve Blocka7e24c12009-10-30 11:49:00 +0000551 int source_length = source->length();
Steve Block44f0eee2011-05-26 01:26:41 +0100552 isolate->counters()->total_eval_size()->Increment(source_length);
553 isolate->counters()->total_compile_size()->Increment(source_length);
Steve Blocka7e24c12009-10-30 11:49:00 +0000554
555 // The VM is in the COMPILER state until exiting this function.
Steve Block44f0eee2011-05-26 01:26:41 +0100556 VMState state(isolate, COMPILER);
Steve Blocka7e24c12009-10-30 11:49:00 +0000557
Ben Murdochf87a2032010-10-22 12:50:53 +0100558 // Do a lookup in the compilation cache; if the entry is not there, invoke
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800559 // the compiler and add the result to the cache.
Steve Block6ded16b2010-05-10 14:33:55 +0100560 Handle<SharedFunctionInfo> result;
Steve Block44f0eee2011-05-26 01:26:41 +0100561 CompilationCache* compilation_cache = isolate->compilation_cache();
562 result = compilation_cache->LookupEval(source,
563 context,
564 is_global,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100565 language_mode,
566 scope_position);
Steve Blocka7e24c12009-10-30 11:49:00 +0000567
568 if (result.is_null()) {
569 // Create a script object describing the script to be compiled.
Steve Block44f0eee2011-05-26 01:26:41 +0100570 Handle<Script> script = isolate->factory()->NewScript(source);
Ben Murdochf87a2032010-10-22 12:50:53 +0100571 CompilationInfo info(script);
572 info.MarkAsEval();
573 if (is_global) info.MarkAsGlobal();
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100574 info.SetLanguageMode(language_mode);
Ben Murdochf87a2032010-10-22 12:50:53 +0100575 info.SetCallingContext(context);
576 result = MakeFunctionInfo(&info);
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800577 if (!result.is_null()) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100578 // Explicitly disable optimization for eval code. We're not yet prepared
579 // to handle eval-code in the optimizing compiler.
580 result->DisableOptimization();
581
582 // If caller is strict mode, the result must be in strict mode or
583 // extended mode as well, but not the other way around. Consider:
Steve Block1e0659c2011-05-24 12:43:12 +0100584 // eval("'use strict'; ...");
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100585 ASSERT(language_mode != STRICT_MODE || !result->is_classic_mode());
586 // If caller is in extended mode, the result must also be in
587 // extended mode.
588 ASSERT(language_mode != EXTENDED_MODE ||
589 result->is_extended_mode());
590 compilation_cache->PutEval(
591 source, context, is_global, result, scope_position);
Steve Blocka7e24c12009-10-30 11:49:00 +0000592 }
Ben Murdoch8f9999f2012-04-23 10:39:17 +0100593 } else {
594 if (result->ic_age() != HEAP->global_ic_age()) {
595 result->ResetForNewContext(HEAP->global_ic_age());
596 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000597 }
598
599 return result;
600}
601
602
Leon Clarke4515c472010-02-03 11:58:03 +0000603bool Compiler::CompileLazy(CompilationInfo* info) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000604 Isolate* isolate = info->isolate();
605
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000606 ZoneScope zone_scope(isolate, DELETE_ON_EXIT);
Steve Blocka7e24c12009-10-30 11:49:00 +0000607
608 // The VM is in the COMPILER state until exiting this function.
Ben Murdoch257744e2011-11-30 15:57:28 +0000609 VMState state(isolate, COMPILER);
Steve Blocka7e24c12009-10-30 11:49:00 +0000610
Steve Block44f0eee2011-05-26 01:26:41 +0100611 PostponeInterruptsScope postpone(isolate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000612
Leon Clarke4515c472010-02-03 11:58:03 +0000613 Handle<SharedFunctionInfo> shared = info->shared_info();
Ben Murdochf87a2032010-10-22 12:50:53 +0100614 int compiled_size = shared->end_position() - shared->start_position();
Steve Block44f0eee2011-05-26 01:26:41 +0100615 isolate->counters()->total_compile_size()->Increment(compiled_size);
Steve Blocka7e24c12009-10-30 11:49:00 +0000616
Ben Murdochf87a2032010-10-22 12:50:53 +0100617 // Generate the AST for the lazily compiled function.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100618 if (ParserApi::Parse(info, kNoParsingFlags)) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100619 // Measure how long it takes to do the lazy compilation; only take the
620 // rest of the function into account to avoid overlap with the lazy
621 // parsing statistics.
Steve Block44f0eee2011-05-26 01:26:41 +0100622 HistogramTimerScope timer(isolate->counters()->compile_lazy());
Steve Blocka7e24c12009-10-30 11:49:00 +0000623
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100624 // After parsing we know the function's language mode. Remember it.
625 LanguageMode language_mode = info->function()->language_mode();
626 info->SetLanguageMode(language_mode);
627 shared->set_language_mode(language_mode);
Ben Murdoch8b112d22011-06-08 16:22:53 +0100628
Ben Murdochf87a2032010-10-22 12:50:53 +0100629 // Compile the code.
630 if (!MakeCode(info)) {
Steve Block44f0eee2011-05-26 01:26:41 +0100631 if (!isolate->has_pending_exception()) {
632 isolate->StackOverflow();
Steve Block1e0659c2011-05-24 12:43:12 +0100633 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100634 } else {
635 ASSERT(!info->code().is_null());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100636 Handle<Code> code = info->code();
Steve Block44f0eee2011-05-26 01:26:41 +0100637 // Set optimizable to false if this is disallowed by the shared
638 // function info, e.g., we might have flushed the code and must
639 // reset this bit when lazy compiling the code again.
640 if (shared->optimization_disabled()) code->set_optimizable(false);
641
Ben Murdochb0fe1622011-05-05 13:52:32 +0100642 Handle<JSFunction> function = info->closure();
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100643 RecordFunctionCompilation(Logger::LAZY_COMPILE_TAG, info, shared);
Steve Blocka7e24c12009-10-30 11:49:00 +0000644
Ben Murdochb0fe1622011-05-05 13:52:32 +0100645 if (info->IsOptimizing()) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100646 ASSERT(shared->scope_info() != ScopeInfo::Empty());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100647 function->ReplaceCode(*code);
648 } else {
649 // Update the shared function info with the compiled code and the
650 // scope info. Please note, that the order of the shared function
651 // info initialization is important since set_scope_info might
652 // trigger a GC, causing the ASSERT below to be invalid if the code
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100653 // was flushed. By setting the code object last we avoid this.
654 Handle<ScopeInfo> scope_info = ScopeInfo::Create(info->scope());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100655 shared->set_scope_info(*scope_info);
656 shared->set_code(*code);
657 if (!function.is_null()) {
658 function->ReplaceCode(*code);
659 ASSERT(!function->IsOptimized());
660 }
661
662 // Set the expected number of properties for instances.
663 FunctionLiteral* lit = info->function();
664 int expected = lit->expected_property_count();
665 SetExpectedNofPropertiesFromEstimate(shared, expected);
666
667 // Set the optimization hints after performing lazy compilation, as
668 // these are not set when the function is set up as a lazily
669 // compiled function.
670 shared->SetThisPropertyAssignmentsInfo(
671 lit->has_only_simple_this_property_assignments(),
672 *lit->this_property_assignments());
673
674 // Check the function has compiled code.
675 ASSERT(shared->is_compiled());
676 shared->set_code_age(0);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100677 shared->set_dont_optimize(lit->flags()->Contains(kDontOptimize));
678 shared->set_dont_inline(lit->flags()->Contains(kDontInline));
679 shared->set_ast_node_count(lit->ast_node_count());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100680
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100681 if (V8::UseCrankshaft()&&
682 !function.is_null() &&
683 !shared->optimization_disabled()) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100684 // If we're asked to always optimize, we compile the optimized
685 // version of the function right away - unless the debugger is
686 // active as it makes no sense to compile optimized code then.
Steve Block44f0eee2011-05-26 01:26:41 +0100687 if (FLAG_always_opt &&
Ben Murdoch257744e2011-11-30 15:57:28 +0000688 !Isolate::Current()->DebuggerHasBreakPoints()) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100689 CompilationInfo optimized(function);
690 optimized.SetOptimizing(AstNode::kNoNumber);
691 return CompileLazy(&optimized);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100692 }
693 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100694 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000695
Ben Murdochf87a2032010-10-22 12:50:53 +0100696 return true;
697 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000698 }
699
Ben Murdochf87a2032010-10-22 12:50:53 +0100700 ASSERT(info->code().is_null());
701 return false;
Steve Blocka7e24c12009-10-30 11:49:00 +0000702}
703
704
Steve Block6ded16b2010-05-10 14:33:55 +0100705Handle<SharedFunctionInfo> Compiler::BuildFunctionInfo(FunctionLiteral* literal,
Ben Murdochf87a2032010-10-22 12:50:53 +0100706 Handle<Script> script) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100707 // Precondition: code has been parsed and scopes have been analyzed.
708 CompilationInfo info(script);
709 info.SetFunction(literal);
710 info.SetScope(literal->scope());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100711 info.SetLanguageMode(literal->scope()->language_mode());
Ben Murdochf87a2032010-10-22 12:50:53 +0100712
Steve Block44f0eee2011-05-26 01:26:41 +0100713 LiveEditFunctionTracker live_edit_tracker(info.isolate(), literal);
Ben Murdochf87a2032010-10-22 12:50:53 +0100714 // Determine if the function can be lazily compiled. This is necessary to
715 // allow some of our builtin JS files to be lazily compiled. These
716 // builtins cannot be handled lazily by the parser, since we have to know
717 // if a function uses the special natives syntax, which is something the
718 // parser records.
Andrei Popescu402d9372010-02-26 13:31:12 +0000719 bool allow_lazy = literal->AllowsLazyCompilation() &&
Steve Block44f0eee2011-05-26 01:26:41 +0100720 !LiveEditFunctionTracker::IsActive(info.isolate());
Steve Blockd0582a62009-12-15 09:54:21 +0000721
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100722 Handle<ScopeInfo> scope_info(ScopeInfo::Empty());
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100723
Steve Blockd0582a62009-12-15 09:54:21 +0000724 // Generate code
Steve Blockd0582a62009-12-15 09:54:21 +0000725 if (FLAG_lazy && allow_lazy) {
Steve Block44f0eee2011-05-26 01:26:41 +0100726 Handle<Code> code = info.isolate()->builtins()->LazyCompile();
Ben Murdochf87a2032010-10-22 12:50:53 +0100727 info.SetCode(code);
Ben Murdoch8b112d22011-06-08 16:22:53 +0100728 } else if ((V8::UseCrankshaft() && MakeCrankshaftCode(&info)) ||
729 (!V8::UseCrankshaft() && FullCodeGenerator::MakeCode(&info))) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100730 ASSERT(!info.code().is_null());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100731 scope_info = ScopeInfo::Create(info.scope());
Ben Murdoch8b112d22011-06-08 16:22:53 +0100732 } else {
733 return Handle<SharedFunctionInfo>::null();
Steve Blockd0582a62009-12-15 09:54:21 +0000734 }
735
Steve Block6ded16b2010-05-10 14:33:55 +0100736 // Create a shared function info object.
737 Handle<SharedFunctionInfo> result =
Steve Block44f0eee2011-05-26 01:26:41 +0100738 FACTORY->NewSharedFunctionInfo(literal->name(),
Steve Block6ded16b2010-05-10 14:33:55 +0100739 literal->materialized_literal_count(),
Ben Murdochf87a2032010-10-22 12:50:53 +0100740 info.code(),
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100741 scope_info);
Steve Block6ded16b2010-05-10 14:33:55 +0100742 SetFunctionInfo(result, literal, false, script);
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100743 RecordFunctionCompilation(Logger::FUNCTION_TAG, &info, result);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100744 result->set_allows_lazy_compilation(allow_lazy);
Steve Blockd0582a62009-12-15 09:54:21 +0000745
746 // Set the expected number of properties for instances and return
747 // the resulting function.
Steve Block6ded16b2010-05-10 14:33:55 +0100748 SetExpectedNofPropertiesFromEstimate(result,
Steve Blockd0582a62009-12-15 09:54:21 +0000749 literal->expected_property_count());
Steve Block6ded16b2010-05-10 14:33:55 +0100750 live_edit_tracker.RecordFunctionInfo(result, literal);
751 return result;
Steve Blockd0582a62009-12-15 09:54:21 +0000752}
753
754
755// Sets the function info on a function.
756// The start_position points to the first '(' character after the function name
757// in the full script source. When counting characters in the script source the
758// the first character is number 0 (not 1).
Steve Block6ded16b2010-05-10 14:33:55 +0100759void Compiler::SetFunctionInfo(Handle<SharedFunctionInfo> function_info,
Steve Blockd0582a62009-12-15 09:54:21 +0000760 FunctionLiteral* lit,
761 bool is_toplevel,
762 Handle<Script> script) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100763 function_info->set_length(lit->parameter_count());
764 function_info->set_formal_parameter_count(lit->parameter_count());
Steve Block6ded16b2010-05-10 14:33:55 +0100765 function_info->set_script(*script);
766 function_info->set_function_token_position(lit->function_token_position());
767 function_info->set_start_position(lit->start_position());
768 function_info->set_end_position(lit->end_position());
769 function_info->set_is_expression(lit->is_expression());
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000770 function_info->set_is_anonymous(lit->is_anonymous());
Steve Block6ded16b2010-05-10 14:33:55 +0100771 function_info->set_is_toplevel(is_toplevel);
772 function_info->set_inferred_name(*lit->inferred_name());
773 function_info->SetThisPropertyAssignmentsInfo(
Steve Blockd0582a62009-12-15 09:54:21 +0000774 lit->has_only_simple_this_property_assignments(),
775 *lit->this_property_assignments());
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100776 function_info->set_allows_lazy_compilation(lit->AllowsLazyCompilation());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100777 function_info->set_language_mode(lit->language_mode());
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000778 function_info->set_uses_arguments(lit->scope()->arguments() != NULL);
779 function_info->set_has_duplicate_parameters(lit->has_duplicate_parameters());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100780 function_info->set_ast_node_count(lit->ast_node_count());
781 function_info->set_is_function(lit->is_function());
782 function_info->set_dont_optimize(lit->flags()->Contains(kDontOptimize));
783 function_info->set_dont_inline(lit->flags()->Contains(kDontInline));
Steve Blockd0582a62009-12-15 09:54:21 +0000784}
785
786
Steve Block6ded16b2010-05-10 14:33:55 +0100787void Compiler::RecordFunctionCompilation(Logger::LogEventsAndTags tag,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100788 CompilationInfo* info,
789 Handle<SharedFunctionInfo> shared) {
790 // SharedFunctionInfo is passed separately, because if CompilationInfo
791 // was created using Script object, it will not have it.
792
Ben Murdochf87a2032010-10-22 12:50:53 +0100793 // Log the code generation. If source information is available include
794 // script name and line number. Check explicitly whether logging is
795 // enabled as finding the line number is not free.
Ben Murdoch257744e2011-11-30 15:57:28 +0000796 if (info->isolate()->logger()->is_logging() ||
797 CpuProfiler::is_profiling(info->isolate())) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100798 Handle<Script> script = info->script();
799 Handle<Code> code = info->code();
Steve Block44f0eee2011-05-26 01:26:41 +0100800 if (*code == info->isolate()->builtins()->builtin(Builtins::kLazyCompile))
801 return;
Andrei Popescu31002712010-02-23 13:46:05 +0000802 if (script->name()->IsString()) {
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100803 int line_num = GetScriptLineNumber(script, shared->start_position()) + 1;
Steve Block6ded16b2010-05-10 14:33:55 +0100804 USE(line_num);
Steve Block44f0eee2011-05-26 01:26:41 +0100805 PROFILE(info->isolate(),
806 CodeCreateEvent(Logger::ToNativeByScript(tag, *script),
Ben Murdochf87a2032010-10-22 12:50:53 +0100807 *code,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100808 *shared,
Ben Murdochf87a2032010-10-22 12:50:53 +0100809 String::cast(script->name()),
810 line_num));
Andrei Popescu31002712010-02-23 13:46:05 +0000811 } else {
Steve Block44f0eee2011-05-26 01:26:41 +0100812 PROFILE(info->isolate(),
813 CodeCreateEvent(Logger::ToNativeByScript(tag, *script),
Ben Murdochf87a2032010-10-22 12:50:53 +0100814 *code,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100815 *shared,
816 shared->DebugName()));
Andrei Popescu31002712010-02-23 13:46:05 +0000817 }
818 }
Ben Murdochb8e0da22011-05-16 14:20:40 +0100819
Ben Murdoch8b112d22011-06-08 16:22:53 +0100820 GDBJIT(AddCode(Handle<String>(shared->DebugName()),
Ben Murdochb8e0da22011-05-16 14:20:40 +0100821 Handle<Script>(info->script()),
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000822 Handle<Code>(info->code()),
823 info));
Andrei Popescu31002712010-02-23 13:46:05 +0000824}
Andrei Popescu31002712010-02-23 13:46:05 +0000825
Steve Blocka7e24c12009-10-30 11:49:00 +0000826} } // namespace v8::internal