Searched defs:OptSize (Results 1 - 6 of 6) sorted by relevance
/external/llvm/lib/CodeGen/ |
H A D | MachineCombiner.cpp | 50 bool OptSize; member in class:__anon12224::MachineCombiner 339 if (OptSize && (NewSize < OldSize)) 453 OptSize = MF.getFunction()->optForSize();
|
H A D | CodeGenPrepare.cpp | 145 bool OptSize; member in class:__anon12185::CodeGenPrepare 221 OptSize = F.optForSize(); 225 if (!OptSize && TLI && TLI->isSlowDivBypassed()) { 4504 if (DisableSelectToBranch || OptSize || !TLI || VectorCond)
|
/external/llvm/lib/Transforms/IPO/ |
H A D | Inliner.cpp | 284 bool OptSize = Caller && !Caller->isDeclaration() && local 287 if (!(InlineLimit.getNumOccurrences() > 0) && OptSize &&
|
/external/clang/lib/Frontend/ |
H A D | CompilerInvocation.cpp | 1796 OptSize = getOptimizationLevelSize(Args); local 1798 Opts.OptimizeSize = OptSize != 0;
|
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelLowering.cpp | 4095 /// that can be demoted to \p OptSize bits without loss of information. The 4098 unsigned OptSize, 4105 if (OrigVT.getSizeInBits() <= OptSize) { 4111 if (OrigVT.getSizeInBits() <= OptSize) { 4121 /// be demoted to \p OptSize bits without loss of information. If the operands 4125 unsigned OptSize, 4131 if (!IsMulWideOperandDemotable(LHS, OptSize, LHSSign)) 4144 return Val.isIntN(OptSize); 4146 return Val.isSignedIntN(OptSize); 4150 if (!IsMulWideOperandDemotable(RHS, OptSize, RHSSig 4097 IsMulWideOperandDemotable(SDValue Op, unsigned OptSize, OperandSignedness &S) argument 4124 AreMulWideOperandsDemotable(SDValue LHS, SDValue RHS, unsigned OptSize, bool &IsSigned) argument 4169 unsigned OptSize = MulType.getSizeInBits() >> 1; local [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 4287 bool OptSize = shouldLowerMemFuncForSize(MF); local 4297 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize); 4400 bool OptSize = shouldLowerMemFuncForSize(MF); local 4407 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize); 4494 bool OptSize = shouldLowerMemFuncForSize(MF); local 4500 if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize),
|
Completed in 166 milliseconds