Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFunctionInfo.cpp216 const StringRef InfoBytes = Data.getData().substr(Offset, InfoLength); in lookup() local
217 if (InfoLength != InfoBytes.size()) in lookup()
220 DataExtractor InfoData(InfoBytes, Data.isLittleEndian(), in lookup()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp548 ArrayRef<uint8_t> InfoBytes; in getDebugPDBInfo() local
551 InfoBytes, "PDB info")) in getDebugPDBInfo()
553 if (InfoBytes.size() < sizeof(*PDBInfo) + 1) in getDebugPDBInfo()
555 PDBInfo = reinterpret_cast<const codeview::DebugInfo *>(InfoBytes.data()); in getDebugPDBInfo()
556 InfoBytes = InfoBytes.drop_front(sizeof(*PDBInfo)); in getDebugPDBInfo()
557 PDBFileName = StringRef(reinterpret_cast<const char *>(InfoBytes.data()), in getDebugPDBInfo()
558 InfoBytes.size()); in getDebugPDBInfo()