Home | History | Annotate | Download | only in rs6000

Lines Matching defs:max_bytes

941   HOST_WIDE_INT max_bytes;
947 max_bytes = 0;
949 max_bytes = 128;
952 max_bytes = 32;
954 max_bytes = 128;
958 max_bytes = 0;
961 max_bytes = 128;
963 max_bytes = 64;
968 max_bytes = 191;
970 max_bytes = 0;
973 max_bytes = 128;
978 max_bytes = (unsigned HOST_WIDE_INT) rs6000_block_compare_inline_loop_limit;
980 if (max_bytes == 0)
1023 HOST_WIDE_INT max_loop_iter = max_bytes / loop_bytes;
1027 if (bytes_is_const && (max_bytes < load_mode_size
1028 || !IN_RANGE (bytes, load_mode_size, max_bytes)))
1081 call (max_bytes), and the total length to be checked.
1101 is >= 16. Stash away bytes-max_bytes for the library call. */
1105 if (bytes > max_bytes)
1126 /* Check for > max_bytes bytes. We want to bail out as quickly as
1128 do_ifelse (CCmode, GT, bytes_rtx, GEN_INT (max_bytes),
1135 /* Loop compare bytes and iterations if bytes>max_bytes. */
1141 /* Compute number of loop iterations if bytes <= max_bytes. */
1147 /* Compute bytes to compare in loop if bytes <= max_bytes. */
1158 /* Check for bytes <= max_bytes. */
1164 GEN_INT (max_bytes));
1173 do_ifelse (CCmode, LE, bytes_rtx, GEN_INT (max_bytes),
1288 if (library_call_label != NULL && bytes_is_const && bytes > max_bytes)
2017 unsigned HOST_WIDE_INT max_bytes = rs6000_block_compare_inline_limit;
2020 if (!use_vec && max_bytes > 1)
2021 max_bytes = ((max_bytes + 1) / 2) - 1;
2023 if (!IN_RANGE (bytes, 1, max_bytes))