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

  /external/clang/test/SemaCXX/
return-noreturn.cpp 1 // RUN: %clang_cc1 %s -fsyntax-only -fcxx-exceptions -verify -Wreturn-type -Wmissing-noreturn -Wno-unreachable-code -Wno-covered-switch-default
2 // RUN: %clang_cc1 %s -fsyntax-only -fcxx-exceptions -std=c++11 -verify -Wreturn-type -Wmissing-noreturn -Wno-unreachable-code -Wno-covered-switch-default
4 // A destructor may be marked noreturn and should still influence the CFG.
5 void pr6884_abort() __attribute__((noreturn));
9 ~pr6884_abort_struct() __attribute__((noreturn)) { pr6884_abort(); }
43 // FIXME: detect noreturn destructors triggered by calls to delete.
149 struct NoReturn {
150 ~NoReturn() __attribute__((noreturn));
159 true ? NoReturn() : NoReturn()
    [all...]
cxx1y-deduced-return-type.cpp 304 namespace NoReturn {
  /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 358 /// Whether this function is noreturn.
359 unsigned NoReturn : 1;
421 bool isNoReturn() const { return NoReturn; }
472 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 263 Attribute::NoReturn);
266 addFnAttr(Attribute::NoReturn);
Attributes.h 94 NoReturn, ///< Mark the function as not returning
Instructions.h     [all...]
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 37 STATISTIC(NumUnreach, "Number of noreturn calls optimized");
148 NewAttributes.addAttribute(Attribute::NoReturn);
  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 306 // noreturn optimization if the caller function has uwtable attribute.
318 // Check if this instruction is a call to a noreturn function. If this
319 // is a call to noreturn function and we don't need the stack unwinding
330 if (!Func || !Func->hasFnAttribute(Attribute::NoReturn) ||
445 // code. Uses in debug and noreturn instructions do not impact the
  /external/llvm/lib/IR/
Attributes.cpp 229 if (hasAttribute(Attribute::NoReturn))
230 return "noreturn";
399 case Attribute::NoReturn: return 1 << 2;
    [all...]
Verifier.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 550 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/Target/CppBackend/
CPPBackend.cpp 499 HANDLE_ATTR(NoReturn);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 207 case Attribute::NoReturn:
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 1117 milliseconds