/external/llvm/lib/Transforms/Scalar/ |
D | SimplifyCFGPass.cpp | 208 std::function<bool(const Function &)> Ftor = nullptr) in CFGSimplifyPass() 209 : FunctionPass(ID), PredicateFtor(std::move(Ftor)) { in CFGSimplifyPass() 243 std::function<bool(const Function &)> Ftor) { in INITIALIZE_PASS_DEPENDENCY() 244 return new CFGSimplifyPass(Threshold, std::move(Ftor)); in INITIALIZE_PASS_DEPENDENCY()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SimplifyCFGPass.cpp | 238 std::function<bool(const Function &)> Ftor = nullptr) in CFGSimplifyPass() 239 : FunctionPass(ID), PredicateFtor(std::move(Ftor)) { in CFGSimplifyPass() 293 std::function<bool(const Function &)> Ftor) { in INITIALIZE_PASS_DEPENDENCY() 295 KeepLoops, SinkCommon, std::move(Ftor)); in INITIALIZE_PASS_DEPENDENCY()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | SimplifyCFGPass.cpp | 267 std::function<bool(const Function &)> Ftor = nullptr) in CFGSimplifyPass() 268 : FunctionPass(ID), Options(Options_), PredicateFtor(std::move(Ftor)) { in CFGSimplifyPass() 311 std::function<bool(const Function &)> Ftor) { in INITIALIZE_PASS_DEPENDENCY() 312 return new CFGSimplifyPass(Options, std::move(Ftor)); in INITIALIZE_PASS_DEPENDENCY()
|
/external/llvm/lib/Analysis/ |
D | ModuleSummaryAnalysis.cpp | 120 std::function<BlockFrequencyInfo *(const Function &F)> Ftor) in ModuleSummaryIndexBuilder() argument 136 if (Ftor) in ModuleSummaryIndexBuilder() 137 BFI = Ftor(F); in ModuleSummaryIndexBuilder()
|
/external/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 27 UnpackMachineBundles(std::function<bool(const Function &)> Ftor = nullptr) in UnpackMachineBundles() argument 28 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in UnpackMachineBundles() 81 llvm::createUnpackMachineBundles(std::function<bool(const Function &)> Ftor) { in createUnpackMachineBundles() argument 82 return new UnpackMachineBundles(std::move(Ftor)); in createUnpackMachineBundles()
|
D | IfConversion.cpp | 179 IfConverter(std::function<bool(const Function &)> Ftor = nullptr) in IfConverter() argument 180 : MachineFunctionPass(ID), FnNum(-1), PredicateFtor(std::move(Ftor)) { in IfConverter() 1842 llvm::createIfConverter(std::function<bool(const Function &)> Ftor) { in createIfConverter() argument 1843 return new IfConverter(std::move(Ftor)); in createIfConverter()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 28 std::function<bool(const MachineFunction &)> Ftor = nullptr) in UnpackMachineBundles() argument 29 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in UnpackMachineBundles() 83 std::function<bool(const MachineFunction &)> Ftor) { in createUnpackMachineBundles() argument 84 return new UnpackMachineBundles(std::move(Ftor)); in createUnpackMachineBundles()
|
D | IfConversion.cpp | 209 IfConverter(std::function<bool(const MachineFunction &)> Ftor = nullptr) in IfConverter() argument 210 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in IfConverter() 2365 llvm::createIfConverter(std::function<bool(const MachineFunction &)> Ftor) { in createIfConverter() argument 2366 return new IfConverter(std::move(Ftor)); in createIfConverter()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 28 std::function<bool(const MachineFunction &)> Ftor = nullptr) in UnpackMachineBundles() argument 29 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in UnpackMachineBundles() 83 std::function<bool(const MachineFunction &)> Ftor) { in createUnpackMachineBundles() argument 84 return new UnpackMachineBundles(std::move(Ftor)); in createUnpackMachineBundles()
|
D | IfConversion.cpp | 210 IfConverter(std::function<bool(const MachineFunction &)> Ftor = nullptr) in IfConverter() argument 211 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in IfConverter() 2367 llvm::createIfConverter(std::function<bool(const MachineFunction &)> Ftor) { in createIfConverter() argument 2368 return new IfConverter(std::move(Ftor)); in createIfConverter()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | Passes.h | 245 std::function<bool(const MachineFunction &)> Ftor); 365 createUnpackMachineBundles(std::function<bool(const MachineFunction &)> Ftor);
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | Passes.h | 253 std::function<bool(const MachineFunction &)> Ftor); 373 createUnpackMachineBundles(std::function<bool(const MachineFunction &)> Ftor);
|
/external/llvm/include/llvm/CodeGen/ |
D | Passes.h | 205 FunctionPass *createIfConverter(std::function<bool(const Function &)> Ftor); 316 createUnpackMachineBundles(std::function<bool(const Function &)> Ftor);
|
/external/llvm/lib/Target/ARM/ |
D | ARM.h | 43 std::function<bool(const Function &)> Ftor = nullptr);
|
D | Thumb2SizeReduction.cpp | 142 Thumb2SizeReduce(std::function<bool(const Function &)> Ftor); 218 Thumb2SizeReduce::Thumb2SizeReduce(std::function<bool(const Function &)> Ftor) in Thumb2SizeReduce() argument 219 : MachineFunctionPass(ID), PredicateFtor(std::move(Ftor)) { in Thumb2SizeReduce() 1100 std::function<bool(const Function &)> Ftor) { in createThumb2SizeReductionPass() argument 1101 return new Thumb2SizeReduce(std::move(Ftor)); in createThumb2SizeReductionPass()
|
/external/llvm/include/llvm/Analysis/ |
D | ModuleSummaryAnalysis.h | 41 std::function<BlockFrequencyInfo *(const Function &F)> Ftor = nullptr);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARM.h | 52 std::function<bool(const Function &)> Ftor = nullptr);
|
D | Thumb2SizeReduction.cpp | 166 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() 1149 std::function<bool(const Function &)> Ftor) { in createThumb2SizeReductionPass() argument 1150 return new Thumb2SizeReduce(std::move(Ftor)); in createThumb2SizeReductionPass()
|
/external/llvm-project/llvm/lib/Target/ARM/ |
D | ARM.h | 53 std::function<bool(const Function &)> Ftor = nullptr);
|
D | Thumb2SizeReduction.cpp | 166 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()
|
/external/llvm/include/llvm/Transforms/ |
D | Scalar.h | 246 int Threshold = -1, std::function<bool(const Function &)> Ftor = nullptr);
|
/external/llvm-project/llvm/include/llvm/Transforms/ |
D | Scalar.h | 262 std::function<bool(const Function &)> Ftor = nullptr);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/ |
D | Scalar.h | 265 std::function<bool(const Function &)> Ftor = nullptr);
|