Searched refs:Mutation (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.h | 365 LegalizeMutation Mutation; variable 369 LegalizeMutation Mutation = nullptr) 370 : Predicate(Predicate), Action(Action), Mutation(Mutation) {} in Predicate() 381 if (Mutation) in determineMutation() 382 return Mutation(Query); in determineMutation() 453 LegalizeMutation Mutation) { in actionIf() argument 454 add({Predicate, Action, Mutation}); in actionIf() 488 Mutation); in actionFor() 646 LegalizeMutation Mutation) { in lowerIf() argument 746 LegalizeMutation Mutation) { in narrowScalarFor() argument [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.cpp | 101 const std::pair<unsigned, LLT> &Mutation) { in hasNoSimpleLoops() argument 110 return Q.Types[Mutation.first] != Mutation.second; in hasNoSimpleLoops() 118 std::pair<unsigned, LLT> Mutation) { in mutationIsSane() argument 124 const unsigned TypeIdx = Mutation.first; in mutationIsSane() 126 const LLT NewTy = Mutation.second; in mutationIsSane() 195 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); in apply() local 197 << Mutation.first << ", " << Mutation.second << "\n"); in apply() 198 assert(mutationIsSane(Rule, Query, Mutation) && in apply() 200 assert(hasNoSimpleLoops(Rule, Query, Mutation) && "Simple loop detected"); in apply() 201 return {Rule.getAction(), Mutation.first, Mutation.second}; in apply()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | DFAPacketizer.cpp | 119 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | DFAPacketizer.h | 188 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation);
|
| H A D | MachineScheduler.h | 318 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 319 if (Mutation) in addMutation() 320 Mutations.push_back(std::move(Mutation)); in addMutation()
|
| H A D | MachinePipeliner.h | 272 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 273 Mutations.push_back(std::move(Mutation)); in addMutation()
|