File: RISCV64Registers.h

package info (click to toggle)
webkit2gtk 2.44.2-1~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 367,728 kB
  • sloc: cpp: 2,946,520; javascript: 194,328; ansic: 137,901; python: 45,716; ruby: 18,487; asm: 16,672; perl: 16,476; xml: 4,376; yacc: 2,350; sh: 2,127; java: 1,711; lex: 1,323; pascal: 333; makefile: 323
file content (118 lines) | stat: -rw-r--r-- 4,595 bytes parent folder | download | duplicates (3)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * Copyright (C) 2021 Igalia S.L.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#pragma once

#include <wtf/Platform.h>

#if CPU(RISCV64)

// More on the RISC-V calling convention and registers:
// https://riscv.org/wp-content/uploads/2015/01/riscv-calling.pdf
// https://riscv.org/wp-content/uploads/2017/05/riscv-spec-v2.2.pdf (Chapter 20)

#define RegisterNames RISCV64Registers

#define FOR_EACH_GP_REGISTER(macro)    \
    macro(x0, "x0", 1, 0)              \
    macro(x1, "x1", 1, 0)              \
    macro(x2, "x2", 1, 1)              \
    macro(x3, "x3", 1, 0)              \
    macro(x4, "x4", 1, 0)              \
    macro(x5, "x5", 0, 0)              \
    macro(x6, "x6", 0, 0)              \
    macro(x7, "x7", 0, 0)              \
    macro(x8, "x8", 1, 1)              \
    macro(x9, "x9", 0, 1)              \
    macro(x10, "x10", 0, 0)            \
    macro(x11, "x11", 0, 0)            \
    macro(x12, "x12", 0, 0)            \
    macro(x13, "x13", 0, 0)            \
    macro(x14, "x14", 0, 0)            \
    macro(x15, "x15", 0, 0)            \
    macro(x16, "x16", 0, 0)            \
    macro(x17, "x17", 0, 0)            \
    macro(x18, "x18", 0, 1)            \
    macro(x19, "x19", 0, 1)            \
    macro(x20, "x20", 0, 1)            \
    macro(x21, "x21", 0, 1)            \
    macro(x22, "x22", 0, 1)            \
    macro(x23, "x23", 0, 1)            \
    macro(x24, "x24", 0, 1)            \
    macro(x25, "x25", 0, 1)            \
    macro(x26, "x26", 0, 1)            \
    macro(x27, "x27", 0, 1)            \
    macro(x28, "x28", 0, 0)            \
    macro(x29, "x29", 0, 0)            \
/* MacroAssembler scratch registers */ \
    macro(x30, "x30", 0, 0)            \
    macro(x31, "x31", 0, 0)

#define FOR_EACH_REGISTER_ALIAS(macro) \
    macro(zero, "zero", x0)            \
    macro(ra, "ra", x1)                \
    macro(sp, "sp", x2)                \
    macro(gp, "gp", x3)                \
    macro(tp, "tp", x4)                \
    macro(fp, "fp", x8)

#define FOR_EACH_SP_REGISTER(macro) \
    macro(pc, "pc")

#define FOR_EACH_FP_REGISTER(macro) \
    macro(f0, "f0", 0, 0)           \
    macro(f1, "f1", 0, 0)           \
    macro(f2, "f2", 0, 0)           \
    macro(f3, "f3", 0, 0)           \
    macro(f4, "f4", 0, 0)           \
    macro(f5, "f5", 0, 0)           \
    macro(f6, "f6", 0, 0)           \
    macro(f7, "f7", 0, 0)           \
    macro(f8, "f8", 0, 1)           \
    macro(f9, "f9", 0, 1)           \
    macro(f10, "f10", 0, 0)         \
    macro(f11, "f11", 0, 0)         \
    macro(f12, "f12", 0, 0)         \
    macro(f13, "f13", 0, 0)         \
    macro(f14, "f14", 0, 0)         \
    macro(f15, "f15", 0, 0)         \
    macro(f16, "f16", 0, 0)         \
    macro(f17, "f17", 0, 0)         \
    macro(f18, "f18", 0, 1)         \
    macro(f19, "f19", 0, 1)         \
    macro(f20, "f20", 0, 1)         \
    macro(f21, "f21", 0, 1)         \
    macro(f22, "f22", 0, 1)         \
    macro(f23, "f23", 0, 1)         \
    macro(f24, "f24", 0, 1)         \
    macro(f25, "f25", 0, 1)         \
    macro(f26, "f26", 0, 1)         \
    macro(f27, "f27", 0, 1)         \
    macro(f28, "f28", 0, 0)         \
    macro(f29, "f29", 0, 0)         \
    macro(f30, "f30", 0, 0)         \
    macro(f31, "f31", 0, 0)

#endif // CPU(RISCV64)