Searched refs:VFTableSlotKind (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLTypes.cpp | 47 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 D | TypeRecord.h | 557 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 D | CodeView.h | 398 enum class VFTableSlotKind : uint8_t { enum
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | TypeRecordMapping.cpp | 500 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 D | CodeViewDebug.cpp | 2147 SmallVector<VFTableSlotKind, 4> Slots(VSlotCount, VFTableSlotKind::Near);
|