Searched refs:OptSize (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/CodeGen/
H A DMachineCombiner.cpp50 bool OptSize; member in class:__anon12695::MachineCombiner
341 if (OptSize && (NewSize < OldSize))
462 OptSize = MF.getFunction()->optForSize();
H A DCodeGenPrepare.cpp153 bool OptSize; member in class:__anon12654::CodeGenPrepare
231 OptSize = F.optForSize();
235 if (!OptSize && TLI && TLI->isSlowDivBypassed()) {
1803 if (!OptSize && CI->hasFnAttr(Attribute::Cold))
3502 const bool OptSize = I->getFunction()->optForSize(); local
3523 if (!OptSize && CI->hasFnAttr(Attribute::Cold))
4593 if (DisableSelectToBranch || OptSize || !TLI || VectorCond ||
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetLowering.h601 /// performance threshold for such a replacement. If OptSize is true,
602 /// return the limit for functions that have OptSize attribute.
604 unsigned getMaxStoresPerMemset(bool OptSize) const {
605 return OptSize ? maxStoresPerMemsetOptSize : maxStoresPerMemset;
610 /// performance threshold for such a replacement. If OptSize is true,
611 /// return the limit for functions that have OptSize attribute.
613 unsigned getMaxStoresPerMemcpy(bool OptSize) const {
614 return OptSize ? maxStoresPerMemcpyOptSize : maxStoresPerMemcpy;
619 /// performance threshold for such a replacement. If OptSize is true,
620 /// return the limit for functions that have OptSize attribut
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLowering.h919 /// performance threshold for such a replacement. If OptSize is true,
920 /// return the limit for functions that have OptSize attribute.
921 unsigned getMaxStoresPerMemset(bool OptSize) const {
922 return OptSize ? MaxStoresPerMemsetOptSize : MaxStoresPerMemset;
929 /// performance threshold for such a replacement. If OptSize is true,
930 /// return the limit for functions that have OptSize attribute.
931 unsigned getMaxStoresPerMemcpy(bool OptSize) const {
932 return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy;
939 /// performance threshold for such a replacement. If OptSize is true,
940 /// return the limit for functions that have OptSize attribut
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp4108 /// that can be demoted to \p OptSize bits without loss of information. The
4111 unsigned OptSize,
4118 if (OrigVT.getSizeInBits() <= OptSize) {
4124 if (OrigVT.getSizeInBits() <= OptSize) {
4134 /// be demoted to \p OptSize bits without loss of information. If the operands
4138 unsigned OptSize,
4144 if (!IsMulWideOperandDemotable(LHS, OptSize, LHSSign))
4157 return Val.isIntN(OptSize);
4159 return Val.isSignedIntN(OptSize);
4163 if (!IsMulWideOperandDemotable(RHS, OptSize, RHSSig
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4312 bool OptSize = shouldLowerMemFuncForSize(MF); local
4322 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
4428 bool OptSize = shouldLowerMemFuncForSize(MF); local
4435 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
4524 bool OptSize = shouldLowerMemFuncForSize(MF); local
4530 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize),
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3434 bool OptSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize); local
3444 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
3527 bool OptSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize); local
3534 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
3605 bool OptSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize); local
3611 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize),
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp2111 OptSize = getOptimizationLevelSize(Args); local
2113 Opts.OptimizeSize = OptSize != 0;
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp10375 bool OptSize = local
10377 return OptSize && !VT.isVector();
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp31874 bool OptSize = Attr.hasAttribute(AttributeSet::FunctionIndex, local
[all...]

Completed in 686 milliseconds