Home
last modified time | relevance | path

Searched refs:DataOffset (Results 1 – 25 of 31) sorted by relevance

12

/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolData.cpp40 uint32_t DataOffset = RawSymbol->getAddressOffset(); in getCompilandId() local
43 Session.addressForRVA(RVA, DataSection, DataOffset); in getCompilandId()
50 Section->getAddressOffset() <= DataOffset && in getCompilandId()
51 (Section->getAddressOffset() + Section->getLength()) > DataOffset) in getCompilandId()
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp167 uint64_t NameOffset = *DataOffset; in dumpName()
180 unsigned NumData = AccelSection.getU32(DataOffset); in dumpName()
248 if (!AccelSection.isValidOffset(DataOffset)) { in dump()
252 while (dumpName(W, AtomForms, &DataOffset)) in dump()
310 NumData = AccelTable.AccelSection.getU32(&DataOffset); in ValueIterator()
320 DataOffset = 0; in Next()
323 Current.extract(*AccelTable, &DataOffset); in Next()
352 uint64_t DataOffset = AccelSection.getU32(&OffsetsOffset); in equal_range() local
359 return make_range({*this, DataOffset}, ValueIterator()); in equal_range()
830 auto EntryOr = CurrentIndex->getEntry(&DataOffset); in getEntryAtCurrentOffset()
[all …]
/llvm-project-15.0.7/llvm/test/DebugInfo/COFF/
H A Dglobals.ll56 ; ASM-NEXT: .secrel32 "?first@@3HA" # DataOffset
63 ; ASM-NEXT: .secrel32 "?middle@@3PEBHEB" # DataOffset
84 ; ASM-NEXT: .secrel32 "?last@@3HA" # DataOffset
158 ; OBJ-NEXT: DataOffset: ?first@@3HA+0x0
165 ; OBJ-NEXT: DataOffset: ?middle@@3PEBHEB+0x0
172 ; OBJ-NEXT: DataOffset: ?globalTLS@foo@@3HA+0x0
179 ; OBJ-NEXT: DataOffset: ?justGlobal@foo@@3HA+0x0
186 ; OBJ-NEXT: DataOffset: ?last@@3HA+0x0
211 ; OBJ-NEXT: DataOffset: ?globalStatic@foo@@3HA+0x0
218 ; OBJ-NEXT: DataOffset: ?staticTLS@foo@@3HA+0x0
[all …]
H A Dfortran-basic.ll40 ; CHECK: DataOffset: ARRAY$ARRAY2+0x0
45 ; CHECK: DataOffset: ARRAY$ARRAY1+0x0
50 ; CHECK: DataOffset: COM+0x0
55 ; CHECK: DataOffset: COM+0x8
60 ; CHECK: DataOffset: COM+0xC
H A Dint8-char-type.ll10 ; CHECK-NEXT: DataOffset:
18 ; CHECK-NEXT: DataOffset:
H A Dglobals-discarded.ll8 ; CHECK: .secrel32 x # DataOffset
H A Dtypes-std-nullptr-t.ll13 ; CHECK: DataOffset: ?NullPtr@@3$$TA+0x0
H A Dlong-name.ll18 ; CHECK: DataOffset: {{V+E}}
H A Dtypes-array-unsized.ll42 ; CHECK-NEXT: DataOffset: ?str@Foo@@2QBDB+0x0
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h112 uint64_t *DataOffset) const;
146 uint64_t DataOffset = 0; ///< Offset into the section. variable
161 ValueIterator(const AppleAcceleratorTable &AccelTable, uint64_t DataOffset);
173 return A.NumData == B.NumData && A.DataOffset == B.DataOffset;
495 uint64_t DataOffset = 0; ///< Offset into the section. variable
533 return A.CurrentIndex == B.CurrentIndex && A.DataOffset == B.DataOffset;
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp124 uint32_t DataOffset = 0; in createNormalizedSections() local
141 DataOffset = Sec64.offset; in createNormalizedSections()
154 DataOffset = Sec32.offset; in createNormalizedSections()
167 if (DataOffset + NSec.Size > Obj.getData().size()) in createNormalizedSections()
171 NSec.Data = Obj.getData().data() + DataOffset; in createNormalizedSections()
/llvm-project-15.0.7/lld/test/COFF/
H A Ds_udt.s213 .secrel32 "?S@@3UStruct@@A" # DataOffset
221 .secrel32 "?SS@@3UStruct@@A" # DataOffset
229 .secrel32 "?I@@3HA" # DataOffset
H A Dpdb-inlinees.s188 .secrel32 x # DataOffset
H A Dpdb-inlinees-extrafiles.s190 .secrel32 x # DataOffset
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h208 void writeLinkeditLoadCommand(uint32_t Type, uint32_t DataOffset,
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DInstrProfReader.cpp412 ptrdiff_t DataOffset = sizeof(RawInstrProf::Header) + BinaryIdsSize; in readHeader() local
413 ptrdiff_t CountersOffset = DataOffset + DataSize + PaddingBytesBeforeCounters; in readHeader()
433 Start + DataOffset); in readHeader()
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp222 error(IO.mapInteger(Data.DataOffset)); in visitKnownRecord()
451 error(IO.mapInteger(Data.DataOffset)); in visitKnownRecord()
H A DSymbolDumper.cpp298 Data.DataOffset, &LinkageName); in visitKnownRecord()
613 Data.DataOffset, &LinkageName); in visitKnownRecord()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp2030 uint32_t DataOffset = data.getAddressOffset(); in GetCompilandId() local
2033 m_session_up->addressForRVA(RVA, DataSection, DataOffset); in GetCompilandId()
2040 std::upper_bound(sec_cs.begin(), sec_cs.end(), DataOffset, pred_upper); in GetCompilandId()
2043 if (DataOffset < it->Offset + it->Size) in GetCompilandId()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp564 IO.mapOptional("Offset", Symbol.DataOffset, 0U); in map()
571 IO.mapOptional("Offset", Symbol.DataOffset, 0U); in map()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h949 uint32_t DataOffset = 0; variable
971 uint32_t DataOffset = 0; variable
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h60 int DataOffset : 31; member
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp786 offset = ds.DataOffset; in CreateGlobalVariable()
787 addr = m_index->MakeVirtualAddress(ds.Segment, ds.DataOffset); in CreateGlobalVariable()
800 offset = tlds.DataOffset; in CreateGlobalVariable()
801 addr = m_index->MakeVirtualAddress(tlds.Segment, tlds.DataOffset); in CreateGlobalVariable()
H A DPdbUtil.cpp261 return {record.Segment, record.DataOffset}; in GetSegmentAndOffset()
267 return {record.Segment, record.DataOffset}; in GetSegmentAndOffset()
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp576 formatSegmentOffset(Data.Segment, Data.DataOffset)); in visitKnownRecord()
880 formatSegmentOffset(Data.Segment, Data.DataOffset)); in visitKnownRecord()

12