sstep.h (d120cdbce68c3739f94f733bec376460fb9cbc14) sstep.h (c22435a5f3d8f85ea162ae523a6ba60a58521ba5)
1/*
2 * Copyright (C) 2004 Paul Mackerras <paulus@au.ibm.com>, IBM
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */

--- 105 unchanged lines hidden (view full) ---

114
115union vsx_reg {
116 u8 b[16];
117 u16 h[8];
118 u32 w[4];
119 unsigned long d[2];
120 float fp[4];
121 double dp[2];
1/*
2 * Copyright (C) 2004 Paul Mackerras <paulus@au.ibm.com>, IBM
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */

--- 105 unchanged lines hidden (view full) ---

114
115union vsx_reg {
116 u8 b[16];
117 u16 h[8];
118 u32 w[4];
119 unsigned long d[2];
120 float fp[4];
121 double dp[2];
122 __vector128 v;
122};
123
124/*
125 * Decode an instruction, and return information about it in *op
126 * without changing *regs.
127 *
128 * Return value is 1 if the instruction can be emulated just by
129 * updating *regs with the information in *op, -1 if we need the

--- 27 unchanged lines hidden ---
123};
124
125/*
126 * Decode an instruction, and return information about it in *op
127 * without changing *regs.
128 *
129 * Return value is 1 if the instruction can be emulated just by
130 * updating *regs with the information in *op, -1 if we need the

--- 27 unchanged lines hidden ---