| /llvm-project-15.0.7/compiler-rt/lib/msan/ |
| H A D | msan_thread.cpp | 25 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_size, &tls_begin_, in SetThreadStackAndTls() 27 stack_.top = stack_.bottom + stack_size; in SetThreadStackAndTls() 35 __msan_unpoison((void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS() 47 CHECK(MEM_IS_APP(stack_.bottom)); in Init() 48 CHECK(MEM_IS_APP(stack_.top - 1)); in Init() 83 return {stack_.bottom, stack_.top}; in GetStackBounds() 90 return {stack_.bottom, stack_.top}; in GetStackBounds() 112 *bottom_old = stack_.bottom; in FinishSwitchFiber() 114 *size_old = stack_.top - stack_.bottom; in FinishSwitchFiber() 115 stack_.bottom = next_stack_.bottom; in FinishSwitchFiber() [all …]
|
| H A D | msan_thread.h | 65 StackBounds stack_; variable
|
| /llvm-project-15.0.7/compiler-rt/lib/asan/ |
| H A D | asan_errors.h | 134 stack(stack_), in ErrorMallocUsableSizeNotOwned() 147 stack(stack_), in ErrorSanitizerGetAllocatedSizeNotOwned() 161 stack(stack_), in ErrorCallocOverflow() 176 stack(stack_), in ErrorReallocArrayOverflow() 189 stack(stack_), in ErrorPvallocOverflow() 202 stack(stack_), in ErrorInvalidAllocationAlignment() 216 stack(stack_), in ErrorInvalidAlignedAllocAlignment() 230 stack(stack_), in ErrorInvalidPosixMemalignAlignment() 245 stack(stack_), in ErrorAllocationSizeTooBig() 269 stack(stack_), in ErrorOutOfMemory() [all …]
|
| H A D | asan_allocator.cpp | 196 stack_(stack) { in QuarantineCallback() 228 ReportOutOfMemory(size, stack_); in Allocate() 238 BufferedStackTrace* const stack_; member
|
| /llvm-project-15.0.7/compiler-rt/lib/dfsan/ |
| H A D | dfsan_thread.cpp | 26 GetThreadStackAndTls(IsMainThread(), &stack_.bottom, &stack_size, &tls_begin_, in SetThreadStackAndTls() 28 stack_.top = stack_.bottom + stack_size; in SetThreadStackAndTls() 36 dfsan_set_label(0, (void *)stack_.bottom, stack_.top - stack_.bottom); in ClearShadowForThreadStackAndTLS() 87 return {stack_.bottom, stack_.top}; in GetStackBounds()
|
| H A D | dfsan_thread.h | 65 StackBounds stack_; variable
|
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | format-implementation.h | 32 stack_[0].start = offset_; 33 stack_[0].remaining = Iteration::unlimited; // 13.4(8) 178 offset_ = stack_[height_ - 1].start; in CueUpNextDataEdit() 179 int repeat{stack_[height_ - 1].remaining}; in CueUpNextDataEdit() 226 stack_[height_].start = offset_ - 1; // the '(' in CueUpNextDataEdit() 235 stack_[height_].remaining = *repeat - 1; in CueUpNextDataEdit() 237 stack_[height_].remaining = 0; in CueUpNextDataEdit() 243 stack_[0].start = maybeReversionPoint; in CueUpNextDataEdit() 256 auto restart{stack_[height_ - 1].start}; in CueUpNextDataEdit() 275 } else if (stack_[height_ - 1].remaining-- > 0) { in CueUpNextDataEdit() [all …]
|
| H A D | format.h | 183 Iteration stack_[maxMaxHeight]; variable
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_allocator_report.cpp | 24 const StackTrace *stack_) in ScopedAllocatorErrorReport() argument 26 stack(stack_) { in ScopedAllocatorErrorReport()
|
| H A D | sanitizer_syscalls_netbsd.inc | 2115 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-15.0.7/flang/lib/Semantics/ |
| H A D | resolve-names.cpp | 484 FuncInfo *Top() { return stack_.empty() ? nullptr : &stack_.back(); } in Top() 485 FuncInfo &Push(const Scope &scope) { return stack_.emplace_back(scope); } in Push() 490 std::vector<FuncInfo> stack_; member in Fortran::semantics::FuncResultStack 2050 FuncResultStack::~FuncResultStack() { CHECK(stack_.empty()); } in ~FuncResultStack() 2080 if (!stack_.empty() && &stack_.back().scope == &scopeHandler_.currScope()) { in Pop() 2081 stack_.pop_back(); in Pop()
|