Home
last modified time | relevance | path

Searched refs:stack_ (Results 1 – 11 of 11) sorted by relevance

/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.cpp23 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_.top, &tls_begin_, in SetThreadStackAndTls()
30 __msan_unpoison((void *)stack_.bottom, stack_.top - stack_.bottom); in SetThreadStackAndTls()
42 CHECK(MEM_IS_APP(stack_.bottom)); in ClearShadowForThreadStackAndTLS()
43 CHECK(MEM_IS_APP(stack_.top - 1)); in ClearShadowForThreadStackAndTLS()
77 return {stack_.bottom, stack_.top}; in ThreadStart()
80 // may be in process of overwriting stack_ in ThreadStart()
[all...]
H A Dmsan_thread.h65 StackBounds stack_; variable
/llvm-project/compiler-rt/lib/asan/
H A Dasan_errors.h132 ErrorMallocUsableSizeNotOwned(u32 tid, BufferedStackTrace *stack_, uptr addr) in ErrorMallocUsableSizeNotOwned()
134 stack(stack_), in ErrorMallocUsableSizeNotOwned()
144 ErrorSanitizerGetAllocatedSizeNotOwned(u32 tid, BufferedStackTrace *stack_, in ErrorSanitizerGetAllocatedSizeNotOwned()
147 stack(stack_), in ErrorSanitizerGetAllocatedSizeNotOwned()
158 ErrorCallocOverflow(u32 tid, BufferedStackTrace *stack_, uptr count_, in ErrorCallocOverflow()
161 stack(stack_), in ErrorCallocOverflow()
173 ErrorReallocArrayOverflow(u32 tid, BufferedStackTrace *stack_, uptr count_, in ErrorReallocArrayOverflow()
176 stack(stack_), in ErrorReallocArrayOverflow()
187 ErrorPvallocOverflow(u32 tid, BufferedStackTrace *stack_, uptr size_) in ErrorPvallocOverflow()
189 stack(stack_), in ErrorPvallocOverflow()
[all...]
H A Dasan_allocator.cpp214 stack_(stack) { in QuarantineCallback()
269 ReportOutOfMemory(size, stack_); in Allocate()
277 BufferedStackTrace* const stack_;
276 BufferedStackTrace* const stack_; global() member
/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_thread.cpp24 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_.top, &tls_begin_, in SetThreadStackAndTls()
31 dfsan_set_label(0, (void *)stack_.bottom, stack_.top - stack_.bottom); in SetThreadStackAndTls()
82 return {stack_.bottom, stack_.top}; in ThreadStart()
H A Ddfsan_thread.h65 StackBounds stack_; variable
/llvm-project/flang/runtime/
H A Dformat-implementation.h61 stack_[0].start = offset_;
62 stack_[0].remaining = Iteration::unlimited; // 13.4(8)
296 while (height_ > 1 && format_[stack_[height_ - 1].start] != '(') { in CueUpNextDataEdit()
297 offset_ = stack_[height_ - 1].start; in CueUpNextDataEdit()
298 int repeat{stack_[height_ - 1].remaining}; in CueUpNextDataEdit()
352 stack_[height_].start = offset_ - 1; // the '(' in CueUpNextDataEdit()
353 RUNTIME_CHECK(context, format_[stack_[height_].start] == '('); in CueUpNextDataEdit()
355 stack_[height_].remaining = Iteration::unlimited; in CueUpNextDataEdit()
360 stack_[height_].remaining = *repeat - 1; in CueUpNextDataEdit()
362 stack_[height in CueUpNextDataEdit()
[all...]
H A Dformat.h201 Iteration stack_[maxMaxHeight]; variable
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_report.cpp24 const StackTrace *stack_) in ScopedAllocatorErrorReport() argument
26 stack(stack_) { in ScopedAllocatorErrorReport()
H A Dsanitizer_syscalls_netbsd.inc2115 PRE_SYSCALL(__clone)(long long flags_, void *stack_) { /* Nothing to do */ }
2116 POST_SYSCALL(__clone)(long long res, long long flags_, void *stack_) {
/llvm-project/flang/lib/Semantics/
H A Dresolve-names.cpp495 FuncInfo *Top() { return stack_.empty() ? nullptr : &stack_.back(); } in Top()
497 return stack_.emplace_back(scope, at);
503 std::vector<FuncInfo> stack_;
2380 FuncResultStack::~FuncResultStack() { CHECK(stack_.empty()); } in PushScope()
2417 if (!stack_.empty() && &stack_.back().scope == &scopeHandler_.currScope()) { in FindSymbol()
2418 stack_.pop_back(); in FindSymbol()
501 std::vector<FuncInfo> stack_; global() member in Fortran::semantics::FuncResultStack