Home
last modified time | relevance | path

Searched refs:Ftor (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp30 std::function<bool(const MachineFunction &)> Ftor = nullptr) in UnpackMachineBundles() argument
31 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in UnpackMachineBundles()
82 std::function<bool(const MachineFunction &)> Ftor) { in createUnpackMachineBundles() argument
83 return new UnpackMachineBundles(std::move(Ftor)); in createUnpackMachineBundles()
H A DIfConversion.cpp212 IfConverter(std::function<bool(const MachineFunction &)> Ftor = nullptr) in IfConverter() argument
213 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in IfConverter()
2372 llvm::createIfConverter(std::function<bool(const MachineFunction &)> Ftor) { in createIfConverter() argument
2373 return new IfConverter(std::move(Ftor)); in createIfConverter()
H A DRegAllocFast.cpp1902 FunctionPass *llvm::createFastRegisterAllocator(RegAllocFilterFunc Ftor, in createFastRegisterAllocator() argument
1904 return new RegAllocFast(Ftor, ClearVirtRegs); in createFastRegisterAllocator()
H A DRegAllocGreedy.cpp333 FunctionPass *llvm::createGreedyRegisterAllocator(RegAllocFilterFunc Ftor) { in createGreedyRegisterAllocator() argument
334 return new RAGreedyLegacy(Ftor); in createGreedyRegisterAllocator()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp395 std::function<bool(const Function &)> Ftor = nullptr) in CFGSimplifyPass()
396 : FunctionPass(ID), Options(Options_), PredicateFtor(std::move(Ftor)) { in CFGSimplifyPass()
440 std::function<bool(const Function &)> Ftor) { in INITIALIZE_PASS_DEPENDENCY()
441 return new CFGSimplifyPass(Options, std::move(Ftor)); in INITIALIZE_PASS_DEPENDENCY()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DPasses.h308 createIfConverter(std::function<bool(const MachineFunction &)> Ftor);
439 createUnpackMachineBundles(std::function<bool(const MachineFunction &)> Ftor);
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DScalar.h90 std::function<bool(const Function &)> Ftor = nullptr);
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARM.h51 std::function<bool(const Function &)> Ftor = nullptr);
H A DThumb2SizeReduction.cpp165 Thumb2SizeReduce(std::function<bool(const Function &)> Ftor = nullptr);
242 Thumb2SizeReduce::Thumb2SizeReduce(std::function<bool(const Function &)> Ftor) in INITIALIZE_PASS()
243 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in INITIALIZE_PASS()
1163 std::function<bool(const Function &)> Ftor) { in createThumb2SizeReductionPass() argument
1164 return new Thumb2SizeReduce(std::move(Ftor)); in createThumb2SizeReductionPass()