Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: src/compiler.cc

Issue 8050010: Support for precise stepping in functions compiled before debugging was started (step 2) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added missing test file Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 CompilationInfo::CompilationInfo(Handle<Script> script) 53 CompilationInfo::CompilationInfo(Handle<Script> script)
54 : isolate_(script->GetIsolate()), 54 : isolate_(script->GetIsolate()),
55 flags_(0), 55 flags_(0),
56 function_(NULL), 56 function_(NULL),
57 scope_(NULL), 57 scope_(NULL),
58 script_(script), 58 script_(script),
59 extension_(NULL), 59 extension_(NULL),
60 pre_parse_data_(NULL), 60 pre_parse_data_(NULL),
61 supports_deoptimization_(false), 61 supports_deoptimization_(false),
62 osr_ast_id_(AstNode::kNoNumber) { 62 osr_ast_id_(AstNode::kNoNumber),
63 compiling_for_debugging_(false) {
63 Initialize(NONOPT); 64 Initialize(NONOPT);
64 } 65 }
65 66
66 67
67 CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info) 68 CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info)
68 : isolate_(shared_info->GetIsolate()), 69 : isolate_(shared_info->GetIsolate()),
69 flags_(IsLazy::encode(true)), 70 flags_(IsLazy::encode(true)),
70 function_(NULL), 71 function_(NULL),
71 scope_(NULL), 72 scope_(NULL),
72 shared_info_(shared_info), 73 shared_info_(shared_info),
73 script_(Handle<Script>(Script::cast(shared_info->script()))), 74 script_(Handle<Script>(Script::cast(shared_info->script()))),
74 extension_(NULL), 75 extension_(NULL),
75 pre_parse_data_(NULL), 76 pre_parse_data_(NULL),
76 supports_deoptimization_(false), 77 supports_deoptimization_(false),
77 osr_ast_id_(AstNode::kNoNumber) { 78 osr_ast_id_(AstNode::kNoNumber),
79 compiling_for_debugging_(false) {
78 Initialize(BASE); 80 Initialize(BASE);
79 } 81 }
80 82
81 83
82 CompilationInfo::CompilationInfo(Handle<JSFunction> closure) 84 CompilationInfo::CompilationInfo(Handle<JSFunction> closure)
83 : isolate_(closure->GetIsolate()), 85 : isolate_(closure->GetIsolate()),
84 flags_(IsLazy::encode(true)), 86 flags_(IsLazy::encode(true)),
85 function_(NULL), 87 function_(NULL),
86 scope_(NULL), 88 scope_(NULL),
87 closure_(closure), 89 closure_(closure),
88 shared_info_(Handle<SharedFunctionInfo>(closure->shared())), 90 shared_info_(Handle<SharedFunctionInfo>(closure->shared())),
89 script_(Handle<Script>(Script::cast(shared_info_->script()))), 91 script_(Handle<Script>(Script::cast(shared_info_->script()))),
90 extension_(NULL), 92 extension_(NULL),
91 pre_parse_data_(NULL), 93 pre_parse_data_(NULL),
92 supports_deoptimization_(false), 94 supports_deoptimization_(false),
93 osr_ast_id_(AstNode::kNoNumber) { 95 osr_ast_id_(AstNode::kNoNumber),
96 compiling_for_debugging_(false) {
94 Initialize(BASE); 97 Initialize(BASE);
95 } 98 }
96 99
97 100
98 // Disable optimization for the rest of the compilation pipeline. 101 // Disable optimization for the rest of the compilation pipeline.
99 void CompilationInfo::DisableOptimization() { 102 void CompilationInfo::DisableOptimization() {
100 bool is_optimizable_closure = 103 bool is_optimizable_closure =
101 FLAG_optimize_closures && 104 FLAG_optimize_closures &&
102 closure_.is_null() && 105 closure_.is_null() &&
103 !scope_->HasTrivialOuterContext() && 106 !scope_->HasTrivialOuterContext() &&
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 Handle<JSFunction> closure = info->closure(); 304 Handle<JSFunction> closure = info->closure();
302 info->shared_info()->DisableOptimization(*closure); 305 info->shared_info()->DisableOptimization(*closure);
303 } 306 }
304 // True indicates the compilation pipeline is still going, not necessarily 307 // True indicates the compilation pipeline is still going, not necessarily
305 // that we optimized the code. 308 // that we optimized the code.
306 return true; 309 return true;
307 } 310 }
308 311
309 312
310 static bool GenerateCode(CompilationInfo* info) { 313 static bool GenerateCode(CompilationInfo* info) {
311 return V8::UseCrankshaft() ? 314 if (info->CompilingForDebugging()) {
Kevin Millikin (Chromium) 2011/09/29 10:47:35 You could piggyback on the existing test so the co
Søren Thygesen Gjesse 2011/09/30 08:33:22 Done.
312 MakeCrankshaftCode(info) : 315 return FullCodeGenerator::MakeCode(info);
313 FullCodeGenerator::MakeCode(info); 316 } else {
317 return V8::UseCrankshaft() ?
318 MakeCrankshaftCode(info) :
319 FullCodeGenerator::MakeCode(info);
320 }
314 } 321 }
315 322
316 323
317 static bool MakeCode(CompilationInfo* info) { 324 static bool MakeCode(CompilationInfo* info) {
318 // Precondition: code has been parsed. Postcondition: the code field in 325 // Precondition: code has been parsed. Postcondition: the code field in
319 // the compilation info is set if compilation succeeded. 326 // the compilation info is set if compilation succeeded.
320 ASSERT(info->function() != NULL); 327 ASSERT(info->function() != NULL);
321 return Rewriter::Rewrite(info) && Scope::Analyze(info) && GenerateCode(info); 328 return Rewriter::Rewrite(info) && Scope::Analyze(info) && GenerateCode(info);
322 } 329 }
323 330
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 } 796 }
790 } 797 }
791 798
792 GDBJIT(AddCode(Handle<String>(shared->DebugName()), 799 GDBJIT(AddCode(Handle<String>(shared->DebugName()),
793 Handle<Script>(info->script()), 800 Handle<Script>(info->script()),
794 Handle<Code>(info->code()), 801 Handle<Code>(info->code()),
795 info)); 802 info));
796 } 803 }
797 804
798 } } // namespace v8::internal 805 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698