Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp28 std::function<bool(const MachineFunction &)> Ftor = nullptr) in UnpackMachineBundles() argument
29 : 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.cpp210 IfConverter(std::function<bool(const MachineFunction &)> Ftor = nullptr) in IfConverter() argument
211 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in IfConverter()
2366 llvm::createIfConverter(std::function<bool(const MachineFunction &)> Ftor) { in createIfConverter() argument
2367 return new IfConverter(std::move(Ftor)); in createIfConverter()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp333 std::function<bool(const Function &)> Ftor = nullptr) in CFGSimplifyPass()
334 : FunctionPass(ID), Options(Options_), PredicateFtor(std::move(Ftor)) { in CFGSimplifyPass()
385 std::function<bool(const Function &)> Ftor) { in INITIALIZE_PASS_DEPENDENCY()
386 return new CFGSimplifyPass(Options, std::move(Ftor)); in INITIALIZE_PASS_DEPENDENCY()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DPasses.h257 std::function<bool(const MachineFunction &)> Ftor);
377 createUnpackMachineBundles(std::function<bool(const MachineFunction &)> Ftor);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARM.h54 std::function<bool(const Function &)> Ftor = nullptr);
H A DThumb2SizeReduction.cpp166 Thumb2SizeReduce(std::function<bool(const Function &)> Ftor = nullptr);
244 Thumb2SizeReduce::Thumb2SizeReduce(std::function<bool(const Function &)> Ftor) in INITIALIZE_PASS()
245 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in INITIALIZE_PASS()
1159 std::function<bool(const Function &)> Ftor) { in createThumb2SizeReductionPass() argument
1160 return new Thumb2SizeReduce(std::move(Ftor)); in createThumb2SizeReductionPass()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/
H A DScalar.h263 std::function<bool(const Function &)> Ftor = nullptr);