Searched refs:TypeRecord (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeRecord.h | 118 class TypeRecord { 120 TypeRecord() = default; 121 explicit TypeRecord(TypeRecordKind Kind) : Kind(Kind) {} in TypeRecord() function 130 class ModifierRecord : public TypeRecord { 133 explicit ModifierRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in ModifierRecord() 135 : TypeRecord(TypeRecordKind::Modifier), ModifiedType(ModifiedType), in ModifierRecord() 146 class ProcedureRecord : public TypeRecord { 149 explicit ProcedureRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in ProcedureRecord() 153 : TypeRecord(TypeRecordKind::Procedure), ReturnType(ReturnType), in ProcedureRecord() 171 class MemberFunctionRecord : public TypeRecord { [all …]
|
H A D | CodeViewTypes.def | 13 // If the type is known, then we have a record describing it in TypeRecord.h. 19 // If the type is known, then we have a record describing it in TypeRecord.h.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVBuiltins.cpp | 2676 const SPIRV::BuiltinType *TypeRecord, in getNonParameterizedType() argument 2679 unsigned Opcode = TypeRecord->Opcode; in getNonParameterizedType() 2822 const SPIRV::BuiltinType *TypeRecord = SPIRV::lookupBuiltinType(Name); in lowerBuiltinType() local 2823 if (!TypeRecord) in lowerBuiltinType() 2831 switch (TypeRecord->Opcode) { in lowerBuiltinType() 2852 getNonParameterizedType(BuiltinType, TypeRecord, MIRBuilder, GR); in lowerBuiltinType()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DecoderEmitter.cpp | 1893 OperandInfo getOpInfo(Record *TypeRecord) { in getOpInfo() argument 1894 std::string Decoder = findOperandDecoderMethod(TypeRecord); in getOpInfo() 1896 RecordVal *HasCompleteDecoderVal = TypeRecord->getValue("hasCompleteDecoder"); in getOpInfo()
|