Searched refs:VFTableSlotKind (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLTypes.cpp | 48 LLVM_YAML_IS_SEQUENCE_VECTOR(VFTableSlotKind) 56 LLVM_YAML_DECLARE_ENUM_TRAITS(VFTableSlotKind) 221 void ScalarEnumerationTraits<VFTableSlotKind>::enumeration( in enumeration() 222 IO &IO, VFTableSlotKind &Kind) { in enumeration() 223 IO.enumCase(Kind, "Near16", VFTableSlotKind::Near16); in enumeration() 224 IO.enumCase(Kind, "Far16", VFTableSlotKind::Far16); in enumeration() 225 IO.enumCase(Kind, "This", VFTableSlotKind::This); in enumeration() 226 IO.enumCase(Kind, "Outer", VFTableSlotKind::Outer); in enumeration() 227 IO.enumCase(Kind, "Meta", VFTableSlotKind::Meta); in enumeration() 228 IO.enumCase(Kind, "Near", VFTableSlotKind::Near); in enumeration() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 538 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) in VFTableShapeRecord() 540 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) in VFTableShapeRecord() 543 ArrayRef<VFTableSlotKind> getSlots() const { in getSlots() 551 ArrayRef<VFTableSlotKind> SlotsRef; 552 std::vector<VFTableSlotKind> Slots;
|
D | CodeView.h | 376 enum class VFTableSlotKind : uint8_t { enum
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 620 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) in VFTableShapeRecord() 622 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) in VFTableShapeRecord() 632 ArrayRef<VFTableSlotKind> getSlots() const { in getSlots() 649 ArrayRef<VFTableSlotKind> SlotsRef; 650 std::vector<VFTableSlotKind> Slots;
|
D | CodeView.h | 360 enum class VFTableSlotKind : uint8_t { enum
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordMapping.cpp | 265 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in visitKnownRecord() 281 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte & 0xF)); in visitKnownRecord() 283 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte >> 4)); in visitKnownRecord()
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecord.cpp | 192 std::vector<VFTableSlotKind> Slots; in deserialize() 200 Slots.push_back(static_cast<VFTableSlotKind>(Value)); in deserialize() 203 Slots.push_back(static_cast<VFTableSlotKind>(Value)); in deserialize()
|
D | TypeTableBuilder.cpp | 178 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in writeVFTableShape()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 1754 SmallVector<VFTableSlotKind, 4> Slots(VSlotCount, VFTableSlotKind::Near); in lowerTypeVFTableShape()
|