From 76338d7095afe90fad0213baf78826a629c507bb Mon Sep 17 00:00:00 2001 From: Daryl Maier Date: Fri, 20 Aug 2021 21:20:01 -0400 Subject: [PATCH] Add setter for TR::Options::_bigCalleeScorchingOptThreshold Signed-off-by: Daryl Maier --- compiler/control/OMROptions.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/control/OMROptions.hpp b/compiler/control/OMROptions.hpp index 6738bb428c5..9e44871db15 100644 --- a/compiler/control/OMROptions.hpp +++ b/compiler/control/OMROptions.hpp @@ -1577,6 +1577,7 @@ class OMR_EXTENSIBLE Options int32_t getBigCalleeThresholdForColdCallsAtHot() const {return _bigCalleeThresholdForColdCallsAtHot;} int32_t getBigCalleeFrequencyCutoffAtHot() const {return _bigCalleeFreqCutoffAtHot;} int32_t getBigCalleeScorchingOptThreshold() const {return _bigCalleeScorchingOptThreshold;} + void setBigCalleeScorchingOptThreshold(int32_t t) { _bigCalleeScorchingOptThreshold = t; } int32_t getLargeCompiledMethodExemptionFreqCutoff() const {return _largeCompiledMethodExemptionFreqCutoff;} int32_t getMaxSzForVPInliningWarm() const {return _maxSzForVPInliningWarm;} int32_t getInlinerVeryLargeCompiledMethodThreshold() const {return _inlinerVeryLargeCompiledMethodThreshold;}