Searched refs:Mutation (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.cpp | 96 const std::pair<unsigned, LLT> &Mutation) { in hasNoSimpleLoops() argument 106 return Q.Types[Mutation.first] != Mutation.second; in hasNoSimpleLoops() 114 std::pair<unsigned, LLT> Mutation) { in mutationIsSane() argument 121 if (!Mutation.second.isValid()) in mutationIsSane() 124 const unsigned TypeIdx = Mutation.first; in mutationIsSane() 126 const LLT NewTy = Mutation.second; in mutationIsSane() 196 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); in apply() local 198 << Mutation.first << ", " << Mutation.second << "\n"); in apply() 199 assert(mutationIsSane(Rule, Query, Mutation) && in apply() 201 assert(hasNoSimpleLoops(Rule, Query, Mutation) && "Simple loop detected"); in apply() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.h | 402 LegalizeMutation Mutation; variable 406 LegalizeMutation Mutation = nullptr) 407 : Predicate(Predicate), Action(Action), Mutation(Mutation) {} in Predicate() 418 if (Mutation) in determineMutation() 419 return Mutation(Query); in determineMutation() 480 LegalizeMutation Mutation) { in actionIf() argument 481 add({Predicate, Action, Mutation}); in actionIf() 515 Mutation); in actionFor() 683 LegalizeMutation Mutation) { in lowerIf() argument 783 LegalizeMutation Mutation) { in narrowScalarFor() argument [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | DFAPacketizer.h | 65 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 66 Mutations.push_back(std::move(Mutation)); in addMutation() 213 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation);
|
| H A D | MachineScheduler.h | 328 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 329 if (Mutation) in addMutation() 330 Mutations.push_back(std::move(Mutation)); in addMutation()
|
| H A D | MachinePipeliner.h | 284 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 285 Mutations.push_back(std::move(Mutation)); in addMutation()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | DFAPacketizer.cpp | 286 std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument 287 VLIWScheduler->addMutation(std::move(Mutation)); in addMutation()
|