HomeSort by relevance Sort by last modified time
    Searched refs:FakeStack (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/lib/asan/
asan_thread.h 80 fake_stack_ = (FakeStack*)MmapOrDie(sizeof(FakeStack), "FakeStack");
86 UnmapOrDie(fake_stack_, sizeof(FakeStack));
88 FakeStack *fake_stack() { return fake_stack_; }
105 FakeStack *fake_stack_;
asan_fake_stack.cc 12 // FakeStack is used to detect use-after-return bugs.
20 bool FakeStack::AddrIsInSizeClass(uptr addr, uptr size_class) {
27 uptr FakeStack::AddrIsInFakeStack(uptr addr) {
40 ALWAYS_INLINE uptr FakeStack::ComputeSizeClass(uptr alloc_size) {
77 void FakeStack::Init(uptr stack_size) {
82 void FakeStack::Cleanup() {
94 uptr FakeStack::ClassMmapSize(uptr size_class) {
101 void FakeStack::AllocateOneSizeClass(uptr size_class) {
118 ALWAYS_INLINE uptr FakeStack::AllocateStack(uptr size, uptr real_stack) {
140 ALWAYS_INLINE void FakeStack::DeallocateFrame(FakeFrame *fake_frame)
    [all...]
asan_fake_stack.h 72 class FakeStack {
113 COMPILER_CHECK(sizeof(FakeStack) <= (1 << 17));

Completed in 50 milliseconds