search for: candemangle

Displaying 3 results from an estimated 3 matches for "candemangle".

2014 Apr 02
5
[LLVMdev] [lld] adding demangler for symbol resolution
...he same function, and I think the way we want to demangle is to have the function in LinkingContext as various flavors may choose to use different API's to demangle symbol names. >> >> The API's that would be in LinkingContext would be :- >> >> * virtual bool canDemangle() = 0; // Does the flavor provide a way to demangle symbol names ? >> * virtual std::string demangle(StringRef symbolName) = 0; // demangle the symbol name >> >> Thoughts / Suggestions ? > Wouldn't it be simpler to have one demangle() method that does nothing (retu...
2014 Apr 02
5
[LLVMdev] [lld] adding demangler for symbol resolution
...nk that lld also need to call the same function, and I think the way we want to demangle is to have the function in LinkingContext as various flavors may choose to use different API's to demangle symbol names. The API's that would be in LinkingContext would be :- * virtual bool canDemangle() = 0; // Does the flavor provide a way to demangle symbol names ? * virtual std::string demangle(StringRef symbolName) = 0; // demangle the symbol name Thoughts / Suggestions ? Thanks Shankar Easwaran -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by...
2014 Apr 03
2
[LLVMdev] [lld] adding demangler for symbol resolution
...11:02 AM, Shankar Easwaran wrote: > >> On 4/2/2014 12:23 PM, Nick Kledzik wrote: >>> On Apr 1, 2014, at 9:19 PM, Shankar Easwaran wrote: >>> >>>> The API's that would be in LinkingContext would be :- >>>> >>>> * virtual bool canDemangle() = 0; // Does the flavor provide a way to demangle symbol names ? >>>> * virtual std::string demangle(StringRef symbolName) = 0; // demangle the symbol name >>>> >>>> Thoughts / Suggestions ? >>> Wouldn't it be simpler to have one demangle(...