Home
last modified time | relevance | path

Searched refs:shouldOptForSize (Results 1 – 18 of 18) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGIMatchTableExecutor.h600 bool shouldOptForSize(const MachineFunction *MF) const { in shouldOptForSize() function
603 (PSI && BFI && CurMBB && llvm::shouldOptForSize(*CurMBB, PSI, BFI)); in shouldOptForSize()
H A DUtils.h530 bool shouldOptForSize(const MachineBasicBlock &MBB, ProfileSummaryInfo *PSI,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrPredicates.td223 def OptForSize : Predicate<"shouldOptForSize(MF)">;
225 def OptForSpeed : Predicate<"!shouldOptForSize(MF)">;
227 "shouldOptForSize(MF)">;
228 def NoSSE41_Or_OptForSize : Predicate<"shouldOptForSize(MF) || "
H A DX86ISelDAGToDAG.cpp337 if (!CurDAG->shouldOptForSize()) in shouldAvoidImmediateInstFormsForSize()
3578 if (!Subtarget->slowIncDec() || CurDAG->shouldOptForSize()) { in foldLoadStoreIntoMemOperand()
5300 if (!CurDAG->shouldOptForSize()) in Select()
H A DX86ISelLowering.cpp7280 bool OptForSize = DAG.shouldOptForSize(); in lowerBuildVectorAsBroadcast()
10650 bool OptForSize = DAG.shouldOptForSize(); in lowerShuffleAsBlend()
19291 bool IsOptimizingSize = DAG.shouldOptForSize(); in shouldUseHorizontalOp()
22829 bool OptForSize = DAG.shouldOptForSize(); in LowerAndToBT()
29788 bool OptForSize = DAG.shouldOptForSize(); in LowerFunnelShift()
37793 bool OptForSize = DAG.shouldOptForSize(); in combineX86ShuffleChain()
38848 bool IsOptimizingSize = DAG.shouldOptForSize(); in combineX86ShufflesConstants()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h386 bool shouldOptForSize(const MachineFunction *MF) const { in shouldOptForSize() function
387 return CurDAG->shouldOptForSize(); in shouldOptForSize()
H A DFastISel.h520 bool shouldOptForSize(const MachineFunction *MF) const { in shouldOptForSize() function
H A DSelectionDAG.h2354 bool shouldOptForSize() const;
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp1500 bool llvm::shouldOptForSize(const MachineBasicBlock &MBB, in shouldOptForSize() function in llvm
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp680 if (CurDAG->shouldOptForSize() || V.hasOneUse()) in isWorthFoldingAddr()
839 if (CurDAG->shouldOptForSize() || V.hasOneUse()) in isWorthFoldingALU()
H A DAArch64InstrInfo.td926 def ForCodeSize : Predicate<"shouldOptForSize(MF)">;
927 def NotForCodeSize : Predicate<"!shouldOptForSize(MF)">;
929 def UseSTRQro : Predicate<"!Subtarget->isSTRQroSlow() || shouldOptForSize(MF)">;
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1352 bool SelectionDAG::shouldOptForSize() const { in shouldOptForSize() function in SelectionDAG
1878 Alignment = shouldOptForSize() in getConstantPool()
7409 return DAG.shouldOptForSize(); in shouldLowerMemFuncForSize()
H A DLegalizeDAG.cpp3666 DAG.shouldOptForSize())) in ExpandNode()
H A DSelectionDAGBuilder.cpp5608 Val, DAG.shouldOptForSize())) { in ExpandPowI()
H A DTargetLowering.cpp7647 if (DAG.shouldOptForSize()) in expandDIVREMByConstant()
H A DDAGCombiner.cpp252 ForCodeSize = DAG.shouldOptForSize(); in DAGCombiner()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp3084 if (DAG.shouldOptForSize()) in lowerFTRUNC_FCEIL_FFLOOR_FROUND()
3396 if (!DAG.shouldOptForSize() && NumScalarLoads < NumElts && in lowerBuildVectorViaDominantValues()
3489 if (DAG.shouldOptForSize() && NumElts > NumViaIntegerBits) in lowerBuildVectorOfConstants()
5315 if (DAG.shouldOptForSize()) in lowerConstant()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp2670 bool OptForSize = shouldOptForSize(&MF); in select()