~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/util/llvm-c-helpers.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/perf/util/llvm-c-helpers.h (Version linux-6.12-rc7) and /tools/perf/util/llvm-c-helpers.h (Version linux-5.3.18)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 #ifndef __PERF_LLVM_C_HELPERS                     
  3 #define __PERF_LLVM_C_HELPERS 1                   
  4                                                   
  5 /*                                                
  6  * Helpers to call into LLVM C++ code from C,     
  7  * C APIs.                                        
  8  */                                               
  9                                                   
 10 #include <linux/compiler.h>                       
 11                                                   
 12 #ifdef __cplusplus                                
 13 extern "C" {                                      
 14 #endif                                            
 15                                                   
 16 struct dso;                                       
 17                                                   
 18 struct llvm_a2l_frame {                           
 19   char* filename;                                 
 20   char* funcname;                                 
 21   unsigned int line;                              
 22 };                                                
 23                                                   
 24 /*                                                
 25  * Implement addr2line() using libLLVM. LLVM i    
 26  * many of the linux/ headers cannot be includ    
 27  * so we need to make a little bridge code her    
 28  * convert the inline frame information from L    
 29  * and put them into a flat array given in inl    
 30  * is then responsible for taking that array a    
 31  * regular inline frame structures (which depe    
 32  *                                                
 33  * If the address could not be resolved, or an    
 34  * returns 0. Otherwise, returns the number of    
 35  * if the address was not part of an inlined f    
 36  * is set and the return code is nonzero, inli    
 37  * a newly allocated array with that length. T    
 38  * for freeing both the strings and the array     
 39  */                                               
 40 int llvm_addr2line(const char* dso_name,          
 41                    u64 addr,                      
 42                    char** file,                   
 43                    unsigned int* line,            
 44                    bool unwind_inlines,           
 45                    struct llvm_a2l_frame** inl    
 46                                                   
 47 /*                                                
 48  * Simple symbolizers for addresses; will conv    
 49  * 0x12345 to "func+0x123". Will return NULL i    
 50  *                                                
 51  * The returned value must be freed by the cal    
 52  */                                               
 53 char *llvm_name_for_code(struct dso *dso, cons    
 54 char *llvm_name_for_data(struct dso *dso, cons    
 55                                                   
 56 #ifdef __cplusplus                                
 57 }                                                 
 58 #endif                                            
 59                                                   
 60 #endif /* __PERF_LLVM_C_HELPERS */                
 61                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php