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 5565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5576 #endif // DEBUG | 5576 #endif // DEBUG |
5577 | 5577 |
5578 | 5578 |
5579 static void InterruptCallback357137(v8::Isolate* isolate, void* data) { } | 5579 static void InterruptCallback357137(v8::Isolate* isolate, void* data) { } |
5580 | 5580 |
5581 | 5581 |
5582 static void RequestInterrupt(const v8::FunctionCallbackInfo<v8::Value>& args) { | 5582 static void RequestInterrupt(const v8::FunctionCallbackInfo<v8::Value>& args) { |
5583 CcTest::isolate()->RequestInterrupt(&InterruptCallback357137, NULL); | 5583 CcTest::isolate()->RequestInterrupt(&InterruptCallback357137, NULL); |
5584 } | 5584 } |
5585 | 5585 |
5586 | 5586 HEAP_TEST(Regress538257) { |
5587 UNINITIALIZED_TEST(Regress538257) { | |
5588 i::FLAG_manual_evacuation_candidates_selection = true; | 5587 i::FLAG_manual_evacuation_candidates_selection = true; |
5589 v8::Isolate::CreateParams create_params; | 5588 v8::Isolate::CreateParams create_params; |
5590 // Set heap limits. | 5589 // Set heap limits. |
5591 create_params.constraints.set_max_semi_space_size(1); | 5590 create_params.constraints.set_max_semi_space_size(1); |
5592 create_params.constraints.set_max_old_space_size(6); | 5591 create_params.constraints.set_max_old_space_size(6); |
5593 create_params.array_buffer_allocator = CcTest::array_buffer_allocator(); | 5592 create_params.array_buffer_allocator = CcTest::array_buffer_allocator(); |
5594 v8::Isolate* isolate = v8::Isolate::New(create_params); | 5593 v8::Isolate* isolate = v8::Isolate::New(create_params); |
5595 isolate->Enter(); | 5594 isolate->Enter(); |
5596 { | 5595 { |
5597 i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); | 5596 i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); |
(...skipping 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7105 chunk, chunk->area_end() - kPointerSize, chunk->area_end()); | 7104 chunk, chunk->area_end() - kPointerSize, chunk->area_end()); |
7106 slots[chunk->area_end() - kPointerSize] = false; | 7105 slots[chunk->area_end() - kPointerSize] = false; |
7107 RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) { | 7106 RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) { |
7108 CHECK(slots[addr]); | 7107 CHECK(slots[addr]); |
7109 return KEEP_SLOT; | 7108 return KEEP_SLOT; |
7110 }); | 7109 }); |
7111 } | 7110 } |
7112 | 7111 |
7113 } // namespace internal | 7112 } // namespace internal |
7114 } // namespace v8 | 7113 } // namespace v8 |
OLD | NEW |