Home
last modified time | relevance | path

Searched refs:context (Results 251 – 275 of 1961) sorted by last modified time

1...<<11121314151617181920>>...79

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_linux.cpp221 void SignContextStack(void *context) { in SignContextStack() argument
222 ucontext_t *ucp = reinterpret_cast<ucontext_t *>(context); in SignContextStack()
226 void ReadContextStack(void *context, uptr *stack, uptr *ssize) { in ReadContextStack() argument
227 const ucontext_t *ucp = reinterpret_cast<const ucontext_t *>(context); in ReadContextStack()
H A Dasan_mac.cpp138 typedef void (*dispatch_mach_handler_function_t)(void *context,
172 asan_block_context_t *context = (asan_block_context_t*)block; in asan_dispatch_call_block_and_release() local
177 asan_register_worker_thread(context->parent_tid, &stack); in asan_dispatch_call_block_and_release()
179 context->func(context->block); in asan_dispatch_call_block_and_release()
180 asan_free(context, &stack, FROM_MALLOC); in asan_dispatch_call_block_and_release()
H A Dasan_posix.cpp37 void AsanOnDeadlySignal(int signo, void *siginfo, void *context) { in AsanOnDeadlySignal() argument
39 SignalContext sig(siginfo, context); in AsanOnDeadlySignal()
135 AsanThreadContext *context = (AsanThreadContext *)tsd; in PlatformTSDDtor() local
136 if (context->destructor_iterations > 1) { in PlatformTSDDtor()
137 context->destructor_iterations--; in PlatformTSDDtor()
H A Dasan_stack.cpp57 uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) { in UnwindImpl() argument
77 Unwind(max_depth, pc, bp, context, t ? t->stack_top() : 0, in UnwindImpl()
H A Dasan_thread.cpp117 if (context->thread) in TSDDtor()
118 context->thread->Destroy(); in TSDDtor()
422 AsanThreadContext *context = in GetCurrentThread() local
424 if (!context) { in GetCurrentThread()
439 return context->thread; in GetCurrentThread()
443 CHECK(t->context()); in SetCurrentThread()
448 AsanTSDSet(t->context()); in SetCurrentThread()
466 AsanThreadContext *context = in EnsureMainThreadIDIsCorrect() local
468 if (context && (context->tid == kMainTid)) in EnsureMainThreadIDIsCorrect()
475 if (!context) in GetAsanThreadByOsIDLocked()
[all …]
H A Dasan_thread.h93 AsanThreadContext *context() { return context_; } in context() function
94 void set_context(AsanThreadContext *context) { context_ = context; } in set_context() argument
H A Dasan_win.cpp55 CONTEXT *context = info->ContextRecord; in __asan_unhandled_exception_filter() local
59 SignalContext sig(exception_record, context); in __asan_unhandled_exception_filter()
280 void AsanOnDeadlySignal(int, void *siginfo, void *context) { UNIMPLEMENTED(); } in AsanOnDeadlySignal() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A DREADME.txt229 _Unwind_Context_t context);
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp279 void validateType(PropertyType type, WrappedRecord context);
326 WrappedRecord context) { in validateType() argument
331 if (context) PrintNote(context.getLoc(), "type used here"); in validateType()
334 validateType(eltType, context); in validateType()
336 validateType(valueType, context); in validateType()
341 if (context) PrintNote(context.getLoc(), "type used here"); in validateType()
345 if (context) PrintNote(context.getLoc(), "type used here"); in validateType()
349 if (context) PrintNote(context.getLoc(), "type used here"); in validateType()
/freebsd/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc676 * 1 in bit 57 indicates there are context-sensitive records in the profile.
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp52 SValBuilder::SValBuilder(llvm::BumpPtrAllocator &alloc, ASTContext &context, in SValBuilder() argument
54 : Context(context), BasicVals(context, alloc), in SValBuilder()
55 SymMgr(context, BasicVals, alloc), MemMgr(context, alloc), in SValBuilder()
59 ArrayIndexTy(context.LongLongTy), in SValBuilder()
60 ArrayIndexWidth(context.getTypeSize(ArrayIndexTy)) {} in SValBuilder()
H A DSimpleSValBuilder.cpp66 SimpleSValBuilder(llvm::BumpPtrAllocator &alloc, ASTContext &context, in SimpleSValBuilder() argument
68 : SValBuilder(alloc, context, stateMgr) {} in SimpleSValBuilder()
101 ASTContext &context, in createSimpleSValBuilder() argument
103 return new SimpleSValBuilder(alloc, context, stateMgr); in createSimpleSValBuilder()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp4842 switch (auto context = state.getDeclarator().getContext()) { in GetFullTypeForDeclarator() local
4887 inferNullabilityCS = (context == DeclaratorContext::ObjCParameter || in GetFullTypeForDeclarator()
4888 context == DeclaratorContext::ObjCResult); in GetFullTypeForDeclarator()
H A DSemaDeclObjC.cpp1366 ObjCTypeArgOrProtocolValidatorCCC(ASTContext &context, in ObjCTypeArgOrProtocolValidatorCCC() argument
1368 : Context(context), LookupKind(lookupKind) { } in ObjCTypeArgOrProtocolValidatorCCC()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp1295 DeclaratorContext context, in ParseObjCTypeName() argument
1297 assert(context == DeclaratorContext::ObjCParameter || in ParseObjCTypeName()
1298 context == DeclaratorContext::ObjCResult); in ParseObjCTypeName()
1300 (context == DeclaratorContext::ObjCParameter)); in ParseObjCTypeName()
1310 ParseObjCTypeQualifierList(DS, context); in ParseObjCTypeName()
1319 if (context == DeclaratorContext::ObjCResult) in ParseObjCTypeName()
1322 Declarator declarator(declSpec, ParsedAttributesView::none(), context); in ParseObjCTypeName()
1341 if (context == DeclaratorContext::ObjCParameter) in ParseObjCTypeName()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp185 void InitializeCommon(ASTContext &context);
409 void Initialize(ASTContext &context) override;
673 void RewriteModernObjC::InitializeCommon(ASTContext &context) { in InitializeCommon() argument
674 Context = &context; in InitializeCommon()
5885 void RewriteModernObjC::Initialize(ASTContext &context) { in Initialize() argument
5886 InitializeCommon(context); in Initialize()
H A DRewriteObjC.cpp166 void InitializeCommon(ASTContext &context);
325 void Initialize(ASTContext &context) override = 0;
516 void Initialize(ASTContext &context) override;
601 void RewriteObjC::InitializeCommon(ASTContext &context) { in InitializeCommon() argument
602 Context = &context; in InitializeCommon()
4940 void RewriteObjCFragileABI::Initialize(ASTContext &context) { in Initialize() argument
4941 InitializeCommon(context); in Initialize()
H A DHTMLPrint.cpp43 void Initialize(ASTContext &context) override;
55 void HTMLPrinter::Initialize(ASTContext &context) { in Initialize() argument
56 R.setSourceMgr(context.getSourceManager(), context.getLangOpts()); in Initialize()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp2625 bool ASTUnit::visitLocalTopLevelDecls(void *context, DeclVisitorFn Fn) { in visitLocalTopLevelDecls() argument
2630 if (!Fn(context, D)) in visitLocalTopLevelDecls()
2640 if (!Fn(context, *TL)) in visitLocalTopLevelDecls()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp1288 ObjCSubstitutionContext context) in SubstObjCTypeArgsVisitor()
1289 : BaseType(ctx), TypeArgs(typeArgs), SubstContext(context) {} in SubstObjCTypeArgsVisitor()
1546 ObjCSubstitutionContext context) const { in substObjCTypeArgs()
1547 SubstObjCTypeArgsVisitor visitor(ctx, typeArgs, context); in substObjCTypeArgs()
1553 ObjCSubstitutionContext context) const { in substObjCMemberType()
1555 return substObjCTypeArgs(dc->getParentASTContext(), *subs, context); in substObjCMemberType()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSValBuilder.h79 SValBuilder(llvm::BumpPtrAllocator &alloc, ASTContext &context,
412 ASTContext &context,
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesFormat.h269 ContextTableKey(std::optional<Context> context, IdentifierID nameID) in ContextTableKey()
270 : parentContextID(context ? context->id.Value : (uint32_t)-1), in ContextTableKey()
271 contextKind(context ? static_cast<uint8_t>(context->kind) in ContextTableKey()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td1350 HelpText<"Check that NSLocalizedString macros include a comment for context">,
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1715 …HelpText<"Generate instrumented code to collect context sensitive execution counts into default.pr…
1719 …HelpText<"Generate instrumented code to collect context sensitive execution counts into <directory…
7722 def fmodules_strict_context_hash : Flag<["-"], "fmodules-strict-context-hash">,
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DASTUnit.h639 using DeclVisitorFn = bool (*)(void *context, const Decl *D);
645 bool visitLocalTopLevelDecls(void *context, DeclVisitorFn Fn);

1...<<11121314151617181920>>...79