Home
last modified time | relevance | path

Searched refs:IsOptNone (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsPostLegalizerCombiner.cpp92 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 DMips.h41 FunctionPass *createMipsPostLegalizeCombiner(bool IsOptNone);
H A DMipsTargetMachine.cpp350 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local
351 addPass(createMipsPostLegalizeCombiner(IsOptNone)); in addPreRegBankSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPreLegalizerCombiner.cpp218 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 DAMDGPURegBankCombiner.cpp403 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 DAMDGPUPostLegalizerCombiner.cpp445 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 DAMDGPU.h25 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone);
27 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone);
28 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone);
H A DAMDGPUTargetMachine.cpp1282 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 DAArch64PostLegalizerCombiner.cpp489 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 DAArch64.h69 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone);
72 FunctionPass *createAArch64StackTaggingPass(bool IsOptNone);
H A DAArch64StackTagging.cpp318 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 DAArch64TargetMachine.cpp735 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local
736 if (!IsOptNone) { in addPreRegBankSelect()
737 addPass(createAArch64PostLegalizerCombiner(IsOptNone)); in addPreRegBankSelect()