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

  /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/Transforms/IPO/
ForceFunctionAttrs.cpp 34 .Case("inlinehint", Attribute::InlineHint)
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Attributes.cpp 63 if (Attrs & Attribute::InlineHint)
64 Result += "inlinehint ";
  /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...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
Inliner.cpp 44 HintThreshold("inlinehint-threshold", cl::Hidden, cl::init(325),
207 // Listen to inlinehint when it would increase the threshold.
210 Callee->hasFnAttr(Attribute::InlineHint))
  /external/llvm/lib/IR/
Attributes.cpp 251 if (hasAttribute(Attribute::InlineHint))
252 return "inlinehint";
495 case Attribute::InlineHint: return 1 << 25;
    [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 905 F->addFnAttr(llvm::Attribute::InlineHint);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 719 Fn->addFnAttr(llvm::Attribute::InlineHint);
723 !FD->isInlined() && !Fn->hasFnAttribute(llvm::Attribute::InlineHint))
    [all...]
CodeGenModule.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
CPPBackend.cpp 472 HANDLE_ATTR(InlineHint);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.cpp 918 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 592 case Attribute::InlineHint:
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 794 milliseconds