HomeSort by: relevance | last modified time | path
    Searched defs:NoReturn (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CalledOnceCheck.cpp 111 // to noreturn functions. Such paths are not required to have parameter
113 // we don't want to reuse `Escaped` and, thus, have another kind `NoReturn`.
128 // 3. for any Kind K: NoReturn | K == K
129 // We can totally ignore noreturn paths during merges.
149 NoReturn = 0x0, /* 0000 */
1492 PS = ParameterStatus::NoReturn;
CFG.cpp 1616 /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the
2605 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
2628 NoReturn = true;
2640 assert(!NoReturn && "noreturn calls with unevaluated args not implemented");
2647 if (!NoReturn && !AddEHEdge) {
2660 if (NoReturn)
5633 OS << " (NORETURN)]\n";
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
llvm_debuginfo.ml 85 | NoReturn
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateDeduction.cpp 96 /// terms of noreturn and default calling convention adjustments, or
1155 /// function types (noreturn adjustment, implicit calling conventions). If any
1170 // Noreturn and noexcept adjustment.
3480 // Also allow conversions which merely strip __attribute__((noreturn)) from
4246 bool NoReturn = FunctionTypeP->getNoReturnAttr();
4247 if (EPI.ExtInfo.getNoReturn() != NoReturn) {
4248 EPI.ExtInfo = EPI.ExtInfo.withNoReturn(NoReturn);
4326 // of calling convention and noreturn.
4387 // noreturn can't be dependent, so we don't actually need this for them
SemaExpr.cpp 15455 bool NoReturn = BD->hasAttr<NoReturnAttr>();
15463 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
15474 (!NoReturn || FTy->getNoReturnAttr())) {
15489 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);

Completed in 35 milliseconds