This file is indexed.

/usr/include/pike8.0/pike/pike_cpulib.h is in pike8.0-dev 8.0.498-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
*/

#ifndef PIKE_CPULIB_H
#define PIKE_CPULIB_H

#if defined (__GNUC__)
#  if defined (__i386__)
#    define HAVE_X86_ASM
#    define HAVE_IA32_ASM
#    define GCC_X86_ASM_STYLE
#    define GCC_IA32_ASM_STYLE
#  elif defined (__amd64__) || defined (__x86_64__)
#    define HAVE_X86_ASM
#    define HAVE_X86_64_ASM
#    define GCC_X86_ASM_STYLE
#    define GCC_X86_64_ASM_STYLE
#  endif
#elif defined (_MSC_VER)
#  if defined (_M_IX86)
#    define HAVE_X86_ASM
#    define HAVE_IA32_ASM
#    define CL_X86_ASM_STYLE
#    define CL_IA32_ASM_STYLE
#  elif defined (_M_X64)
#    define HAVE_X86_ASM
#    define HAVE_X86_64_ASM
#    define CL_X86_ASM_STYLE
#    define CL_X86_64_ASM_STYLE
#  endif
#endif

#ifdef HAVE_X86_ASM
PMOD_EXPORT void x86_get_cpuid(int oper, INT32 *cpuid_ptr);
#endif

#ifdef HAVE_RDTSC
#ifdef GCC_X86_ASM_STYLE
#define RDTSC(v)  do {					    \
   unsigned INT32 __l, __h;                                 \
   __asm__ __volatile__ ("rdtsc" : "=a" (__l), "=d" (__h)); \
   (v)= __l | (((INT64)__h)<<32);                           \
} while (0)
#endif
#ifdef CL_X86_ASM_STYLE
#define RDTSC(v) do {							\
    unsigned INT32 l, h;						\
    __asm {rdtsc}							\
    __asm {mov l, eax}							\
    __asm {mov h, edx}							\
    v = l | ((INT64) h << 32);						\
  } while (0)
#endif
#endif

#ifdef PIKE_NEED_MEMLOCK
extern void init_pike_cpulib(void);
#else
#define init_pike_cpulib()
#endif

#endif /* PIKE_CPULIB_H */