Home
last modified time | relevance | path

Searched refs:SelectorType (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetPassConfig.cpp987 enum class SelectorType { SelectionDAG, FastISel, GlobalISel }; in addCoreISelPasses() enum
988 SelectorType Selector; in addCoreISelPasses()
991 Selector = SelectorType::FastISel; in addCoreISelPasses()
995 Selector = SelectorType::GlobalISel; in addCoreISelPasses()
998 Selector = SelectorType::FastISel; in addCoreISelPasses()
1000 Selector = SelectorType::SelectionDAG; in addCoreISelPasses()
1003 if (Selector == SelectorType::FastISel) { in addCoreISelPasses()
1006 } else if (Selector == SelectorType::GlobalISel) { in addCoreISelPasses()
1021 if (Selector != SelectorType::GlobalISel || !isGlobalISelAbortEnabled()) in addCoreISelPasses()
1025 if (Selector == SelectorType::GlobalISel) { in addCoreISelPasses()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DCodeGenPassBuilder.h900 enum class SelectorType { SelectionDAG, FastISel, GlobalISel }; in addCoreISelPasses() enum
901 SelectorType Selector; in addCoreISelPasses()
904 Selector = SelectorType::FastISel; in addCoreISelPasses()
910 Selector = SelectorType::GlobalISel; in addCoreISelPasses()
912 Selector = SelectorType::FastISel; in addCoreISelPasses()
914 Selector = SelectorType::SelectionDAG; in addCoreISelPasses()
917 if (Selector == SelectorType::FastISel) { in addCoreISelPasses()
920 } else if (Selector == SelectorType::GlobalISel) { in addCoreISelPasses()
926 if (Selector == SelectorType::GlobalISel) { in addCoreISelPasses()