| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBSymbolData.cpp | 40 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 D | DWARFAcceleratorTable.cpp | 167 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 D | globals.ll | 56 ; 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 D | fortran-basic.ll | 40 ; 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 D | int8-char-type.ll | 10 ; CHECK-NEXT: DataOffset: 18 ; CHECK-NEXT: DataOffset:
|
| H A D | globals-discarded.ll | 8 ; CHECK: .secrel32 x # DataOffset
|
| H A D | types-std-nullptr-t.ll | 13 ; CHECK: DataOffset: ?NullPtr@@3$$TA+0x0
|
| H A D | long-name.ll | 18 ; CHECK: DataOffset: {{V+E}}
|
| H A D | types-array-unsized.ll | 42 ; CHECK-NEXT: DataOffset: ?str@Foo@@2QBDB+0x0
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.h | 112 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 D | MachOLinkGraphBuilder.cpp | 124 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 D | s_udt.s | 213 .secrel32 "?S@@3UStruct@@A" # DataOffset 221 .secrel32 "?SS@@3UStruct@@A" # DataOffset 229 .secrel32 "?I@@3HA" # DataOffset
|
| H A D | pdb-inlinees.s | 188 .secrel32 x # DataOffset
|
| H A D | pdb-inlinees-extrafiles.s | 190 .secrel32 x # DataOffset
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCMachObjectWriter.h | 208 void writeLinkeditLoadCommand(uint32_t Type, uint32_t DataOffset,
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/ |
| H A D | InstrProfReader.cpp | 412 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 D | SymbolRecordMapping.cpp | 222 error(IO.mapInteger(Data.DataOffset)); in visitKnownRecord() 451 error(IO.mapInteger(Data.DataOffset)); in visitKnownRecord()
|
| H A D | SymbolDumper.cpp | 298 Data.DataOffset, &LinkageName); in visitKnownRecord() 613 Data.DataOffset, &LinkageName); in visitKnownRecord()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 2030 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 D | CodeViewYAMLSymbols.cpp | 564 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 D | SymbolRecord.h | 949 uint32_t DataOffset = 0; variable 971 uint32_t DataOffset = 0; variable
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.h | 60 int DataOffset : 31; member
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.cpp | 786 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 D | PdbUtil.cpp | 261 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 D | MinimalSymbolDumper.cpp | 576 formatSegmentOffset(Data.Segment, Data.DataOffset)); in visitKnownRecord() 880 formatSegmentOffset(Data.Segment, Data.DataOffset)); in visitKnownRecord()
|