blob: 0a8f44297d149d51ad10b9092052ceb596afa79d [file] [log] [blame]
florian8844a632012-04-13 04:04:06 +00001/* -*- mode: C; c-basic-offset: 3; -*- */
sewardj2019a972011-03-07 16:04:07 +00002
3/*--------------------------------------------------------------------*/
4/*--- Common defs for s390x libvex_s390x_common.h ---*/
5/*--------------------------------------------------------------------*/
6
7/*
8 This file is part of Valgrind, a dynamic binary instrumentation
9 framework.
10
florian61f23c12012-08-06 18:33:21 +000011 Copyright IBM Corp. 2010-2012
sewardj2019a972011-03-07 16:04:07 +000012
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 02110-1301, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
sewardj2019a972011-03-07 16:04:07 +000031#ifndef __LIBVEX_PUB_S390X_H
32#define __LIBVEX_PUB_S390X_H
33
34/* This file includes definitions for s390.
35
36 It must be suitable for inclusion in assembler source files. */
37
38
39/*--------------------------------------------------------------*/
40/*--- Dedicated registers ---*/
41/*--------------------------------------------------------------*/
42
43#define S390_REGNO_RETURN_VALUE 2
florian8844a632012-04-13 04:04:06 +000044#define S390_REGNO_TCHAIN_SCRATCH 12
sewardj2019a972011-03-07 16:04:07 +000045#define S390_REGNO_GUEST_STATE_POINTER 13
46#define S390_REGNO_LINK_REGISTER 14
47#define S390_REGNO_STACK_POINTER 15
48
49
50/*--------------------------------------------------------------*/
51/*--- Offsets in the stack frame allocated by the dispatcher ---*/
52/*--------------------------------------------------------------*/
53
florian8844a632012-04-13 04:04:06 +000054/* Where the dispatcher saves the r2 contents. */
florian1b2768a2011-09-25 00:05:31 +000055#define S390_OFFSET_SAVED_R2 160+96
56
sewardj2019a972011-03-07 16:04:07 +000057/* Where client's FPC register is saved. */
58#define S390_OFFSET_SAVED_FPC_C 160+88
59
60/* Where valgrind's FPC register is saved. */
61#define S390_OFFSET_SAVED_FPC_V 160+80
62
63/* Where client code will save the link register before calling a helper. */
64#define S390_OFFSET_SAVED_LR 160+72
65
florian35878282012-05-28 02:58:19 +000066/* Size of frame allocated by VG_(disp_run_translations)
sewardj2019a972011-03-07 16:04:07 +000067 Need size for
68 8 FPRs
florian35878282012-05-28 02:58:19 +000069 + 2 GPRs (SAVED_LR, and SAVED_R2)
sewardj2019a972011-03-07 16:04:07 +000070 + 2 FPCs (SAVED_FPC_C and SAVED_FPC_V).
71
72 Additionally, we need a standard frame for helper functions being called
73 from client code. (See figure 1-16 in zSeries ABI) */
floriandefb78a2012-05-28 03:10:02 +000074#define S390_INNERLOOP_FRAME_SIZE ((8+2+2)*8 + 160)
sewardj2019a972011-03-07 16:04:07 +000075
76
77/*--------------------------------------------------------------*/
florianaec8e052012-12-09 17:26:32 +000078/*--- Facility bits ---*/
79/*--------------------------------------------------------------*/
80
81/* The value of the macro is the number of the facility bit as per POP. */
82#define S390_FAC_MSA 17 // message-security-assist
83#define S390_FAC_LDISP 18 // long displacement
84#define S390_FAC_HFPMAS 20 // HFP multiply-and-add-subtract
85#define S390_FAC_EIMM 21 // extended immediate
86#define S390_FAC_HFPUNX 23 // HFP unnormalized extension
87#define S390_FAC_ETF2 24 // ETF2-enhancement
88#define S390_FAC_STCKF 25 // store clock fast insn
89#define S390_FAC_PENH 26 // parsing-enhancement
90#define S390_FAC_ETF3 30 // ETF3-enhancement
91#define S390_FAC_XCPUT 31 // extract-CPU-time
92#define S390_FAC_GIE 34 // general insn extension
93#define S390_FAC_EXEXT 35 // execute extension
94#define S390_FAC_FPEXT 37 // floating-point extension
95#define S390_FAC_FPSE 41 // floating-point support enhancement
96#define S390_FAC_DFP 42 // decimal floating point
97#define S390_FAC_PFPO 44 // perform floating point operation insn
98#define S390_FAC_HIGHW 45 // high-word extension
99#define S390_FAC_LSC 45 // load/store on condition
100#define S390_FAC_DFPZC 48 // DFP zoned-conversion
101#define S390_FAC_MISC 49 // miscellaneous insn
102#define S390_FAC_CTREXE 50 // constrained transactional execution
103#define S390_FAC_TREXE 73 // transactional execution
104#define S390_FAC_MSA4 77 // message-security-assist 4
105
106
107/*--------------------------------------------------------------*/
sewardj2019a972011-03-07 16:04:07 +0000108/*--- Miscellaneous ---*/
109/*--------------------------------------------------------------*/
110
111/* Number of arguments that can be passed in registers */
112#define S390_NUM_GPRPARMS 5
113
florian933065d2011-07-11 01:48:02 +0000114/* Number of double words needed to store all facility bits. */
115#define S390_NUM_FACILITY_DW 2
116
sewardj2019a972011-03-07 16:04:07 +0000117#endif /* __LIBVEX_PUB_S390X_H */
118
119/*--------------------------------------------------------------------*/
120/*--- end libvex_s390x_common.h ---*/
121/*--------------------------------------------------------------------*/