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

  /external/llvm/include/llvm/Target/
TargetLowering.h 746 /// performance threshold for such a replacement. If OptSize is true,
747 /// return the limit for functions that have OptSize attribute.
748 unsigned getMaxStoresPerMemset(bool OptSize) const {
749 return OptSize ? MaxStoresPerMemsetOptSize : MaxStoresPerMemset;
756 /// performance threshold for such a replacement. If OptSize is true,
757 /// return the limit for functions that have OptSize attribute.
758 unsigned getMaxStoresPerMemcpy(bool OptSize) const {
759 return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy;
766 /// performance threshold for such a replacement. If OptSize is true,
767 /// return the limit for functions that have OptSize attribute
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 62 // Threshold to use when optsize is specified (and there is no -inline-limit).
268 // If -inline-threshold is not given, listen to the optsize attribute when it
271 bool OptSize = Caller && !Caller->isDeclaration() &&
274 if (!(InlineLimit.getNumOccurrences() > 0) && OptSize &&
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp 115 /// OptSize - True if optimizing for size.
116 bool OptSize;
176 OptSize = F.getAttributes().hasAttribute(AttributeSet::FunctionIndex,
181 if (!OptSize && TLI && TLI->isSlowDivBypassed()) {
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 104 milliseconds