Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DAArch64ErrataFix.cpp603 auto DataSym = std::next(CodeSym); in patchInputSectionDescription() local
606 (DataSym == MapSyms.end()) ? IS->data().size() : (*DataSym)->Value; in patchInputSectionDescription()
613 if (DataSym == MapSyms.end()) in patchInputSectionDescription()
615 CodeSym = std::next(DataSym); in patchInputSectionDescription()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp237 template <> SegmentOffset GetSegmentAndOffset<DataSym>(const CVSymbol &sym) { in GetSegmentAndOffset()
238 DataSym record = createRecord<DataSym>(sym); in GetSegmentAndOffset()
282 return ::GetSegmentAndOffset<DataSym>(sym); in GetSegmentAndOffset()
483 DataSym data(SymbolRecordKind::DataSym); in GetVariableNameInfo()
484 cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, data)); in GetVariableNameInfo()
H A DSymbolFileNativePDB.cpp737 DataSym ds(sym.kind()); in CreateGlobalVariable()
738 llvm::cantFail(SymbolDeserializer::deserializeAs<DataSym>(sym, ds)); in CreateGlobalVariable()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewSymbols.def249 SYMBOL_RECORD(S_LDATA32 , 0x110c, DataSym)
250 SYMBOL_RECORD_ALIAS(S_GDATA32 , 0x110d, GlobalData, DataSym)
251 SYMBOL_RECORD_ALIAS(S_LMANDATA , 0x111c, ManagedLocalData, DataSym)
252 SYMBOL_RECORD_ALIAS(S_GMANDATA , 0x111d, ManagedGlobalData, DataSym)
H A DSymbolRecord.h930 class DataSym : public SymbolRecord {
934 explicit DataSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in DataSym() function
935 DataSym(uint32_t RecordOffset) in DataSym() function
936 : SymbolRecord(SymbolRecordKind::DataSym), RecordOffset(RecordOffset) {} in DataSym()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h62 void addGlobalSymbol(const codeview::DataSym &Sym);
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp296 void GSIStreamBuilder::addGlobalSymbol(const DataSym &Sym) { in addGlobalSymbol()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp220 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
H A DSymbolDumper.cpp297 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp539 template <> void SymbolRecordImpl<DataSym>::map(IO &IO) { in map()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp537 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, DataSym &Data) { in visitKnownRecord()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2998 SymbolKind DataSym = GV->isThreadLocal() in emitDebugInfoForGlobal() local
3003 MCSymbol *DataEnd = beginSymbolRecord(DataSym); in emitDebugInfoForGlobal()