Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPURegBankCombiner.cpp208 AMDGPURegBankCombiner(bool IsOptNone = false);
218 bool IsOptNone; member in __anon820a15450111::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.cpp228 AMDGPUPreLegalizerCombiner(bool IsOptNone = false);
238 bool IsOptNone; member in __anon47b01a510211::AMDGPUPreLegalizerCombiner
248 if (!IsOptNone) { in getAnalysisUsage()
258 AMDGPUPreLegalizerCombiner::AMDGPUPreLegalizerCombiner(bool IsOptNone) in AMDGPUPreLegalizerCombiner() argument
259 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AMDGPUPreLegalizerCombiner()
273 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction()
296 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone) { in createAMDGPUPreLegalizeCombiner() argument
297 return new AMDGPUPreLegalizerCombiner(IsOptNone); in createAMDGPUPreLegalizeCombiner()
H A DAMDGPUPostLegalizerCombiner.cpp335 AMDGPUPostLegalizerCombiner(bool IsOptNone = false);
345 bool IsOptNone; member in __anon904f0f700211::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.cpp1111 bool IsOptNone = getOptLevel() == CodeGenOpt::None; in addPreLegalizeMachineIR() local
1112 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone)); in addPreLegalizeMachineIR()
1122 bool IsOptNone = getOptLevel() == CodeGenOpt::None; in addPreRegBankSelect() local
1123 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone)); in addPreRegBankSelect()
1132 bool IsOptNone = getOptLevel() == CodeGenOpt::None; in addPreGlobalInstructionSelect() local
1133 addPass(createAMDGPURegBankCombiner(IsOptNone)); in addPreGlobalInstructionSelect()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerCombiner.cpp319 AArch64PostLegalizerCombiner(bool IsOptNone = false);
329 bool IsOptNone; member in __anon389964090311::AArch64PostLegalizerCombiner
339 if (!IsOptNone) { in getAnalysisUsage()
348 AArch64PostLegalizerCombiner::AArch64PostLegalizerCombiner(bool IsOptNone) in AArch64PostLegalizerCombiner() argument
349 : MachineFunctionPass(ID), IsOptNone(IsOptNone) { in AArch64PostLegalizerCombiner()
366 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>(); in runOnMachineFunction()
387 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone) { in createAArch64PostLegalizerCombiner() argument
388 return new AArch64PostLegalizerCombiner(IsOptNone); in createAArch64PostLegalizerCombiner()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64.h64 FunctionPass *createAArch64PostLegalizerCombiner(bool IsOptNone);
67 FunctionPass *createAArch64StackTaggingPass(bool IsOptNone);
H A DAArch64StackTagging.cpp300 AArch64StackTagging(bool IsOptNone = false) in AArch64StackTagging() argument
302 MergeInit(ClMergeInit.getNumOccurrences() ? ClMergeInit : !IsOptNone), in AArch64StackTagging()
304 : !IsOptNone) { in AArch64StackTagging()
352 FunctionPass *llvm::createAArch64StackTaggingPass(bool IsOptNone) { in INITIALIZE_PASS_DEPENDENCY()
353 return new AArch64StackTagging(IsOptNone); in INITIALIZE_PASS_DEPENDENCY()
H A DAArch64TargetMachine.cpp578 bool IsOptNone = getOptLevel() == CodeGenOpt::None; in addPreRegBankSelect() local
579 if (!IsOptNone) in addPreRegBankSelect()
580 addPass(createAArch64PostLegalizerCombiner(IsOptNone)); in addPreRegBankSelect()