/linux-6.1.9/tools/perf/util/ |
D | event.c | 486 struct addr_location al; in perf_event__fprintf_text_poke() local 488 al.map = maps__find(machine__kernel_maps(machine), tp->addr); in perf_event__fprintf_text_poke() 489 if (al.map && map__load(al.map) >= 0) { in perf_event__fprintf_text_poke() 490 al.addr = al.map->map_ip(al.map, tp->addr); in perf_event__fprintf_text_poke() 491 al.sym = map__find_symbol(al.map, al.addr); in perf_event__fprintf_text_poke() 492 if (al.sym) in perf_event__fprintf_text_poke() 493 ret += symbol__fprintf_symname_offs(al.sym, &al, fp); in perf_event__fprintf_text_poke() 572 struct addr_location *al) in thread__find_map() argument 578 al->maps = maps; in thread__find_map() 579 al->thread = thread; in thread__find_map() [all …]
|
D | unwind-libdw.c | 43 static int __report_module(struct addr_location *al, u64 ip, in __report_module() argument 52 thread__find_symbol(ui->thread, PERF_RECORD_MISC_USER, ip, al); in __report_module() 54 if (al->map) in __report_module() 55 dso = al->map->dso; in __report_module() 65 if (s != al->map->start - al->map->pgoff) in __report_module() 71 al->map->start - al->map->pgoff, false); in __report_module() 77 al->map->start - al->map->pgoff, false); in __report_module() 92 struct addr_location al; in report_module() local 94 return __report_module(&al, ip, ui); in report_module() 105 struct addr_location al; in entry() local [all …]
|
D | dlfilter.c | 26 static void al_to_d_al(struct addr_location *al, struct perf_dlfilter_al *d_al) in al_to_d_al() argument 28 struct symbol *sym = al->sym; in al_to_d_al() 31 if (al->map) { in al_to_d_al() 32 struct dso *dso = al->map->dso; in al_to_d_al() 51 if (al->addr < sym->end) in al_to_d_al() 52 d_al->symoff = al->addr - sym->start; in al_to_d_al() 54 d_al->symoff = al->addr - al->map->start - sym->start; in al_to_d_al() 63 d_al->addr = al->addr; in al_to_d_al() 70 struct addr_location *al = d->al; in get_al() local 72 if (!al->thread && machine__resolve(d->machine, al, d->sample) < 0) in get_al() [all …]
|
D | symbol_fprintf.c | 20 const struct addr_location *al, in __symbol__fprintf_symname_offs() argument 29 if (al && print_offsets) { in __symbol__fprintf_symname_offs() 30 if (al->addr < sym->end) in __symbol__fprintf_symname_offs() 31 offset = al->addr - sym->start; in __symbol__fprintf_symname_offs() 33 offset = al->addr - al->map->start - sym->start; in __symbol__fprintf_symname_offs() 37 } else if (al && unknown_as_addr) in __symbol__fprintf_symname_offs() 38 return fprintf(fp, "[%#" PRIx64 "]", al->addr); in __symbol__fprintf_symname_offs() 44 const struct addr_location *al, in symbol__fprintf_symname_offs() argument 47 return __symbol__fprintf_symname_offs(sym, al, false, true, fp); in symbol__fprintf_symname_offs() 51 const struct addr_location *al, in __symbol__fprintf_symname() argument [all …]
|
D | db-export.c | 176 static int db_ids_from_al(struct db_export *dbe, struct addr_location *al, in db_ids_from_al() argument 181 if (al->map) { in db_ids_from_al() 182 struct dso *dso = al->map->dso; in db_ids_from_al() 184 err = db_export__dso(dbe, dso, al->maps->machine); in db_ids_from_al() 189 if (!al->sym) { in db_ids_from_al() 190 al->sym = symbol__new(al->addr, 0, 0, 0, "unknown"); in db_ids_from_al() 191 if (al->sym) in db_ids_from_al() 192 dso__insert_symbol(dso, al->sym); in db_ids_from_al() 195 if (al->sym) { in db_ids_from_al() 196 u64 *db_id = symbol__priv(al->sym); in db_ids_from_al() [all …]
|
D | annotate.c | 1060 struct annotation_line *al = notes->offsets[offset]; in annotation__count_and_fill() local 1062 if (al && al->ipc == 0.0) { in annotation__count_and_fill() 1063 al->ipc = ipc; in annotation__count_and_fill() 1094 struct annotation_line *al; in annotation__compute_ipc() local 1098 al = notes->offsets[offset]; in annotation__compute_ipc() 1099 if (al && ch->num_aggr) { in annotation__compute_ipc() 1100 al->cycles = ch->cycles_aggr / ch->num_aggr; in annotation__compute_ipc() 1101 al->cycles_max = ch->cycles_max; in annotation__compute_ipc() 1102 al->cycles_min = ch->cycles_min; in annotation__compute_ipc() 1172 static void annotation_line__init(struct annotation_line *al, in annotation_line__init() argument [all …]
|
D | data-convert-json.c | 118 u64 ip, struct addr_location *al) in output_sample_callchain_entry() argument 126 if (al && al->sym && al->sym->namelen) { in output_sample_callchain_entry() 128 output_json_key_string(out, false, 5, "symbol", al->sym->name); in output_sample_callchain_entry() 130 if (al->map && al->map->dso) { in output_sample_callchain_entry() 131 const char *dso = al->map->dso->short_name; in output_sample_callchain_entry() 151 struct addr_location al, tal; in process_sample_event() local 155 if (machine__resolve(machine, &al, sample) < 0) { in process_sample_event() 169 output_json_key_format(out, true, 3, "pid", "%i", al.thread->pid_); in process_sample_event() 170 output_json_key_format(out, true, 3, "tid", "%i", al.thread->tid); in process_sample_event() 174 else if (al.thread->cpu >= 0) in process_sample_event() [all …]
|
D | dlfilter.h | 35 struct addr_location *al; member 63 struct addr_location *al, 74 struct addr_location *al, in dlfilter__filter_event() argument 79 return dlfilter__do_filter_event(d, event, sample, evsel, machine, al, addr_al, false); in dlfilter__filter_event() 87 struct addr_location *al, in dlfilter__filter_event_early() argument 92 return dlfilter__do_filter_event(d, event, sample, evsel, machine, al, addr_al, true); in dlfilter__filter_event_early()
|
/linux-6.1.9/fs/ntfs3/ |
D | attrlist.c | 286 typeof(ni->attr_list) *al = &ni->attr_list; in al_add_le() local 292 old_size = al->size; in al_add_le() 299 off = PtrOffset(al->le, le); in al_add_le() 307 memcpy(ptr, al->le, off); in al_add_le() 310 kfree(al->le); in al_add_le() 311 al->le = ptr; in al_add_le() 317 al->size = new_size; in al_add_le() 328 err = attr_set_size(ni, ATTR_LIST, NULL, 0, &al->run, new_size, in al_add_le() 333 al->size = old_size; in al_add_le() 337 al->dirty = true; in al_add_le() [all …]
|
/linux-6.1.9/tools/perf/ui/browsers/ |
D | annotate.c | 44 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in disasm_line__filter() local 45 return annotation_line__filter(al, notes); in disasm_line__filter() 95 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in annotate_browser__write() local 117 annotation_line__write(al, notes, &ops, ab->opts); in annotate_browser__write() 120 ab->selection = al; in annotate_browser__write() 125 struct disasm_line *pos = list_prev_entry(cursor, al.node); in is_fused() 129 while (pos && pos->al.offset == -1) { in is_fused() 130 pos = list_prev_entry(pos, al.node); in is_fused() 199 from = cursor->al.idx_asm; in annotate_browser__draw_current_jump() 202 from = (u64)cursor->al.idx; in annotate_browser__draw_current_jump() [all …]
|
/linux-6.1.9/arch/arm/lib/ |
D | ashrdi3.S | 33 #define al r1 macro 36 #define al r0 macro 45 movmi al, al, lsr r2 46 movpl al, ah, asr r3 47 ARM( orrmi al, al, ah, lsl ip ) 49 THUMB( orrmi al, al, r3 )
|
D | lshrdi3.S | 33 #define al r1 macro 36 #define al r0 macro 45 movmi al, al, lsr r2 46 movpl al, ah, lsr r3 47 ARM( orrmi al, al, ah, lsl ip ) 49 THUMB( orrmi al, al, r3 )
|
D | ashldi3.S | 33 #define al r1 macro 36 #define al r0 macro 46 movpl ah, al, lsl r3 47 ARM( orrmi ah, ah, al, lsr ip ) 48 THUMB( lsrmi r3, al, ip ) 50 mov al, al, lsl r2
|
/linux-6.1.9/lib/mpi/ |
D | longlong.h | 114 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 121 "%r" ((USItype)(al)), \ 123 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 130 "r" ((USItype)(al)), \ 176 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 183 "%r" ((USItype)(al)), \ 185 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 192 "r" ((USItype)(al)), \ 263 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 270 "%1" ((USItype)(al)), \ [all …]
|
/linux-6.1.9/Documentation/devicetree/bindings/arm/cpu-enable-method/ |
D | al,alpine-smp | 2 Secondary CPU enable-method "al,alpine-smp" binding 5 This document describes the "al,alpine-smp" method for 7 "al,alpine-smp" enable method should be defined in the 10 Enable method name: "al,alpine-smp" 11 Compatible machines: "al,alpine" 17 "al,alpine-cpu-resume" and "al,alpine-nb-service". 26 - compatible : Should contain "al,alpine-cpu-resume". 36 - compatible : Should contain "al,alpine-sysfabric-service" and "syscon". 45 enable-method = "al,alpine-smp"; 73 compatible = "al,alpine-cpu-resume"; [all …]
|
/linux-6.1.9/arch/alpha/math-emu/ |
D | sfp-util.h | 8 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 9 ((sl) = (al) + (bl), (sh) = (ah) + (bh) + ((sl) < (al))) 11 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 12 ((sl) = (al) - (bl), (sh) = (ah) - (bh) - ((al) < (bl)))
|
/linux-6.1.9/drivers/char/ |
D | toshiba.c | 124 unsigned char al; in tosh_emulate_fan() local 136 al = inb(0xe5); in tosh_emulate_fan() 139 regs->ecx = (unsigned int) (al & 0x01); in tosh_emulate_fan() 145 al = inb(0xe5); in tosh_emulate_fan() 147 outb (al | 0x01, 0xe5); in tosh_emulate_fan() 156 al = inb(0xe5); in tosh_emulate_fan() 158 outb(al & 0xfe, 0xe5); in tosh_emulate_fan() 172 al = inb(0xe5); in tosh_emulate_fan() 175 regs->ecx = al & 0x01; in tosh_emulate_fan() 181 al = inb(0xe5); in tosh_emulate_fan() [all …]
|
/linux-6.1.9/tools/perf/tests/ |
D | code-reading.c | 231 struct addr_location al; in read_object_code() local 243 if (!thread__find_map(thread, cpumode, addr, &al) || !al.map->dso) { in read_object_code() 253 pr_debug("File is: %s\n", al.map->dso->long_name); in read_object_code() 255 if (al.map->dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS && in read_object_code() 256 !dso__is_kcore(al.map->dso)) { in read_object_code() 261 pr_debug("On file address is: %#"PRIx64"\n", al.addr); in read_object_code() 267 if (addr + len > al.map->end) in read_object_code() 268 len = al.map->end - addr; in read_object_code() 271 ret_len = dso__data_read_offset(al.map->dso, thread->maps->machine, in read_object_code() 272 al.addr, buf1, len); in read_object_code() [all …]
|
D | hists_link.c | 67 struct addr_location al; in add_hist_entries() local 86 if (machine__resolve(machine, &al, &sample) < 0) in add_hist_entries() 89 he = hists__add_entry(hists, &al, NULL, in add_hist_entries() 92 addr_location__put(&al); in add_hist_entries() 96 fake_common_samples[k].thread = al.thread; in add_hist_entries() 97 fake_common_samples[k].map = al.map; in add_hist_entries() 98 fake_common_samples[k].sym = al.sym; in add_hist_entries() 105 if (machine__resolve(machine, &al, &sample) < 0) in add_hist_entries() 108 he = hists__add_entry(hists, &al, NULL, in add_hist_entries() 111 addr_location__put(&al); in add_hist_entries() [all …]
|
/linux-6.1.9/tools/perf/ |
D | builtin-annotate.c | 136 static void process_branch_stack(struct branch_stack *bs, struct addr_location *al, in process_branch_stack() argument 146 bi = sample__resolve_bstack(sample, al); in process_branch_stack() 163 struct addr_location *al __maybe_unused, in hist_iter__branch_callback() 187 struct addr_location *al __maybe_unused, in process_branch_callback() 210 hist__account_cycles(sample->branch_stack, al, sample, false, NULL); in process_branch_callback() 221 struct addr_location *al, struct perf_annotate *ann, in evsel__add_sample() argument 230 (al->sym == NULL || in evsel__add_sample() 231 strcmp(ann->sym_hist_filter, al->sym->name) != 0)) { in evsel__add_sample() 237 if (al->sym != NULL) { in evsel__add_sample() 238 rb_erase_cached(&al->sym->rb_node, in evsel__add_sample() [all …]
|
/linux-6.1.9/Documentation/devicetree/bindings/interrupt-controller/ |
D | al,alpine-msix.txt | 7 - compatible: should be "al,alpine-msix" 12 - al,msi-base-spi: SPI base of the MSI frame 13 - al,msi-num-spis: number of SPIs assigned to the MSI frame, relative to SPI0 18 compatible = "al,alpine-msix"; 23 al,msi-base-spi = <160>; 24 al,msi-num-spis = <160>;
|
/linux-6.1.9/Documentation/devicetree/bindings/arm/ |
D | amazon,al.yaml | 4 $id: http://devicetree.org/schemas/arm/amazon,al.yaml# 19 - const: al,alpine 24 - al,alpine-v2-evp 25 - const: al,alpine-v2 30 - amazon,al-alpine-v3-evp 31 - const: amazon,al-alpine-v3
|
/linux-6.1.9/drivers/nvme/target/ |
D | fabrics-cmd-auth.c | 355 static int nvmet_auth_challenge(struct nvmet_req *req, void *d, int al) in nvmet_auth_challenge() argument 365 if (al < data_size) { in nvmet_auth_challenge() 367 al, data_size); in nvmet_auth_challenge() 395 static int nvmet_auth_success1(struct nvmet_req *req, void *d, int al) in nvmet_auth_success1() argument 401 WARN_ON(al < sizeof(*data)); in nvmet_auth_success1() 422 static void nvmet_auth_failure1(struct nvmet_req *req, void *d, int al) in nvmet_auth_failure1() argument 426 WARN_ON(al < sizeof(*data)); in nvmet_auth_failure1() 438 u32 al; in nvmet_execute_auth_receive() local 459 al = le32_to_cpu(req->cmd->auth_receive.al); in nvmet_execute_auth_receive() 460 if (!al) { in nvmet_execute_auth_receive() [all …]
|
/linux-6.1.9/arch/powerpc/kernel/ |
D | io-workarounds.c | 102 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ argument 108 return bus->ops->name al; \ 109 return __do_##name al; \ 112 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ argument 118 bus->ops->name al; \ 121 __do_##name al; \ 131 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) .name = iowa_##name, argument 132 #define DEF_PCI_AC_NORET(name, at, al, space, aa) .name = iowa_##name, argument
|
/linux-6.1.9/arch/x86/lib/ |
D | cmpxchg16b_emu.S | 19 # Emulate 'cmpxchg16b %gs:(%rsi)' except we return the result in %al not 20 # via the ZF. Caller will access %al to get result. 39 mov $1, %al 44 xor %al,%al
|