Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DPdbUtil.cpp238 template <> SegmentOffset GetSegmentAndOffset<DataSym>(const CVSymbol &sym) { in GetSegmentAndOffset()
239 DataSym record = createRecord<DataSym>(sym); in GetSegmentAndOffset()
283 return ::GetSegmentAndOffset<DataSym>(sym); in GetSegmentAndOffset()
484 DataSym data(SymbolRecordKind::DataSym); in GetVariableNameInfo()
485 cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, data)); in GetVariableNameInfo()
DSymbolFileNativePDB.cpp741 DataSym ds(sym.kind()); in CreateGlobalVariable()
742 llvm::cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, ds)); in CreateGlobalVariable()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
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)
DSymbolRecord.h936 class DataSym : public SymbolRecord {
940 explicit DataSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in DataSym() function
941 explicit DataSym(uint32_t RecordOffset) in DataSym() function
942 : SymbolRecord(SymbolRecordKind::DataSym), RecordOffset(RecordOffset) {} in DataSym()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DGSIStreamBuilder.h65 void addGlobalSymbol(const codeview::DataSym &Sym);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DGSIStreamBuilder.cpp354 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
DSymbolRecordMapping.cpp219 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
DSymbolDumper.cpp296 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp561 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) { in map()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
DMinimalSymbolDumper.cpp569 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp3236 SymbolKind DataSym = GV->isThreadLocal() in emitDebugInfoForGlobal() local
3241 MCSymbol *DataEnd = beginSymbolRecord(DataSym); in emitDebugInfoForGlobal()