| 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/lithium.h" | 5 #include "src/lithium.h" |
| 6 | 6 |
| 7 #include "src/v8.h" | 7 #include "src/v8.h" |
| 8 | 8 |
| 9 #include "src/scopes.h" | 9 #include "src/scopes.h" |
| 10 | 10 |
| (...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 } | 719 } |
| 720 | 720 |
| 721 | 721 |
| 722 LPhase::~LPhase() { | 722 LPhase::~LPhase() { |
| 723 if (ShouldProduceTraceOutput()) { | 723 if (ShouldProduceTraceOutput()) { |
| 724 isolate()->GetHTracer()->TraceLithium(name(), chunk_); | 724 isolate()->GetHTracer()->TraceLithium(name(), chunk_); |
| 725 } | 725 } |
| 726 } | 726 } |
| 727 | 727 |
| 728 | 728 |
| 729 } } // namespace v8::internal | 729 } // namespace internal |
| 730 } // namespace v8 |
| OLD | NEW |