Skip to content

Commit

Permalink
Merge pull request #16475 from mpirvu/updateFreeMemoryMinPeriod
Browse files Browse the repository at this point in the history
Set _updateFreeMemoryMinPeriod option to 300 ms on Power
  • Loading branch information
ymanton committed Dec 15, 2022
2 parents 2e42ea4 + 3651005 commit 9b41549
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runtime/compiler/control/J9Options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,11 @@ int32_t J9::Options::_numCodeCachesToCreateAtStartup = 0; // 0 means no change f
int32_t J9::Options::_dataCacheQuantumSize = 64;
int32_t J9::Options::_dataCacheMinQuanta = 2;

#if defined(TR_TARGET_POWER)
int32_t J9::Options::_updateFreeMemoryMinPeriod = 300; // 300 ms
#else
int32_t J9::Options::_updateFreeMemoryMinPeriod = 50; // 50 ms

#endif /* defined(TR_TARGET_POWER) */
size_t J9::Options::_scratchSpaceLimitKBWhenLowVirtualMemory = 64*1024; // 64MB; currently, only used on 32 bit Windows

int32_t J9::Options::_scratchSpaceFactorWhenJSR292Workload = JSR292_SCRATCH_SPACE_FACTOR;
Expand Down

0 comments on commit 9b41549

Please sign in to comment.