Home
last modified time | relevance | path

Searched refs:FuncRecord (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.h121 class FuncRecord : public Record {
123 static std::optional<FuncRecord> parse(llvm::StringRef Line);
124 FuncRecord(bool Multiple, lldb::addr_t Address, lldb::addr_t Size, in FuncRecord() function
136 bool operator==(const FuncRecord &L, const FuncRecord &R);
137 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const FuncRecord &R);
H A DBreakpadRecords.cpp307 std::optional<FuncRecord> FuncRecord::parse(llvm::StringRef Line) { in parse()
313 return FuncRecord(Multiple, Address, Size, ParamSize, Name); in parse()
318 bool breakpad::operator==(const FuncRecord &L, const FuncRecord &R) { in operator ==()
323 const FuncRecord &R) { in operator <<()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp2477 auto *FuncRecord = new llvm::GlobalVariable( in emitFunctionMappingRecord() local
2481 FuncRecord->setVisibility(llvm::GlobalValue::HiddenVisibility); in emitFunctionMappingRecord()
2482 FuncRecord->setSection(getInstrProfSection(CGM, llvm::IPSK_covfun)); in emitFunctionMappingRecord()
2483 FuncRecord->setAlignment(llvm::Align(8)); in emitFunctionMappingRecord()
2485 FuncRecord->setComdat(CGM.getModule().getOrInsertComdat(FuncRecordName)); in emitFunctionMappingRecord()
2488 CGM.addUsedGlobal(FuncRecord); in emitFunctionMappingRecord()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp248 if (auto record = FuncRecord::parse(*It)) { in GetOrCreateFunction()
824 if (auto record = FuncRecord::parse(*It)) { in ParseCUData()