Home | History | Annotate | Download | only in SymbolRewriter
      1 function: {
      2   source: source_function,
      3   target: target_function,
      4 }
      5 
      6 global variable: {
      7   source: source_variable,
      8   target: target_variable,
      9 }
     10 
     11 function: {
     12   source: source_function_(.*),
     13   transform: target_\1,
     14 }
     15 
     16 global variable: {
     17   source: source_variable_(.*),
     18   transform: target_\1,
     19 }
     20 
     21 function: {
     22   source: naked_source_function,
     23   target: naked_target_function,
     24   naked: true,
     25 }
     26 
     27 function: {
     28   source: imported_function,
     29   target: exported_function,
     30 }
     31 
     32 function: {
     33   source: missing_global_leader_prefix,
     34   target: DO_NOT_REWRITE,
     35 }
     36 
     37 function: {
     38   source: first_callee,
     39   target: renamed_callee,
     40 }
     41 
     42 global alias: {
     43   source: _ZN1SC1Ev,
     44   target: _ZN1SD1Ev,
     45 }
     46 
     47 function: {
     48   source: source_comdat_function,
     49   target: target_comdat_function,
     50 }
     51 
     52 function: {
     53   source: source_comdat_function_(.*),
     54   transform: target_comdat_function_\1,
     55 }
     56 
     57 global variable: {
     58   source: source_comdat_variable,
     59   target: target_comdat_variable,
     60 }
     61 
     62 global variable: {
     63   source: source_comdat_variable_(.*),
     64   transform: target_comdat_variable_\1,
     65 }
     66 
     67