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

  /external/clang/test/Analysis/
temp-obj-dtors-cfg-output.cpp 141 class NoReturn {
143 ~NoReturn() __attribute__((noreturn));
149 NoReturn().f();
155 NoReturn(), 47;
159 extern bool check(const NoReturn&);
164 if (!value || check(NoReturn())) {
174 if (!value || !value || check(NoReturn())) {
184 if (!value || value || check(NoReturn())) {
    [all...]
dtor.cpp 380 ~NRCheck() __attribute__((noreturn));
469 namespace NoReturn {
471 ~NR() __attribute__((noreturn));
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 342 /// Whether this function is noreturn.
343 unsigned NoReturn : 1;
399 bool isNoReturn() const { return NoReturn; }
449 ID.AddBoolean(NoReturn);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 219 constexpr int NoReturn() {} // expected-error {{no return statement in constexpr function}}
  /external/llvm/include/llvm/IR/
Function.h 258 Attribute::NoReturn);
261 addFnAttr(Attribute::NoReturn);
Attributes.h 92 NoReturn, ///< Mark the function as not returning
Instructions.h     [all...]
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 35 STATISTIC(NumUnreach, "Number of noreturn calls optimized");
146 NewAttributes.addAttribute(Attribute::NoReturn);
  /external/clang/test/SemaCXX/
cxx1y-deduced-return-type.cpp 304 namespace NoReturn {
  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 284 // noreturn optimization if the caller function has uwtable attribute.
296 // Check if this instruction is a call to a noreturn function. If this
297 // is a call to noreturn function and we don't need the stack unwinding
308 if (!Func || !Func->hasFnAttribute(Attribute::NoReturn) ||
420 // code. Uses in debug and noreturn instructions do not impact the
  /external/llvm/lib/IR/
Attributes.cpp 202 if (hasAttribute(Attribute::NoReturn))
203 return "noreturn";
363 case Attribute::NoReturn: return 1 << 2;
    [all...]
Verifier.cpp 752 if (I->getKindAsEnum() == Attribute::NoReturn ||
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 540 FI->NoReturn = info.getNoReturn();
    [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 58 /// terms of noreturn and default calling convention adjustments.
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 206 case Attribute::NoReturn:
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 496 HANDLE_ATTR(NoReturn);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 594 return Attribute::NoReturn;
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 2567 milliseconds