Lines Matching defs:start
1036 static int grab_bb(u8 *buffer, u64 start, u64 end,
1046 if (!start || !end)
1049 kernel = machine__kernel_ip(machine, start);
1062 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
1066 if (end - start > MAXBB - MAXINSN) {
1068 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
1070 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
1075 if (!thread__find_map(thread, *cpumode, start, &al) || (dso = map__dso(al.map)) == NULL) {
1076 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
1080 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
1087 offset = map__map_ip(al.map, start);
1089 end - start + MAXINSN);
1094 start, end);
1198 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
1210 off = al.addr - al.sym->start;
1212 off = al.addr - map__start(al.map) - al.sym->start;
1235 u64 start, end;
1274 start = entries[i + 1].to;
1277 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1281 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
1282 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1289 uint64_t ip = start + off;
1312 if (off != end - start)
1333 start = entries[0].to;
1335 if (end < start) {
1337 end = start + 128;
1339 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
1340 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
1357 for (off = 0; off <= end - start; off += ilen) {
1359 printed += fprintf(fp, "\t%016" PRIx64 "\t%s", start + off,
1360 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
1366 if (arch_is_branch(buffer + off, len - off, x.is64bit) && start + off != sample->ip) {
1374 print_srccode(thread, x.cpumode, start + off);
3940 OPT_BOOLEAN(0, "reltime", &reltime, "Show time stamps relative to start"),
3981 "Time span of interest (start,stop)"),