Home
last modified time | relevance | path

Searched refs:EST (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExceptionSpec.cpp82 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 DSemaDeclCXX.cpp173 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 DTreeTransform.h6012 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 DCGOpenMPRuntimeGPU.h51 void emitKernelInit(CodeGenFunction &CGF, EntryFunctionState &EST,
55 void emitKernelDeinit(CodeGenFunction &CGF, EntryFunctionState &EST,
H A DCGOpenMPRuntimeGPU.cpp1017 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 DCGException.cpp479 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 Dpolynomial-approximation.mlir529 // 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 DParseCXXInlineMethods.cpp485 ExceptionSpecificationType EST in ParseLexedMethodDeclaration() local
495 Actions.actOnDelayedExceptionSpecification(LM.Method, EST, in ParseLexedMethodDeclaration()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXType.cpp747 getExternalExceptionSpecificationKind(ExceptionSpecificationType EST) { in getExternalExceptionSpecificationKind() argument
748 switch (EST) { in getExternalExceptionSpecificationKind()
/llvm-project-15.0.7/llvm/docs/_static/
H A DLoopOptWG_invite.ics18 TZNAME:EST
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h4033 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 DSelectionDAG.cpp734 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 DSema.h6196 ExceptionSpecificationType &EST);
6201 ExceptionSpecificationType EST,
6216 ExceptionSpecificationType EST,