/llvm-project/llvm/lib/Target/BPF/ |
H A D | BPFTargetTransformInfo.h | 72 enableMemCmpExpansion(bool OptSize,bool IsZeroCmp) enableMemCmpExpansion() argument
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | PGOOptions.h | 30 enum class ColdFuncOpt { Default, OptSize, MinSize, OptNone }; enumerator
|
/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineCombiner.cpp | 81 bool OptSize = false; global() member in __anon43b882eb0111::MachineCombiner
|
H A D | CodeGenPrepare.cpp | 360 bool OptSize; member in __anon072927cb0111::CodeGenPrepare 3484 bool OptSize = false; global() member in __anon072927cb0d11::AddressingModeMatcher 3497 AddressingModeMatcher(SmallVectorImpl<Instruction * > & AMI,const TargetLowering & TLI,const TargetRegisterInfo & TRI,const LoopInfo & LI,const std::function<const DominatorTree & ()> getDTFn,Type * AT,unsigned AS,Instruction * MI,ExtAddrMode & AM,const SetOfInstrs & InsertedInsts,InstrToOrigTy & PromotedInsts,TypePromotionTransaction & TPT,std::pair<AssertingVH<GetElementPtrInst>,int64_t> & LargeOffsetGEP,bool OptSize,ProfileSummaryInfo * PSI,BlockFrequencyInfo * BFI) AddressingModeMatcher() argument 3522 Match(Value * V,Type * AccessTy,unsigned AS,Instruction * MemoryInst,SmallVectorImpl<Instruction * > & AddrModeInsts,const TargetLowering & TLI,const LoopInfo & LI,const std::function<const DominatorTree & ()> getDTFn,const TargetRegisterInfo & TRI,const SetOfInstrs & InsertedInsts,InstrToOrigTy & PromotedInsts,TypePromotionTransaction & TPT,std::pair<AssertingVH<GetElementPtrInst>,int64_t> & LargeOffsetGEP,bool OptSize,ProfileSummaryInfo * PSI,BlockFrequencyInfo * BFI) Match() argument 5211 FindAllMemoryUses(Instruction * I,SmallVectorImpl<std::pair<Use *,Type * >> & MemoryUses,SmallPtrSetImpl<Instruction * > & ConsideredInsts,const TargetLowering & TLI,const TargetRegisterInfo & TRI,bool OptSize,ProfileSummaryInfo * PSI,BlockFrequencyInfo * BFI,unsigned & SeenInsts) FindAllMemoryUses() argument 5285 FindAllMemoryUses(Instruction * I,SmallVectorImpl<std::pair<Use *,Type * >> & MemoryUses,const TargetLowering & TLI,const TargetRegisterInfo & TRI,bool OptSize,ProfileSummaryInfo * PSI,BlockFrequencyInfo * BFI) FindAllMemoryUses() argument [all...] |
/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCTargetTransformInfo.cpp | 437 enableMemCmpExpansion(bool OptSize,bool IsZeroCmp) const enableMemCmpExpansion() argument
|
/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelLowering.cpp | 5615 IsMulWideOperandDemotable(SDValue Op,unsigned OptSize,OperandSignedness & S) IsMulWideOperandDemotable() argument 5642 AreMulWideOperandsDemotable(SDValue LHS,SDValue RHS,unsigned OptSize,bool & IsSigned) AreMulWideOperandsDemotable() argument 5685 unsigned OptSize = MulType.getSizeInBits() >> 1; TryMULWIDECombine() local [all...] |
/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetLowering.h | 1876 return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy; in getMaxExpandSizeMemcmp() argument 1847 getMaxStoresPerMemset(bool OptSize) getMaxStoresPerMemset() argument 1857 getMaxStoresPerMemcpy(bool OptSize) getMaxStoresPerMemcpy() argument 1886 getMaxStoresPerMemmove(bool OptSize) getMaxStoresPerMemmove() argument [all...] |
/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfoImpl.h | 392 enableMemCmpExpansion(bool OptSize,bool IsZeroCmp) enableMemCmpExpansion() argument
|
H A D | TargetTransformInfo.h | 2484 enableMemCmpExpansion(bool OptSize,bool IsZeroCmp) enableMemCmpExpansion() argument
|
/llvm-project/llvm/lib/Analysis/ |
H A D | TargetTransformInfo.cpp | 621 enableMemCmpExpansion(bool OptSize,bool IsZeroCmp) const enableMemCmpExpansion() argument
|
/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalizerHelper.cpp | 8576 bool OptSize = shouldLowerMemFuncForSize(MF); lowerMemset() local 8836 bool OptSize = shouldLowerMemFuncForSize(MF); lowerMemmove() local 8977 bool OptSize = shouldLowerMemFuncForSize(MF); lowerMemCpyFamily() local
|
/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64TargetTransformInfo.cpp | 3298 enableMemCmpExpansion(bool OptSize,bool IsZeroCmp) const enableMemCmpExpansion() argument
|
H A D | AArch64InstrInfo.cpp | 2985 const bool OptSize = MemI.getMF()->getFunction().hasOptSize(); canFoldIntoAddrMode() local
|
H A D | AArch64ISelLowering.cpp | 26702 bool OptSize = Attr.hasFnAttr(Attribute::MinSize); isIntDivCheap() local [all...] |
/llvm-project/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.cpp | 6213 enableMemCmpExpansion(bool OptSize,bool IsZeroCmp) const enableMemCmpExpansion() argument
|
H A D | X86ISelLowering.cpp | 59103 bool OptSize = Attr.hasFnAttr(Attribute::MinSize); isIntDivCheap() local [all...] |
/llvm-project/clang/lib/Frontend/ |
H A D | CompilerInvocation.cpp | 4185 OptSize = getOptimizationLevelSize(Args); ParseLangArgs() local
|
/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 7791 bool OptSize = shouldLowerMemFuncForSize(MF, DAG); getMemcpyLoadsAndStores() local 7992 bool OptSize = shouldLowerMemFuncForSize(MF, DAG); getMemmoveLoadsAndStores() local 8113 bool OptSize = shouldLowerMemFuncForSize(MF, DAG); getMemsetStores() local
|
/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVISelLowering.cpp | 21518 bool OptSize = Attr.hasFnAttr(Attribute::MinSize); isIntDivCheap() local [all...] |