Skip to content

Commit

Permalink
Merge pull request eclipse-omr#7240 from mpirvu/nodethreshold
Browse files Browse the repository at this point in the history
Modify default nodeCountThreshold value used by inliner
  • Loading branch information
vijaysun-omr authored Jan 25, 2024
2 parents 269a3d2 + e07e8df commit a74c093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/optimizer/Inliner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ TR_InlinerBase::setInlineThresholds(TR::ResolvedMethodSymbol *callerSymbol)

_callerWeightLimit -= size;

_nodeCountThreshold = 16000;
_nodeCountThreshold = comp()->getOption(TR_NotCompileTimeSensitive) ? 16000: 3000;
_methodInWarmBlockByteCodeSizeThreshold = _methodByteCodeSizeThreshold = 155;
_methodInColdBlockByteCodeSizeThreshold = 30;
_maxInliningCallSites = 4095;
Expand Down

0 comments on commit a74c093

Please sign in to comment.