HomeSort by relevance Sort by last modified time
    Searched defs:InlineHint (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUInline.cpp 108 // Listen to the inlinehint attribute when it would increase the threshold
111 bool InlineHint = Callee && !Callee->isDeclaration() &&
112 Callee->hasFnAttribute(Attribute::InlineHint);
113 if (InlineHint && Params.HintThreshold && Params.HintThreshold > Thres
  /external/swiftshader/third_party/LLVM/include/llvm/
Attributes.h 61 const Attributes InlineHint = 1<<25; ///< source said inlining was
94 NoRedZone | NoImplicitFloat | Naked | InlineHint | StackAlignment |
  /external/llvm/lib/Analysis/
InlineCost.cpp 59 "inlinehint-threshold", cl::Hidden, cl::init(325),
642 // Listen to the inlinehint attribute or profile based hotness information
645 bool InlineHint = Callee.hasFnAttribute(Attribute::InlineHint) ||
648 if (InlineHint && HintThreshold > Threshold && !Caller->optForMinSize())
    [all...]

Completed in 1914 milliseconds