Home
last modified time | relevance | path

Searched refs:OptSize (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/CodeGen/
DMachineCombiner.cpp50 bool OptSize; member in __anonbe3a18ba0111::MachineCombiner
339 if (OptSize && (NewSize < OldSize)) in doSubstitute()
453 OptSize = MF.getFunction()->optForSize(); in runOnMachineFunction()
DCodeGenPrepare.cpp145 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/
DTargetLowering.h848 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/
DInliner.cpp284 bool OptSize = Caller && !Caller->isDeclaration() && in getInlineThreshold() local
287 if (!(InlineLimit.getNumOccurrences() > 0) && OptSize && in getInlineThreshold()
/external/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp4098 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/
DSelectionDAG.cpp4287 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/
DCompilerInvocation.cpp1796 OptSize = getOptimizationLevelSize(Args); in ParseLangArgs() local
1798 Opts.OptimizeSize = OptSize != 0; in ParseLangArgs()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp28548 bool OptSize = Attr.hasAttribute(AttributeSet::FunctionIndex, in isIntDivCheap() local
28550 return OptSize && !VT.isVector(); in isIntDivCheap()