Searched refs:OptSize (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | MachineCombiner.cpp | 50 bool OptSize; member in __anonbe3a18ba0111::MachineCombiner 339 if (OptSize && (NewSize < OldSize)) in doSubstitute() 453 OptSize = MF.getFunction()->optForSize(); in runOnMachineFunction()
|
D | CodeGenPrepare.cpp | 145 bool OptSize; member in __anonebd7bfba0111::CodeGenPrepare 221 OptSize = F.optForSize(); in runOnFunction() 225 if (!OptSize && TLI && TLI->isSlowDivBypassed()) { in runOnFunction() 4504 if (DisableSelectToBranch || OptSize || !TLI || VectorCond) in optimizeSelectInst()
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 848 unsigned getMaxStoresPerMemset(bool OptSize) const { in getMaxStoresPerMemset() argument 849 return OptSize ? MaxStoresPerMemsetOptSize : MaxStoresPerMemset; in getMaxStoresPerMemset() 858 unsigned getMaxStoresPerMemcpy(bool OptSize) const { in getMaxStoresPerMemcpy() argument 859 return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy; in getMaxStoresPerMemcpy() 868 unsigned getMaxStoresPerMemmove(bool OptSize) const { in getMaxStoresPerMemmove() argument 869 return OptSize ? MaxStoresPerMemmoveOptSize : MaxStoresPerMemmove; in getMaxStoresPerMemmove()
|
/external/llvm/lib/Transforms/IPO/ |
D | Inliner.cpp | 284 bool OptSize = Caller && !Caller->isDeclaration() && in getInlineThreshold() local 287 if (!(InlineLimit.getNumOccurrences() > 0) && OptSize && in getInlineThreshold()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXISelLowering.cpp | 4098 unsigned OptSize, in IsMulWideOperandDemotable() argument 4105 if (OrigVT.getSizeInBits() <= OptSize) { in IsMulWideOperandDemotable() 4111 if (OrigVT.getSizeInBits() <= OptSize) { in IsMulWideOperandDemotable() 4125 unsigned OptSize, in AreMulWideOperandsDemotable() argument 4131 if (!IsMulWideOperandDemotable(LHS, OptSize, LHSSign)) in AreMulWideOperandsDemotable() 4144 return Val.isIntN(OptSize); in AreMulWideOperandsDemotable() 4146 return Val.isSignedIntN(OptSize); in AreMulWideOperandsDemotable() 4150 if (!IsMulWideOperandDemotable(RHS, OptSize, RHSSign)) in AreMulWideOperandsDemotable() 4169 unsigned OptSize = MulType.getSizeInBits() >> 1; in TryMULWIDECombine() local 4199 if (!AreMulWideOperandsDemotable(LHS, RHS, OptSize, Signed)) { in TryMULWIDECombine()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 4287 bool OptSize = shouldLowerMemFuncForSize(MF); in getMemcpyLoadsAndStores() local 4297 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize); in getMemcpyLoadsAndStores() 4400 bool OptSize = shouldLowerMemFuncForSize(MF); in getMemmoveLoadsAndStores() local 4407 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize); in getMemmoveLoadsAndStores() 4494 bool OptSize = shouldLowerMemFuncForSize(MF); in getMemsetStores() local 4500 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize), in getMemsetStores()
|
/external/clang/lib/Frontend/ |
D | CompilerInvocation.cpp | 1796 OptSize = getOptimizationLevelSize(Args); in ParseLangArgs() local 1798 Opts.OptimizeSize = OptSize != 0; in ParseLangArgs()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 28548 bool OptSize = Attr.hasAttribute(AttributeSet::FunctionIndex, in isIntDivCheap() local 28550 return OptSize && !VT.isVector(); in isIntDivCheap()
|