CarlosAlbertoEnciso wrote:

> Though I haven't thought seriously about the representation - truly off the 
> cuff, take with a grain of salt, etc, the static member that is the vtable 
> seems sort of reasonable to me.
> 
> Not sure why it'd be necessary to make that vtable global variable "global" 
> rather than static within the class? Is that for debug_names lookup? (I think 
> static members are still in the index, right?) If it's a class member you can 
> still do bidirectional lookup, right? IF you find the variable, you can find 
> its parent to see which class it applies to, and if you have the class you 
> can find the vtable variable inside it?

We used the global variable approach to give the debugger (SCE) a similar 
mechanism to an existing one to identify symbols that represent vtables. I 
think using just the static member will work and have the additional benefit of 
smaller debug info. I will check with the debugger team.

https://github.com/llvm/llvm-project/pull/130255
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to