search for: cvsymbol

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

2019 Jan 23
2
[llvm-pdbutil] : merge not working properly
...tGsiBuilder(); >>>> GlobalsStream &stream = *File.getPDBGlobalsStream(); >>>> SymbolStream &SymbolRecords = cantFail(File.getPDBSymbolStream()); >>>> >>>> for (uint32_t PubSymOff : stream.getGlobalsTable()) { >>>> CVSymbol Sym = SymbolRecords.readRecord(PubSymOff); >>>> builder.addGlobalSymbol(Sym); >>>> } >>>> } >>>> if (File.hasPDBPublicsStream() && File.getPDBPublicsStream()) { >>>> GSIStreamBuilder &builder = this->getGsi...
2019 Jan 28
3
[llvm-pdbutil] : merge not working properly
...GlobalsStream &stream = *File.getPDBGlobalsStream(); >>>>>> SymbolStream &SymbolRecords = cantFail(File.getPDBSymbolStream()); >>>>>> >>>>>> for (uint32_t PubSymOff : stream.getGlobalsTable()) { >>>>>> CVSymbol Sym = SymbolRecords.readRecord(PubSymOff); >>>>>> builder.addGlobalSymbol(Sym); >>>>>> } >>>>>> } >>>>>> if (File.hasPDBPublicsStream() && File.getPDBPublicsStream()) { >>>>>> GSIStre...
2019 Jan 17
4
[llvm-pdbutil] : merge not working properly
That’s a good question, by default when emitting the object file I choose COFF but it embeds dwarf and not codeview in the end.. there probably is a way to do it or at least it must be implemented if not yet.. Lets imagine I manage to do that.. when you say there is nothing to do, I still must have a PDBFileBuilder to copy the codeview data inside the EXE PDB right ? I cannot insert them easily in