this will help our encoding disambiguate functions. Signed-off-by: Alan Maguire <alan.maguire@xxxxxxxxxx> --- btf_encoder.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/btf_encoder.c b/btf_encoder.c index 65f6e71..edf72e6 100644 --- a/btf_encoder.c +++ b/btf_encoder.c @@ -45,7 +45,9 @@ struct btf_encoder_state { struct elf_function { const char *name; bool generated; + bool local; size_t prefixlen; + uint64_t addr; struct function *function; struct btf_encoder_state state; }; @@ -1015,6 +1017,8 @@ static int btf_encoder__collect_function(struct btf_encoder *encoder, GElf_Sym * encoder->functions.entries[encoder->functions.cnt].prefixlen = suffix - name; } encoder->functions.entries[encoder->functions.cnt].generated = false; + encoder->functions.entries[encoder->functions.cnt].local = elf_sym__is_local_function(sym); + encoder->functions.entries[encoder->functions.cnt].addr = elf_sym__value(sym); encoder->functions.entries[encoder->functions.cnt].function = NULL; encoder->functions.entries[encoder->functions.cnt].state.got_proto = false; encoder->functions.entries[encoder->functions.cnt].state.proto[0] = '\0'; -- 2.31.1