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

  /external/clang/lib/CodeGen/
CGCall.h 123 /// Whether this function is noreturn.
124 bool NoReturn;
140 CGFunctionInfo(unsigned CallingConvention, bool NoReturn,
153 bool isNoReturn() const { return NoReturn; }
182 ID.AddBoolean(NoReturn);
CGCall.cpp 300 NoReturn(_NoReturn), ReturnsRetained(returnsRetained),
728 FuncAttrs |= llvm::Attribute::NoReturn;
743 FuncAttrs |= llvm::Attribute::NoReturn;
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 116 constexpr int NoReturn() {} // expected-error {{no return statement in constexpr function}}
  /external/llvm/include/llvm/
Attributes.h 39 const Attributes NoReturn = 1<<2; ///< Mark the function as not returning
92 const Attributes FunctionOnly = NoReturn | NoUnwind | ReadNone | ReadOnly |
Function.h 234 return hasFnAttr(Attribute::NoReturn);
237 if (DoesNotReturn) addFnAttr(Attribute::NoReturn);
238 else removeFnAttr(Attribute::NoReturn);
Instructions.h     [all...]
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 34 STATISTIC(NumUnreach, "Number of noreturn calls optimized");
146 NewAttributes |= Attribute::NoReturn;
  /external/llvm/lib/VMCore/
Attributes.cpp 35 if (Attrs & Attribute::NoReturn)
36 Result += "noreturn ";
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 593 /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 454 HANDLE_ATTR(NoReturn);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 911 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 488 unsigned OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 463 unsigned OldRetAttrs = (Attribute::NoUnwind|Attribute::NoReturn|
    [all...]

Completed in 406 milliseconds