| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsPostLegalizerCombiner.cpp | 92 MipsPostLegalizerCombiner(bool IsOptNone = false); 101 bool IsOptNone; member in __anonb00d2a510111::MipsPostLegalizerCombiner 112 if (!IsOptNone) { in getAnalysisUsage() 119 MipsPostLegalizerCombiner::MipsPostLegalizerCombiner(bool IsOptNone) in MipsPostLegalizerCombiner() argument 120 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in MipsPostLegalizerCombiner() 142 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction() 161 FunctionPass *createMipsPostLegalizeCombiner(bool IsOptNone) { in createMipsPostLegalizeCombiner() argument 162 return new MipsPostLegalizerCombiner(IsOptNone); in createMipsPostLegalizeCombiner()
|
| H A D | Mips.h | 41 FunctionPass *createMipsPostLegalizeCombiner(bool IsOptNone);
|
| H A D | MipsTargetMachine.cpp | 350 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local 351 addPass(createMipsPostLegalizeCombiner(IsOptNone)); in addPreRegBankSelect()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPreLegalizerCombiner.cpp | 222 AMDGPUPreLegalizerCombiner(bool IsOptNone = false); 233 bool IsOptNone; member in __anon9fd51dbc0111::AMDGPUPreLegalizerCombiner 244 if (!IsOptNone) { in getAnalysisUsage() 254 AMDGPUPreLegalizerCombiner::AMDGPUPreLegalizerCombiner(bool IsOptNone) in AMDGPUPreLegalizerCombiner() argument 255 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPUPreLegalizerCombiner() 279 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction() 298 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone) { in createAMDGPUPreLegalizeCombiner() argument 299 return new AMDGPUPreLegalizerCombiner(IsOptNone); in createAMDGPUPreLegalizeCombiner()
|
| H A D | AMDGPURegBankCombiner.cpp | 405 AMDGPURegBankCombiner(bool IsOptNone = false); 414 bool IsOptNone; member in __anond42989d00111::AMDGPURegBankCombiner 425 if (!IsOptNone) { in getAnalysisUsage() 432 AMDGPURegBankCombiner::AMDGPURegBankCombiner(bool IsOptNone) in AMDGPURegBankCombiner() argument 433 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPURegBankCombiner() 454 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction() 474 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone) { in createAMDGPURegBankCombiner() argument 475 return new AMDGPURegBankCombiner(IsOptNone); in createAMDGPURegBankCombiner()
|
| H A D | AMDGPUPostLegalizerCombiner.cpp | 471 AMDGPUPostLegalizerCombiner(bool IsOptNone = false); 482 bool IsOptNone; member in __anoned14803b0111::AMDGPUPostLegalizerCombiner 493 if (!IsOptNone) { in getAnalysisUsage() 500 AMDGPUPostLegalizerCombiner::AMDGPUPostLegalizerCombiner(bool IsOptNone) in AMDGPUPostLegalizerCombiner() argument 501 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPUPostLegalizerCombiner() 523 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction() 544 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone) { in createAMDGPUPostLegalizeCombiner() argument 545 return new AMDGPUPostLegalizerCombiner(IsOptNone); in createAMDGPUPostLegalizeCombiner()
|
| H A D | AMDGPU.h | 25 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone); 27 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone); 28 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone);
|
| H A D | AMDGPUTargetMachine.cpp | 1256 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreLegalizeMachineIR() local 1257 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone)); in addPreLegalizeMachineIR() 1267 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local 1268 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone)); in addPreRegBankSelect() 1278 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreGlobalInstructionSelect() local 1279 addPass(createAMDGPURegBankCombiner(IsOptNone)); in addPreGlobalInstructionSelect()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64PostLegalizerCombiner.cpp | 432 AArch64PostLegalizerCombiner(bool IsOptNone = false); 442 bool IsOptNone; member in __anon5a7c6fd40111::AArch64PostLegalizerCombiner 469 if (!IsOptNone) { in getAnalysisUsage() 478 AArch64PostLegalizerCombiner::AArch64PostLegalizerCombiner(bool IsOptNone) in AArch64PostLegalizerCombiner() argument 479 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AArch64PostLegalizerCombiner() 503 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction() 711 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone) { in createAArch64PostLegalizerCombiner() argument 712 return new AArch64PostLegalizerCombiner(IsOptNone); in createAArch64PostLegalizerCombiner()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64.h | 68 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone); 71 FunctionPass *createAArch64StackTaggingPass(bool IsOptNone);
|
| H A D | AArch64StackTagging.cpp | 297 AArch64StackTagging(bool IsOptNone = false) in AArch64StackTagging() argument 299 MergeInit(ClMergeInit.getNumOccurrences() ? ClMergeInit : !IsOptNone), in AArch64StackTagging() 301 : !IsOptNone) { in AArch64StackTagging() 346 FunctionPass *llvm::createAArch64StackTaggingPass(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY() 347 return new AArch64StackTagging(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
|
| H A D | AArch64TargetMachine.cpp | 721 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local 722 if (!IsOptNone) { in addPreRegBankSelect() 723 addPass(createAArch64PostLegalizerCombiner(IsOptNone)); in addPreRegBankSelect()
|