Lines Matching refs:access_bytes
1198 s64 access_bytes, u32 frame, u32 insn_idx) in record_stack_access_off() argument
1210 if (access_bytes == S64_MIN) { in record_stack_access_off()
1217 if (access_bytes > 0) { in record_stack_access_off()
1220 slot_lo = max_t(s32, (-fp_off - access_bytes) / STACK_SLOT_SZ, 0); in record_stack_access_off()
1224 } else if (access_bytes < 0) { in record_stack_access_off()
1226 access_bytes = -access_bytes; in record_stack_access_off()
1228 slot_lo = max_t(s32, (-fp_off - access_bytes + STACK_SLOT_SZ - 1) / STACK_SLOT_SZ, 0); in record_stack_access_off()
1244 s64 access_bytes, u32 frame, u32 insn_idx) in record_stack_access() argument
1248 if (access_bytes == 0) in record_stack_access()
1251 if (access_bytes > 0 || access_bytes == S64_MIN) in record_stack_access()
1255 if (access_bytes != S64_MIN && access_bytes < 0 && arg->off_cnt != 1) in record_stack_access()
1260 err = record_stack_access_off(instance, arg->off[i], access_bytes, frame, insn_idx); in record_stack_access()