brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.3 KiB · 872916d Raw
81 lines · plain
1function: {2  source: source_function,3  target: target_function,4}5 6global variable: {7  source: source_variable,8  target: target_variable,9}10 11function: {12  source: source_function_(.*),13  transform: target_\1,14}15 16global variable: {17  source: source_variable_(.*),18  transform: target_\1,19}20 21function: {22  source: naked_source_function,23  target: naked_target_function,24  naked: true,25}26 27function: {28  source: imported_function,29  target: exported_function,30}31 32function: {33  source: missing_global_leader_prefix,34  target: DO_NOT_REWRITE,35}36 37function: {38  source: first_callee,39  target: renamed_callee,40}41 42global alias: {43  source: _ZN1SC1Ev,44  target: _ZN1SD1Ev,45}46 47function: {48  source: source_comdat_function,49  target: target_comdat_function,50}51 52function: {53  source: source_comdat_function_(.*),54  transform: target_comdat_function_\1,55}56 57global variable: {58  source: source_comdat_variable,59  target: target_comdat_variable,60}61 62global variable: {63  source: source_comdat_variable_(.*),64  transform: target_comdat_variable_\1,65}66 67function: {68  source: ?source_bad_regex_function,69  target: target_bad_regex_function,70}71 72global variable: {73  source: ?source_bad_regex_variable,74  target: target_bad_regex_variable,75}76 77global alias: {78  source: ?source_bad_regex_alias,79  target: target_bad_regex_alias,80}81