blob: d8c7706cbc40387697a86beff4408a1c21e5b235 [file] [log] [blame]
Ben Murdoch8b112d22011-06-08 16:22:53 +01001// Copyright 2011 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 Block6ded16b2010-05-10 14:33:55 +010035#include "data-flow.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000036#include "debug.h"
Leon Clarked91b9f72010-01-27 17:25:45 +000037#include "full-codegen.h"
Ben Murdochb8e0da22011-05-16 14:20:40 +010038#include "gdb-jit.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010039#include "hydrogen.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 Murdoch3bec4d22010-07-22 14:51:16 +010045#include "scopeinfo.h"
Ben Murdochf87a2032010-10-22 12:50:53 +010046#include "scopes.h"
Ben Murdochb0fe1622011-05-05 13:52:32 +010047#include "vm-state-inl.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000048
49namespace v8 {
50namespace internal {
51
Ben Murdochf87a2032010-10-22 12:50:53 +010052
53CompilationInfo::CompilationInfo(Handle<Script> script)
Steve Block44f0eee2011-05-26 01:26:41 +010054 : isolate_(script->GetIsolate()),
55 flags_(0),
Ben Murdochf87a2032010-10-22 12:50:53 +010056 function_(NULL),
57 scope_(NULL),
58 script_(script),
59 extension_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010060 pre_parse_data_(NULL),
61 supports_deoptimization_(false),
62 osr_ast_id_(AstNode::kNoNumber) {
63 Initialize(NONOPT);
Ben Murdochf87a2032010-10-22 12:50:53 +010064}
65
66
67CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info)
Steve Block44f0eee2011-05-26 01:26:41 +010068 : isolate_(shared_info->GetIsolate()),
69 flags_(IsLazy::encode(true)),
Ben Murdochf87a2032010-10-22 12:50:53 +010070 function_(NULL),
71 scope_(NULL),
72 shared_info_(shared_info),
73 script_(Handle<Script>(Script::cast(shared_info->script()))),
74 extension_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010075 pre_parse_data_(NULL),
76 supports_deoptimization_(false),
77 osr_ast_id_(AstNode::kNoNumber) {
78 Initialize(BASE);
Ben Murdochf87a2032010-10-22 12:50:53 +010079}
80
81
82CompilationInfo::CompilationInfo(Handle<JSFunction> closure)
Steve Block44f0eee2011-05-26 01:26:41 +010083 : isolate_(closure->GetIsolate()),
84 flags_(IsLazy::encode(true)),
Ben Murdochf87a2032010-10-22 12:50:53 +010085 function_(NULL),
86 scope_(NULL),
87 closure_(closure),
88 shared_info_(Handle<SharedFunctionInfo>(closure->shared())),
89 script_(Handle<Script>(Script::cast(shared_info_->script()))),
90 extension_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010091 pre_parse_data_(NULL),
92 supports_deoptimization_(false),
93 osr_ast_id_(AstNode::kNoNumber) {
94 Initialize(BASE);
Ben Murdochf87a2032010-10-22 12:50:53 +010095}
96
97
Ben Murdochb8e0da22011-05-16 14:20:40 +010098void CompilationInfo::DisableOptimization() {
99 if (FLAG_optimize_closures) {
100 // If we allow closures optimizations and it's an optimizable closure
101 // mark it correspondingly.
102 bool is_closure = closure_.is_null() && !scope_->HasTrivialOuterContext();
103 if (is_closure) {
104 bool is_optimizable_closure =
105 !scope_->outer_scope_calls_eval() && !scope_->inside_with();
106 if (is_optimizable_closure) {
107 SetMode(BASE);
108 return;
109 }
110 }
111 }
112
113 SetMode(NONOPT);
114}
115
116
Ben Murdochb0fe1622011-05-05 13:52:32 +0100117// Determine whether to use the full compiler for all code. If the flag
118// --always-full-compiler is specified this is the case. For the virtual frame
119// based compiler the full compiler is also used if a debugger is connected, as
120// the code from the full compiler supports mode precise break points. For the
121// crankshaft adaptive compiler debugging the optimized code is not possible at
122// all. However crankshaft support recompilation of functions, so in this case
123// the full compiler need not be be used if a debugger is attached, but only if
124// break points has actually been set.
Leon Clarkef7060e22010-06-03 12:02:55 +0100125static bool AlwaysFullCompiler() {
126#ifdef ENABLE_DEBUGGER_SUPPORT
Steve Block44f0eee2011-05-26 01:26:41 +0100127 Isolate* isolate = Isolate::Current();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100128 if (V8::UseCrankshaft()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100129 return FLAG_always_full_compiler || isolate->debug()->has_break_points();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100130 } else {
Steve Block44f0eee2011-05-26 01:26:41 +0100131 return FLAG_always_full_compiler || isolate->debugger()->IsDebuggerActive();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100132 }
Leon Clarkef7060e22010-06-03 12:02:55 +0100133#else
134 return FLAG_always_full_compiler;
135#endif
136}
137
Steve Block3ce2e202009-11-05 08:53:23 +0000138
Ben Murdochb0fe1622011-05-05 13:52:32 +0100139static void FinishOptimization(Handle<JSFunction> function, int64_t start) {
140 int opt_count = function->shared()->opt_count();
141 function->shared()->set_opt_count(opt_count + 1);
142 double ms = static_cast<double>(OS::Ticks() - start) / 1000;
143 if (FLAG_trace_opt) {
144 PrintF("[optimizing: ");
145 function->PrintName();
146 PrintF(" / %" V8PRIxPTR, reinterpret_cast<intptr_t>(*function));
147 PrintF(" - took %0.3f ms]\n", ms);
148 }
149 if (FLAG_trace_opt_stats) {
150 static double compilation_time = 0.0;
151 static int compiled_functions = 0;
152 static int code_size = 0;
153
154 compilation_time += ms;
155 compiled_functions++;
156 code_size += function->shared()->SourceSize();
157 PrintF("Compiled: %d functions with %d byte source size in %fms.\n",
158 compiled_functions,
159 code_size,
160 compilation_time);
161 }
162}
163
164
165static void AbortAndDisable(CompilationInfo* info) {
166 // Disable optimization for the shared function info and mark the
167 // code as non-optimizable. The marker on the shared function info
168 // is there because we flush non-optimized code thereby loosing the
169 // non-optimizable information for the code. When the code is
170 // regenerated and set on the shared function info it is marked as
171 // non-optimizable if optimization is disabled for the shared
172 // function info.
173 Handle<SharedFunctionInfo> shared = info->shared_info();
174 shared->set_optimization_disabled(true);
175 Handle<Code> code = Handle<Code>(shared->code());
176 ASSERT(code->kind() == Code::FUNCTION);
177 code->set_optimizable(false);
178 info->SetCode(code);
Steve Block44f0eee2011-05-26 01:26:41 +0100179 Isolate* isolate = code->GetIsolate();
180 isolate->compilation_cache()->MarkForLazyOptimizing(info->closure());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100181 if (FLAG_trace_opt) {
182 PrintF("[disabled optimization for: ");
183 info->closure()->PrintName();
184 PrintF(" / %" V8PRIxPTR "]\n",
185 reinterpret_cast<intptr_t>(*info->closure()));
186 }
187}
188
189
190static bool MakeCrankshaftCode(CompilationInfo* info) {
191 // Test if we can optimize this function when asked to. We can only
192 // do this after the scopes are computed.
193 if (!info->AllowOptimize()) info->DisableOptimization();
194
195 // In case we are not optimizing simply return the code from
196 // the full code generator.
197 if (!info->IsOptimizing()) {
198 return FullCodeGenerator::MakeCode(info);
199 }
200
201 // We should never arrive here if there is not code object on the
202 // shared function object.
203 Handle<Code> code(info->shared_info()->code());
204 ASSERT(code->kind() == Code::FUNCTION);
205
Steve Block44f0eee2011-05-26 01:26:41 +0100206 // We should never arrive here if optimization has been disabled on the
207 // shared function info.
208 ASSERT(!info->shared_info()->optimization_disabled());
209
Ben Murdochb0fe1622011-05-05 13:52:32 +0100210 // Fall back to using the full code generator if it's not possible
211 // to use the Hydrogen-based optimizing compiler. We already have
212 // generated code for this from the shared function object.
213 if (AlwaysFullCompiler() || !FLAG_use_hydrogen) {
214 info->SetCode(code);
215 return true;
216 }
217
218 // Limit the number of times we re-compile a functions with
219 // the optimizing compiler.
Ben Murdochb8e0da22011-05-16 14:20:40 +0100220 const int kMaxOptCount =
221 FLAG_deopt_every_n_times == 0 ? Compiler::kDefaultMaxOptCount : 1000;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100222 if (info->shared_info()->opt_count() > kMaxOptCount) {
223 AbortAndDisable(info);
224 // True indicates the compilation pipeline is still going, not
225 // necessarily that we optimized the code.
226 return true;
227 }
228
229 // Due to an encoding limit on LUnallocated operands in the Lithium
230 // language, we cannot optimize functions with too many formal parameters
231 // or perform on-stack replacement for function with too many
232 // stack-allocated local variables.
233 //
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100234 // The encoding is as a signed value, with parameters and receiver using
235 // the negative indices and locals the non-negative ones.
Ben Murdoch7d3e7fc2011-07-12 16:37:06 +0100236 const int parameter_limit = -LUnallocated::kMinFixedIndex;
237 const int locals_limit = LUnallocated::kMaxFixedIndex;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100238 Scope* scope = info->scope();
Ben Murdoch7d3e7fc2011-07-12 16:37:06 +0100239 if ((scope->num_parameters() + 1) > parameter_limit ||
240 (info->osr_ast_id() != AstNode::kNoNumber &&
241 scope->num_parameters() + 1 + scope->num_stack_slots() > locals_limit)) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100242 AbortAndDisable(info);
243 // True indicates the compilation pipeline is still going, not
244 // necessarily that we optimized the code.
245 return true;
246 }
247
248 // Take --hydrogen-filter into account.
249 Vector<const char> filter = CStrVector(FLAG_hydrogen_filter);
250 Handle<String> name = info->function()->debug_name();
251 bool match = filter.is_empty() || name->IsEqualTo(filter);
252 if (!match) {
253 info->SetCode(code);
254 return true;
255 }
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());
297 TypeFeedbackOracle oracle(code, global_context);
298 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 Murdochb0fe1622011-05-05 13:52:32 +0100306 if (graph != NULL && FLAG_build_lithium) {
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
315 // Compilation with the Hydrogen compiler failed. Keep using the
316 // shared code but mark it as unoptimizable.
317 AbortAndDisable(info);
318 // True indicates the compilation pipeline is still going, not necessarily
319 // that we optimized the code.
320 return true;
321}
322
323
Ben Murdochf87a2032010-10-22 12:50:53 +0100324static bool MakeCode(CompilationInfo* info) {
325 // Precondition: code has been parsed. Postcondition: the code field in
326 // the compilation info is set if compilation succeeded.
327 ASSERT(info->function() != NULL);
328
Ben Murdochb0fe1622011-05-05 13:52:32 +0100329 if (Rewriter::Rewrite(info) && Scope::Analyze(info)) {
330 if (V8::UseCrankshaft()) return MakeCrankshaftCode(info);
Ben Murdoch8b112d22011-06-08 16:22:53 +0100331 // If crankshaft is not supported fall back to full code generator
332 // for all compilation.
333 return FullCodeGenerator::MakeCode(info);
Steve Blocka7e24c12009-10-30 11:49:00 +0000334 }
335
Ben Murdochf87a2032010-10-22 12:50:53 +0100336 return false;
Steve Blocka7e24c12009-10-30 11:49:00 +0000337}
338
339
Steve Block6ded16b2010-05-10 14:33:55 +0100340#ifdef ENABLE_DEBUGGER_SUPPORT
Ben Murdochf87a2032010-10-22 12:50:53 +0100341bool Compiler::MakeCodeForLiveEdit(CompilationInfo* info) {
342 // Precondition: code has been parsed. Postcondition: the code field in
343 // the compilation info is set if compilation succeeded.
344 bool succeeded = MakeCode(info);
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100345 if (!info->shared_info().is_null()) {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100346 Handle<SerializedScopeInfo> scope_info =
347 SerializedScopeInfo::Create(info->scope());
348 info->shared_info()->set_scope_info(*scope_info);
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100349 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100350 return succeeded;
Steve Block6ded16b2010-05-10 14:33:55 +0100351}
352#endif
353
354
Ben Murdochf87a2032010-10-22 12:50:53 +0100355static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000356 CompilationZoneScope zone_scope(DELETE_ON_EXIT);
357
Steve Block44f0eee2011-05-26 01:26:41 +0100358 Isolate* isolate = info->isolate();
359 PostponeInterruptsScope postpone(isolate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000360
Steve Block44f0eee2011-05-26 01:26:41 +0100361 ASSERT(!isolate->global_context().is_null());
Ben Murdochf87a2032010-10-22 12:50:53 +0100362 Handle<Script> script = info->script();
Steve Block44f0eee2011-05-26 01:26:41 +0100363 script->set_context_data((*isolate->global_context())->data());
Steve Blocka7e24c12009-10-30 11:49:00 +0000364
Leon Clarke4515c472010-02-03 11:58:03 +0000365#ifdef ENABLE_DEBUGGER_SUPPORT
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800366 if (info->is_eval()) {
367 Script::CompilationType compilation_type = Script::COMPILATION_TYPE_EVAL;
Ben Murdochf87a2032010-10-22 12:50:53 +0100368 script->set_compilation_type(Smi::FromInt(compilation_type));
Steve Blocka7e24c12009-10-30 11:49:00 +0000369 // For eval scripts add information on the function from which eval was
370 // called.
Ben Murdochf87a2032010-10-22 12:50:53 +0100371 if (info->is_eval()) {
Ben Murdoch8b112d22011-06-08 16:22:53 +0100372 StackTraceFrameIterator it(isolate);
Leon Clarke4515c472010-02-03 11:58:03 +0000373 if (!it.done()) {
374 script->set_eval_from_shared(
375 JSFunction::cast(it.frame()->function())->shared());
Ben Murdoch8b112d22011-06-08 16:22:53 +0100376 Code* code = it.frame()->LookupCode();
Leon Clarke4515c472010-02-03 11:58:03 +0000377 int offset = static_cast<int>(
Steve Block44f0eee2011-05-26 01:26:41 +0100378 it.frame()->pc() - code->instruction_start());
Leon Clarke4515c472010-02-03 11:58:03 +0000379 script->set_eval_from_instructions_offset(Smi::FromInt(offset));
380 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000381 }
382 }
383
384 // Notify debugger
Steve Block44f0eee2011-05-26 01:26:41 +0100385 isolate->debugger()->OnBeforeCompile(script);
Steve Blocka7e24c12009-10-30 11:49:00 +0000386#endif
387
388 // Only allow non-global compiles for eval.
Ben Murdochf87a2032010-10-22 12:50:53 +0100389 ASSERT(info->is_eval() || info->is_global());
Steve Blocka7e24c12009-10-30 11:49:00 +0000390
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800391 if (!ParserApi::Parse(info)) return Handle<SharedFunctionInfo>::null();
Steve Blocka7e24c12009-10-30 11:49:00 +0000392
Steve Blocka7e24c12009-10-30 11:49:00 +0000393 // Measure how long it takes to do the compilation; only take the
394 // rest of the function into account to avoid overlap with the
395 // parsing statistics.
Ben Murdochf87a2032010-10-22 12:50:53 +0100396 HistogramTimer* rate = info->is_eval()
Steve Block44f0eee2011-05-26 01:26:41 +0100397 ? info->isolate()->counters()->compile_eval()
398 : info->isolate()->counters()->compile();
Steve Blocka7e24c12009-10-30 11:49:00 +0000399 HistogramTimerScope timer(rate);
400
401 // Compile the code.
Ben Murdochf87a2032010-10-22 12:50:53 +0100402 FunctionLiteral* lit = info->function();
Steve Block44f0eee2011-05-26 01:26:41 +0100403 LiveEditFunctionTracker live_edit_tracker(isolate, lit);
Ben Murdochf87a2032010-10-22 12:50:53 +0100404 if (!MakeCode(info)) {
Steve Block44f0eee2011-05-26 01:26:41 +0100405 isolate->StackOverflow();
Steve Block6ded16b2010-05-10 14:33:55 +0100406 return Handle<SharedFunctionInfo>::null();
Steve Blocka7e24c12009-10-30 11:49:00 +0000407 }
408
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100409 // Allocate function.
Ben Murdochf87a2032010-10-22 12:50:53 +0100410 ASSERT(!info->code().is_null());
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100411 Handle<SharedFunctionInfo> result =
Steve Block44f0eee2011-05-26 01:26:41 +0100412 isolate->factory()->NewSharedFunctionInfo(
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100413 lit->name(),
414 lit->materialized_literal_count(),
415 info->code(),
416 SerializedScopeInfo::Create(info->scope()));
417
418 ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
419 Compiler::SetFunctionInfo(result, lit, true, script);
420
Steve Block6ded16b2010-05-10 14:33:55 +0100421 if (script->name()->IsString()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100422 PROFILE(isolate, CodeCreateEvent(
Ben Murdochf87a2032010-10-22 12:50:53 +0100423 info->is_eval()
424 ? Logger::EVAL_TAG
425 : Logger::ToNativeByScript(Logger::SCRIPT_TAG, *script),
426 *info->code(),
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100427 *result,
Ben Murdochf87a2032010-10-22 12:50:53 +0100428 String::cast(script->name())));
Ben Murdochb8e0da22011-05-16 14:20:40 +0100429 GDBJIT(AddCode(Handle<String>(String::cast(script->name())),
430 script,
431 info->code()));
Steve Block6ded16b2010-05-10 14:33:55 +0100432 } else {
Steve Block44f0eee2011-05-26 01:26:41 +0100433 PROFILE(isolate, CodeCreateEvent(
Ben Murdochf87a2032010-10-22 12:50:53 +0100434 info->is_eval()
435 ? Logger::EVAL_TAG
436 : Logger::ToNativeByScript(Logger::SCRIPT_TAG, *script),
437 *info->code(),
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100438 *result,
Steve Block44f0eee2011-05-26 01:26:41 +0100439 isolate->heap()->empty_string()));
Ben Murdochb8e0da22011-05-16 14:20:40 +0100440 GDBJIT(AddCode(Handle<String>(), script, info->code()));
Steve Blocka7e24c12009-10-30 11:49:00 +0000441 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000442
Steve Blocka7e24c12009-10-30 11:49:00 +0000443 // Hint to the runtime system used when allocating space for initial
444 // property space by setting the expected number of properties for
445 // the instances of the function.
Steve Block6ded16b2010-05-10 14:33:55 +0100446 SetExpectedNofPropertiesFromEstimate(result, lit->expected_property_count());
Steve Blocka7e24c12009-10-30 11:49:00 +0000447
448#ifdef ENABLE_DEBUGGER_SUPPORT
449 // Notify debugger
Steve Block44f0eee2011-05-26 01:26:41 +0100450 isolate->debugger()->OnAfterCompile(
451 script, Debugger::NO_AFTER_COMPILE_FLAGS);
Steve Blocka7e24c12009-10-30 11:49:00 +0000452#endif
453
Steve Block6ded16b2010-05-10 14:33:55 +0100454 live_edit_tracker.RecordFunctionInfo(result, lit);
455
456 return result;
Steve Blocka7e24c12009-10-30 11:49:00 +0000457}
458
459
Steve Block6ded16b2010-05-10 14:33:55 +0100460Handle<SharedFunctionInfo> Compiler::Compile(Handle<String> source,
461 Handle<Object> script_name,
462 int line_offset,
463 int column_offset,
464 v8::Extension* extension,
465 ScriptDataImpl* input_pre_data,
466 Handle<Object> script_data,
467 NativesFlag natives) {
Steve Block44f0eee2011-05-26 01:26:41 +0100468 Isolate* isolate = source->GetIsolate();
Steve Blocka7e24c12009-10-30 11:49:00 +0000469 int source_length = source->length();
Steve Block44f0eee2011-05-26 01:26:41 +0100470 isolate->counters()->total_load_size()->Increment(source_length);
471 isolate->counters()->total_compile_size()->Increment(source_length);
Steve Blocka7e24c12009-10-30 11:49:00 +0000472
473 // The VM is in the COMPILER state until exiting this function.
Steve Block44f0eee2011-05-26 01:26:41 +0100474 VMState state(isolate, COMPILER);
475
476 CompilationCache* compilation_cache = isolate->compilation_cache();
Steve Blocka7e24c12009-10-30 11:49:00 +0000477
478 // Do a lookup in the compilation cache but not for extensions.
Steve Block6ded16b2010-05-10 14:33:55 +0100479 Handle<SharedFunctionInfo> result;
Steve Blocka7e24c12009-10-30 11:49:00 +0000480 if (extension == NULL) {
Steve Block44f0eee2011-05-26 01:26:41 +0100481 result = compilation_cache->LookupScript(source,
482 script_name,
483 line_offset,
484 column_offset);
Steve Blocka7e24c12009-10-30 11:49:00 +0000485 }
486
487 if (result.is_null()) {
Steve Block59151502010-09-22 15:07:15 +0100488 // No cache entry found. Do pre-parsing, if it makes sense, and compile
489 // the script.
490 // Building preparse data that is only used immediately after is only a
491 // saving if we might skip building the AST for lazily compiled functions.
492 // I.e., preparse data isn't relevant when the lazy flag is off, and
493 // for small sources, odds are that there aren't many functions
494 // that would be compiled lazily anyway, so we skip the preparse step
495 // in that case too.
Steve Blocka7e24c12009-10-30 11:49:00 +0000496 ScriptDataImpl* pre_data = input_pre_data;
Steve Block59151502010-09-22 15:07:15 +0100497 if (pre_data == NULL
Steve Block59151502010-09-22 15:07:15 +0100498 && source_length >= FLAG_min_preparse_length) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100499 if (source->IsExternalTwoByteString()) {
500 ExternalTwoByteStringUC16CharacterStream stream(
501 Handle<ExternalTwoByteString>::cast(source), 0, source->length());
502 pre_data = ParserApi::PartialPreParse(&stream, extension);
503 } else {
504 GenericStringUC16CharacterStream stream(source, 0, source->length());
505 pre_data = ParserApi::PartialPreParse(&stream, extension);
506 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000507 }
508
509 // Create a script object describing the script to be compiled.
Steve Block44f0eee2011-05-26 01:26:41 +0100510 Handle<Script> script = FACTORY->NewScript(source);
Andrei Popescu31002712010-02-23 13:46:05 +0000511 if (natives == NATIVES_CODE) {
512 script->set_type(Smi::FromInt(Script::TYPE_NATIVE));
513 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000514 if (!script_name.is_null()) {
515 script->set_name(*script_name);
516 script->set_line_offset(Smi::FromInt(line_offset));
517 script->set_column_offset(Smi::FromInt(column_offset));
518 }
519
Steve Block44f0eee2011-05-26 01:26:41 +0100520 script->set_data(script_data.is_null() ? HEAP->undefined_value()
Andrei Popescu402d9372010-02-26 13:31:12 +0000521 : *script_data);
522
Steve Blocka7e24c12009-10-30 11:49:00 +0000523 // Compile the function and add it to the cache.
Ben Murdochf87a2032010-10-22 12:50:53 +0100524 CompilationInfo info(script);
525 info.MarkAsGlobal();
526 info.SetExtension(extension);
527 info.SetPreParseData(pre_data);
Steve Block44f0eee2011-05-26 01:26:41 +0100528 if (natives == NATIVES_CODE) info.MarkAsAllowingNativesSyntax();
Ben Murdochf87a2032010-10-22 12:50:53 +0100529 result = MakeFunctionInfo(&info);
Steve Blocka7e24c12009-10-30 11:49:00 +0000530 if (extension == NULL && !result.is_null()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100531 compilation_cache->PutScript(source, result);
Steve Blocka7e24c12009-10-30 11:49:00 +0000532 }
533
534 // Get rid of the pre-parsing data (if necessary).
535 if (input_pre_data == NULL && pre_data != NULL) {
536 delete pre_data;
537 }
538 }
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,
548 StrictModeFlag strict_mode) {
Steve Block44f0eee2011-05-26 01:26:41 +0100549 Isolate* isolate = source->GetIsolate();
Steve Blocka7e24c12009-10-30 11:49:00 +0000550 int source_length = source->length();
Steve Block44f0eee2011-05-26 01:26:41 +0100551 isolate->counters()->total_eval_size()->Increment(source_length);
552 isolate->counters()->total_compile_size()->Increment(source_length);
Steve Blocka7e24c12009-10-30 11:49:00 +0000553
554 // The VM is in the COMPILER state until exiting this function.
Steve Block44f0eee2011-05-26 01:26:41 +0100555 VMState state(isolate, COMPILER);
Steve Blocka7e24c12009-10-30 11:49:00 +0000556
Ben Murdochf87a2032010-10-22 12:50:53 +0100557 // Do a lookup in the compilation cache; if the entry is not there, invoke
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800558 // the compiler and add the result to the cache.
Steve Block6ded16b2010-05-10 14:33:55 +0100559 Handle<SharedFunctionInfo> result;
Steve Block44f0eee2011-05-26 01:26:41 +0100560 CompilationCache* compilation_cache = isolate->compilation_cache();
561 result = compilation_cache->LookupEval(source,
562 context,
563 is_global,
564 strict_mode);
Steve Blocka7e24c12009-10-30 11:49:00 +0000565
566 if (result.is_null()) {
567 // Create a script object describing the script to be compiled.
Steve Block44f0eee2011-05-26 01:26:41 +0100568 Handle<Script> script = isolate->factory()->NewScript(source);
Ben Murdochf87a2032010-10-22 12:50:53 +0100569 CompilationInfo info(script);
570 info.MarkAsEval();
571 if (is_global) info.MarkAsGlobal();
Ben Murdoch8b112d22011-06-08 16:22:53 +0100572 if (strict_mode == kStrictMode) info.MarkAsStrictMode();
Ben Murdochf87a2032010-10-22 12:50:53 +0100573 info.SetCallingContext(context);
574 result = MakeFunctionInfo(&info);
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800575 if (!result.is_null()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100576 CompilationCache* compilation_cache = isolate->compilation_cache();
Steve Block1e0659c2011-05-24 12:43:12 +0100577 // If caller is strict mode, the result must be strict as well,
578 // but not the other way around. Consider:
579 // eval("'use strict'; ...");
580 ASSERT(strict_mode == kNonStrictMode || result->strict_mode());
Steve Block44f0eee2011-05-26 01:26:41 +0100581 compilation_cache->PutEval(source, context, is_global, result);
Steve Blocka7e24c12009-10-30 11:49:00 +0000582 }
583 }
584
585 return result;
586}
587
588
Leon Clarke4515c472010-02-03 11:58:03 +0000589bool Compiler::CompileLazy(CompilationInfo* info) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000590 CompilationZoneScope zone_scope(DELETE_ON_EXIT);
591
592 // The VM is in the COMPILER state until exiting this function.
Steve Block44f0eee2011-05-26 01:26:41 +0100593 VMState state(info->isolate(), COMPILER);
Steve Blocka7e24c12009-10-30 11:49:00 +0000594
Steve Block44f0eee2011-05-26 01:26:41 +0100595 Isolate* isolate = info->isolate();
596 PostponeInterruptsScope postpone(isolate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000597
Leon Clarke4515c472010-02-03 11:58:03 +0000598 Handle<SharedFunctionInfo> shared = info->shared_info();
Ben Murdochf87a2032010-10-22 12:50:53 +0100599 int compiled_size = shared->end_position() - shared->start_position();
Steve Block44f0eee2011-05-26 01:26:41 +0100600 isolate->counters()->total_compile_size()->Increment(compiled_size);
Steve Blocka7e24c12009-10-30 11:49:00 +0000601
Ben Murdochf87a2032010-10-22 12:50:53 +0100602 // Generate the AST for the lazily compiled function.
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800603 if (ParserApi::Parse(info)) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100604 // Measure how long it takes to do the lazy compilation; only take the
605 // rest of the function into account to avoid overlap with the lazy
606 // parsing statistics.
Steve Block44f0eee2011-05-26 01:26:41 +0100607 HistogramTimerScope timer(isolate->counters()->compile_lazy());
Steve Blocka7e24c12009-10-30 11:49:00 +0000608
Ben Murdoch8b112d22011-06-08 16:22:53 +0100609 // After parsing we know function's strict mode. Remember it.
610 if (info->function()->strict_mode()) {
611 shared->set_strict_mode(true);
612 info->MarkAsStrictMode();
613 }
614
Ben Murdochf87a2032010-10-22 12:50:53 +0100615 // Compile the code.
616 if (!MakeCode(info)) {
Steve Block44f0eee2011-05-26 01:26:41 +0100617 if (!isolate->has_pending_exception()) {
618 isolate->StackOverflow();
Steve Block1e0659c2011-05-24 12:43:12 +0100619 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100620 } else {
621 ASSERT(!info->code().is_null());
Ben Murdochb0fe1622011-05-05 13:52:32 +0100622 Handle<Code> code = info->code();
Steve Block44f0eee2011-05-26 01:26:41 +0100623 // Set optimizable to false if this is disallowed by the shared
624 // function info, e.g., we might have flushed the code and must
625 // reset this bit when lazy compiling the code again.
626 if (shared->optimization_disabled()) code->set_optimizable(false);
627
Ben Murdochb0fe1622011-05-05 13:52:32 +0100628 Handle<JSFunction> function = info->closure();
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100629 RecordFunctionCompilation(Logger::LAZY_COMPILE_TAG, info, shared);
Steve Blocka7e24c12009-10-30 11:49:00 +0000630
Ben Murdochb0fe1622011-05-05 13:52:32 +0100631 if (info->IsOptimizing()) {
632 function->ReplaceCode(*code);
633 } else {
634 // Update the shared function info with the compiled code and the
635 // scope info. Please note, that the order of the shared function
636 // info initialization is important since set_scope_info might
637 // trigger a GC, causing the ASSERT below to be invalid if the code
638 // was flushed. By settting the code object last we avoid this.
639 Handle<SerializedScopeInfo> scope_info =
640 SerializedScopeInfo::Create(info->scope());
641 shared->set_scope_info(*scope_info);
642 shared->set_code(*code);
643 if (!function.is_null()) {
644 function->ReplaceCode(*code);
645 ASSERT(!function->IsOptimized());
646 }
647
648 // Set the expected number of properties for instances.
649 FunctionLiteral* lit = info->function();
650 int expected = lit->expected_property_count();
651 SetExpectedNofPropertiesFromEstimate(shared, expected);
652
653 // Set the optimization hints after performing lazy compilation, as
654 // these are not set when the function is set up as a lazily
655 // compiled function.
656 shared->SetThisPropertyAssignmentsInfo(
657 lit->has_only_simple_this_property_assignments(),
658 *lit->this_property_assignments());
659
660 // Check the function has compiled code.
661 ASSERT(shared->is_compiled());
662 shared->set_code_age(0);
663
Steve Block44f0eee2011-05-26 01:26:41 +0100664 if (info->AllowOptimize() && !shared->optimization_disabled()) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100665 // If we're asked to always optimize, we compile the optimized
666 // version of the function right away - unless the debugger is
667 // active as it makes no sense to compile optimized code then.
Steve Block44f0eee2011-05-26 01:26:41 +0100668 if (FLAG_always_opt &&
669 !Isolate::Current()->debug()->has_break_points()) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100670 CompilationInfo optimized(function);
671 optimized.SetOptimizing(AstNode::kNoNumber);
672 return CompileLazy(&optimized);
Steve Block44f0eee2011-05-26 01:26:41 +0100673 } else if (isolate->compilation_cache()->ShouldOptimizeEagerly(
674 function)) {
675 isolate->runtime_profiler()->OptimizeSoon(*function);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100676 }
677 }
Ben Murdochf87a2032010-10-22 12:50:53 +0100678 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000679
Ben Murdochf87a2032010-10-22 12:50:53 +0100680 return true;
681 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000682 }
683
Ben Murdochf87a2032010-10-22 12:50:53 +0100684 ASSERT(info->code().is_null());
685 return false;
Steve Blocka7e24c12009-10-30 11:49:00 +0000686}
687
688
Steve Block6ded16b2010-05-10 14:33:55 +0100689Handle<SharedFunctionInfo> Compiler::BuildFunctionInfo(FunctionLiteral* literal,
Ben Murdochf87a2032010-10-22 12:50:53 +0100690 Handle<Script> script) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100691 // Precondition: code has been parsed and scopes have been analyzed.
692 CompilationInfo info(script);
693 info.SetFunction(literal);
694 info.SetScope(literal->scope());
695
Steve Block44f0eee2011-05-26 01:26:41 +0100696 LiveEditFunctionTracker live_edit_tracker(info.isolate(), literal);
Ben Murdochf87a2032010-10-22 12:50:53 +0100697 // Determine if the function can be lazily compiled. This is necessary to
698 // allow some of our builtin JS files to be lazily compiled. These
699 // builtins cannot be handled lazily by the parser, since we have to know
700 // if a function uses the special natives syntax, which is something the
701 // parser records.
Andrei Popescu402d9372010-02-26 13:31:12 +0000702 bool allow_lazy = literal->AllowsLazyCompilation() &&
Steve Block44f0eee2011-05-26 01:26:41 +0100703 !LiveEditFunctionTracker::IsActive(info.isolate());
Steve Blockd0582a62009-12-15 09:54:21 +0000704
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100705 Handle<SerializedScopeInfo> scope_info(SerializedScopeInfo::Empty());
706
Steve Blockd0582a62009-12-15 09:54:21 +0000707 // Generate code
Steve Blockd0582a62009-12-15 09:54:21 +0000708 if (FLAG_lazy && allow_lazy) {
Steve Block44f0eee2011-05-26 01:26:41 +0100709 Handle<Code> code = info.isolate()->builtins()->LazyCompile();
Ben Murdochf87a2032010-10-22 12:50:53 +0100710 info.SetCode(code);
Ben Murdoch8b112d22011-06-08 16:22:53 +0100711 } else if ((V8::UseCrankshaft() && MakeCrankshaftCode(&info)) ||
712 (!V8::UseCrankshaft() && FullCodeGenerator::MakeCode(&info))) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100713 ASSERT(!info.code().is_null());
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100714 scope_info = SerializedScopeInfo::Create(info.scope());
Ben Murdoch8b112d22011-06-08 16:22:53 +0100715 } else {
716 return Handle<SharedFunctionInfo>::null();
Steve Blockd0582a62009-12-15 09:54:21 +0000717 }
718
Steve Block6ded16b2010-05-10 14:33:55 +0100719 // Create a shared function info object.
720 Handle<SharedFunctionInfo> result =
Steve Block44f0eee2011-05-26 01:26:41 +0100721 FACTORY->NewSharedFunctionInfo(literal->name(),
Steve Block6ded16b2010-05-10 14:33:55 +0100722 literal->materialized_literal_count(),
Ben Murdochf87a2032010-10-22 12:50:53 +0100723 info.code(),
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100724 scope_info);
Steve Block6ded16b2010-05-10 14:33:55 +0100725 SetFunctionInfo(result, literal, false, script);
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100726 RecordFunctionCompilation(Logger::FUNCTION_TAG, &info, result);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100727 result->set_allows_lazy_compilation(allow_lazy);
Steve Blockd0582a62009-12-15 09:54:21 +0000728
729 // Set the expected number of properties for instances and return
730 // the resulting function.
Steve Block6ded16b2010-05-10 14:33:55 +0100731 SetExpectedNofPropertiesFromEstimate(result,
Steve Blockd0582a62009-12-15 09:54:21 +0000732 literal->expected_property_count());
Steve Block6ded16b2010-05-10 14:33:55 +0100733 live_edit_tracker.RecordFunctionInfo(result, literal);
734 return result;
Steve Blockd0582a62009-12-15 09:54:21 +0000735}
736
737
738// Sets the function info on a function.
739// The start_position points to the first '(' character after the function name
740// in the full script source. When counting characters in the script source the
741// the first character is number 0 (not 1).
Steve Block6ded16b2010-05-10 14:33:55 +0100742void Compiler::SetFunctionInfo(Handle<SharedFunctionInfo> function_info,
Steve Blockd0582a62009-12-15 09:54:21 +0000743 FunctionLiteral* lit,
744 bool is_toplevel,
745 Handle<Script> script) {
Steve Block6ded16b2010-05-10 14:33:55 +0100746 function_info->set_length(lit->num_parameters());
747 function_info->set_formal_parameter_count(lit->num_parameters());
748 function_info->set_script(*script);
749 function_info->set_function_token_position(lit->function_token_position());
750 function_info->set_start_position(lit->start_position());
751 function_info->set_end_position(lit->end_position());
752 function_info->set_is_expression(lit->is_expression());
753 function_info->set_is_toplevel(is_toplevel);
754 function_info->set_inferred_name(*lit->inferred_name());
755 function_info->SetThisPropertyAssignmentsInfo(
Steve Blockd0582a62009-12-15 09:54:21 +0000756 lit->has_only_simple_this_property_assignments(),
757 *lit->this_property_assignments());
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100758 function_info->set_allows_lazy_compilation(lit->AllowsLazyCompilation());
Steve Block1e0659c2011-05-24 12:43:12 +0100759 function_info->set_strict_mode(lit->strict_mode());
Steve Blockd0582a62009-12-15 09:54:21 +0000760}
761
762
Steve Block6ded16b2010-05-10 14:33:55 +0100763void Compiler::RecordFunctionCompilation(Logger::LogEventsAndTags tag,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100764 CompilationInfo* info,
765 Handle<SharedFunctionInfo> shared) {
766 // SharedFunctionInfo is passed separately, because if CompilationInfo
767 // was created using Script object, it will not have it.
768
Ben Murdochf87a2032010-10-22 12:50:53 +0100769 // Log the code generation. If source information is available include
770 // script name and line number. Check explicitly whether logging is
771 // enabled as finding the line number is not free.
Steve Block44f0eee2011-05-26 01:26:41 +0100772 if (info->isolate()->logger()->is_logging() || CpuProfiler::is_profiling()) {
Ben Murdochf87a2032010-10-22 12:50:53 +0100773 Handle<Script> script = info->script();
774 Handle<Code> code = info->code();
Steve Block44f0eee2011-05-26 01:26:41 +0100775 if (*code == info->isolate()->builtins()->builtin(Builtins::kLazyCompile))
776 return;
Andrei Popescu31002712010-02-23 13:46:05 +0000777 if (script->name()->IsString()) {
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100778 int line_num = GetScriptLineNumber(script, shared->start_position()) + 1;
Steve Block6ded16b2010-05-10 14:33:55 +0100779 USE(line_num);
Steve Block44f0eee2011-05-26 01:26:41 +0100780 PROFILE(info->isolate(),
781 CodeCreateEvent(Logger::ToNativeByScript(tag, *script),
Ben Murdochf87a2032010-10-22 12:50:53 +0100782 *code,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100783 *shared,
Ben Murdochf87a2032010-10-22 12:50:53 +0100784 String::cast(script->name()),
785 line_num));
Andrei Popescu31002712010-02-23 13:46:05 +0000786 } else {
Steve Block44f0eee2011-05-26 01:26:41 +0100787 PROFILE(info->isolate(),
788 CodeCreateEvent(Logger::ToNativeByScript(tag, *script),
Ben Murdochf87a2032010-10-22 12:50:53 +0100789 *code,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100790 *shared,
791 shared->DebugName()));
Andrei Popescu31002712010-02-23 13:46:05 +0000792 }
793 }
Ben Murdochb8e0da22011-05-16 14:20:40 +0100794
Ben Murdoch8b112d22011-06-08 16:22:53 +0100795 GDBJIT(AddCode(Handle<String>(shared->DebugName()),
Ben Murdochb8e0da22011-05-16 14:20:40 +0100796 Handle<Script>(info->script()),
797 Handle<Code>(info->code())));
Andrei Popescu31002712010-02-23 13:46:05 +0000798}
Andrei Popescu31002712010-02-23 13:46:05 +0000799
Steve Blocka7e24c12009-10-30 11:49:00 +0000800} } // namespace v8::internal