Home
last modified time | relevance | path

Searched refs:VFTableSlotKind (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp47 LLVM_YAML_IS_SEQUENCE_VECTOR(VFTableSlotKind)
55 LLVM_YAML_DECLARE_ENUM_TRAITS(VFTableSlotKind)
225 void ScalarEnumerationTraits<VFTableSlotKind>::enumeration( in enumeration()
226 IO &IO, VFTableSlotKind &Kind) { in enumeration()
227 IO.enumCase(Kind, "Near16", VFTableSlotKind::Near16); in enumeration()
228 IO.enumCase(Kind, "Far16", VFTableSlotKind::Far16); in enumeration()
229 IO.enumCase(Kind, "This", VFTableSlotKind::This); in enumeration()
230 IO.enumCase(Kind, "Outer", VFTableSlotKind::Outer); in enumeration()
231 IO.enumCase(Kind, "Meta", VFTableSlotKind::Meta); in enumeration()
232 IO.enumCase(Kind, "Near", VFTableSlotKind::Near); in enumeration()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h557 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) in VFTableShapeRecord()
559 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) in VFTableShapeRecord()
562 ArrayRef<VFTableSlotKind> getSlots() const { in getSlots()
570 ArrayRef<VFTableSlotKind> SlotsRef;
571 std::vector<VFTableSlotKind> Slots;
H A DCodeView.h398 enum class VFTableSlotKind : uint8_t { enum
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp500 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in visitKnownRecord()
516 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte & 0xF)); in visitKnownRecord()
518 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte >> 4)); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2147 SmallVector<VFTableSlotKind, 4> Slots(VSlotCount, VFTableSlotKind::Near);