HomeSort by: relevance | last modified time | path
    Searched refs:willReturn (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instruction.h 641 bool willReturn() const;
Function.h 670 hasFnAttribute(Attribute::WillReturn);
675 bool willReturn() const { return hasFnAttribute(Attribute::WillReturn); }
676 void setWillReturn() { addFnAttr(Attribute::WillReturn); }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ADCE.cpp 329 if (I.isEHPad() || I.mayHaveSideEffects() || !I.willReturn()) {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DemandedBits.cpp 83 I->mayHaveSideEffects() || !I->willReturn();
ValueTracking.cpp 5237 return !I->mayThrow() && I->willReturn();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 82 STATISTIC(NumWillReturn, "Number of functions marked as willreturn");
1456 // If there are no loops, then the function is willreturn if all calls in
1457 // it are willreturn.
1459 return I.willReturn();
1463 // Set the willreturn function attribute if possible.
1468 if (!F || F->willReturn() || !functionWillReturn(*F))
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instruction.cpp 667 bool Instruction::willReturn() const {
672 return CB->hasFnAttr(Attribute::WillReturn) ||
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Local.cpp 433 if (!I->willReturn())
3357 // willreturn implies mustprogress
3358 if (!F.hasFnAttribute(Attribute::MustProgress) && F.willReturn()) {

Completed in 72 milliseconds