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.cpp91 MipsPostLegalizerCombiner(bool IsOptNone = false);
100 bool IsOptNone; member in __anond45e51db0111::MipsPostLegalizerCombiner
111 if (!IsOptNone) { in getAnalysisUsage()
118 MipsPostLegalizerCombiner::MipsPostLegalizerCombiner(bool IsOptNone) in MipsPostLegalizerCombiner() argument
119 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in MipsPostLegalizerCombiner()
139 IsOptNone ? nullptr in runOnMachineFunction()
158 FunctionPass *llvm::createMipsPostLegalizeCombiner(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY()
159 return new MipsPostLegalizerCombiner(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
H A DMips.h52 FunctionPass *createMipsPostLegalizeCombiner(bool IsOptNone);
H A DMipsTargetMachine.cpp359 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local
360 addPass(createMipsPostLegalizeCombiner(IsOptNone)); in addPreRegBankSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPreLegalizerCombiner.cpp217 AMDGPUPreLegalizerCombiner(bool IsOptNone = false);
228 bool IsOptNone; member in __anonc43491060111::AMDGPUPreLegalizerCombiner
239 if (!IsOptNone) { in getAnalysisUsage()
249 AMDGPUPreLegalizerCombiner::AMDGPUPreLegalizerCombiner(bool IsOptNone) in AMDGPUPreLegalizerCombiner() argument
250 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPUPreLegalizerCombiner()
272 IsOptNone ? nullptr in runOnMachineFunction()
297 FunctionPass *llvm::createAMDGPUPreLegalizeCombiner(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY()
298 return new AMDGPUPreLegalizerCombiner(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
H A DAMDGPURegBankCombiner.cpp431 AMDGPURegBankCombiner(bool IsOptNone = false);
440 bool IsOptNone; member in __anonc61746da0111::AMDGPURegBankCombiner
451 if (!IsOptNone) { in getAnalysisUsage()
458 AMDGPURegBankCombiner::AMDGPURegBankCombiner(bool IsOptNone) in AMDGPURegBankCombiner() argument
459 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPURegBankCombiner()
478 IsOptNone ? nullptr in runOnMachineFunction()
504 FunctionPass *llvm::createAMDGPURegBankCombiner(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY()
505 return new AMDGPURegBankCombiner(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
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()
495 IsOptNone ? nullptr in runOnMachineFunction()
520 FunctionPass *llvm::createAMDGPUPostLegalizeCombiner(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY()
521 return new AMDGPUPostLegalizerCombiner(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
H A DAMDGPU.h27 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone);
29 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone);
30 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone);
H A DAMDGPUTargetMachine.cpp1492 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreLegalizeMachineIR() local
1493 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone)); in addPreLegalizeMachineIR()
1503 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local
1504 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone)); in addPreRegBankSelect()
1519 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreGlobalInstructionSelect() local
1520 addPass(createAMDGPURegBankCombiner(IsOptNone)); in addPreGlobalInstructionSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64.h70 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone);
73 FunctionPass *createAArch64StackTaggingPass(bool IsOptNone);
H A DAArch64StackTagging.cpp308 AArch64StackTagging(bool IsOptNone = false) in AArch64StackTagging() argument
310 MergeInit(ClMergeInit.getNumOccurrences() ? ClMergeInit : !IsOptNone), in AArch64StackTagging()
312 : !IsOptNone) {} in AArch64StackTagging()
358 FunctionPass *llvm::createAArch64StackTaggingPass(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY()
359 return new AArch64StackTagging(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
H A DAArch64TargetMachine.cpp763 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None; in addPreRegBankSelect() local
764 if (!IsOptNone) { in addPreRegBankSelect()
765 addPass(createAArch64PostLegalizerCombiner(IsOptNone)); in addPreRegBankSelect()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerCombiner.cpp604 AArch64PostLegalizerCombiner(bool IsOptNone = false);
614 bool IsOptNone; member in __anonc3fb365e0111::AArch64PostLegalizerCombiner
641 if (!IsOptNone) { in getAnalysisUsage()
650 AArch64PostLegalizerCombiner::AArch64PostLegalizerCombiner(bool IsOptNone) in AArch64PostLegalizerCombiner() argument
651 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AArch64PostLegalizerCombiner()
671 IsOptNone ? nullptr in runOnMachineFunction()
890 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone) { in createAArch64PostLegalizerCombiner() argument
891 return new AArch64PostLegalizerCombiner(IsOptNone); in createAArch64PostLegalizerCombiner()