Home | History | Annotate | Line # | Download | only in profile
InstrProfilingPort.h revision 1.1
      1 /*===- InstrProfilingPort.h- Support library for PGO instrumentation ------===*\
      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 #ifndef PROFILE_INSTRPROFILING_PORT_H_
     11 #define PROFILE_INSTRPROFILING_PORT_H_
     12 
     13 #ifdef _MSC_VER
     14 #define COMPILER_RT_ALIGNAS(x) __declspec(align(x))
     15 #define COMPILER_RT_VISIBILITY
     16 #define COMPILER_RT_WEAK __declspec(selectany)
     17 #elif __GNUC__
     18 #define COMPILER_RT_ALIGNAS(x) __attribute__((aligned(x)))
     19 #define COMPILER_RT_VISIBILITY __attribute__((visibility("hidden")))
     20 #define COMPILER_RT_WEAK __attribute__((weak))
     21 #endif
     22 
     23 #define COMPILER_RT_SECTION(Sect) __attribute__((section(Sect)))
     24 
     25 #if COMPILER_RT_HAS_ATOMICS == 1
     26 #ifdef _MSC_VER
     27 #include <windows.h>
     28 #define snprintf _snprintf
     29 #if defined(_WIN64)
     30 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV)                              \
     31   (InterlockedCompareExchange64((LONGLONG volatile *)Ptr, (LONGLONG)NewV,      \
     32                                 (LONGLONG)OldV) == (LONGLONG)OldV)
     33 #else /* !defined(_WIN64) */
     34 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV)                              \
     35   (InterlockedCompareExchange((LONG volatile *)Ptr, (LONG)NewV, (LONG)OldV) == \
     36    (LONG)OldV)
     37 #endif
     38 #else /* !defined(_MSC_VER) */
     39 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV)                              \
     40   __sync_bool_compare_and_swap(Ptr, OldV, NewV)
     41 #endif
     42 #else /* COMPILER_RT_HAS_ATOMICS != 1 */
     43 #define COMPILER_RT_BOOL_CMPXCHG(Ptr, OldV, NewV)                              \
     44   BoolCmpXchg((void **)Ptr, OldV, NewV)
     45 #endif
     46 
     47 #define PROF_ERR(Format, ...)                                                  \
     48   if (GetEnvHook && GetEnvHook("LLVM_PROFILE_VERBOSE_ERRORS"))                 \
     49     fprintf(stderr, Format, __VA_ARGS__);
     50 
     51 #if defined(__FreeBSD__)
     52 
     53 #include <inttypes.h>
     54 #include <sys/types.h>
     55 
     56 #else /* defined(__FreeBSD__) */
     57 
     58 #include <inttypes.h>
     59 #include <stdint.h>
     60 
     61 #endif /* defined(__FreeBSD__) && defined(__i386__) */
     62 
     63 #endif /* PROFILE_INSTRPROFILING_PORT_H_ */
     64