Home
last modified time | relevance | path

Searched refs:InfoBytes (Results 1 – 2 of 2) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/DebugInfo/GSYM/
H A DFunctionInfo.cpp190 const StringRef InfoBytes = Data.getData().substr(Offset, InfoLength); in lookup() local
191 if (InfoLength != InfoBytes.size()) in lookup()
194 DataExtractor InfoData(InfoBytes, Data.isLittleEndian(), in lookup()
/openbsd/gnu/llvm/llvm/lib/Object/
H A DCOFFObjectFile.cpp549 ArrayRef<uint8_t> InfoBytes; in getDebugPDBInfo() local
552 InfoBytes, "PDB info")) in getDebugPDBInfo()
554 if (InfoBytes.size() < sizeof(*PDBInfo) + 1) in getDebugPDBInfo()
556 PDBInfo = reinterpret_cast<const codeview::DebugInfo *>(InfoBytes.data()); in getDebugPDBInfo()
557 InfoBytes = InfoBytes.drop_front(sizeof(*PDBInfo)); in getDebugPDBInfo()
558 PDBFileName = StringRef(reinterpret_cast<const char *>(InfoBytes.data()), in getDebugPDBInfo()
559 InfoBytes.size()); in getDebugPDBInfo()