| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | #ifndef __PERF_ANNOTATE_H
 | 
					
						
							|  |  |  | #define __PERF_ANNOTATE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdbool.h>
 | 
					
						
							| 
									
										
										
										
											2012-04-25 14:16:03 -03:00
										 |  |  | #include <stdint.h>
 | 
					
						
							| 
									
										
										
										
											2014-04-25 21:31:02 +02:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | #include "symbol.h"
 | 
					
						
							| 
									
										
										
										
											2012-11-02 14:50:05 +09:00
										 |  |  | #include "hist.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-07 18:02:08 +09:00
										 |  |  | #include "sort.h"
 | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | #include <linux/list.h>
 | 
					
						
							|  |  |  | #include <linux/rbtree.h>
 | 
					
						
							| 
									
										
										
										
											2012-09-08 03:43:19 +03:00
										 |  |  | #include <pthread.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 10:16:27 -03:00
										 |  |  | struct ins; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 14:38:46 -03:00
										 |  |  | struct ins_operands { | 
					
						
							|  |  |  | 	char	*raw; | 
					
						
							| 
									
										
										
										
											2012-04-25 08:00:23 -03:00
										 |  |  | 	struct { | 
					
						
							| 
									
										
										
										
											2012-05-11 16:48:49 -03:00
										 |  |  | 		char	*raw; | 
					
						
							| 
									
										
										
										
											2012-04-25 08:00:23 -03:00
										 |  |  | 		char	*name; | 
					
						
							|  |  |  | 		u64	addr; | 
					
						
							| 
									
										
										
										
											2012-05-11 16:48:49 -03:00
										 |  |  | 		u64	offset; | 
					
						
							| 
									
										
										
										
											2012-04-25 08:00:23 -03:00
										 |  |  | 	} target; | 
					
						
							| 
									
										
										
										
											2012-05-12 13:15:34 -03:00
										 |  |  | 	union { | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			char	*raw; | 
					
						
							|  |  |  | 			char	*name; | 
					
						
							|  |  |  | 			u64	addr; | 
					
						
							|  |  |  | 		} source; | 
					
						
							|  |  |  | 		struct { | 
					
						
							|  |  |  | 			struct ins *ins; | 
					
						
							|  |  |  | 			struct ins_operands *ops; | 
					
						
							|  |  |  | 		} locked; | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2012-04-20 14:38:46 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-18 13:58:34 -03:00
										 |  |  | struct ins_ops { | 
					
						
							| 
									
										
										
										
											2012-05-12 13:26:20 -03:00
										 |  |  | 	void (*free)(struct ins_operands *ops); | 
					
						
							| 
									
										
										
										
											2012-04-20 14:38:46 -03:00
										 |  |  | 	int (*parse)(struct ins_operands *ops); | 
					
						
							| 
									
										
										
										
											2012-04-19 10:16:27 -03:00
										 |  |  | 	int (*scnprintf)(struct ins *ins, char *bf, size_t size, | 
					
						
							| 
									
										
										
										
											2012-05-07 18:54:16 -03:00
										 |  |  | 			 struct ins_operands *ops); | 
					
						
							| 
									
										
										
										
											2012-04-18 13:58:34 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ins { | 
					
						
							|  |  |  | 	const char     *name; | 
					
						
							|  |  |  | 	struct ins_ops *ops; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ins__is_jump(const struct ins *ins); | 
					
						
							| 
									
										
										
										
											2012-04-18 16:07:38 -03:00
										 |  |  | bool ins__is_call(const struct ins *ins); | 
					
						
							| 
									
										
										
										
											2012-05-07 18:54:16 -03:00
										 |  |  | int ins__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops); | 
					
						
							| 
									
										
										
										
											2012-04-18 13:58:34 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:30 +09:00
										 |  |  | struct annotation; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 15:24:39 -03:00
										 |  |  | struct disasm_line { | 
					
						
							| 
									
										
										
										
											2012-04-20 14:38:46 -03:00
										 |  |  | 	struct list_head    node; | 
					
						
							|  |  |  | 	s64		    offset; | 
					
						
							|  |  |  | 	char		    *line; | 
					
						
							|  |  |  | 	char		    *name; | 
					
						
							|  |  |  | 	struct ins	    *ins; | 
					
						
							|  |  |  | 	struct ins_operands ops; | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-25 14:16:03 -03:00
										 |  |  | static inline bool disasm_line__has_offset(const struct disasm_line *dl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return dl->ops.target.offset != UINT64_MAX; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 15:24:39 -03:00
										 |  |  | void disasm_line__free(struct disasm_line *dl); | 
					
						
							|  |  |  | struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos); | 
					
						
							| 
									
										
										
										
											2012-05-07 18:54:16 -03:00
										 |  |  | int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw); | 
					
						
							| 
									
										
										
										
											2012-04-15 15:52:18 -03:00
										 |  |  | size_t disasm__fprintf(struct list_head *head, FILE *fp); | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:30 +09:00
										 |  |  | double disasm__calc_percent(struct annotation *notes, int evidx, s64 offset, | 
					
						
							|  |  |  | 			    s64 end, const char **path); | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct sym_hist { | 
					
						
							|  |  |  | 	u64		sum; | 
					
						
							|  |  |  | 	u64		addr[0]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:27 +09:00
										 |  |  | struct source_line_percent { | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | 	double		percent; | 
					
						
							| 
									
										
										
										
											2012-11-09 14:58:49 +09:00
										 |  |  | 	double		percent_sum; | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:27 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct source_line { | 
					
						
							|  |  |  | 	struct rb_node	node; | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | 	char		*path; | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:28 +09:00
										 |  |  | 	int		nr_pcnt; | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:27 +09:00
										 |  |  | 	struct source_line_percent p[1]; | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-08 13:27:39 -02:00
										 |  |  | /** struct annotated_source - symbols with hits have this attached as in sannotation
 | 
					
						
							| 
									
										
										
										
											2011-02-04 13:43:24 -02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @histogram: Array of addr hit histograms per event being monitored | 
					
						
							| 
									
										
										
										
											2011-02-08 13:27:39 -02:00
										 |  |  |  * @lines: If 'print_lines' is specified, per source code line percentages | 
					
						
							| 
									
										
										
										
											2012-04-15 15:24:39 -03:00
										 |  |  |  * @source: source parsed from a disassembler like objdump -dS | 
					
						
							| 
									
										
										
										
											2011-02-04 13:43:24 -02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-02-08 13:27:39 -02:00
										 |  |  |  * lines is allocated, percentages calculated and all sorted by percentage | 
					
						
							| 
									
										
										
										
											2011-02-04 13:43:24 -02:00
										 |  |  |  * when the annotation is about to be presented, so the percentages are for | 
					
						
							|  |  |  |  * one of the entries in the histogram array, i.e. for the event/counter being | 
					
						
							|  |  |  |  * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate | 
					
						
							|  |  |  |  * returns. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-02-08 13:27:39 -02:00
										 |  |  | struct annotated_source { | 
					
						
							|  |  |  | 	struct list_head   source; | 
					
						
							|  |  |  | 	struct source_line *lines; | 
					
						
							| 
									
										
										
										
											2011-02-06 14:54:44 -02:00
										 |  |  | 	int    		   nr_histograms; | 
					
						
							| 
									
										
										
										
											2011-02-04 13:43:24 -02:00
										 |  |  | 	int    		   sizeof_sym_hist; | 
					
						
							| 
									
										
										
										
											2011-02-08 13:27:39 -02:00
										 |  |  | 	struct sym_hist	   histograms[0]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct annotation { | 
					
						
							|  |  |  | 	pthread_mutex_t		lock; | 
					
						
							|  |  |  | 	struct annotated_source *src; | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct sannotation { | 
					
						
							|  |  |  | 	struct annotation annotation; | 
					
						
							|  |  |  | 	struct symbol	  symbol; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-04 13:43:24 -02:00
										 |  |  | static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-08 13:27:39 -02:00
										 |  |  | 	return (((void *)¬es->src->histograms) + | 
					
						
							|  |  |  | 	 	(notes->src->sizeof_sym_hist * idx)); | 
					
						
							| 
									
										
										
										
											2011-02-04 13:43:24 -02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | static inline struct annotation *symbol__annotation(struct symbol *sym) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct sannotation *a = container_of(sym, struct sannotation, symbol); | 
					
						
							|  |  |  | 	return &a->annotation; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-18 16:48:29 -03:00
										 |  |  | int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, int evidx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-18 17:10:15 -03:00
										 |  |  | int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 addr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-11 22:17:32 -02:00
										 |  |  | int symbol__alloc_hist(struct symbol *sym); | 
					
						
							| 
									
										
										
										
											2011-02-06 14:54:44 -02:00
										 |  |  | void symbol__annotate_zero_histograms(struct symbol *sym); | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-08 13:27:39 -02:00
										 |  |  | int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize); | 
					
						
							| 
									
										
										
										
											2013-12-18 17:10:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | int hist_entry__annotate(struct hist_entry *he, size_t privsize); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-11 01:15:03 +03:00
										 |  |  | int symbol__annotate_init(struct map *map __maybe_unused, struct symbol *sym); | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:21 +09:00
										 |  |  | int symbol__annotate_printf(struct symbol *sym, struct map *map, | 
					
						
							|  |  |  | 			    struct perf_evsel *evsel, bool full_paths, | 
					
						
							|  |  |  | 			    int min_pcnt, int max_lines, int context); | 
					
						
							| 
									
										
										
										
											2011-02-06 14:54:44 -02:00
										 |  |  | void symbol__annotate_zero_histogram(struct symbol *sym, int evidx); | 
					
						
							| 
									
										
										
										
											2011-02-08 13:27:39 -02:00
										 |  |  | void symbol__annotate_decay_histogram(struct symbol *sym, int evidx); | 
					
						
							| 
									
										
										
										
											2012-04-15 15:24:39 -03:00
										 |  |  | void disasm__purge(struct list_head *head); | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 10:32:53 +09:00
										 |  |  | bool ui__has_annotation(void); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:21 +09:00
										 |  |  | int symbol__tty_annotate(struct symbol *sym, struct map *map, | 
					
						
							|  |  |  | 			 struct perf_evsel *evsel, bool print_lines, | 
					
						
							|  |  |  | 			 bool full_paths, int min_pcnt, int max_lines); | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-30 12:07:11 +02:00
										 |  |  | #ifdef HAVE_SLANG_SUPPORT
 | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:21 +09:00
										 |  |  | int symbol__tui_annotate(struct symbol *sym, struct map *map, | 
					
						
							|  |  |  | 			 struct perf_evsel *evsel, | 
					
						
							| 
									
										
										
										
											2012-11-02 14:50:05 +09:00
										 |  |  | 			 struct hist_browser_timer *hbt); | 
					
						
							| 
									
										
										
										
											2012-09-28 18:32:02 +09:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2012-09-11 01:15:03 +03:00
										 |  |  | static inline int symbol__tui_annotate(struct symbol *sym __maybe_unused, | 
					
						
							| 
									
										
										
										
											2013-03-05 14:53:21 +09:00
										 |  |  | 				struct map *map __maybe_unused, | 
					
						
							|  |  |  | 				struct perf_evsel *evsel  __maybe_unused, | 
					
						
							|  |  |  | 				struct hist_browser_timer *hbt | 
					
						
							|  |  |  | 				__maybe_unused) | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-15 14:31:41 -07:00
										 |  |  | extern const char	*disassembler_style; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-04 09:45:46 -02:00
										 |  |  | #endif	/* __PERF_ANNOTATE_H */
 |