Home
last modified time | relevance | path

Searched refs:FrameData (Results 1 – 25 of 26) sorted by relevance

12

/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.h27 : 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 DCodeView.h318 FrameData = 0xf5, enumerator
574 struct FrameData { struct
/openbsd/gnu/llvm/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAFrameData.cpp16 : 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 DDIATable.cpp44 return PDB_TableType::FrameData; in getTableType()
/openbsd/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.cpp18 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 DDebugSubsectionVisitor.cpp78 case DebugSubsectionKind::FrameData: { in visitDebugSubsection()
H A DEnumTables.cpp240 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
/openbsd/gnu/llvm/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp822 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 DDbiStreamBuilder.h31 struct FrameData;
68 void addNewFpoData(const codeview::FrameData &FD);
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIAFrameData.h32 CComPtr<IDiaFrameData> FrameData;
/openbsd/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DFormatUtil.cpp59 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind()
79 RETURN_CASE(DebugSubsectionKind, FrameData, "DEBUG_S_FRAMEDATA"); in formatChunkKind()
H A DDbiStreamBuilder.cpp73 void DbiStreamBuilder::addNewFpoData(const codeview::FrameData &FD) { in addNewFpoData()
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp187 case DebugSubsectionKind::FrameData: in convertSubsectionKind()
188 return opts::ModuleSubsection::FrameData; in convertSubsectionKind()
H A Dllvm-pdbutil.h48 FrameData, enumerator
H A DDumpOutputStyle.cpp1021 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 DX86WinCOFFTargetStreamer.cpp316 CurFlags |= FrameData::IsFunctionStart; in emitFrameDataRecord()
402 OS.emitInt32(unsigned(DebugSubsectionKind::FrameData)); in emitFPOData()
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h94 FrameData, enumerator
319 FrameData, enumerator
/openbsd/gnu/llvm/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp557 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 DBreakpadRecords.h220 enum class FrameType : uint8_t { FPO = 0, FrameData = 4 }; enumerator
H A DBreakpadRecords.cpp499 if (!to_integer(Str, Type) || FrameType(Type) != FrameType::FrameData) in parse()
/openbsd/gnu/llvm/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp1972 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 DCodeViewYAMLDebugSections.cpp209 : YAMLSubsectionBase(DebugSubsectionKind::FrameData) {} in YAMLFrameDataSubsection()
515 codeview::FrameData F; in toCodeViewSubsection()
/openbsd/gnu/llvm/lld/COFF/
H A DPDB.cpp794 case DebugSubsectionKind::FrameData: in handleDebugS()
969 for (codeview::FrameData fd : fds) { in finish()
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp660 static llvm::FixedStreamArray<FrameData>::Iterator
/openbsd/gnu/lib/libiberty/src/testsuite/
H A Ddemangle-expected223 FrameData::FrameData(FrameComp *, int)

12