Lines Matching defs:end
961 static int grab_bb(u8 *buffer, u64 start, u64 end,
969 if (!start || !end)
984 if (kernel != machine__kernel_ip(machine, end)) {
985 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
990 if (end - start > MAXBB - MAXINSN) {
992 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
994 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
999 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
1003 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
1012 end - start + MAXINSN);
1017 start, end);
1109 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
1120 if (al.addr < al.sym->end)
1143 u64 start, end;
1182 end = entries[i].from;
1184 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1187 end = entries[--i].from;
1188 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
1189 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1199 if (ip == end) {
1216 if (off != end - start)
1238 end = sample->ip;
1239 if (end < start) {
1241 end = start + 128;
1243 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
1257 for (off = 0; off <= end - start; off += ilen) {
1508 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
1546 return fprintf(fp, " tr end %-7s%4s ", name, in_tx ? "(x)" : "");