HomeSort by relevance Sort by last modified time
    Searched refs:OptSize (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/Target/
TargetLowering.h 665 /// performance threshold for such a replacement. If OptSize is true,
666 /// return the limit for functions that have OptSize attribute.
667 unsigned getMaxStoresPerMemset(bool OptSize) const {
668 return OptSize ? MaxStoresPerMemsetOptSize : MaxStoresPerMemset;
675 /// performance threshold for such a replacement. If OptSize is true,
676 /// return the limit for functions that have OptSize attribute.
677 unsigned getMaxStoresPerMemcpy(bool OptSize) const {
678 return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy;
685 /// performance threshold for such a replacement. If OptSize is true,
686 /// return the limit for functions that have OptSize attribute
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 53 // Threshold to use when optsize is specified (and there is no -inline-limit).
259 // If -inline-threshold is not given, listen to the optsize attribute when it
262 bool OptSize = Caller && !Caller->isDeclaration() &&
265 if (!(InlineLimit.getNumOccurrences() > 0) && OptSize &&
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 99 /// OptSize - True if optimizing for size.
100 bool OptSize;
155 OptSize = F.getAttributes().hasAttribute(AttributeSet::FunctionIndex,
160 if (!OptSize && TLI && TLI->isSlowDivBypassed()) {
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 101 milliseconds