Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DFunctionInfo.cpp191 const StringRef InfoBytes = Data.getData().substr(Offset, InfoLength); in lookup() local
192 if (InfoLength != InfoBytes.size()) in lookup()
195 DataExtractor InfoData(InfoBytes, Data.isLittleEndian(), in lookup()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DCOFFObjectFile.cpp516 ArrayRef<uint8_t> InfoBytes; in getDebugPDBInfo() local
518 DebugDir->AddressOfRawData, DebugDir->SizeOfData, InfoBytes)) in getDebugPDBInfo()
520 if (InfoBytes.size() < sizeof(*PDBInfo) + 1) in getDebugPDBInfo()
522 PDBInfo = reinterpret_cast<const codeview::DebugInfo *>(InfoBytes.data()); in getDebugPDBInfo()
523 InfoBytes = InfoBytes.drop_front(sizeof(*PDBInfo)); in getDebugPDBInfo()
524 PDBFileName = StringRef(reinterpret_cast<const char *>(InfoBytes.data()), in getDebugPDBInfo()
525 InfoBytes.size()); in getDebugPDBInfo()