Searched defs:OptSize (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/CodeGen/
H A DMachineCombiner.cpp50 bool OptSize; member in class:__anon12224::MachineCombiner
339 if (OptSize && (NewSize < OldSize))
453 OptSize = MF.getFunction()->optForSize();
H A DCodeGenPrepare.cpp145 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 DInliner.cpp284 bool OptSize = Caller && !Caller->isDeclaration() && local
287 if (!(InlineLimit.getNumOccurrences() > 0) && OptSize &&
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp1796 OptSize = getOptimizationLevelSize(Args); local
1798 Opts.OptimizeSize = OptSize != 0;
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp4095 /// 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 DSelectionDAG.cpp4287 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