Home
last modified time | relevance | path

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

12

/external/llvm/include/llvm/DebugInfo/CodeView/
DCVSymbolTypes.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.h1381 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/
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()
/external/swiftshader/third_party/llvm-10.0/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.h929 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/
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()
/external/llvm/test/DebugInfo/COFF/
Dglobals.ll76 ; OBJ: DataSym {
89 ; OBJ: DataSym {
104 ; OBJ: DataSym {
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DGSIStreamBuilder.h61 void addGlobalSymbol(const codeview::DataSym &Sym);
/external/llvm-project/llvm/test/DebugInfo/COFF/
Dglobal_visibility.ll54 ; CHECK: DataSym {
59 ; CHECK: DataSym {
75 ; CHECK: DataSym {
80 ; CHECK: DataSym {
Dglobals.ll207 ; 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/
DGSIStreamBuilder.h65 void addGlobalSymbol(const codeview::DataSym &Sym);
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/
DTypeIndexDiscoveryTest.cpp547 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/
DGSIStreamBuilder.cpp294 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DGSIStreamBuilder.cpp354 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
/external/swiftshader/third_party/llvm-10.0/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()
/external/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()
/external/llvm/lib/DebugInfo/CodeView/
DSymbolDumper.cpp279 void CVSymbolDumperImpl::visitDataSym(SymbolKind Kind, DataSym &Data) { in visitDataSym()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp538 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) { in map()
/external/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp561 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) { in map()
/external/llvm-project/llvm/tools/llvm-pdbutil/
DMinimalSymbolDumper.cpp566 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp3083 SymbolKind DataSym = GV->isThreadLocal() in emitDebugInfoForGlobal() local
3088 MCSymbol *DataEnd = beginSymbolRecord(DataSym); in emitDebugInfoForGlobal()

12