Home
last modified time | relevance | path

Searched defs:RK (Results 1 – 25 of 55) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTableGenBackendSkeleton.cpp36 SkeletonEmitter(RecordKeeper & RK) SkeletonEmitter() argument
59 EmitSkeleton(RecordKeeper & RK,raw_ostream & OS) EmitSkeleton() argument
H A DRecord.cpp120 BitRecTy *BitRecTy::get(RecordKeeper &RK) { in get()
132 BitsRecTy *BitsRecTy::get(RecordKeeper &RK, unsigned Sz) { in get()
153 IntRecTy *IntRecTy::get(RecordKeeper &RK) { in get()
162 StringRecTy *StringRecTy::get(RecordKeeper &RK) { in get()
191 DagRecTy *DagRecTy::get(RecordKeeper &RK) { in get()
206 RecordRecTy *RecordRecTy::get(RecordKeeper &RK, in get()
358 UnsetInit *UnsetInit::get(RecordKeeper &RK) { in get()
389 RecordKeeper &RK = Value->getRecordKeeper(); in get() local
408 BitInit *BitInit::get(RecordKeeper &RK, bool V) { in get()
436 BitsInit *BitsInit::get(RecordKeeper &RK, ArrayRef<Init *> Range) { in get()
[all …]
H A DDetailedRecordsBackend.cpp42 DetailedRecordsEmitter(RecordKeeper &RK) : Records(RK) {} in DetailedRecordsEmitter()
198 void EmitDetailedRecords(RecordKeeper &RK, raw_ostream &OS) { in EmitDetailedRecords()
H A DJSONBackend.cpp189 void EmitJSON(RecordKeeper &RK, raw_ostream &OS) { JSONEmitter(RK).run(OS); } in EmitJSON()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAssumeBundleQueries.cpp146 RetainedKnowledge RK = getKnowledgeFromUse() local
168 if (RetainedKnowledge RK = getKnowledgeFromBundle( getKnowledgeForValue() local
185 if (RetainedKnowledge RK = getKnowledgeForValue() local
[all...]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DRISCVTargetDefEmitter.cpp166 static void emitRISCVProcs(RecordKeeper &RK, raw_ostream &OS) { in emitRISCVProcs()
213 static void emitRISCVExtensionBitmask(RecordKeeper &RK, raw_ostream &OS) { in emitRISCVExtensionBitmask()
248 static void EmitRISCVTargetDef(RecordKeeper &RK, raw_ostream &OS) { in EmitRISCVTargetDef()
H A DIntrinsicEmitter.cpp394 uint32_t RK = R->ME.toIntValue(); in compareFnAttributes() local
712 static void EmitIntrinsicEnums(RecordKeeper &RK, raw_ostream &OS) { in EmitIntrinsicEnums()
719 static void EmitIntrinsicImpl(RecordKeeper &RK, raw_ostream &OS) { in EmitIntrinsicImpl()
H A DWebAssemblyDisassemblerEmitter.cpp40 RecordKeeper &RK = Inst.getRecordKeeper(); in emitWebAssemblyDisassemblerTables() local
H A DInstrDocsEmitter.cpp64 static void EmitInstrDocs(RecordKeeper &RK, raw_ostream &OS) { in EmitInstrDocs()
H A DExegesisEmitter.cpp93 ExegesisEmitter(RecordKeeper & RK) ExegesisEmitter() argument
H A DARMTargetDefEmitter.cpp54 static void EmitARMTargetDef(RecordKeeper &RK, raw_ostream &OS) { in EmitARMTargetDef()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangDataCollectorsEmitter.cpp7 void clang::EmitClangDataCollectors(RecordKeeper &RK, raw_ostream &OS) { in EmitClangDataCollectors()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DAssumeBundleBuilder.cpp70 RetainedKnowledge canonicalizedKnowledge(RetainedKnowledge RK, in canonicalizedKnowledge()
313 for (const RetainedKnowledge &RK : Knowledge) in buildAssumeFromKnowledge() local
319 RetainedKnowledge RK, in simplifyRetainedKnowledge()
422 RetainedKnowledge RK = in dropRedundantKnowledge() local
482 RetainedKnowledge RK = in mergeRange() local
H A DLoopUtils.cpp921 constexpr Intrinsic::ID llvm::getReductionIntrinsicID(RecurKind RK) { in getReductionIntrinsicID()
1011 Intrinsic::ID llvm::getMinMaxReductionIntrinsicOp(RecurKind RK) { in getMinMaxReductionIntrinsicOp()
1053 CmpInst::Predicate llvm::getMinMaxReductionPredicate(RecurKind RK) { in getMinMaxReductionPredicate()
1075 Value *llvm::createMinMaxOp(IRBuilderBase &Builder, RecurKind RK, Value *Left, in createMinMaxOp()
1274 RecurKind RK = Desc.getRecurrenceKind(); in createTargetReduction() local
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DTableGenBackend.h43 run(RecordKeeper & RK,raw_ostream & OS) run() argument
H A DRecord.h75 RecordKeeper &RK; variable
80 RecTy(RecTyKind K, RecordKeeper &RK) : Kind(K), RK(RK) {} in RecTy()
113 BitRecTy(RecordKeeper &RK) : RecTy(BitRecTyKind, RK) {} in BitRecTy()
131 explicit BitsRecTy(RecordKeeper &RK, unsigned Sz) in BitsRecTy()
152 IntRecTy(RecordKeeper &RK) : RecTy(IntRecTyKind, RK) {} in IntRecTy()
170 StringRecTy(RecordKeeper &RK) : RecTy(StringRecTyKind, RK) {} in StringRecTy()
213 DagRecTy(RecordKeeper &RK) : RecTy(DagRecTyKind, RK) {} in DagRecTy()
236 explicit RecordRecTy(RecordKeeper &RK, unsigned Num) in RecordRecTy()
451 RecordKeeper &RK; variable
453 UnsetInit(RecordKeeper &RK) : Init(IK_UnsetInit), RK(RK) {} in UnsetInit()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Frontend/HLSL/
H A DHLSLResource.cpp58 FrontendResource::FrontendResource(GlobalVariable *GV, ResourceKind RK, in FrontendResource()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp185 llvm::hlsl::ResourceKind RK = Buf.IsCBuffer in finishCodeGen() local
199 llvm::hlsl::ResourceKind RK, in addBufferResourceAnnotation()
289 llvm::hlsl::ResourceKind RK = HLSLResAttr->getResourceKind(); in annotateHLSLResource() local
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenHwModes.cpp67 CodeGenHwModes::CodeGenHwModes(RecordKeeper &RK) : Records(RK) { in CodeGenHwModes()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandReductions.cpp61 RecurKind RK = getMinMaxReductionRecurKind(ID); in expandReductions() local
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h447 TypeRecordKind RK = static_cast<TypeRecordKind>(Record.Kind); visitKnownMember() local
458 TypeRecordKind RK = static_cast<TypeRecordKind>(Record.kind()); visitKnownRecord() local
/freebsd/crypto/openssl/crypto/aria/
H A Daria.c345 #define ARIA_ADD_ROUND_KEY(RK, T0, T1, T2, T3) \ argument
442 #define _ARIA_GSRK(RK, X, Y, Q, R) \ argument
462 #define ARIA_GSRK(RK, X, Y, N) _ARIA_GSRK(RK, X, Y, 4 - ((N) / 32), (N) % 32) argument
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DCVTypeVisitor.cpp26 TypeRecordKind RK = static_cast<TypeRecordKind>(Record.kind()); in visitKnownRecord() local
36 TypeRecordKind RK = static_cast<TypeRecordKind>(Record.Kind); in visitKnownMember() local
H A DCVSymbolVisitor.cpp27 SymbolRecordKind RK = static_cast<SymbolRecordKind>(Record.kind()); in visitKnownRecord() local
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCheckExprLifetime.cpp494 Expr *Init, ReferenceKind RK, in visitLocalsRetainedByReferenceBinding()
675 [&](IndirectLocalPath &Path, Local L, ReferenceKind RK) -> bool { in visitLocalsRetainedByInitializer()
1005 ReferenceKind RK) -> bool { in checkExprLifetimeImpl()

123