Home
last modified time | relevance | path

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

/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h23 class DataSym; variable
67 void addGlobalSymbol(const codeview::DataSym &Sym);
/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 DataSym() function
961 explicit DataSym(uint32_t RecordOffset) in DataSym() function
962 : SymbolRecord(SymbolRecordKind::DataSym), RecordOffset(RecordOffset) {} in DataSym()
/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.cpp855 DataSym ds(sym.kind()); in CreateGlobalVariable()
856 llvm::cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, ds)); in CreateGlobalVariable()
/llvm-project/llvm/test/DebugInfo/COFF/
H A Dglobal_visibility.ll55 ; CHECK: DataSym {
60 ; CHECK: DataSym {
76 ; CHECK: DataSym {
81 ; CHECK: DataSym {
H A Dglobals.ll217 ; OBJ-NEXT: DataSym {
270 ; YAML-NEXT: DataSym:
285 ; YAML-NEXT: DataSym:
292 ; YAML-NEXT: DataSym:
311 ; YAML-NEXT: DataSym:
H A Dglobal_rust.ll29 ; CHECK: DataSym {
/llvm-project/llvm/unittests/DebugInfo/CodeView/
H A DTypeIndexDiscoveryTest.cpp547 TEST_F(TypeIndexIteratorTest, DataSym) { in TEST_F() argument
548 DataSym DS(SymbolRecordKind::GlobalData); in TEST_F()
/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp356 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h200 Error visitKnownRecord(CVSymbol &Record, DataSym &Data) override;
/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()
/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp573 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) {
/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp596 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp3396 // DataSym record, see SymbolRecord.h for more info. Thread local data in isFloatDIType()
3399 SymbolKind DataSym = GV->isThreadLocal() in isFloatDIType()
3404 MCSymbol *DataEnd = beginSymbolRecord(DataSym); in isFloatDIType()
3432 SymbolKind DataSym = GV->isThreadLocal() emitDebugInfoForGlobal() local
/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp1333 Error LVSymbolVisitor::visitKnownRecord(CVSymbol &Record, DataSym &Data) { in visitKnownRecord()