Searched refs:Mutation (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h341 LegalizeMutation Mutation;
345 LegalizeMutation Mutation = nullptr)
346 : Predicate(Predicate), Action(Action), Mutation(Mutation) {}
357 if (Mutation)
358 return Mutation(Query);
429 LegalizeMutation Mutation) {
430 add({Predicate, Action, Mutation});
444 LegalizeMutation Mutation) {
446 return actionIf(Action, typeInSet(typeIdx(0), Types), Mutation);
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DDFAPacketizer.cpp118 /// DefaultVLIWScheduler takes ownership of the Mutation object.
119 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { argument
120 Mutations.push_back(std::move(Mutation));
316 std::unique_ptr<ScheduleDAGMutation> Mutation) {
317 VLIWScheduler->addMutation(std::move(Mutation));
315 addMutation( std::unique_ptr<ScheduleDAGMutation> Mutation) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerInfo.cpp106 const std::pair<unsigned, LLT> &Mutation) {
115 return Q.Types[Mutation.first] != Mutation.second;
123 std::pair<unsigned, LLT> Mutation) {
129 const unsigned TypeIdx = Mutation.first;
131 const LLT NewTy = Mutation.second;
200 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); local
202 << Mutation.first << ", " << Mutation.second << "\n");
203 assert(mutationIsSane(Rule, Query, Mutation)
105 hasNoSimpleLoops(const LegalizeRule &Rule, const LegalityQuery &Q, const std::pair<unsigned, LLT> &Mutation) argument
121 mutationIsSane(const LegalizeRule &Rule, const LegalityQuery &Q, std::pair<unsigned, LLT> Mutation) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DDFAPacketizer.h188 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation);
H A DMachineScheduler.h317 /// ScheduleDAGMI takes ownership of the Mutation object.
318 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { argument
319 if (Mutation)
320 Mutations.push_back(std::move(Mutation));
H A DMachinePipeliner.h272 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { argument
273 Mutations.push_back(std::move(Mutation));

Completed in 194 milliseconds