Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.h24 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef()
26 return S->kind() == DebugSubsectionKind::FrameData; in classof()
32 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); } in begin()
33 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); } in end()
39 FixedStreamArray<FrameData> Frames;
45 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection()
48 return S->kind() == DebugSubsectionKind::FrameData; in classof()
54 void addFrameData(const FrameData &Frame);
55 void setFrames(ArrayRef<FrameData> Frames);
59 std::vector<FrameData> Frames;
H A DCodeView.h313 FrameData = 0xf5, enumerator
552 struct FrameData { struct
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAFrameData.cpp17 : FrameData(DiaFrameData) {} in DIAFrameData()
21 PrivateGetDIAValue(IDiaFrameData *FrameData, in PrivateGetDIAValue() argument
24 if (S_OK == (FrameData->*Method)(&Value)) in PrivateGetDIAValue()
31 return PrivateGetDIAValue(FrameData, &IDiaFrameData::get_addressOffset); in getAddressOffset()
35 return PrivateGetDIAValue(FrameData, &IDiaFrameData::get_addressSection); in getAddressSection()
39 return PrivateGetDIAValue(FrameData, &IDiaFrameData::get_lengthBlock); in getLengthBlock()
43 return invokeBstrMethod(*FrameData, &IDiaFrameData::get_program); in getProgram()
47 return PrivateGetDIAValue(FrameData, in getRelativeVirtualAddress()
52 return PrivateGetDIAValue(FrameData, &IDiaFrameData::get_virtualAddress); in getVirtualAddress()
H A DDIATable.cpp45 return PDB_TableType::FrameData; in getTableType()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.cpp17 if (Reader.bytesRemaining() % sizeof(FrameData) != 0) { in initialize()
22 if (Reader.bytesRemaining() % sizeof(FrameData) != 0) in initialize()
26 uint32_t Count = Reader.bytesRemaining() / sizeof(FrameData); in initialize()
38 uint32_t Size = sizeof(FrameData) * Frames.size(); in calculateSerializedSize()
50 std::vector<FrameData> SortedFrames(Frames.begin(), Frames.end()); in commit()
52 [](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.cpp218 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.h29 struct FrameData;
73 void addNewFpoData(const codeview::FrameData &FD);
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIAFrameData.h33 CComPtr<IDiaFrameData> FrameData;
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h93 FrameData, enumerator
259 FrameData, enumerator
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DFormatUtil.cpp111 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind()
129 RETURN_CASE(DebugSubsectionKind, FrameData, "DEBUG_S_FRAMEDATA"); in formatChunkKind()
H A DYAMLOutputStyle.cpp188 case DebugSubsectionKind::FrameData: in convertSubsectionKind()
189 return opts::ModuleSubsection::FrameData; in convertSubsectionKind()
H A Dllvm-pdbutil.h49 FrameData, enumerator
H A DDumpOutputStyle.cpp1061 for (const FrameData &FD : FDS) { in dumpNewFpo()
1062 bool IsFuncStart = FD.Flags & FrameData::IsFunctionStart; in dumpNewFpo()
1063 bool HasEH = FD.Flags & FrameData::HasEH; in dumpNewFpo()
1064 bool HasSEH = FD.Flags & FrameData::HasSEH; in dumpNewFpo()
H A Dllvm-pdbutil.cpp146 clEnumValN(ModuleSubsection::FrameData, "frames",
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp547 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
559 LLVM_READOBJ_ENUM_ENT(FrameData, HasSEH),
560 LLVM_READOBJ_ENUM_ENT(FrameData, HasEH),
561 LLVM_READOBJ_ENUM_ENT(FrameData, IsFunctionStart),
1045 case DebugSubsectionKind::FrameData: { in printCodeViewSymbolSection()
1049 DebugFrameDataSubsectionRef FrameData; in printCodeViewSymbolSection() local
1050 error(FrameData.initialize(SR)); in printCodeViewSymbolSection()
1054 FrameData.getRelocPtr(), LinkageName)); in printCodeViewSymbolSection()
1059 for (const auto &FD : FrameData) { in printCodeViewSymbolSection()
/freebsd-12.1/contrib/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFTargetStreamer.cpp316 CurFlags |= FrameData::IsFunctionStart; in emitFrameDataRecord()
402 OS.EmitIntValue(unsigned(DebugSubsectionKind::FrameData), 4); in emitFPOData()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp78 void DbiStreamBuilder::addNewFpoData(const codeview::FrameData &FD) { in addNewFpoData()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp210 : YAMLSubsectionBase(DebugSubsectionKind::FrameData) {} in YAMLFrameDataSubsection()
516 codeview::FrameData F; in toCodeViewSubsection()
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DPDB.cpp1204 case DebugSubsectionKind::FrameData: { in handleDebugS()
1246 for (codeview::FrameData FD : FDS) { in finish()
/freebsd-12.1/contrib/gcclibs/libiberty/testsuite/
H A Ddemangle-expected290 FrameData::FrameData(FrameComp *, int)
291 FrameData::FrameData