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 12 matching lines...) Expand all Loading... |
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 "src/v8.h" | 28 #include "src/v8.h" |
29 #include "test/cctest/cctest.h" | 29 #include "test/cctest/cctest.h" |
30 | 30 |
31 #include "src/accessors.h" | 31 #include "src/accessors.h" |
32 #include "src/api.h" | 32 #include "src/api.h" |
| 33 #include "src/objects-inl.h" |
33 #include "src/property.h" | 34 #include "src/property.h" |
34 #include "test/cctest/heap/heap-tester.h" | 35 #include "test/cctest/heap/heap-tester.h" |
35 #include "test/cctest/heap/heap-utils.h" | 36 #include "test/cctest/heap/heap-utils.h" |
36 | 37 |
37 using namespace v8::internal; | 38 using namespace v8::internal; |
38 | 39 |
39 | 40 |
40 AllocationResult v8::internal::HeapTester::AllocateAfterFailures() { | 41 AllocationResult v8::internal::HeapTester::AllocateAfterFailures() { |
41 Heap* heap = CcTest::heap(); | 42 Heap* heap = CcTest::heap(); |
42 | 43 |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 code_range.FreeRawMemory(blocks[index].base, blocks[index].size); | 243 code_range.FreeRawMemory(blocks[index].base, blocks[index].size); |
243 current_allocated -= blocks[index].size; | 244 current_allocated -= blocks[index].size; |
244 if (index < blocks.length() - 1) { | 245 if (index < blocks.length() - 1) { |
245 blocks[index] = blocks.RemoveLast(); | 246 blocks[index] = blocks.RemoveLast(); |
246 } else { | 247 } else { |
247 blocks.RemoveLast(); | 248 blocks.RemoveLast(); |
248 } | 249 } |
249 } | 250 } |
250 } | 251 } |
251 } | 252 } |
OLD | NEW |