Home
last modified time | relevance | path

Searched refs:DataSym (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h23 class DataSym; variable
67 void addGlobalSymbol(const codeview::DataSym &Sym);
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewSymbols.def248 SYMBOL_RECORD(S_LDATA32 , 0x110c, DataSym)
249 SYMBOL_RECORD_ALIAS(S_GDATA32 , 0x110d, GlobalData, DataSym)
250 SYMBOL_RECORD_ALIAS(S_LMANDATA , 0x111c, ManagedLocalData, DataSym)
251 SYMBOL_RECORD_ALIAS(S_GMANDATA , 0x111d, ManagedGlobalData, DataSym)
H A DSymbolRecord.h956 class DataSym : public SymbolRecord {
960 explicit DataSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in ThreadLocalDataSym()
961 explicit DataSym(uint32_t RecordOffset) in ThreadLocalDataSym()
962 : SymbolRecord(SymbolRecordKind::DataSym), RecordOffset(RecordOffset) {} in ThreadLocalDataSym()
939 explicit DataSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} DataSym() function
940 explicit DataSym(uint32_t RecordOffset) DataSym() function
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp385 template <> SegmentOffset GetSegmentAndOffset<DataSym>(const CVSymbol &sym) { in GetSegmentAndOffset()
386 DataSym record = createRecord<DataSym>(sym); in GetSegmentAndOffset()
430 return ::GetSegmentAndOffset<DataSym>(sym); in GetSegmentAndOffset()
633 DataSym data(SymbolRecordKind::DataSym); in GetVariableNameInfo()
634 cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, data)); in GetVariableNameInfo()
H A DSymbolFileNativePDB.cpp859 DataSym ds(sym.kind()); in CreateGlobalVariable()
860 llvm::cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, ds)); in CreateGlobalVariable()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp356 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h200 Error visitKnownRecord(CVSymbol &Record, DataSym &Data) override;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp219 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
H A DSymbolDumper.cpp294 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp574 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) { in map()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp596 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp3429 // DataSym record, see SymbolRecord.h for more info. Thread local data in emitDebugInfoForGlobal()
3432 SymbolKind DataSym = GV->isThreadLocal() in emitDebugInfoForGlobal()
3437 MCSymbol *DataEnd = beginSymbolRecord(DataSym); in emitDebugInfoForGlobal()
3410 SymbolKind DataSym = GV->isThreadLocal() emitDebugInfoForGlobal() local
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp1339 Error LVSymbolVisitor::visitKnownRecord(CVSymbol &Record, DataSym &Data) { in visitKnownRecord()