OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 11 matching lines...) Expand all Loading... |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #include "v8.h" | 28 #include "v8.h" |
29 | 29 |
30 #include "code-stubs.h" | 30 #include "code-stubs.h" |
31 #include "compilation-cache.h" | 31 #include "compilation-cache.h" |
| 32 #include "cpu-profiler.h" |
32 #include "deoptimizer.h" | 33 #include "deoptimizer.h" |
33 #include "execution.h" | 34 #include "execution.h" |
34 #include "gdb-jit.h" | 35 #include "gdb-jit.h" |
35 #include "global-handles.h" | 36 #include "global-handles.h" |
36 #include "heap-profiler.h" | 37 #include "heap-profiler.h" |
37 #include "ic-inl.h" | 38 #include "ic-inl.h" |
38 #include "incremental-marking.h" | 39 #include "incremental-marking.h" |
39 #include "mark-compact.h" | 40 #include "mark-compact.h" |
40 #include "marking-thread.h" | 41 #include "marking-thread.h" |
41 #include "objects-visiting.h" | 42 #include "objects-visiting.h" |
(...skipping 4272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4314 while (buffer != NULL) { | 4315 while (buffer != NULL) { |
4315 SlotsBuffer* next_buffer = buffer->next(); | 4316 SlotsBuffer* next_buffer = buffer->next(); |
4316 DeallocateBuffer(buffer); | 4317 DeallocateBuffer(buffer); |
4317 buffer = next_buffer; | 4318 buffer = next_buffer; |
4318 } | 4319 } |
4319 *buffer_address = NULL; | 4320 *buffer_address = NULL; |
4320 } | 4321 } |
4321 | 4322 |
4322 | 4323 |
4323 } } // namespace v8::internal | 4324 } } // namespace v8::internal |
OLD | NEW |