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 | |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 17 | #include "class_linker-inl.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 18 | #include "common_runtime_test.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 19 | #include "gc/accounting/card_table-inl.h" |
| 20 | #include "gc/accounting/space_bitmap-inl.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 21 | #include "handle_scope-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 22 | #include "mirror/class-inl.h" |
| 23 | #include "mirror/object-inl.h" |
| 24 | #include "mirror/object_array-inl.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 25 | #include "scoped_thread_state_change-inl.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 26 | |
| 27 | namespace art { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 28 | namespace gc { |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 29 | |
Mathieu Chartier | 558511a | 2018-03-02 13:48:54 -0800 | [diff] [blame] | 30 | class HeapTest : public CommonRuntimeTest { |
| 31 | public: |
| 32 | void SetUp() OVERRIDE { |
| 33 | MemMap::Init(); |
| 34 | std::string error_msg; |
| 35 | // Reserve the preferred address to force the heap to use another one for testing. |
| 36 | reserved_.reset(MemMap::MapAnonymous("ReserveMap", |
| 37 | gc::Heap::kPreferredAllocSpaceBegin, |
| 38 | 16 * KB, |
| 39 | PROT_READ, |
| 40 | /*low_4gb*/ true, |
| 41 | /*reuse*/ false, |
| 42 | &error_msg)); |
| 43 | ASSERT_TRUE(reserved_ != nullptr) << error_msg; |
| 44 | CommonRuntimeTest::SetUp(); |
| 45 | } |
| 46 | |
| 47 | private: |
| 48 | std::unique_ptr<MemMap> reserved_; |
| 49 | }; |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 50 | |
jeffhao | c116070 | 2011-10-27 15:48:45 -0700 | [diff] [blame] | 51 | TEST_F(HeapTest, ClearGrowthLimit) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 52 | Heap* heap = Runtime::Current()->GetHeap(); |
| 53 | int64_t max_memory_before = heap->GetMaxMemory(); |
| 54 | int64_t total_memory_before = heap->GetTotalMemory(); |
| 55 | heap->ClearGrowthLimit(); |
| 56 | int64_t max_memory_after = heap->GetMaxMemory(); |
| 57 | int64_t total_memory_after = heap->GetTotalMemory(); |
jeffhao | c116070 | 2011-10-27 15:48:45 -0700 | [diff] [blame] | 58 | EXPECT_GE(max_memory_after, max_memory_before); |
| 59 | EXPECT_GE(total_memory_after, total_memory_before); |
| 60 | } |
| 61 | |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 62 | TEST_F(HeapTest, GarbageCollectClassLinkerInit) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 63 | { |
| 64 | ScopedObjectAccess soa(Thread::Current()); |
| 65 | // garbage is created during ClassLinker::Init |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 66 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 67 | StackHandleScope<1> hs(soa.Self()); |
| 68 | Handle<mirror::Class> c( |
| 69 | hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;"))); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 70 | for (size_t i = 0; i < 1024; ++i) { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 71 | StackHandleScope<1> hs2(soa.Self()); |
| 72 | Handle<mirror::ObjectArray<mirror::Object>> array(hs2.NewHandle( |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 73 | mirror::ObjectArray<mirror::Object>::Alloc(soa.Self(), c.Get(), 2048))); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 74 | for (size_t j = 0; j < 2048; ++j) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 75 | mirror::String* string = mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello, world!"); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 76 | // handle scope operator -> deferences the handle scope before running the method. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 77 | array->Set<false>(j, string); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 78 | } |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 79 | } |
| 80 | } |
Roland Levillain | af29031 | 2018-02-27 20:02:17 +0000 | [diff] [blame] | 81 | Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ false); |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 82 | } |
| 83 | |
Mathieu Chartier | 61c9cb5 | 2012-07-03 14:39:54 -0700 | [diff] [blame] | 84 | TEST_F(HeapTest, HeapBitmapCapacityTest) { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 85 | uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x1000); |
Mathieu Chartier | a8e8f9c | 2014-04-09 14:51:05 -0700 | [diff] [blame] | 86 | const size_t heap_capacity = kObjectAlignment * (sizeof(intptr_t) * 8 + 1); |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 87 | std::unique_ptr<accounting::ContinuousSpaceBitmap> bitmap( |
Mathieu Chartier | a8e8f9c | 2014-04-09 14:51:05 -0700 | [diff] [blame] | 88 | accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 89 | mirror::Object* fake_end_of_heap_object = |
Mathieu Chartier | a8e8f9c | 2014-04-09 14:51:05 -0700 | [diff] [blame] | 90 | reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]); |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 91 | bitmap->Set(fake_end_of_heap_object); |
Mathieu Chartier | 61c9cb5 | 2012-07-03 14:39:54 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Mathieu Chartier | 1d49501 | 2017-04-11 17:50:00 -0700 | [diff] [blame] | 94 | TEST_F(HeapTest, DumpGCPerformanceOnShutdown) { |
| 95 | Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ false); |
| 96 | Runtime::Current()->SetDumpGCPerformanceOnShutdown(true); |
| 97 | } |
| 98 | |
Hiroshi Yamauchi | db1c9ac | 2015-03-12 15:40:53 -0700 | [diff] [blame] | 99 | class ZygoteHeapTest : public CommonRuntimeTest { |
| 100 | void SetUpRuntimeOptions(RuntimeOptions* options) { |
| 101 | CommonRuntimeTest::SetUpRuntimeOptions(options); |
| 102 | options->push_back(std::make_pair("-Xzygote", nullptr)); |
| 103 | } |
| 104 | }; |
| 105 | |
| 106 | TEST_F(ZygoteHeapTest, PreZygoteFork) { |
| 107 | // Exercise Heap::PreZygoteFork() to check it does not crash. |
| 108 | Runtime::Current()->GetHeap()->PreZygoteFork(); |
| 109 | } |
| 110 | |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 111 | } // namespace gc |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 112 | } // namespace art |