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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/hydrogen.h" | 7 #include "src/hydrogen.h" |
8 #include "src/lithium-inl.h" | 8 #include "src/lithium-inl.h" |
9 #include "src/lithium-allocator-inl.h" | 9 #include "src/lithium-allocator-inl.h" |
10 #include "src/string-stream.h" | 10 #include "src/string-stream.h" |
(...skipping 2172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2183 isolate()->GetHTracer()->TraceLithium(name(), allocator_->chunk()); | 2183 isolate()->GetHTracer()->TraceLithium(name(), allocator_->chunk()); |
2184 isolate()->GetHTracer()->TraceLiveRanges(name(), allocator_); | 2184 isolate()->GetHTracer()->TraceLiveRanges(name(), allocator_); |
2185 } | 2185 } |
2186 | 2186 |
2187 #ifdef DEBUG | 2187 #ifdef DEBUG |
2188 if (allocator_ != NULL) allocator_->Verify(); | 2188 if (allocator_ != NULL) allocator_->Verify(); |
2189 #endif | 2189 #endif |
2190 } | 2190 } |
2191 | 2191 |
2192 | 2192 |
2193 } } // namespace v8::internal | 2193 } // namespace internal |
| 2194 } // namespace v8 |
OLD | NEW |