blob: 586f551c23c323ac033d2510c089a49adb0a84aa [file] [log] [blame]
Kostya Serebryany33934ff2013-02-22 07:51:26 +00001//===-- asan_preinit.cc ---------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of AddressSanitizer, an address sanity checker.
11//
12// Call __asan_init at the very early stage of process startup.
13// On Linux we use .preinit_array section (unless PIC macro is defined).
14//===----------------------------------------------------------------------===//
15#include "asan_internal.h"
16
17#if ASAN_USE_PREINIT_ARRAY && !defined(PIC)
18 // On Linux, we force __asan_init to be called before anyone else
19 // by placing it into .preinit_array section.
20 // FIXME: do we have anything like this on Mac?
Alexander Potapenkoa7e8c972013-05-23 09:15:20 +000021 // The symbol is called __local_asan_preinit, because it's not intended to be
22 // exported.
Kostya Serebryany33934ff2013-02-22 07:51:26 +000023 __attribute__((section(".preinit_array"), used))
Alexander Potapenkoa7e8c972013-05-23 09:15:20 +000024 void (*__local_asan_preinit)(void) = __asan_init;
Evgeniy Stepanov24e13722013-03-19 14:33:38 +000025#elif SANITIZER_WINDOWS && defined(_DLL)
Kostya Serebryany33934ff2013-02-22 07:51:26 +000026 // On Windows, when using dynamic CRT (/MD), we can put a pointer
27 // to __asan_init into the global list of C initializers.
28 // See crt0dat.c in the CRT sources for the details.
29 #pragma section(".CRT$XIB", long, read) // NOLINT
30 __declspec(allocate(".CRT$XIB")) void (*__asan_preinit)() = __asan_init;
31#endif