Home
last modified time | relevance | path

Searched refs:RK (Results 1 – 25 of 77) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DAssumeBundleBuilder.cpp74 return RK; in canonicalizedKnowledge()
76 RK.WasOn = getUnderlyingObject(RK.WasOn); in canonicalizedKnowledge()
77 return RK; in canonicalizedKnowledge()
85 return RK; in canonicalizedKnowledge()
94 RK.ArgValue = RK.ArgValue + Offset; in canonicalizedKnowledge()
98 return RK; in canonicalizedKnowledge()
122 RK.WasOn, {RK.AttrKind}, AC, in tryToPreserveWithoutAddingAssume()
145 if (!RK) in isKnowledgeWorthPreserving()
173 RK = canonicalizedKnowledge(RK, M->getDataLayout()); in addKnowledge()
180 MapKey Key{RK.WasOn, RK.AttrKind}; in addKnowledge()
[all …]
H A DMemoryOpRemark.cpp114 StringRef MemoryOpRemark::remarkName(RemarkKind RK) const { in remarkName()
115 switch (RK) { in remarkName()
402 StringRef AutoInitRemark::remarkName(RemarkKind RK) const { in remarkName()
403 switch (RK) { in remarkName()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAssumeBundleQueries.cpp149 RetainedKnowledge RK = in getKnowledgeFromUse() local
151 if (llvm::is_contained(AttrKinds, RK.AttrKind)) in getKnowledgeFromUse()
152 return RK; in getKnowledgeFromUse()
169 if (RetainedKnowledge RK = getKnowledgeFromBundle( in getKnowledgeForValue() local
171 if (V != RK.WasOn) in getKnowledgeForValue()
173 if (is_contained(AttrKinds, RK.AttrKind) && in getKnowledgeForValue()
176 return RK; in getKnowledgeForValue()
186 if (RetainedKnowledge RK = in getKnowledgeForValue() local
188 if (is_contained(AttrKinds, RK.AttrKind) && in getKnowledgeForValue()
189 Filter(RK, cast<Instruction>(U.getUser()), Bundle)) { in getKnowledgeForValue()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp54 RecordKeeperImpl(RecordKeeper &RK) in RecordKeeperImpl()
55 : SharedBitRecTy(RK), SharedIntRecTy(RK), SharedStringRecTy(RK), in RecordKeeperImpl()
56 SharedDagRecTy(RK), AnyRecord(RK, 0), TheUnsetInit(RK), in RecordKeeperImpl()
121 return &RK.getImpl().SharedBitRecTy; in get()
154 return &RK.getImpl().SharedIntRecTy; in get()
359 return &RK.getImpl().TheUnsetInit; in get()
409 return V ? &RK.getImpl().TrueBitInit : &RK.getImpl().FalseBitInit; in get()
556 I = new (RK.getImpl().Allocator) IntInit(RK, V); in get()
612 return new (RK.getImpl().Allocator) AnonymousNameInit(RK, V); in get()
1054 return StringInit::get(RK, ""); in interleaveIntList()
[all …]
H A DTableGenBackendSkeleton.cpp35 SkeletonEmitter(RecordKeeper &RK) : Records(RK) {} in SkeletonEmitter() argument
58 static void EmitSkeleton(RecordKeeper &RK, raw_ostream &OS) { in EmitSkeleton() argument
60 SkeletonEmitter(RK).run(OS); in EmitSkeleton()
H A DDetailedRecordsBackend.cpp42 DetailedRecordsEmitter(RecordKeeper &RK) : Records(RK) {} in DetailedRecordsEmitter() argument
198 void EmitDetailedRecords(RecordKeeper &RK, raw_ostream &OS) { in EmitDetailedRecords() argument
200 DetailedRecordsEmitter(RK).run(OS); in EmitDetailedRecords()
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h75 RecordKeeper &RK; variable
80 RecTy(RecTyKind K, RecordKeeper &RK) : Kind(K), RK(RK) {} in RecTy() argument
113 BitRecTy(RecordKeeper &RK) : RecTy(BitRecTyKind, RK) {} in BitRecTy() argument
120 static BitRecTy *get(RecordKeeper &RK);
152 IntRecTy(RecordKeeper &RK) : RecTy(IntRecTyKind, RK) {} in IntRecTy() argument
159 static IntRecTy *get(RecordKeeper &RK);
170 StringRecTy(RecordKeeper &RK) : RecTy(StringRecTyKind, RK) {} in StringRecTy() argument
213 DagRecTy(RecordKeeper &RK) : RecTy(DagRecTyKind, RK) {} in DagRecTy() argument
220 static DagRecTy *get(RecordKeeper &RK);
451 RecordKeeper &RK; variable
[all …]
H A DTableGenBackend.h44 static void run(RecordKeeper &RK, raw_ostream &OS) { EmitterC(RK).run(OS); } in run() argument
/freebsd/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBTableGenBackends.h32 void EmitOptionDefs(RecordKeeper &RK, raw_ostream &OS);
33 void EmitPropertyDefs(RecordKeeper &RK, raw_ostream &OS);
34 void EmitPropertyEnumDefs(RecordKeeper &RK, raw_ostream &OS);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandReductions.cpp109 RecurKind RK = getRK(ID); in expandReductions() local
124 Rdx = getOrderedReduction(Builder, Acc, Vec, getOpcode(ID), RK); in expandReductions()
130 Rdx = getShuffleReduction(Builder, Vec, getOpcode(ID), RK); in expandReductions()
163 Rdx = getShuffleReduction(Builder, Vec, getOpcode(ID), RK); in expandReductions()
178 Rdx = getShuffleReduction(Builder, Vec, getOpcode(ID), RK); in expandReductions()
191 Rdx = getShuffleReduction(Builder, Vec, getOpcode(ID), RK); in expandReductions()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DRISCVTargetDefEmitter.cpp50 static void EmitRISCVTargetDef(RecordKeeper &RK, raw_ostream &OS) { in EmitRISCVTargetDef() argument
56 for (const Record *Rec : RK.getAllDerivedDefinitions("RISCVProcessorModel")) { in EmitRISCVTargetDef()
80 RK.getAllDerivedDefinitions("RISCVTuneProcessorModel")) { in EmitRISCVTargetDef()
H A DTableGenBackends.h66 void EmitMapTable(RecordKeeper &RK, raw_ostream &OS);
69 void EmitDecoder(RecordKeeper &RK, raw_ostream &OS,
H A DExegesisEmitter.cpp33 ExegesisEmitter(RecordKeeper &RK);
98 ExegesisEmitter::ExegesisEmitter(RecordKeeper &RK) in ExegesisEmitter() argument
99 : Records(RK), PfmCounterNameTable(collectPfmCounters(RK)) { in ExegesisEmitter()
H A DIntrinsicEmitter.cpp395 uint32_t RK = R->ME.toIntValue(); in compareFnAttributes() local
396 if (LK != RK) return (LK > RK); in compareFnAttributes()
712 static void EmitIntrinsicEnums(RecordKeeper &RK, raw_ostream &OS) { in EmitIntrinsicEnums() argument
713 IntrinsicEmitter(RK).run(OS, /*Enums=*/true); in EmitIntrinsicEnums()
719 static void EmitIntrinsicImpl(RecordKeeper &RK, raw_ostream &OS) { in EmitIntrinsicImpl() argument
720 IntrinsicEmitter(RK).run(OS, /*Enums=*/false); in EmitIntrinsicImpl()
H A DCodeGenHwModes.cpp67 CodeGenHwModes::CodeGenHwModes(RecordKeeper &RK) : Records(RK) { in CodeGenHwModes() argument
H A DGlobalISelEmitter.cpp308 explicit GlobalISelEmitter(RecordKeeper &RK);
329 const RecordKeeper &RK; member in __anon7391ed1b0111::GlobalISelEmitter
528 GlobalISelEmitter::GlobalISelEmitter(RecordKeeper &RK) in GlobalISelEmitter() argument
529 : GlobalISelMatchTableExecutorEmitter(), RK(RK), CGP(RK), in GlobalISelEmitter()
721 &Target.getInstruction(RK.getDef("G_CONSTANT"))); in createAndImportSelDAGMatcher()
1130 Target.getInstruction(RK.getDef("G_BUILD_VECTOR")); in importChildMatcher()
1333 &Target.getInstruction(RK.getDef("COPY"))); in createAndImportInstructionRenderer()
1491 DstI = &Target.getInstruction(RK.getDef("COPY")); in createInstructionRenderer()
1961 auto &DstI = Target.getInstruction(RK.getDef("COPY")); in runOnPattern()
2393 AllPatFrags = RK.getAllDerivedDefinitions("PatFrags"); in run()
[all …]
H A DWebAssemblyDisassemblerEmitter.cpp40 RecordKeeper &RK = Inst.getRecordKeeper(); in emitWebAssemblyDisassemblerTables() local
42 cast<IntInit>(Inst.convertInitializerTo(IntRecTy::get(RK))) in emitWebAssemblyDisassemblerTables()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangDataCollectorsEmitter.cpp7 void clang::EmitClangDataCollectors(RecordKeeper &RK, raw_ostream &OS) { in EmitClangDataCollectors() argument
8 const auto &Defs = RK.getClasses(); in EmitClangDataCollectors()
/freebsd/crypto/openssl/crypto/aria/
H A Daria.c345 #define ARIA_ADD_ROUND_KEY(RK, T0, T1, T2, T3) \ argument
347 (T0) ^= (RK)->u[0]; \
348 (T1) ^= (RK)->u[1]; \
349 (T2) ^= (RK)->u[2]; \
350 (T3) ^= (RK)->u[3]; \
442 #define _ARIA_GSRK(RK, X, Y, Q, R) \ argument
444 (RK)->u[0] = \
448 (RK)->u[1] = \
452 (RK)->u[2] = \
456 (RK)->u[3] = \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Frontend/HLSL/
H A DHLSLResource.cpp54 FrontendResource::FrontendResource(GlobalVariable *GV, ResourceKind RK, in FrontendResource() argument
61 ConstantAsMetadata::get(B.getInt32(static_cast<int>(RK))), in FrontendResource()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DCVTypeVisitor.cpp26 TypeRecordKind RK = static_cast<TypeRecordKind>(Record.kind()); in visitKnownRecord() local
27 T KnownRecord(RK); in visitKnownRecord()
36 TypeRecordKind RK = static_cast<TypeRecordKind>(Record.Kind); in visitKnownMember() local
37 T KnownRecord(RK); in visitKnownMember()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp182 llvm::hlsl::ResourceKind RK = Buf.IsCBuffer in finishCodeGen() local
185 addBufferResourceAnnotation(GV, RC, RK, /*IsROV=*/false, in finishCodeGen()
196 llvm::hlsl::ResourceKind RK, in addBufferResourceAnnotation() argument
221 GV, RK, ET, IsROV, Binding.Reg.value_or(UINT_MAX), Binding.Space); in addBufferResourceAnnotation()
285 llvm::hlsl::ResourceKind RK = Attr->getResourceKind(); in annotateHLSLResource() local
290 addBufferResourceAnnotation(GV, RC, RK, IsROV, ET, Binding); in annotateHLSLResource()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DMemoryOpRemark.h56 virtual StringRef remarkName(RemarkKind RK) const;
107 StringRef remarkName(RemarkKind RK) const override;
H A DLoopUtils.h361 Intrinsic::ID getMinMaxReductionIntrinsicOp(RecurKind RK);
364 CmpInst::Predicate getMinMaxReductionPredicate(RecurKind RK);
372 Value *createAnyOfOp(IRBuilderBase &Builder, Value *StartVal, RecurKind RK,
377 Value *createMinMaxOp(IRBuilderBase &Builder, RecurKind RK, Value *Left,
/freebsd/sys/contrib/device-tree/Bindings/misc/
H A Datmel-ssc.txt23 clock can get from TK pin, and also can get from RK pin. So, add
25 - By default the clock is from TK pin, if the clock from RK pin, this

1234