OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/compiler.h" | 5 #include "src/compiler.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "src/ast-numbering.h" | 9 #include "src/ast-numbering.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 if (info()->shared_info()->asm_function()) { | 392 if (info()->shared_info()->asm_function()) { |
393 info()->MarkAsContextSpecializing(); | 393 info()->MarkAsContextSpecializing(); |
394 } else if (FLAG_turbo_type_feedback) { | 394 } else if (FLAG_turbo_type_feedback) { |
395 info()->MarkAsTypeFeedbackEnabled(); | 395 info()->MarkAsTypeFeedbackEnabled(); |
396 } | 396 } |
397 | 397 |
398 Timer t(this, &time_taken_to_create_graph_); | 398 Timer t(this, &time_taken_to_create_graph_); |
399 compiler::Pipeline pipeline(info()); | 399 compiler::Pipeline pipeline(info()); |
400 pipeline.GenerateCode(); | 400 pipeline.GenerateCode(); |
401 if (!info()->code().is_null()) { | 401 if (!info()->code().is_null()) { |
| 402 info()->dependencies()->Commit(info()->code()); |
402 return SetLastStatus(SUCCEEDED); | 403 return SetLastStatus(SUCCEEDED); |
403 } | 404 } |
404 } | 405 } |
405 | 406 |
406 // Do not use Crankshaft if the code is intended to be serialized. | 407 // Do not use Crankshaft if the code is intended to be serialized. |
407 if (!isolate()->use_crankshaft()) return SetLastStatus(FAILED); | 408 if (!isolate()->use_crankshaft()) return SetLastStatus(FAILED); |
408 | 409 |
409 if (FLAG_trace_opt) { | 410 if (FLAG_trace_opt) { |
410 OFStream os(stdout); | 411 OFStream os(stdout); |
411 os << "[compiling method " << Brief(*info()->closure()) | 412 os << "[compiling method " << Brief(*info()->closure()) |
(...skipping 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1540 } | 1541 } |
1541 | 1542 |
1542 | 1543 |
1543 #if DEBUG | 1544 #if DEBUG |
1544 void CompilationInfo::PrintAstForTesting() { | 1545 void CompilationInfo::PrintAstForTesting() { |
1545 PrintF("--- Source from AST ---\n%s\n", | 1546 PrintF("--- Source from AST ---\n%s\n", |
1546 PrettyPrinter(isolate(), zone()).PrintProgram(function())); | 1547 PrettyPrinter(isolate(), zone()).PrintProgram(function())); |
1547 } | 1548 } |
1548 #endif | 1549 #endif |
1549 } } // namespace v8::internal | 1550 } } // namespace v8::internal |
OLD | NEW |