Home
last modified time | relevance | path

Searched refs:Mutation (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerInfo.cpp98 const std::pair<unsigned, LLT> &Mutation) { in hasNoSimpleLoops() argument
107 return Q.Types[Mutation.first] != Mutation.second; in hasNoSimpleLoops()
115 std::pair<unsigned, LLT> Mutation) { in mutationIsSane() argument
121 const unsigned TypeIdx = Mutation.first; in mutationIsSane()
123 const LLT NewTy = Mutation.second; in mutationIsSane()
193 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); in apply() local
195 << Mutation.first << ", " << Mutation.second << "\n"); in apply()
196 assert(mutationIsSane(Rule, Query, Mutation) && in apply()
198 assert(hasNoSimpleLoops(Rule, Query, Mutation) && "Simple loop detected"); in apply()
199 return {Rule.getAction(), Mutation.first, Mutation.second}; in apply()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h396 LegalizeMutation Mutation; variable
400 LegalizeMutation Mutation = nullptr)
401 : Predicate(Predicate), Action(Action), Mutation(Mutation) {} in Predicate()
412 if (Mutation) in determineMutation()
413 return Mutation(Query); in determineMutation()
474 LegalizeMutation Mutation) { in actionIf() argument
475 add({Predicate, Action, Mutation}); in actionIf()
489 LegalizeMutation Mutation) { in actionFor() argument
491 return actionIf(Action, typeInSet(typeIdx(0), Types), Mutation); in actionFor()
506 LegalizeMutation Mutation) { in actionFor() argument
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DDFAPacketizer.cpp119 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
120 Mutations.push_back(std::move(Mutation)); in addMutation()
316 std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
317 VLIWScheduler->addMutation(std::move(Mutation)); in addMutation()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DDFAPacketizer.h187 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation);
H A DMachineScheduler.h325 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
326 if (Mutation) in addMutation()
327 Mutations.push_back(std::move(Mutation)); in addMutation()
H A DMachinePipeliner.h283 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
284 Mutations.push_back(std::move(Mutation)); in addMutation()
/openbsd-src/gnu/llvm/llvm/docs/
H A DHowToUpdateDebugInfo.rst234 Mutation testing for IR-level transformations
342 :ref:`Mutation testing for MIR-level transformations<MIRDebugify>`.
414 Mutation testing for MIR-level transformations
418 :ref:`Mutation testing for IR-level transformations<IRDebugify>` can be used
/openbsd-src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl07.rst303 Adjusting Existing Variables for Mutation