Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp29 std::function<bool(const MachineFunction &)> Ftor = nullptr) in UnpackMachineBundles() argument
30 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in UnpackMachineBundles()
81 std::function<bool(const MachineFunction &)> Ftor) { in createUnpackMachineBundles() argument
82 return new UnpackMachineBundles(std::move(Ftor)); in createUnpackMachineBundles()
H A DIfConversion.cpp206 IfConverter(std::function<bool(const MachineFunction &)> Ftor = nullptr) in IfConverter() argument
207 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in IfConverter()
2357 llvm::createIfConverter(std::function<bool(const MachineFunction &)> Ftor) { in createIfConverter() argument
2358 return new IfConverter(std::move(Ftor)); in createIfConverter()
H A DRegAllocFast.cpp1776 FunctionPass *llvm::createFastRegisterAllocator(RegClassFilterFunc Ftor, in createFastRegisterAllocator() argument
1778 return new RegAllocFast(Ftor, ClearVirtRegs); in createFastRegisterAllocator()
H A DRegAllocGreedy.cpp195 FunctionPass *llvm::createGreedyRegisterAllocator(RegClassFilterFunc Ftor) { in createGreedyRegisterAllocator() argument
196 return new RAGreedy(Ftor); in createGreedyRegisterAllocator()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp378 std::function<bool(const Function &)> Ftor = nullptr) in CFGSimplifyPass()
379 : FunctionPass(ID), Options(Options_), PredicateFtor(std::move(Ftor)) { in CFGSimplifyPass()
423 std::function<bool(const Function &)> Ftor) { in INITIALIZE_PASS_DEPENDENCY()
424 return new CFGSimplifyPass(Options, std::move(Ftor)); in INITIALIZE_PASS_DEPENDENCY()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DPasses.h293 std::function<bool(const MachineFunction &)> Ftor);
423 createUnpackMachineBundles(std::function<bool(const MachineFunction &)> Ftor);
H A DMachinePassRegistry.def257 (Ftor))
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DScalar.h86 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.cpp167 Thumb2SizeReduce(std::function<bool(const Function &)> Ftor = nullptr);
245 Thumb2SizeReduce::Thumb2SizeReduce(std::function<bool(const Function &)> Ftor) in INITIALIZE_PASS()
246 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in INITIALIZE_PASS()
1162 std::function<bool(const Function &)> Ftor) { in createThumb2SizeReductionPass() argument
1163 return new Thumb2SizeReduce(std::move(Ftor)); in createThumb2SizeReductionPass()