Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 16 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 17 | #include "common_runtime_test.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 18 | #include "gc/accounting/card_table-inl.h" |
| 19 | #include "gc/accounting/space_bitmap-inl.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 20 | #include "handle_scope-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 21 | #include "mirror/class-inl.h" |
| 22 | #include "mirror/object-inl.h" |
| 23 | #include "mirror/object_array-inl.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 24 | #include "scoped_thread_state_change.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 25 | |
| 26 | namespace art { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 27 | namespace gc { |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 28 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 29 | class HeapTest : public CommonRuntimeTest {}; |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 30 | |
jeffhao | c116070 | 2011-10-27 15:48:45 -0700 | [diff] [blame] | 31 | TEST_F(HeapTest, ClearGrowthLimit) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 32 | Heap* heap = Runtime::Current()->GetHeap(); |
| 33 | int64_t max_memory_before = heap->GetMaxMemory(); |
| 34 | int64_t total_memory_before = heap->GetTotalMemory(); |
| 35 | heap->ClearGrowthLimit(); |
| 36 | int64_t max_memory_after = heap->GetMaxMemory(); |
| 37 | int64_t total_memory_after = heap->GetTotalMemory(); |
jeffhao | c116070 | 2011-10-27 15:48:45 -0700 | [diff] [blame] | 38 | EXPECT_GE(max_memory_after, max_memory_before); |
| 39 | EXPECT_GE(total_memory_after, total_memory_before); |
| 40 | } |
| 41 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 42 | TEST_F(HeapTest, GarbageCollectClassLinkerInit) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 43 | { |
| 44 | ScopedObjectAccess soa(Thread::Current()); |
| 45 | // garbage is created during ClassLinker::Init |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 46 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 47 | StackHandleScope<1> hs(soa.Self()); |
| 48 | Handle<mirror::Class> c( |
| 49 | hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;"))); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 50 | for (size_t i = 0; i < 1024; ++i) { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 51 | StackHandleScope<1> hs2(soa.Self()); |
| 52 | Handle<mirror::ObjectArray<mirror::Object>> array(hs2.NewHandle( |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 53 | mirror::ObjectArray<mirror::Object>::Alloc(soa.Self(), c.Get(), 2048))); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 54 | for (size_t j = 0; j < 2048; ++j) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 55 | mirror::String* string = mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello, world!"); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 56 | // handle scope operator -> deferences the handle scope before running the method. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 57 | array->Set<false>(j, string); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 58 | } |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 59 | } |
| 60 | } |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 61 | Runtime::Current()->GetHeap()->CollectGarbage(false); |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 62 | } |
| 63 | |
Mathieu Chartier | 61c9cb5 | 2012-07-03 14:39:54 -0700 | [diff] [blame] | 64 | TEST_F(HeapTest, HeapBitmapCapacityTest) { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 65 | uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x1000); |
Mathieu Chartier | a8e8f9c | 2014-04-09 14:51:05 -0700 | [diff] [blame] | 66 | const size_t heap_capacity = kObjectAlignment * (sizeof(intptr_t) * 8 + 1); |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 67 | std::unique_ptr<accounting::ContinuousSpaceBitmap> bitmap( |
Mathieu Chartier | a8e8f9c | 2014-04-09 14:51:05 -0700 | [diff] [blame] | 68 | accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 69 | mirror::Object* fake_end_of_heap_object = |
Mathieu Chartier | a8e8f9c | 2014-04-09 14:51:05 -0700 | [diff] [blame] | 70 | reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]); |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 71 | bitmap->Set(fake_end_of_heap_object); |
Mathieu Chartier | 61c9cb5 | 2012-07-03 14:39:54 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Hiroshi Yamauchi | db1c9ac | 2015-03-12 15:40:53 -0700 | [diff] [blame^] | 74 | class ZygoteHeapTest : public CommonRuntimeTest { |
| 75 | void SetUpRuntimeOptions(RuntimeOptions* options) { |
| 76 | CommonRuntimeTest::SetUpRuntimeOptions(options); |
| 77 | options->push_back(std::make_pair("-Xzygote", nullptr)); |
| 78 | } |
| 79 | }; |
| 80 | |
| 81 | TEST_F(ZygoteHeapTest, PreZygoteFork) { |
| 82 | // Exercise Heap::PreZygoteFork() to check it does not crash. |
| 83 | Runtime::Current()->GetHeap()->PreZygoteFork(); |
| 84 | } |
| 85 | |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 86 | } // namespace gc |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 87 | } // namespace art |