| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaExceptionSpec.cpp | 82 ExceptionSpecificationType &EST) { in ActOnNoexceptSpec() argument 86 EST = EST_DependentNoexcept; in ActOnNoexceptSpec() 95 EST = EST_NoexceptFalse; in ActOnNoexceptSpec() 105 EST = EST_DependentNoexcept; in ActOnNoexceptSpec() 110 EST = !Result ? EST_NoexceptFalse : EST_NoexceptTrue; in ActOnNoexceptSpec() 258 auto EST = MD->getType()->castAs<FunctionProtoType>()->getExceptionSpecType(); in exceptionSpecNotKnownYet() local 259 return EST == EST_Unparsed || in exceptionSpecNotKnownYet() 260 (EST == EST_Unevaluated && MD->getParent()->isBeingDefined()); in exceptionSpecNotKnownYet()
|
| H A D | SemaDeclCXX.cpp | 173 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in CalledDecl() local 179 if (EST == EST_None && Method->hasAttr<NoThrowAttr>()) in CalledDecl() 180 EST = EST_BasicNoexcept; in CalledDecl() 182 switch (EST) { in CalledDecl() 194 ComputedEST = EST; in CalledDecl() 219 assert(EST == EST_Dynamic && "EST case not considered earlier."); in CalledDecl() 18187 bool IsTopLevel, ExceptionSpecificationType EST, in checkExceptionSpecification() argument 18193 ESI.Type = EST; in checkExceptionSpecification() 18194 if (EST == EST_Dynamic) { in checkExceptionSpecification() 18220 if (isComputedNoexcept(EST)) { in checkExceptionSpecification() [all …]
|
| H A D | TreeTransform.h | 6012 ExceptionSpecificationType EST = ESI.Type; in TransformExceptionSpec() local 6014 getSema().ActOnNoexceptSpec(NoexceptExpr.get(), EST); in TransformExceptionSpec() 6018 if (ESI.NoexceptExpr != NoexceptExpr.get() || EST != ESI.Type) in TransformExceptionSpec() 6021 ESI.Type = EST; in TransformExceptionSpec()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntimeGPU.h | 51 void emitKernelInit(CodeGenFunction &CGF, EntryFunctionState &EST, 55 void emitKernelDeinit(CodeGenFunction &CGF, EntryFunctionState &EST,
|
| H A D | CGOpenMPRuntimeGPU.cpp | 1017 EntryFunctionState EST; in emitNonSPMDKernel() local 1022 CGOpenMPRuntimeGPU::EntryFunctionState &EST; in emitNonSPMDKernel() member in CGOpenMPRuntimeGPU::emitNonSPMDKernel::NVPTXPrePostActionTy 1026 : EST(EST) {} in emitNonSPMDKernel() 1030 RT.emitKernelInit(CGF, EST, /* IsSPMD */ false); in emitNonSPMDKernel() 1040 } Action(EST); in emitNonSPMDKernel() 1054 emitGenericVarsProlog(CGF, EST.Loc); in emitKernelInit() 1077 EntryFunctionState EST; in emitSPMDKernel() local 1082 CGOpenMPRuntimeGPU::EntryFunctionState &EST; in emitSPMDKernel() member in CGOpenMPRuntimeGPU::emitSPMDKernel::NVPTXPrePostActionTy 1087 : RT(RT), EST(EST) {} in emitSPMDKernel() 1089 RT.emitKernelInit(CGF, EST, /* IsSPMD */ true); in emitSPMDKernel() [all …]
|
| H A D | CGException.cpp | 479 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitStartEHSpec() local 483 if (EST == EST_Dynamic || in EmitStartEHSpec() 484 (EST == EST_DynamicNone && !getLangOpts().CPlusPlus17)) { in EmitStartEHSpec() 493 if (EST == EST_DynamicNone) in EmitStartEHSpec() 509 EST == EST_Dynamic) in EmitStartEHSpec() 586 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitEndEHSpec() local 587 if (EST == EST_Dynamic || in EmitEndEHSpec() 588 (EST == EST_DynamicNone && !getLangOpts().CPlusPlus17)) { in EmitEndEHSpec() 597 if (EST == EST_DynamicNone) in EmitEndEHSpec()
|
| /llvm-project-15.0.7/mlir/test/Dialect/Math/ |
| H A D | polynomial-approximation.mlir | 529 // CHECK-DAG: %[[EST:.+]] = arith.select %[[CMP]], %[[P3]], %[[SUB]] 530 // CHECK-DAG: %[[RES:.+]] = math.copysign %[[EST]], %arg0 559 // CHECK-DAG: %[[EST:.+]] = arith.select %[[CMP]], %[[P3]], %[[SUB]] 560 // CHECK-DAG: %[[ATAN:.+]] = math.copysign %[[EST]], %[[RATIO]]
|
| /llvm-project-15.0.7/clang/lib/Parse/ |
| H A D | ParseCXXInlineMethods.cpp | 485 ExceptionSpecificationType EST in ParseLexedMethodDeclaration() local 495 Actions.actOnDelayedExceptionSpecification(LM.Method, EST, in ParseLexedMethodDeclaration()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CXType.cpp | 747 getExternalExceptionSpecificationKind(ExceptionSpecificationType EST) { in getExternalExceptionSpecificationKind() argument 748 switch (EST) { in getExternalExceptionSpecificationKind()
|
| /llvm-project-15.0.7/llvm/docs/_static/ |
| H A D | LoopOptWG_invite.ics | 18 TZNAME:EST
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Type.h | 4033 ExceptionSpecInfo(ExceptionSpecificationType EST) : Type(EST) {} 4120 getExceptionSpecSize(ExceptionSpecificationType EST, unsigned NumExceptions) { 4121 switch (EST) {
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 734 const VPStoreSDNode *EST = cast<VPStoreSDNode>(N); in AddNodeIDCustom() local 735 ID.AddInteger(EST->getMemoryVT().getRawBits()); in AddNodeIDCustom() 736 ID.AddInteger(EST->getRawSubclassData()); in AddNodeIDCustom() 737 ID.AddInteger(EST->getPointerInfo().getAddrSpace()); in AddNodeIDCustom() 738 ID.AddInteger(EST->getMemOperand()->getFlags()); in AddNodeIDCustom()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 6196 ExceptionSpecificationType &EST); 6201 ExceptionSpecificationType EST, 6216 ExceptionSpecificationType EST,
|