/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | CVSymbolTypes.def | 247 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)
|
D | SymbolRecord.h | 1381 class DataSym : public SymbolRecord { 1390 DataSym(uint32_t RecordOffset, const Hdr *H, StringRef Name) in DataSym() function 1391 : SymbolRecord(SymbolRecordKind::DataSym), RecordOffset(RecordOffset), in DataSym() 1394 static ErrorOr<DataSym> deserialize(SymbolRecordKind Kind, in deserialize() 1401 return DataSym(RecordOffset, H, Name); in deserialize()
|
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
D | CodeViewSymbols.def | 247 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)
|
D | SymbolRecord.h | 936 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()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | CodeViewSymbols.def | 247 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)
|
D | SymbolRecord.h | 929 class DataSym : public SymbolRecord { 933 explicit DataSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in DataSym() function 934 explicit DataSym(uint32_t RecordOffset) in DataSym() function 935 : SymbolRecord(SymbolRecordKind::DataSym), RecordOffset(RecordOffset) {} in DataSym()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
D | PdbUtil.cpp | 238 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()
|
D | SymbolFileNativePDB.cpp | 741 DataSym ds(sym.kind()); in CreateGlobalVariable() 742 llvm::cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, ds)); in CreateGlobalVariable()
|
/external/llvm/test/DebugInfo/COFF/ |
D | globals.ll | 76 ; OBJ: DataSym { 89 ; OBJ: DataSym { 104 ; OBJ: DataSym {
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | GSIStreamBuilder.h | 61 void addGlobalSymbol(const codeview::DataSym &Sym);
|
/external/llvm-project/llvm/test/DebugInfo/COFF/ |
D | global_visibility.ll | 54 ; CHECK: DataSym { 59 ; CHECK: DataSym { 75 ; CHECK: DataSym { 80 ; CHECK: DataSym {
|
D | globals.ll | 207 ; OBJ-NEXT: DataSym { 255 ; YAML-NEXT: DataSym: 270 ; YAML-NEXT: DataSym: 277 ; YAML-NEXT: DataSym: 296 ; YAML-NEXT: DataSym:
|
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | GSIStreamBuilder.h | 65 void addGlobalSymbol(const codeview::DataSym &Sym);
|
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/ |
D | TypeIndexDiscoveryTest.cpp | 547 TEST_F(TypeIndexIteratorTest, DataSym) { in TEST_F() argument 548 DataSym DS(SymbolRecordKind::GlobalData); in TEST_F()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | GSIStreamBuilder.cpp | 294 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
|
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
D | GSIStreamBuilder.cpp | 354 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | SymbolRecordMapping.cpp | 219 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
|
D | SymbolDumper.cpp | 296 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | SymbolRecordMapping.cpp | 219 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
|
D | SymbolDumper.cpp | 296 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | SymbolDumper.cpp | 279 void CVSymbolDumperImpl::visitDataSym(SymbolKind Kind, DataSym &Data) { in visitDataSym()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLSymbols.cpp | 538 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) { in map()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLSymbols.cpp | 561 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) { in map()
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | MinimalSymbolDumper.cpp | 566 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 3083 SymbolKind DataSym = GV->isThreadLocal() in emitDebugInfoForGlobal() local 3088 MCSymbol *DataEnd = beginSymbolRecord(DataSym); in emitDebugInfoForGlobal()
|