This file is indexed.

/usr/include/hphp/util/dwarf-reg.h is in hhvm-dev 3.21.0+dfsg-2ubuntu2.

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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
   +----------------------------------------------------------------------+
   | HipHop for PHP                                                       |
   +----------------------------------------------------------------------+
   | Copyright (c) 2010-present Facebook, Inc. (http://www.facebook.com)  |
   +----------------------------------------------------------------------+
   | This source file is subject to version 3.01 of the PHP license,      |
   | that is bundled with this package in the file LICENSE, and is        |
   | available through the world-wide-web at the following url:           |
   | http://www.php.net/license/3_01.txt                                  |
   | If you did not receive a copy of the PHP license and are unable to   |
   | obtain it through the world-wide-web, please send a note to          |
   | license@php.net so we can mail you a copy immediately.               |
   +----------------------------------------------------------------------+
*/

#ifndef HPHP_UTIL_DWARF_REG_H_
#define HPHP_UTIL_DWARF_REG_H_

#include <cstdint>

namespace HPHP { namespace dw_reg {

///////////////////////////////////////////////////////////////////////////////

enum class x64 : uint8_t {
  RAX, RDX, RCX, RBX, RSI, RDI, RBP, RSP,
  R8,  R9,  R10, R11, R12, R13, R14, R15, RIP
};

enum class ppc64 : uint8_t {
  R0,  R1,  TOC, R3,  R4,  R5,  R6,  R7,  R8,  R9,  R10, R11, R12, TLS,
  R14, R15, R16, R17, R18, R19, R20, R21, R22, R23, R24, R25, R26, SP,
  R28, R29, R30, FP,  LR = 65
};

enum class arm : uint8_t {
  X0,  X1,  X2,  X3,  X4,  X5,  X6,  X7,
  X8,  X9,  X10, X11, X12, X13, X14, X15,
  X16, X17, X18, X19, X20, X21, X22, X23,
  X24, X25, X26, X27, X28, X29, X30, SP
};

constexpr auto FP = static_cast<uint8_t>(
#if defined(__x86_64__)
  x64::RBP
#elif defined(__powerpc64__)
  ppc64::FP
#elif defined(__aarch64__)
  arm::X29
#else
  0
#endif
);

constexpr auto SP = static_cast<uint8_t>(
#if defined(__x86_64__)
  x64::RSP
#elif defined(__powerpc64__)
  ppc64::SP
#elif defined(__aarch64__)
  arm::SP
#else
  0
#endif
);

constexpr auto IP = static_cast<uint8_t>(
#if defined(__x86_64__)
  x64::RIP
#elif defined(__powerpc64__)
  ppc64::LR
#elif defined(__aarch64__)
  arm::X30
#else
  0
#endif
);

#if defined(__powerpc64__)
constexpr auto TOC = static_cast<uint8_t>(
  ppc64::TOC
);
#endif

///////////////////////////////////////////////////////////////////////////////

}}

#endif