Searched refs:IsOptNone (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPreLegalizerCombiner.cpp90 AMDGPUPreLegalizerCombiner(bool IsOptNone = false);
100 bool IsOptNone; member in class:__anon3927::AMDGPUPreLegalizerCombiner
110 if (!IsOptNone) {
117 AMDGPUPreLegalizerCombiner::AMDGPUPreLegalizerCombiner(bool IsOptNone) argument
118 : MachineFunctionPass(ID), IsOptNone(IsOptNone) {
132 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>();
150 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone) { argument
151 return new AMDGPUPreLegalizerCombiner(IsOptNone);
H A DAMDGPURegBankCombiner.cpp86 AMDGPURegBankCombiner(bool IsOptNone = false);
96 bool IsOptNone; member in class:__anon3931::AMDGPURegBankCombiner
106 if (!IsOptNone) {
113 AMDGPURegBankCombiner::AMDGPURegBankCombiner(bool IsOptNone) argument
114 : MachineFunctionPass(ID), IsOptNone(IsOptNone) {
133 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>();
151 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone) { argument
152 return new AMDGPURegBankCombiner(IsOptNone);
H A DAMDGPUPostLegalizerCombiner.cpp291 AMDGPUPostLegalizerCombiner(bool IsOptNone = false);
301 bool IsOptNone; member in class:__anon3926::AMDGPUPostLegalizerCombiner
311 if (!IsOptNone) {
318 AMDGPUPostLegalizerCombiner::AMDGPUPostLegalizerCombiner(bool IsOptNone) argument
319 : MachineFunctionPass(ID), IsOptNone(IsOptNone) {
338 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>();
356 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone) { argument
357 return new AMDGPUPostLegalizerCombiner(IsOptNone);
H A DAMDGPU.h33 FunctionPass *createAMDGPUPreLegalizeCombiner(bool IsOptNone);
35 FunctionPass *createAMDGPUPostLegalizeCombiner(bool IsOptNone);
36 FunctionPass *createAMDGPURegBankCombiner(bool IsOptNone);
H A DAMDGPUTargetMachine.cpp950 bool IsOptNone = getOptLevel() == CodeGenOpt::None; local
951 addPass(createAMDGPUPreLegalizeCombiner(IsOptNone));
961 bool IsOptNone = getOptLevel() == CodeGenOpt::None; local
962 addPass(createAMDGPUPostLegalizeCombiner(IsOptNone));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PreLegalizerCombiner.cpp141 AArch64PreLegalizerCombiner(bool IsOptNone = false);
149 bool IsOptNone;
159 if (!IsOptNone) {
166 AArch64PreLegalizerCombiner::AArch64PreLegalizerCombiner(bool IsOptNone)
167 : MachineFunctionPass(ID), IsOptNone(IsOptNone) {
181 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>();
200 FunctionPass *createAArch64PreLegalizeCombiner(bool IsOptNone) {
201 return new AArch64PreLegalizerCombiner(IsOptNone);
H A DAArch64PostLegalizerCombiner.cpp441 AArch64PostLegalizerCombiner(bool IsOptNone = false);
451 bool IsOptNone; member in class:__anon3886::AArch64PostLegalizerCombiner
461 if (!IsOptNone) {
468 AArch64PostLegalizerCombiner::AArch64PostLegalizerCombiner(bool IsOptNone) argument
469 : MachineFunctionPass(ID), IsOptNone(IsOptNone) {
486 IsOptNone ? nullptr : &getAnalysis<MachineDominatorTree>();
504 FunctionPass *createAArch64PostLegalizeCombiner(bool IsOptNone) { argument
505 return new AArch64PostLegalizerCombiner(IsOptNone);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64.h61 FunctionPass *createAArch64PreLegalizeCombiner(bool IsOptNone);
62 FunctionPass *createAArch64PostLegalizeCombiner(bool IsOptNone);
63 FunctionPass *createAArch64StackTaggingPass(bool IsOptNone);
H A DAArch64TargetMachine.cpp472 /*IsOptNone=*/TM->getOptLevel() == CodeGenOpt::None));
549 bool IsOptNone = getOptLevel() == CodeGenOpt::None; local
550 addPass(createAArch64PreLegalizeCombiner(IsOptNone));
561 bool IsOptNone = getOptLevel() == CodeGenOpt::None; local
562 if (!IsOptNone)
563 addPass(createAArch64PostLegalizeCombiner(IsOptNone));
H A DAArch64StackTagging.cpp294 AArch64StackTagging(bool IsOptNone = false)
296 MergeInit(ClMergeInit.getNumOccurrences() ? ClMergeInit : !IsOptNone),
298 : !IsOptNone) {
346 FunctionPass *llvm::createAArch64StackTaggingPass(bool IsOptNone) { argument
347 return new AArch64StackTagging(IsOptNone);

Completed in 97 milliseconds