/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | DebugFrameDataSubsection.h | 27 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef() 29 return S->kind() == DebugSubsectionKind::FrameData; in classof() 35 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); } in begin() 36 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); } in end() 42 FixedStreamArray<FrameData> Frames; 48 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection() 51 return S->kind() == DebugSubsectionKind::FrameData; in classof() 57 void addFrameData(const FrameData &Frame); 58 void setFrames(ArrayRef<FrameData> Frames); 62 std::vector<FrameData> Frames;
|
H A D | CodeView.h | 318 FrameData = 0xf5, enumerator 574 struct FrameData { struct
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/PDB/DIA/ |
H A D | DIAFrameData.cpp | 16 : FrameData(DiaFrameData) {} in DIAFrameData() 20 PrivateGetDIAValue(IDiaFrameData *FrameData, in PrivateGetDIAValue() argument 23 if (S_OK == (FrameData->*Method)(&Value)) in PrivateGetDIAValue() 30 return PrivateGetDIAValue(FrameData, &IDiaFrameData::get_addressOffset); in getAddressOffset() 34 return PrivateGetDIAValue(FrameData, &IDiaFrameData::get_addressSection); in getAddressSection() 38 return PrivateGetDIAValue(FrameData, &IDiaFrameData::get_lengthBlock); in getLengthBlock() 42 return invokeBstrMethod(*FrameData, &IDiaFrameData::get_program); in getProgram() 46 return PrivateGetDIAValue(FrameData, in getRelativeVirtualAddress() 51 return PrivateGetDIAValue(FrameData, &IDiaFrameData::get_virtualAddress); in getVirtualAddress()
|
H A D | DIATable.cpp | 44 return PDB_TableType::FrameData; in getTableType()
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugFrameDataSubsection.cpp | 18 if (Reader.bytesRemaining() % sizeof(FrameData) != 0) { in initialize() 23 if (Reader.bytesRemaining() % sizeof(FrameData) != 0) in initialize() 27 uint32_t Count = Reader.bytesRemaining() / sizeof(FrameData); in initialize() 39 uint32_t Size = sizeof(FrameData) * Frames.size(); in calculateSerializedSize() 51 std::vector<FrameData> SortedFrames(Frames.begin(), Frames.end()); in commit() 52 llvm::sort(SortedFrames, [](const FrameData &LHS, const FrameData &RHS) { in commit() 60 void DebugFrameDataSubsection::addFrameData(const FrameData &Frame) { in addFrameData()
|
H A D | DebugSubsectionVisitor.cpp | 78 case DebugSubsectionKind::FrameData: { in visitDebugSubsection()
|
H A D | EnumTables.cpp | 240 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Coroutines/ |
H A D | CoroFrame.cpp | 822 for (auto *V : FrameData.getAllDefs()) { in cacheDIVar() 1013 cacheDIVar(FrameData, DIVarCache); in buildFrameDebugInfo() 1068 {Index, {FrameData.getAlign(V).value(), FrameData.getOffset(V)}}); in buildFrameDebugInfo() 1179 FrameData.setFieldIndex( in buildFrameType() 1202 FrameData.Allocas.emplace_back( in buildFrameType() 1205 for (auto &S : FrameData.Spills) { in buildFrameType() 1214 FrameData.setFieldIndex(S.first, Id); in buildFrameType() 1218 FrameData.updateLayoutIndex(B); in buildFrameType() 2779 FrameDataInfo FrameData; in buildCoroutineFrame() local 2871 for (auto &Iter : FrameData.Spills) { in buildCoroutineFrame() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | DbiStreamBuilder.h | 31 struct FrameData; 68 void addNewFpoData(const codeview::FrameData &FD);
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/DIA/ |
H A D | DIAFrameData.h | 32 CComPtr<IDiaFrameData> FrameData;
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
H A D | FormatUtil.cpp | 59 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind() 79 RETURN_CASE(DebugSubsectionKind, FrameData, "DEBUG_S_FRAMEDATA"); in formatChunkKind()
|
H A D | DbiStreamBuilder.cpp | 73 void DbiStreamBuilder::addNewFpoData(const codeview::FrameData &FD) { in addNewFpoData()
|
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/ |
H A D | YAMLOutputStyle.cpp | 187 case DebugSubsectionKind::FrameData: in convertSubsectionKind() 188 return opts::ModuleSubsection::FrameData; in convertSubsectionKind()
|
H A D | llvm-pdbutil.h | 48 FrameData, enumerator
|
H A D | DumpOutputStyle.cpp | 1021 for (const FrameData &FD : FDS) { in dumpNewFpo() 1022 bool IsFuncStart = FD.Flags & FrameData::IsFunctionStart; in dumpNewFpo() 1023 bool HasEH = FD.Flags & FrameData::HasEH; in dumpNewFpo() 1024 bool HasSEH = FD.Flags & FrameData::HasSEH; in dumpNewFpo()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86WinCOFFTargetStreamer.cpp | 316 CurFlags |= FrameData::IsFunctionStart; in emitFrameDataRecord() 402 OS.emitInt32(unsigned(DebugSubsectionKind::FrameData)); in emitFPOData()
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 94 FrameData, enumerator 319 FrameData, enumerator
|
/openbsd/gnu/llvm/llvm/tools/llvm-readobj/ |
H A D | COFFDumper.cpp | 557 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 569 LLVM_READOBJ_ENUM_ENT(FrameData, HasSEH), 570 LLVM_READOBJ_ENUM_ENT(FrameData, HasEH), 571 LLVM_READOBJ_ENUM_ENT(FrameData, IsFunctionStart), 1151 case DebugSubsectionKind::FrameData: { in printCodeViewSymbolSection() 1155 DebugFrameDataSubsectionRef FrameData; in printCodeViewSymbolSection() local 1156 if (Error E = FrameData.initialize(SR)) in printCodeViewSymbolSection() 1162 FrameData.getRelocPtr(), LinkageName)) in printCodeViewSymbolSection() 1168 for (const auto &FD : FrameData) { in printCodeViewSymbolSection()
|
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | BreakpadRecords.h | 220 enum class FrameType : uint8_t { FPO = 0, FrameData = 4 }; enumerator
|
H A D | BreakpadRecords.cpp | 499 if (!to_integer(Str, Type) || FrameType(Type) != FrameType::FrameData) in parse()
|
/openbsd/gnu/llvm/llvm/lib/DWARFLinker/ |
H A D | DWARFLinker.cpp | 1972 StringRef FrameData = OrigDwarf.getDWARFObj().getFrameSection().Data; in patchFrameInfoForObject() local 1973 if (FrameData.empty()) in patchFrameInfoForObject() 1976 DataExtractor Data(FrameData, OrigDwarf.isLittleEndian(), 0); in patchFrameInfoForObject() 1992 StringRef CIEData = FrameData.substr(EntryOffset, InitialLength + 4); in patchFrameInfoForObject() 2036 FrameData.substr(InputOffset, FDERemainingBytes)); in patchFrameInfoForObject()
|
/openbsd/gnu/llvm/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.cpp | 209 : YAMLSubsectionBase(DebugSubsectionKind::FrameData) {} in YAMLFrameDataSubsection() 515 codeview::FrameData F; in toCodeViewSubsection()
|
/openbsd/gnu/llvm/lld/COFF/ |
H A D | PDB.cpp | 794 case DebugSubsectionKind::FrameData: in handleDebugS() 969 for (codeview::FrameData fd : fds) { in finish()
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbUtil.cpp | 660 static llvm::FixedStreamArray<FrameData>::Iterator
|
/openbsd/gnu/lib/libiberty/src/testsuite/ |
H A D | demangle-expected | 223 FrameData::FrameData(FrameComp *, int)
|