Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h23 class DataSym; variable
67 void addGlobalSymbol(const codeview::DataSym &Sym);
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewSymbols.def247 SYMBOL_RECORD(S_LDATA32 , 0x110c, DataSym)
248 SYMBOL_RECORD_ALIAS(S_GDATA32 , 0x110d, GlobalData, DataSym)
249 SYMBOL_RECORD_ALIAS(S_LMANDATA , 0x111c, ManagedLocalData, DataSym)
250 SYMBOL_RECORD_ALIAS(S_GMANDATA , 0x111d, ManagedGlobalData, DataSym)
H A DSymbolRecord.h935 class DataSym : public SymbolRecord {
939 explicit DataSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in DataSym() function
940 explicit DataSym(uint32_t RecordOffset) in DataSym() function
941 : SymbolRecord(SymbolRecordKind::DataSym), RecordOffset(RecordOffset) {} in DataSym()
/openbsd-src/gnu/llvm/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.cpp856 DataSym ds(sym.kind()); in CreateGlobalVariable()
857 llvm::cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, ds)); in CreateGlobalVariable()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp355 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp564 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) { in map()
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp572 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp3395 SymbolKind DataSym = GV->isThreadLocal() in emitDebugInfoForGlobal() local
3400 MCSymbol *DataEnd = beginSymbolRecord(DataSym); in emitDebugInfoForGlobal()