/linux/tools/perf/util/ |
A D | event.c | 488 if (al.map && map__load(al.map) >= 0) { in perf_event__fprintf_text_poke() 489 al.addr = al.map->map_ip(al.map, tp->addr); in perf_event__fprintf_text_poke() 490 al.sym = map__find_symbol(al.map, al.addr); in perf_event__fprintf_text_poke() 616 al->map = maps__find(maps, al->addr); in thread__find_map() 624 al->addr = al->map->map_ip(al->map, al->addr); in thread__find_map() 653 al->sym = map__find_symbol(al->map, al->addr); in thread__find_symbol() 662 al->sym = map__find_symbol(al->map, al->addr); in thread__find_symbol_fb() 725 al->sym = map__find_symbol(al->map, al->addr); in machine__resolve() 741 al->map->unmap_ip(al->map, al->sym->start)); in machine__resolve() 746 unsigned long addr = al->map->unmap_ip(al->map, al->addr); in machine__resolve() [all …]
|
A D | dlfilter.c | 31 if (al->map) { in al_to_d_al() 54 d_al->symoff = al->addr - al->map->start - sym->start; in al_to_d_al() 70 struct addr_location *al = d->al; in get_al() local 74 return al; in get_al() 81 return al ? al->thread : NULL; in get_thread() 98 if (!al) in dlfilter__resolve_ip() 195 struct addr_location *al = d->al; in dlfilter__insn() local 200 if (al->thread->maps && al->thread->maps->machine) in dlfilter__insn() 225 if (!al) in dlfilter__srcline() 260 if (!al) in dlfilter__object_code() [all …]
|
A D | unwind-libdw.c | 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() 112 e->ms.map = al.map; in entry() 113 e->ms.sym = al.sym; in entry() 116 al.sym ? al.sym->name : "''", in entry() 118 al.map ? al.map->map_ip(al.map, ip) : (u64) 0); in entry() 143 if (!al.map->dso) in access_dso_mem() [all …]
|
A D | db-export.c | 181 if (al->map) { 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() 195 if (al->sym) { in db_ids_from_al() 202 *offset = al->addr - al->sym->start; in db_ids_from_al() 242 memset(&al, 0, sizeof(al)); in call_path_from_sample() 255 al.addr = node->ip; in call_path_from_sample() 257 if (al.map && !al.sym) in call_path_from_sample() 258 al.sym = dso__find_symbol(al.map->dso, al.addr); in call_path_from_sample() [all …]
|
A 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 …]
|
A D | annotate.c | 1062 if (al && al->ipc == 0.0) { in annotation__count_and_fill() 1063 al->ipc = ipc; in annotation__count_and_fill() 1180 al->data_nr = nr; in annotation_line__init() 1451 if (al->path) { in annotation_line__print() 1470 if (!*al->line) in annotation_line__print() 2674 if (al == NULL) in annotation__mark_jump_targets() 2706 notes->offsets[al->offset] = al; in annotation__set_offsets() 2961 if (al->ipc == 0.0 && al->cycles == 0) in __annotation_line__write() 2998 if (al->ipc) in __annotation_line__write() 3022 al->cycles, al->cycles_min, in __annotation_line__write() [all …]
|
A 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 154 if (machine__resolve(machine, &al, sample) < 0) { in process_sample_event() 169 output_json_key_format(out, true, 3, "tid", "%i", al.thread->tid); in process_sample_event() 171 if (al.thread->cpu >= 0) in process_sample_event() 209 ok = thread__find_symbol(al.thread, cpumode, ip, &tal); in process_sample_event() [all …]
|
A D | hist.c | 712 .map = al->map, in __hists__add_entry() 713 .sym = al->sym, in __hists__add_entry() 717 .cpu = al->cpu, in __hists__add_entry() 719 .ip = al->addr, in __hists__add_entry() 783 .map = al->map, in hists__add_entry_block() 784 .sym = al->sym, in hists__add_entry_block() 1103 .cpu = al->cpu, in iter_add_next_cumulative_entry() 1106 .ip = al->addr, in iter_add_next_cumulative_entry() 1109 .map = al->map, in iter_add_next_cumulative_entry() 1110 .sym = al->sym, in iter_add_next_cumulative_entry() [all …]
|
/linux/fs/ntfs3/ |
A D | attrlist.c | 305 kfree(al->le); in al_add_le() 306 al->le = ptr; in al_add_le() 332 al->dirty = true; in al_add_le() 335 err = ntfs_sb_write_run(ni->mi.sbi, &al->run, 0, al->le, in al_add_le() 336 al->size, 0); in al_add_le() 363 al->size -= size; in al_remove_le() 364 al->dirty = true; in al_remove_le() 417 al->size -= size; in al_delete_le() 429 if (!al->dirty || !al->size) in al_update() 442 memcpy(resident_data(attr), al->le, al->size); in al_update() [all …]
|
/linux/tools/perf/ui/browsers/ |
A D | annotate.c | 125 ab->selection = al; in annotate_browser__write() 369 it = al; in annotate_browser__find_next_asm_line() 400 al = annotate_browser__find_next_asm_line(browser, al); in annotate_browser__toggle_source() 401 if (!al) { in annotate_browser__toggle_source() 426 struct annotation_line *al = &cursor->al; in annotate_browser__show_full_location() local 556 if (al->line && strstr(al->line, s) != NULL) in annotate_browser__find_string() 557 return al; in annotate_browser__find_string() 569 if (al == NULL) { in __annotate_browser__search() 593 if (al->line && strstr(al->line, s) != NULL) in annotate_browser__find_string_reverse() 594 return al; in annotate_browser__find_string_reverse() [all …]
|
/linux/lib/mpi/ |
A D | longlong.h | 121 "%r" ((USItype)(al)), \ 130 "r" ((USItype)(al)), \ 183 "%r" ((USItype)(al)), \ 192 "r" ((USItype)(al)), \ 270 "%1" ((USItype)(al)), \ 279 "1" ((USItype)(al)), \ 855 "1" ((USItype)(al)), \ 890 "1" ((USItype)(al)), \ 1161 "1" ((USItype)(al)), \ 1253 __x = (al) + (bl); \ [all …]
|
/linux/arch/arm/lib/ |
A 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 )
|
A 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 )
|
A 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/Documentation/devicetree/bindings/arm/cpu-enable-method/ |
A 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/tools/perf/ |
A D | builtin-annotate.c | 139 bi = sample__resolve_bstack(sample, al); in process_branch_stack() 180 struct addr_location *al __maybe_unused, in process_branch_callback() 225 (al->sym == NULL || in evsel__add_sample() 232 if (al->sym != NULL) { in evsel__add_sample() 233 rb_erase_cached(&al->sym->rb_node, in evsel__add_sample() 234 &al->map->dso->symbols); in evsel__add_sample() 235 symbol__delete(al->sym); in evsel__add_sample() 236 dso__reset_find_symbol_cache(al->map->dso); in evsel__add_sample() 266 struct addr_location al; in process_sample_event() local 278 if (!al.filtered && in process_sample_event() [all …]
|
/linux/drivers/char/ |
A D | toshiba.c | 124 unsigned char al; in tosh_emulate_fan() local 136 al = inb(0xe5); 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() 182 outw(0xe0 | ((al & 0xfe) << 8), 0xe4); in tosh_emulate_fan() [all …]
|
/linux/tools/perf/tests/ |
A 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() 256 !dso__is_kcore(al.map->dso)) { 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() 272 al.addr, buf1, len); in read_object_code() 282 if (map__load(al.map)) in read_object_code() 286 if (dso__is_kcore(al.map->dso)) { in read_object_code() 290 if (state->done[d] == al.map->start) { in read_object_code() 303 objdump_name = al.map->dso->long_name; in read_object_code() [all …]
|
A D | hists_link.c | 67 struct addr_location al; in add_hist_entries() local 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() 108 he = hists__add_entry(hists, &al, NULL, in add_hist_entries() 111 addr_location__put(&al); in add_hist_entries() 115 fake_samples[i][k].thread = al.thread; in add_hist_entries() 116 fake_samples[i][k].map = al.map; in add_hist_entries() [all …]
|
/linux/arch/alpha/math-emu/ |
A 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/arch/arm64/include/asm/ |
A D | atomic_lse.h | 76 ATOMIC_OP_ADD_RETURN( , al, "memory") 107 ATOMIC_FETCH_OP_AND( , al, "memory") 141 ATOMIC_OP_SUB_RETURN( , al, "memory") 162 ATOMIC_FETCH_OP_SUB( , al, "memory") 260 ATOMIC64_FETCH_OP_AND( , al, "memory") 315 ATOMIC64_FETCH_OP_SUB( , al, "memory") 376 __CMPXCHG_CASE(w, b, mb_, 8, al, "memory") 377 __CMPXCHG_CASE(w, h, mb_, 16, al, "memory") 378 __CMPXCHG_CASE(w, , mb_, 32, al, "memory") 379 __CMPXCHG_CASE(x, , mb_, 64, al, "memory") [all …]
|
/linux/Documentation/devicetree/bindings/arm/ |
A 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/Documentation/devicetree/bindings/interrupt-controller/ |
A 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/arch/powerpc/kernel/ |
A 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/arch/powerpc/include/asm/ |
A D | sfp-machine.h | 216 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument 220 : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\ 223 : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\ 227 : "%r" (ah), "r" (bh), "%r" (al), "rI" (bl)); \ 239 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument 243 : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\ 246 : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\ 249 : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\ 252 : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\ 256 : "r" (ah), "r" (bh), "rI" (al), "r" (bl)); \
|