Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Target/
DTargetLowering.h748 unsigned getMaxStoresPerMemset(bool OptSize) const { in getMaxStoresPerMemset() argument
749 return OptSize ? MaxStoresPerMemsetOptSize : MaxStoresPerMemset; in getMaxStoresPerMemset()
758 unsigned getMaxStoresPerMemcpy(bool OptSize) const { in getMaxStoresPerMemcpy() argument
759 return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy; in getMaxStoresPerMemcpy()
768 unsigned getMaxStoresPerMemmove(bool OptSize) const { in getMaxStoresPerMemmove() argument
769 return OptSize ? MaxStoresPerMemmoveOptSize : MaxStoresPerMemmove; in getMaxStoresPerMemmove()
/external/llvm/lib/Transforms/IPO/
DInliner.cpp271 bool OptSize = Caller && !Caller->isDeclaration() && in getInlineThreshold() local
274 if (!(InlineLimit.getNumOccurrences() > 0) && OptSize && in getInlineThreshold()
/external/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp2863 unsigned OptSize, in IsMulWideOperandDemotable() argument
2870 if (OrigVT.getSizeInBits() == OptSize) { in IsMulWideOperandDemotable()
2876 if (OrigVT.getSizeInBits() == OptSize) { in IsMulWideOperandDemotable()
2890 unsigned OptSize, in AreMulWideOperandsDemotable() argument
2896 if (!IsMulWideOperandDemotable(LHS, OptSize, LHSSign)) in AreMulWideOperandsDemotable()
2909 if (Val.isIntN(OptSize)) { in AreMulWideOperandsDemotable()
2914 if (Val.isSignedIntN(OptSize)) { in AreMulWideOperandsDemotable()
2921 if (!IsMulWideOperandDemotable(RHS, OptSize, RHSSign)) in AreMulWideOperandsDemotable()
2942 unsigned OptSize = MulType.getSizeInBits() >> 1; in TryMULWIDECombine() local
2972 if (!AreMulWideOperandsDemotable(LHS, RHS, OptSize, Signed)) { in TryMULWIDECombine()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp116 bool OptSize; member in __anon2165e6110111::CodeGenPrepare
176 OptSize = F.getAttributes().hasAttribute(AttributeSet::FunctionIndex, in runOnFunction()
181 if (!OptSize && TLI && TLI->isSlowDivBypassed()) { in runOnFunction()
2989 if (DisableSelectToBranch || OptSize || !TLI || VectorCond) in OptimizeSelectInst()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp1570 OptSize = getOptimizationLevelSize(Args); in ParseLangArgs() local
1572 Opts.OptimizeSize = OptSize != 0; in ParseLangArgs()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp3903 bool OptSize = in getMemcpyLoadsAndStores() local
3915 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize); in getMemcpyLoadsAndStores()
4018 bool OptSize = MF.getFunction()->getAttributes(). in getMemmoveLoadsAndStores() local
4026 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize); in getMemmoveLoadsAndStores()
4113 bool OptSize = MF.getFunction()->getAttributes(). in getMemsetStores() local
4120 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize), in getMemsetStores()