Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.h23 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef()
25 return S->kind() == DebugSubsectionKind::FrameData; in classof()
31 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); } in begin()
32 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); } in end()
38 FixedStreamArray<FrameData> Frames;
44 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection()
47 return S->kind() == DebugSubsectionKind::FrameData; in classof()
53 void addFrameData(const FrameData &Frame);
54 void setFrames(ArrayRef<FrameData> Frames);
58 std::vector<FrameData> Frames;
H A DCodeView.h319 FrameData = 0xf5, enumerator
572 struct FrameData { struct
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.cpp16 if (Reader.bytesRemaining() % sizeof(FrameData) != 0) { in initialize()
21 if (Reader.bytesRemaining() % sizeof(FrameData) != 0) in initialize()
25 uint32_t Count = Reader.bytesRemaining() / sizeof(FrameData); in initialize()
37 uint32_t Size = sizeof(FrameData) * Frames.size(); in calculateSerializedSize()
49 std::vector<FrameData> SortedFrames(Frames.begin(), Frames.end()); in commit()
50 llvm::sort(SortedFrames, [](const FrameData &LHS, const FrameData &RHS) { in commit()
58 void DebugFrameDataSubsection::addFrameData(const FrameData &Frame) { in addFrameData()
H A DDebugSubsectionVisitor.cpp77 case DebugSubsectionKind::FrameData: { in visitDebugSubsection()
H A DEnumTables.cpp240 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp780 for (auto *V : FrameData.getAllDefs()) { in cacheDIVar()
960 cacheDIVar(FrameData, DIVarCache); in buildFrameDebugInfo()
1017 {Index, {FrameData.getAlign(V), FrameData.getOffset(V)}}); in buildFrameDebugInfo()
1128 FrameData.setFieldIndex( in buildFrameType()
1151 FrameData.Allocas.emplace_back( in buildFrameType()
1154 for (auto &S : FrameData.Spills) { in buildFrameType()
1163 FrameData.setFieldIndex(S.first, Id); in buildFrameType()
1167 FrameData.updateLayoutIndex(B); in buildFrameType()
2639 FrameDataInfo FrameData; in buildCoroutineFrame() local
2738 for (auto &Iter : FrameData.Spills) { in buildCoroutineFrame()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.h28 struct FrameData;
71 void addNewFpoData(const codeview::FrameData &FD);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIAFrameData.h32 CComPtr<IDiaFrameData> FrameData;
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DFormatUtil.cpp110 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind()
128 RETURN_CASE(DebugSubsectionKind, FrameData, "DEBUG_S_FRAMEDATA"); in formatChunkKind()
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.cpp1125 for (const FrameData &FD : FDS) { in dumpNewFpo()
1126 bool IsFuncStart = FD.Flags & FrameData::IsFunctionStart; in dumpNewFpo()
1127 bool HasEH = FD.Flags & FrameData::HasEH; in dumpNewFpo()
1128 bool HasSEH = FD.Flags & FrameData::HasSEH; in dumpNewFpo()
H A Dllvm-pdbutil.cpp145 clEnumValN(ModuleSubsection::FrameData, "frames",
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h94 FrameData, enumerator
319 FrameData, enumerator
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFTargetStreamer.cpp315 CurFlags |= FrameData::IsFunctionStart; in emitFrameDataRecord()
401 OS.emitInt32(unsigned(DebugSubsectionKind::FrameData)); in emitFPOData()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp556 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
568 LLVM_READOBJ_ENUM_ENT(FrameData, HasSEH),
569 LLVM_READOBJ_ENUM_ENT(FrameData, HasEH),
570 LLVM_READOBJ_ENUM_ENT(FrameData, IsFunctionStart),
1093 case DebugSubsectionKind::FrameData: { in printCodeViewSymbolSection()
1097 DebugFrameDataSubsectionRef FrameData; in printCodeViewSymbolSection() local
1098 if (Error E = FrameData.initialize(SR)) in printCodeViewSymbolSection()
1104 FrameData.getRelocPtr(), LinkageName)) in printCodeViewSymbolSection()
1110 for (const auto &FD : FrameData) { in printCodeViewSymbolSection()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.h171 enum class FrameType : uint8_t { FPO = 0, FrameData = 4 }; enumerator
H A DBreakpadRecords.cpp422 if (!to_integer(Str, Type) || FrameType(Type) != FrameType::FrameData) in parse()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp1852 StringRef FrameData = OrigDwarf.getDWARFObj().getFrameSection().Data; in patchFrameInfoForObject() local
1853 if (FrameData.empty()) in patchFrameInfoForObject()
1856 DataExtractor Data(FrameData, OrigDwarf.isLittleEndian(), 0); in patchFrameInfoForObject()
1872 StringRef CIEData = FrameData.substr(EntryOffset, InitialLength + 4); in patchFrameInfoForObject()
1918 FrameData.substr(InputOffset, FDERemainingBytes)); in patchFrameInfoForObject()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp74 void DbiStreamBuilder::addNewFpoData(const codeview::FrameData &FD) { in addNewFpoData()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp209 : YAMLSubsectionBase(DebugSubsectionKind::FrameData) {} in YAMLFrameDataSubsection()
515 codeview::FrameData F; in toCodeViewSubsection()
/freebsd-13.1/contrib/llvm-project/lld/COFF/
H A DPDB.cpp793 case DebugSubsectionKind::FrameData: in handleDebugS()
961 for (codeview::FrameData fd : fds) { in finish()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp511 static llvm::FixedStreamArray<FrameData>::Iterator