| 404 | } |
| 405 | |
| 406 | bool AsanThread::AddrIsInStack(uptr addr) { |
| 407 | const auto bounds = GetStackBounds(); |
| 408 | return addr >= bounds.bottom && addr < bounds.top; |
| 409 | } |
| 410 | |
| 411 | static bool ThreadStackContainsAddress(ThreadContextBase *tctx_base, |
| 412 | void *addr) { |
no outgoing calls
no test coverage detected