This is an implementation of TargetTransformInfo::getUnrollingPreferences() for SystemZ.
In addition, there is a also a change in the UnrollingPreferences so that the Force member is instead ForceMaxCount. The motivation behind this is that it is important to get rid of tiny loops on SystemZ, and this is beneficial even with forced unrolling (cloned iterations). However, this should only be done with two or three iterations, so that the resulting loop is at least 6-8 instructions (the branch predictor can only handle a taken branch every other cycle). In order to achieve this, it is necessary to limit this with ForceMaxCount.
Somebody, please take a look at the common code change that was introduced here.
We should mention #pragma as well or nothing.