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