/kernel/linux/linux-5.10/tools/perf/util/ |
D | event.c | 451 struct addr_location al; in perf_event__fprintf_text_poke() local 453 al.map = maps__find(&machine->kmaps, tp->addr); in perf_event__fprintf_text_poke() 454 if (al.map && map__load(al.map) >= 0) { in perf_event__fprintf_text_poke() 455 al.addr = al.map->map_ip(al.map, tp->addr); in perf_event__fprintf_text_poke() 456 al.sym = map__find_symbol(al.map, al.addr); in perf_event__fprintf_text_poke() 457 if (al.sym) in perf_event__fprintf_text_poke() 458 ret += symbol__fprintf_symname_offs(al.sym, &al, fp); in perf_event__fprintf_text_poke() 534 struct addr_location *al) in thread__find_map() argument 540 al->maps = maps; in thread__find_map() 541 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 49 * Some callers will use al->sym, so we can't just use the in __report_module() 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() [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 | 1051 struct annotation_line *al = notes->offsets[offset]; in annotation__count_and_fill() local 1053 if (al && al->ipc == 0.0) { in annotation__count_and_fill() 1054 al->ipc = ipc; in annotation__count_and_fill() 1085 struct annotation_line *al; in annotation__compute_ipc() local 1089 al = notes->offsets[offset]; in annotation__compute_ipc() 1090 if (al && ch->num_aggr) { in annotation__compute_ipc() 1091 al->cycles = ch->cycles_aggr / ch->num_aggr; in annotation__compute_ipc() 1092 al->cycles_max = ch->cycles_max; in annotation__compute_ipc() 1093 al->cycles_min = ch->cycles_min; in annotation__compute_ipc() 1162 static void annotation_line__init(struct annotation_line *al, in annotation_line__init() argument [all …]
|
D | hist.c | 581 struct addr_location *al, in hists__findnew_entry() argument 655 he_stat__add_cpumode_period(&he->stat, al->cpumode, period); in hists__findnew_entry() 657 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period); in hists__findnew_entry() 689 struct addr_location *al, in __hists__add_entry() argument 698 struct namespaces *ns = thread__namespaces(al->thread); in __hists__add_entry() 700 .thread = al->thread, in __hists__add_entry() 701 .comm = thread__comm(al->thread), in __hists__add_entry() 708 .maps = al->maps, in __hists__add_entry() 709 .map = al->map, in __hists__add_entry() 710 .sym = al->sym, in __hists__add_entry() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/tools/perf/ui/browsers/ |
D | annotate.c | 49 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in disasm_line__filter() local 50 return annotation_line__filter(al, notes); in disasm_line__filter() 100 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in annotate_browser__write() local 122 annotation_line__write(al, notes, &ops, ab->opts); in annotate_browser__write() 125 ab->selection = al; in annotate_browser__write() 130 struct disasm_line *pos = list_prev_entry(cursor, al.node); in is_fused() 194 from = cursor->al.idx_asm; in annotate_browser__draw_current_jump() 197 from = (u64)cursor->al.idx; in annotate_browser__draw_current_jump() 245 struct annotation_line *al) in disasm_rb_tree__insert() argument 256 if (disasm__cmp(al, l, browser->opts->percent_type) < 0) in disasm_rb_tree__insert() [all …]
|
/kernel/linux/linux-5.10/arch/x86/lib/ |
D | string_32.c | 23 "testb %%al,%%al\n\t" in strcpy() 40 "testb %%al,%%al\n\t" in strncpy() 61 "testb %%al,%%al\n\t" in strcat() 82 "testb %%al,%%al\n\t" in strncat() 102 "testb %%al,%%al\n\t" in strcmp() 107 "orb $1,%%al\n" in strcmp() 127 "testb %%al,%%al\n\t" in strncmp() 132 "orb $1,%%al\n" in strncmp() 147 asm volatile("movb %%al,%%ah\n" in strchr() 149 "cmpb %%ah,%%al\n\t" in strchr() [all …]
|
D | cmpxchg16b_emu.S | 14 * %al : Operation successful 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
|
/kernel/linux/linux-5.10/arch/arm/lib/ |
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 | 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 | 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
|
/kernel/linux/linux-5.10/Documentation/hwmon/ |
D | smsc47b397.rst | 60 OUT DX,AL 62 IN AL,DX 64 AL contains the data in hex, the temperature in Celsius is the decimal 67 Ex: If AL contains 0x2A, the temperature is 42 degrees C. 151 OUT DX,AL 154 MOV AL,20H 155 OUT DX,AL 158 IN AL,DX 162 OUT DX,AL 179 OUT DX,AL [all …]
|
/kernel/linux/linux-5.10/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>;
|
/kernel/linux/linux-5.10/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
|
/kernel/linux/linux-5.10/net/ |
D | compat.c | 334 #define AL(x) ((x) * sizeof(u32)) macro 336 AL(0), AL(3), AL(3), AL(3), AL(2), AL(3), 337 AL(3), AL(3), AL(4), AL(4), AL(4), AL(6), 338 AL(6), AL(2), AL(5), AL(5), AL(3), AL(3), 339 AL(4), AL(5), AL(4) 341 #undef AL
|
/kernel/linux/linux-5.10/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)))
|
/kernel/linux/linux-5.10/include/dt-bindings/input/ |
D | linux-event-codes.h | 71 * AL - Application Launch Button 195 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */ 216 #define KEY_HELP 138 /* AL Integrated Help Center */ 218 #define KEY_CALC 140 /* AL Calculator */ 222 #define KEY_FILE 144 /* AL Local Machine Browser */ 228 #define KEY_WWW 150 /* AL Internet Browser */ 230 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */ 251 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */ 281 #define KEY_DASHBOARD 204 /* AL Dashboard */ 296 #define KEY_FINANCE 219 /* AL Checkbook/Finance */ [all …]
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
D | input-event-codes.h | 71 * AL - Application Launch Button 195 #define KEY_SCALE 120 /* AL Compiz Scale (Expose) */ 216 #define KEY_HELP 138 /* AL Integrated Help Center */ 218 #define KEY_CALC 140 /* AL Calculator */ 222 #define KEY_FILE 144 /* AL Local Machine Browser */ 228 #define KEY_WWW 150 /* AL Internet Browser */ 230 #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */ 251 #define KEY_CONFIG 171 /* AL Consumer Control Configuration */ 281 #define KEY_DASHBOARD 204 /* AL Dashboard */ 296 #define KEY_FINANCE 219 /* AL Checkbook/Finance */ [all …]
|
/kernel/linux/linux-5.10/tools/perf/ |
D | builtin-mem.c | 149 struct addr_location al; in dump_raw_samples() local 152 if (machine__resolve(machine, &al, sample) < 0) { in dump_raw_samples() 158 if (al.filtered || (mem->hide_unresolved && al.sym == NULL)) in dump_raw_samples() 161 if (al.map != NULL) in dump_raw_samples() 162 al.map->dso->hit = 1; in dump_raw_samples() 190 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???", in dump_raw_samples() 191 al.sym ? al.sym->name : "???"); in dump_raw_samples() 215 al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???", in dump_raw_samples() 216 al.sym ? al.sym->name : "???"); in dump_raw_samples() 219 addr_location__put(&al); in dump_raw_samples()
|
D | builtin-annotate.c | 129 static void process_branch_stack(struct branch_stack *bs, struct addr_location *al, in process_branch_stack() argument 139 bi = sample__resolve_bstack(sample, al); in process_branch_stack() 156 struct addr_location *al __maybe_unused, in hist_iter__branch_callback() 180 struct addr_location *al __maybe_unused, in process_branch_callback() 204 hist__account_cycles(sample->branch_stack, al, sample, false, NULL); in process_branch_callback() 216 struct addr_location *al, struct perf_annotate *ann, in evsel__add_sample() argument 225 (al->sym == NULL || in evsel__add_sample() 226 strcmp(ann->sym_hist_filter, al->sym->name) != 0)) { 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() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/tools/perf/tests/ |
D | code-reading.c | 239 struct addr_location al; in read_object_code() local 251 if (!thread__find_map(thread, cpumode, addr, &al) || !al.map->dso) { in read_object_code() 261 pr_debug("File is: %s\n", al.map->dso->long_name); in read_object_code() 263 if (al.map->dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS && in read_object_code() 264 !dso__is_kcore(al.map->dso)) { in read_object_code() 269 pr_debug("On file address is: %#"PRIx64"\n", al.addr); in read_object_code() 275 if (addr + len > al.map->end) in read_object_code() 276 len = al.map->end - addr; in read_object_code() 279 ret_len = dso__data_read_offset(al.map->dso, thread->maps->machine, in read_object_code() 280 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 …]
|