< prev index next >

src/hotspot/cpu/s390/s390.ad

Print this page
rev 60615 : 8231441: Initial SVE backend support
Reviewed-by: adinn, pli
Contributed-by: joshua.zhu@arm.com, yang.zhang@arm.com, ningsheng.jian@arm.com

*** 1608,1617 **** --- 1608,1625 ---- const int Matcher::min_vector_size(const BasicType bt) { return max_vector_size(bt); // Same as max. } + const bool Matcher::supports_scalable_vector() { + return false; + } + + const int Matcher::scalable_vector_reg_size(const BasicType bt) { + return -1; + } + // z/Architecture does support misaligned store/load at minimal extra cost. const bool Matcher::misaligned_vectors_ok() { return true; }
< prev index next >