Searched defs:ESI (Results 1 - 16 of 16) sorted by relevance

/external/libunwind/src/x86/
H A Dunwind_i.h42 #define ESI 6 macro
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.h50 EAX = 0, ECX = 1, EDX = 2, EBX = 3, ESP = 4, EBP = 5, ESI = 6, EDI = 7 enumerator in enum:llvm::N86::__anon13219
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DSolaris.h32 #undef ESI macro
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.h46 EAX = 0, ECX = 1, EDX = 2, EBX = 3, ESP = 4, EBP = 5, ESI = 6, EDI = 7 enumerator in enum:llvm::N86::__anon18863
/external/llvm/include/llvm/Support/
H A DSolaris.h41 #undef ESI macro
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dptrace-abi.h9 #define ESI 3 macro
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp181 const FunctionProtoType::ExceptionSpecInfo &ESI) {
183 if (!isUnresolvedExceptionSpec(ESI.Type))
188 Context.adjustExceptionSpec(cast<FunctionDecl>(Redecl), ESI); local
276 FunctionProtoType::ExceptionSpecInfo ESI = OldProto->getExceptionSpecType(); local
277 if (ESI.Type == EST_Dynamic) {
278 ESI.Exceptions = OldProto->exceptions();
281 if (ESI.Type == EST_ComputedNoexcept) {
291 NewProto->getExtProtoInfo().withExceptionSpec(ESI)));
294 if (getLangOpts().MicrosoftExt && ESI.Type != EST_ComputedNoexcept) {
299 ESI
180 UpdateExceptionSpec(FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI) argument
[all...]
H A DSemaTemplateInstantiate.cpp1573 [](FunctionProtoType::ExceptionSpecInfo &ESI,
1586 FunctionProtoType::ExceptionSpecInfo ESI = local
1588 assert(ESI.Type != EST_Uninstantiated);
1596 New->getTypeSourceInfo()->getTypeLoc().getLocEnd(), ESI,
1599 ESI.Type = EST_None;
1601 UpdateExceptionSpec(New, ESI);
H A DSemaDeclCXX.cpp5336 auto ESI = computeImplicitExceptionSpec(*this, Loc, MD).getExceptionSpec();
5339 UpdateExceptionSpec(MD, ESI);
5347 UpdateExceptionSpec(MD->getCanonicalDecl(), ESI);
13856 FunctionProtoType::ExceptionSpecInfo &ESI) {
13858 ESI.Type = EST;
13881 ESI.Exceptions = Exceptions;
13894 ESI.Type = EST_BasicNoexcept;
13902 ESI.NoexceptExpr = NoexceptExpr;
13927 FunctionProtoType::ExceptionSpecInfo ESI; local
13930 ESI);
13851 checkExceptionSpecification( bool IsTopLevel, ExceptionSpecificationType EST, ArrayRef<ParsedType> DynamicExceptions, ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, SmallVectorImpl<QualType> &Exceptions, FunctionProtoType::ExceptionSpecInfo &ESI) argument
[all...]
H A DTreeTransform.h587 FunctionProtoType::ExceptionSpecInfo &ESI,
4924 [&](FunctionProtoType::ExceptionSpecInfo &ESI, bool &Changed) {
4925 return This->TransformExceptionSpec(TL.getBeginLoc(), ESI,
5025 SourceLocation Loc, FunctionProtoType::ExceptionSpecInfo &ESI,
5027 assert(ESI.Type != EST_Uninstantiated && ESI.Type != EST_Unevaluated);
5030 if (ESI.Type == EST_ComputedNoexcept) {
5033 ExprResult NoexceptExpr = getDerived().TransformExpr(ESI.NoexceptExpr);
5051 if (ESI.NoexceptExpr != NoexceptExpr.get())
5053 ESI
5024 TransformExceptionSpec( SourceLocation Loc, FunctionProtoType::ExceptionSpecInfo &ESI, SmallVectorImpl<QualType> &Exceptions, bool &Changed) argument
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp3871 FunctionProtoType::ExceptionSpecInfo ESI; local
3873 Reader.readExceptionSpec(ModuleFile, ExceptionStorage, ESI, Record, Idx);
3883 FPT->getExtProtoInfo().withExceptionSpec(ESI)));
H A DASTReader.cpp5684 FunctionProtoType::ExceptionSpecInfo &ESI,
5688 ESI.Type = EST;
5692 ESI.Exceptions = Exceptions;
5694 ESI.NoexceptExpr = ReadExpr(ModuleFile);
5696 ESI.SourceDecl = ReadDeclAs<FunctionDecl>(ModuleFile, Record, Idx);
5697 ESI.SourceTemplate = ReadDeclAs<FunctionDecl>(ModuleFile, Record, Idx);
5699 ESI.SourceDecl = ReadDeclAs<FunctionDecl>(ModuleFile, Record, Idx);
8641 auto ESI = FPT->getExtProtoInfo().ExceptionSpec;
8645 Context.adjustExceptionSpec(cast<FunctionDecl>(Redecl), ESI);
5682 readExceptionSpec(ModuleFile &ModuleFile, SmallVectorImpl<QualType> &Exceptions, FunctionProtoType::ExceptionSpecInfo &ESI, const RecordData &Record, unsigned &Idx) argument
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h501 ESI = 23, member in class:llvm::codeview::CallingConvention::ClassOptions::FrameProcedureOptions::FunctionOptions::HfaKind::MemberAccess::MethodKind::MethodOptions::ModifierOptions::PointerKind::PointerMode::PointerOptions::PointerToMemberRepresentation::VFTableSlotKind::WindowsRTClassKind::ExportFlags::RegisterId
/external/clang/include/clang/Sema/
H A DSema.h1310 const FunctionProtoType::ExceptionSpecInfo &ESI);
4384 FunctionProtoType::ExceptionSpecInfo ESI; local
4385 ESI.Type = getExceptionSpecType();
4386 if (ESI.Type == EST_Dynamic) {
4387 ESI.Exceptions = Exceptions;
4388 } else if (ESI.Type == EST_None) {
4392 ESI.Type = EST_ComputedNoexcept;
4393 ESI.NoexceptExpr = Self->ActOnCXXBoolLiteral(SourceLocation(),
4396 return ESI;
4451 FunctionProtoType::ExceptionSpecInfo &ESI);
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp2265 const FunctionProtoType::ExceptionSpecInfo &ESI) {
2269 getFunctionTypeWithExceptionSpec(Context, PT->getInnerType(), ESI));
2275 getFunctionTypeWithExceptionSpec(Context, AT->getModifiedType(), ESI),
2277 ESI));
2284 Proto->getExtProtoInfo().withExceptionSpec(ESI));
2288 FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI,
2292 getFunctionTypeWithExceptionSpec(*this, FD->getType(), ESI);
2303 Updated = getFunctionTypeWithExceptionSpec(*this, TSInfo->getType(), ESI);
2263 getFunctionTypeWithExceptionSpec( ASTContext &Context, QualType Orig, const FunctionProtoType::ExceptionSpecInfo &ESI) argument
2287 adjustExceptionSpec( FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI, bool AsWritten) argument
/external/mesa3d/src/mesa/x86/
H A Dassyntax.h112 #define ESI si macro
174 #define ESI %esi macro
844 #define P_ESI ESI
845 #define L_ESI ESI

Completed in 910 milliseconds