#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include "sanitizer/asan_interface.h"
#if defined(_MSC_VER) && !defined(alloca)
# define alloca _alloca
#endif
#if defined(__sun__) && defined(__svr4__)
#include <alloca.h>
#endif
#define RZ 32
__attribute__((noinline)) void foo(int len) {
char *top, *bot;
char *alloca1 = (char *)alloca(len);
assert(!(reinterpret_cast<uintptr_t>(alloca1) & 31L));
top = alloca1 - RZ;
for (int i = 0; i < 32; ++i) {
if (i) assert(!__asan_region_is_poisoned(bot, 96));
volatile char array[i];
if (i) array[0] = 0;
assert(!(reinterpret_cast<uintptr_t>(array) & 31L));
bot = (char *)alloca(i) - RZ;
}
void *q = __asan_region_is_poisoned(bot, (char *)top - (char *)bot + 1);
assert(q == top);
}
int main(int argc, char **argv) {
foo(32);
return 0;
}