Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURegBankCombiner.cpp208 AMDGPURegBankCombiner(bool IsOptNone = false);
218 bool IsOptNone; member in __anonf325cc0e0111::AMDGPURegBankCombiner
228 if (!IsOptNone) { in getAnalysisUsage()
235 AMDGPURegBankCombiner::AMDGPURegBankCombiner(bool IsOptNone) in AMDGPURegBankCombiner() argument
236 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPURegBankCombiner()
255 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction()
273 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone) { in createAMDGPURegBankCombiner() argument
274 return new AMDGPURegBankCombiner(IsOptNone); in createAMDGPURegBankCombiner()
H A DAMDGPUPreLegalizerCombiner.cpp230 AMDGPUPreLegalizerCombiner(bool IsOptNone = false);
240 bool IsOptNone; member in __anon016a76ba0211::AMDGPUPreLegalizerCombiner
250 if (!IsOptNone) { in getAnalysisUsage()
260 AMDGPUPreLegalizerCombiner::AMDGPUPreLegalizerCombiner(bool IsOptNone) in AMDGPUPreLegalizerCombiner() argument
261 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPUPreLegalizerCombiner()
275 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction()
298 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone) { in createAMDGPUPreLegalizeCombiner() argument
299 return new AMDGPUPreLegalizerCombiner(IsOptNone); in createAMDGPUPreLegalizeCombiner()
H A DAMDGPUPostLegalizerCombiner.cpp335 AMDGPUPostLegalizerCombiner(bool IsOptNone = false);
345 bool IsOptNone; member in __anon8154f8f90211::AMDGPUPostLegalizerCombiner
355 if (!IsOptNone) { in getAnalysisUsage()
362 AMDGPUPostLegalizerCombiner::AMDGPUPostLegalizerCombiner(bool IsOptNone) in AMDGPUPostLegalizerCombiner() argument
363 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPUPostLegalizerCombiner()
382 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction()
400 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone) { in createAMDGPUPostLegalizeCombiner() argument
401 return new AMDGPUPostLegalizerCombiner(IsOptNone); in createAMDGPUPostLegalizeCombiner()
H A DAMDGPU.h32 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone);
34 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone);
35 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone);
H A DAMDGPUTargetMachine.cpp1271 bool IsOptNone = getOptLevel() == CodeGenOpt::None; in addPreLegalizeMachineIR() local
1272 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone)); in addPreLegalizeMachineIR()
1282 bool IsOptNone = getOptLevel() == CodeGenOpt::None; in addPreRegBankSelect() local
1283 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone)); in addPreRegBankSelect()
1292 bool IsOptNone = getOptLevel() == CodeGenOpt::None; in addPreGlobalInstructionSelect() local
1293 addPass(createAMDGPURegBankCombiner(IsOptNone)); in addPreGlobalInstructionSelect()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerCombiner.cpp313 AArch64PostLegalizerCombiner(bool IsOptNone = false);
323 bool IsOptNone; member in __anonf810c6920211::AArch64PostLegalizerCombiner
333 if (!IsOptNone) { in getAnalysisUsage()
342 AArch64PostLegalizerCombiner::AArch64PostLegalizerCombiner(bool IsOptNone) in AArch64PostLegalizerCombiner() argument
343 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AArch64PostLegalizerCombiner()
360 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction()
381 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone) { in createAArch64PostLegalizerCombiner() argument
382 return new AArch64PostLegalizerCombiner(IsOptNone); in createAArch64PostLegalizerCombiner()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64.h64 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone);
67 FunctionPass *createAArch64StackTaggingPass(bool IsOptNone);
H A DAArch64StackTagging.cpp302 AArch64StackTagging(bool IsOptNone = false) in AArch64StackTagging() argument
304 MergeInit(ClMergeInit.getNumOccurrences() ? ClMergeInit : !IsOptNone), in AArch64StackTagging()
306 : !IsOptNone) { in AArch64StackTagging()
354 FunctionPass *llvm::createAArch64StackTaggingPass(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY()
355 return new AArch64StackTagging(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
H A DAArch64TargetMachine.cpp630 bool IsOptNone = getOptLevel() == CodeGenOpt::None; in addPreRegBankSelect() local
631 if (!IsOptNone) in addPreRegBankSelect()
632 addPass(createAArch64PostLegalizerCombiner(IsOptNone)); in addPreRegBankSelect()