/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsPostLegalizerCombiner.cpp | 92 MipsPostLegalizerCombiner(bool IsOptNone = false); 101 bool IsOptNone; member in __anond45e51db0111::MipsPostLegalizerCombiner 112 if (!IsOptNone) { in getAnalysisUsage() 119 MipsPostLegalizerCombiner::MipsPostLegalizerCombiner(bool IsOptNone) in MipsPostLegalizerCombiner() argument 120 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in MipsPostLegalizerCombiner() 142 IsOptNone ? nullptr in runOnMachineFunction() 162 FunctionPass *createMipsPostLegalizeCombiner(bool IsOptNone) { in createMipsPostLegalizeCombiner() argument 163 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/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPreLegalizerCombiner.cpp | 218 AMDGPUPreLegalizerCombiner(bool IsOptNone = false); 229 bool IsOptNone; member in __anonc43491060111::AMDGPUPreLegalizerCombiner 240 if (!IsOptNone) { in getAnalysisUsage() 250 AMDGPUPreLegalizerCombiner::AMDGPUPreLegalizerCombiner(bool IsOptNone) in AMDGPUPreLegalizerCombiner() argument 251 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPUPreLegalizerCombiner() 275 IsOptNone ? nullptr in runOnMachineFunction() 295 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone) { in createAMDGPUPreLegalizeCombiner() argument 296 return new AMDGPUPreLegalizerCombiner(IsOptNone); in createAMDGPUPreLegalizeCombiner()
|
H A D | AMDGPURegBankCombiner.cpp | 403 AMDGPURegBankCombiner(bool IsOptNone = false); 412 bool IsOptNone; member in __anonc61746da0111::AMDGPURegBankCombiner 423 if (!IsOptNone) { in getAnalysisUsage() 430 AMDGPURegBankCombiner::AMDGPURegBankCombiner(bool IsOptNone) in AMDGPURegBankCombiner() argument 431 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPURegBankCombiner() 452 IsOptNone ? nullptr in runOnMachineFunction() 473 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone) { in createAMDGPURegBankCombiner() argument 474 return new AMDGPURegBankCombiner(IsOptNone); in createAMDGPURegBankCombiner()
|
H A D | AMDGPUPostLegalizerCombiner.cpp | 445 AMDGPUPostLegalizerCombiner(bool IsOptNone = false); 456 bool IsOptNone; member in __anon9d625cc50111::AMDGPUPostLegalizerCombiner 467 if (!IsOptNone) { in getAnalysisUsage() 474 AMDGPUPostLegalizerCombiner::AMDGPUPostLegalizerCombiner(bool IsOptNone) in AMDGPUPostLegalizerCombiner() argument 475 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPUPostLegalizerCombiner() 497 IsOptNone ? nullptr in runOnMachineFunction() 519 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone) { in createAMDGPUPostLegalizeCombiner() argument 520 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 | 1282 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreLegalizeMachineIR() local 1283 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone)); in addPreLegalizeMachineIR() 1293 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local 1294 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone)); in addPreRegBankSelect() 1304 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreGlobalInstructionSelect() local 1305 addPass(createAMDGPURegBankCombiner(IsOptNone)); in addPreGlobalInstructionSelect()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64PostLegalizerCombiner.cpp | 489 AArch64PostLegalizerCombiner(bool IsOptNone = false); 499 bool IsOptNone; member in __anonc3fb365e0111::AArch64PostLegalizerCombiner 526 if (!IsOptNone) { in getAnalysisUsage() 535 AArch64PostLegalizerCombiner::AArch64PostLegalizerCombiner(bool IsOptNone) in AArch64PostLegalizerCombiner() argument 536 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AArch64PostLegalizerCombiner() 560 IsOptNone ? nullptr in runOnMachineFunction() 774 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone) { in createAArch64PostLegalizerCombiner() argument 775 return new AArch64PostLegalizerCombiner(IsOptNone); in createAArch64PostLegalizerCombiner()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64.h | 69 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone); 72 FunctionPass *createAArch64StackTaggingPass(bool IsOptNone);
|
H A D | AArch64StackTagging.cpp | 318 AArch64StackTagging(bool IsOptNone = false) in AArch64StackTagging() argument 320 MergeInit(ClMergeInit.getNumOccurrences() ? ClMergeInit : !IsOptNone), in AArch64StackTagging() 322 : !IsOptNone) { in AArch64StackTagging() 368 FunctionPass *llvm::createAArch64StackTaggingPass(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY() 369 return new AArch64StackTagging(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
|
H A D | AArch64TargetMachine.cpp | 735 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local 736 if (!IsOptNone) { in addPreRegBankSelect() 737 addPass(createAArch64PostLegalizerCombiner(IsOptNone)); in addPreRegBankSelect()
|