Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
82 std::function<bool(const MachineFunction &)> Ftor) { in createUnpackMachineBundles() argument
83 return new UnpackMachineBundles(std::move(Ftor)); in createUnpackMachineBundles()
H A DIfConversion.cpp208 IfConverter(std::function<bool(const MachineFunction &)> Ftor = nullptr) in IfConverter() argument
209 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in IfConverter()
2373 llvm::createIfConverter(std::function<bool(const MachineFunction &)> Ftor) { in createIfConverter() argument
2374 return new IfConverter(std::move(Ftor)); in createIfConverter()
H A DRegAllocFast.cpp1616 FunctionPass *llvm::createFastRegisterAllocator(RegClassFilterFunc Ftor, in createFastRegisterAllocator() argument
1618 return new RegAllocFast(Ftor, ClearVirtRegs); in createFastRegisterAllocator()
H A DRegAllocGreedy.cpp190 FunctionPass *llvm::createGreedyRegisterAllocator(RegClassFilterFunc Ftor) { in createGreedyRegisterAllocator() argument
191 return new RAGreedy(Ftor); in createGreedyRegisterAllocator()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp381 std::function<bool(const Function &)> Ftor = nullptr) in CFGSimplifyPass()
382 : FunctionPass(ID), Options(Options_), PredicateFtor(std::move(Ftor)) { in CFGSimplifyPass()
433 std::function<bool(const Function &)> Ftor) { in INITIALIZE_PASS_DEPENDENCY()
434 return new CFGSimplifyPass(Options, std::move(Ftor)); in INITIALIZE_PASS_DEPENDENCY()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DPasses.h279 std::function<bool(const MachineFunction &)> Ftor);
416 createUnpackMachineBundles(std::function<bool(const MachineFunction &)> Ftor);
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARM.h52 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()
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/
H A DScalar.h257 std::function<bool(const Function &)> Ftor = nullptr);