search for: symbolpimpl

Displaying 1 result from an estimated 1 matches for "symbolpimpl".

2014 Sep 10
2
[LLVMdev] awkward object file abstractions
Hello LLVM, I'm trying to make symbolizing work in llvm-objdump. This comment in ObjectFile.h gives me some heartburn: https://github.com/llvm-mirror/llvm/blob/master/include/llvm/Object/ObjectFile.h#L196 // The main goal of // this is to allow SymbolRef::SymbolPimpl to point directly to the symbol // entry in the memory mapped object file. SymbolPimpl cannot contain any // virtual functions because then it could not point into the memory mapped // file. Is this still a goal and if so, why? Building symbol objects on top of the file's memory image causes...