Lines Matching refs:Records
314 static void emitDXILVersions(const RecordKeeper &Records, raw_ostream &OS) { in emitDXILVersions() argument
316 for (const Record *Version : Records.getAllDerivedDefinitions("Version")) { in emitDXILVersions()
338 static void emitDXILOpClasses(const RecordKeeper &Records, raw_ostream &OS) { in emitDXILOpClasses() argument
340 for (const Record *OpClass : Records.getAllDerivedDefinitions("DXILOpClass")) in emitDXILOpClasses()
347 static void emitDXILOpParamTypes(const RecordKeeper &Records, raw_ostream &OS) { in emitDXILOpParamTypes() argument
350 Records.getAllDerivedDefinitions("DXILOpParamType")) in emitDXILOpParamTypes()
357 static void emitDXILAttributes(const RecordKeeper &Records, raw_ostream &OS) { in emitDXILAttributes() argument
359 for (const Record *Attr : Records.getAllDerivedDefinitions("DXILAttribute")) in emitDXILAttributes()
376 static void emitDXILOpAttributes(const RecordKeeper &Records, in emitDXILOpAttributes() argument
401 Records.getAllDerivedDefinitions("DXILAttribute")) { in emitDXILOpAttributes()
464 static void emitDXILIntrinsicArgSelectTypes(const RecordKeeper &Records, in emitDXILIntrinsicArgSelectTypes() argument
467 for (const Record *Records : in emitDXILIntrinsicArgSelectTypes() local
468 Records.getAllDerivedDefinitions("IntrinArgSelectType")) { in emitDXILIntrinsicArgSelectTypes()
469 StringRef StrippedName = StripIntrinArgSelectTypePrefix(Records->getName()); in emitDXILIntrinsicArgSelectTypes()
551 static void emitDXILOperationTableDataStructs(const RecordKeeper &Records, in emitDXILOperationTableDataStructs() argument
555 Records.getAllDerivedDefinitions("DXILShaderStage"); in emitDXILOperationTableDataStructs()
591 static void emitDxilOperation(const RecordKeeper &Records, raw_ostream &OS) { in emitDxilOperation() argument
596 for (const Record *R : Records.getAllDerivedDefinitions("DXILOp")) { in emitDxilOperation()
611 emitDXILVersions(Records, OS); in emitDxilOperation()
613 emitDXILOpClasses(Records, OS); in emitDxilOperation()
614 emitDXILOpParamTypes(Records, OS); in emitDxilOperation()
615 emitDXILAttributes(Records, OS); in emitDxilOperation()
616 emitDXILOpAttributes(Records, DXILOps, OS); in emitDxilOperation()
618 emitDXILIntrinsicArgSelectTypes(Records, OS); in emitDxilOperation()
621 emitDXILOperationTableDataStructs(Records, OS); in emitDxilOperation()