File tree 2 files changed +6
-7
lines changed
src/hotspot/share/services
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -95,15 +95,15 @@ class MallocAllocationSiteWalker : public MallocSiteWalker {
95
95
}
96
96
97
97
bool do_malloc_site (const MallocSite* site) {
98
- if (site->size () >= MemBaseline::SIZE_THRESHOLD ) {
98
+ if (site->size () > 0 ) {
99
99
if (_malloc_sites.add (*site) != NULL ) {
100
100
_count++;
101
101
return true ;
102
102
} else {
103
103
return false ; // OOM
104
104
}
105
105
} else {
106
- // malloc site does not meet threshold, ignore and continue
106
+ // Ignore empty sites.
107
107
return true ;
108
108
}
109
109
}
@@ -125,15 +125,17 @@ class VirtualMemoryAllocationWalker : public VirtualMemoryWalker {
125
125
VirtualMemoryAllocationWalker () : _count(0 ) { }
126
126
127
127
bool do_allocation_site (const ReservedMemoryRegion* rgn) {
128
- if (rgn->size () >= MemBaseline::SIZE_THRESHOLD ) {
128
+ if (rgn->size () > 0 ) {
129
129
if (_virtual_memory_regions.add (*rgn) != NULL ) {
130
130
_count ++;
131
131
return true ;
132
132
} else {
133
133
return false ;
134
134
}
135
+ } else {
136
+ // Ignore empty sites.
137
+ return true ;
135
138
}
136
- return true ;
137
139
}
138
140
139
141
LinkedList<ReservedMemoryRegion>* virtual_memory_allocations () {
Original file line number Diff line number Diff line change @@ -43,9 +43,6 @@ typedef LinkedListIterator<ReservedMemoryRegion> VirtualMemoryAllocation
43
43
*/
44
44
class MemBaseline {
45
45
public:
46
- enum BaselineThreshold {
47
- SIZE_THRESHOLD = K // Only allocation size over this threshold will be baselined.
48
- };
49
46
50
47
enum BaselineType {
51
48
Not_baselined,
You can’t perform that action at this time.
0 commit comments