Home
last modified time | relevance | path

Searched refs:Aggressive (Results 1 – 25 of 61) sorted by relevance

123

/llvm-project-15.0.7/llvm/unittests/CodeGen/GlobalISel/
H A DGISelMITest.cpp43 "AArch64", "", "", Options, None, None, CodeGenOpt::Aggressive))); in createTargetMachine()
82 CodeGenOpt::Aggressive))); in createTargetMachine()
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/ARM/
H A Dattribute-4.s58 @CHECK-OBJ-NEXT: Description: Aggressive Size
65 @CHECK-OBJ-NEXT: Description: Aggressive Size
H A Dattribute-2.s142 @CHECK-OBJ-NEXT: Description: Aggressive Speed
149 @CHECK-OBJ-NEXT: Description: Aggressive Speed
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp540 if (EnableSVEIntrinsicOpts && TM->getOptLevel() == CodeGenOpt::Aggressive) in addIRPasses()
566 if (TM->getOptLevel() == CodeGenOpt::Aggressive && EnableGEPOpt) { in addIRPasses()
610 bool OnlyOptimizeForSize = (TM->getOptLevel() < CodeGenOpt::Aggressive) && in addPreISel()
778 if (TM->getOptLevel() >= CodeGenOpt::Aggressive && EnableLoadStoreOpt) in addPreEmitPass()
781 if (TM->getOptLevel() >= CodeGenOpt::Aggressive && in addPreEmitPass()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DCodeGen.h56 Aggressive = 3 // -O3 enumerator
/llvm-project-15.0.7/llvm/unittests/CodeGen/
H A DTargetOptionsTest.cpp42 "X86", "", "", Options, None, None, CodeGenOpt::Aggressive)); in createTargetMachine()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMTargetMachine.cpp429 if (getOptLevel() == CodeGenOpt::Aggressive) in addIRPasses()
459 bool OnlyOptimizeForSize = (TM->getOptLevel() < CodeGenOpt::Aggressive) && in addPreISel()
513 if (getOptLevel() == CodeGenOpt::Aggressive) in addPreRegAlloc()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp5070 bool AllowFusionGlobally, HasFMAD, Aggressive; in matchCombineFAddFMulToFMadOrFMA() local
5118 bool AllowFusionGlobally, HasFMAD, Aggressive; in matchCombineFAddFpExtFMulToFMadOrFMA() local
5177 bool AllowFusionGlobally, HasFMAD, Aggressive; in matchCombineFAddFMAFMulToFMadOrFMA() local
5242 bool AllowFusionGlobally, HasFMAD, Aggressive; in matchCombineFAddFpExtFMulToFMadOrFMAAggressive() local
5246 if (!Aggressive) in matchCombineFAddFpExtFMulToFMadOrFMAAggressive()
5368 bool AllowFusionGlobally, HasFMAD, Aggressive; in matchCombineFSubFMulToFMadOrFMA() local
5420 bool AllowFusionGlobally, HasFMAD, Aggressive; in matchCombineFSubFNegFMulToFMadOrFMA() local
5434 (Aggressive || (MRI.hasOneNonDBGUse(LHSReg) && in matchCombineFSubFNegFMulToFMadOrFMA()
5449 (Aggressive || (MRI.hasOneNonDBGUse(RHSReg) && in matchCombineFSubFNegFMulToFMadOrFMA()
5467 bool AllowFusionGlobally, HasFMAD, Aggressive; in matchCombineFSubFpExtFMulToFMadOrFMA() local
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dbuild-attributes-optimization-minsize.ll11 ; CHECK-OBJ-NEXT: Description: Aggressive Size
H A Dbuild-attributes-optimization.ll18 ; MAXSPEED-OBJ-NEXT: Description: Aggressive Speed
/llvm-project-15.0.7/llvm/test/Transforms/AggressiveInstCombine/
H A Dtrunc_unreachable_bb.ll5 ; Aggressive Instcombine should be able ignore unreachable basic block.
H A Dtrunc_const_expr.ll5 ; Aggressive Instcombine should be able to reduce width of these constant
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.cpp141 case CodeGenOpt::Aggressive: in print()
/llvm-project-15.0.7/lld/Common/
H A DArgs.cpp24 return CodeGenOpt::Aggressive; in getCGOptLevel()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DErrorTest.cpp660 enum FooStrategy { Aggressive, Conservative }; enumerator
663 if (S == Aggressive) in foo()
674 foo(Aggressive), in TEST()
692 foo(Aggressive), in TEST()
/llvm-project-15.0.7/llvm/tools/llvm-isel-fuzzer/
H A Dllvm-isel-fuzzer.cpp156 case '3': OLvl = CodeGenOpt::Aggressive; break; in LLVMFuzzerInitialize()
/llvm-project-15.0.7/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h41 CodeGenOpt::Level CGOptLevel = CodeGenOpt::Aggressive;
/llvm-project-15.0.7/clang/tools/clang-fuzzer/handle-llvm/
H A Dhandle_llvm.cpp67 case '3': OLvl = CodeGenOpt::Aggressive; break; in getOptLevel()
/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp239 return CodeGenOpt::Aggressive; in getOptLevelToEnablePostRAScheduler()
/llvm-project-15.0.7/llvm/bindings/ocaml/target/
H A Dllvm_target.ml20 | Aggressive Constructor
/llvm-project-15.0.7/llvm/lib/Target/
H A DTargetMachineC.cpp138 OL = CodeGenOpt::Aggressive; in LLVMCreateTargetMachine()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DPeepholeOptimizer.cpp107 Aggressive("aggressive-ext-opt", cl::Hidden, variable
174 if (Aggressive) { in getAnalysisUsage()
546 } else if (Aggressive && DT->dominates(&MBB, UseMBB)) { in INITIALIZE_PASS_DEPENDENCY()
1620 DT = Aggressive ? &getAnalysis<MachineDominatorTree>() : nullptr; in runOnMachineFunction()
/llvm-project-15.0.7/llvm/lib/Target/NVPTX/
H A DNVPTXTargetMachine.cpp264 if (getOptLevel() == CodeGenOpt::Aggressive) in addEarlyCSEOrGVNPass()
/llvm-project-15.0.7/llvm/test/Feature/
H A Doptnone-opt.ll48 ; O1-DAG: Skipping pass 'Aggressive Dead Code Elimination'
/llvm-project-15.0.7/llvm/unittests/MI/
H A DLiveIntervalTest.cpp49 CodeGenOpt::Aggressive))); in createTargetMachine()

123