static_inst.hh (12104:edd63f9c6184) static_inst.hh (12106:7784fac1b159)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

102 void printDestReg(std::ostream &os, int reg, int size) const;
103 void printMem(std::ostream &os, uint8_t segment,
104 uint8_t scale, RegIndex index, RegIndex base,
105 uint64_t disp, uint8_t addressSize, bool rip) const;
106
107 inline uint64_t merge(uint64_t into, uint64_t val, int size) const
108 {
109 X86IntReg reg = into;
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

102 void printDestReg(std::ostream &os, int reg, int size) const;
103 void printMem(std::ostream &os, uint8_t segment,
104 uint8_t scale, RegIndex index, RegIndex base,
105 uint64_t disp, uint8_t addressSize, bool rip) const;
106
107 inline uint64_t merge(uint64_t into, uint64_t val, int size) const
108 {
109 X86IntReg reg = into;
110 if (_destRegIdx[0].regIdx & IntFoldBit)
110 if (_destRegIdx[0].index() & IntFoldBit)
111 {
112 reg.H = val;
113 return reg;
114 }
115 switch(size)
116 {
117 case 1:
118 reg.L = val;

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

133 }
134 return reg;
135 }
136
137 inline uint64_t pick(uint64_t from, int idx, int size) const
138 {
139 X86IntReg reg = from;
140 DPRINTF(X86, "Picking with size %d\n", size);
111 {
112 reg.H = val;
113 return reg;
114 }
115 switch(size)
116 {
117 case 1:
118 reg.L = val;

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

133 }
134 return reg;
135 }
136
137 inline uint64_t pick(uint64_t from, int idx, int size) const
138 {
139 X86IntReg reg = from;
140 DPRINTF(X86, "Picking with size %d\n", size);
141 if (_srcRegIdx[idx].regIdx & IntFoldBit)
141 if (_srcRegIdx[idx].index() & IntFoldBit)
142 return reg.H;
143 switch(size)
144 {
145 case 1:
146 return reg.L;
147 case 2:
148 return reg.X;
149 case 4:

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

154 panic("Tried to pick with unrecognized size %d.\n", size);
155 }
156 }
157
158 inline int64_t signedPick(uint64_t from, int idx, int size) const
159 {
160 X86IntReg reg = from;
161 DPRINTF(X86, "Picking with size %d\n", size);
142 return reg.H;
143 switch(size)
144 {
145 case 1:
146 return reg.L;
147 case 2:
148 return reg.X;
149 case 4:

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

154 panic("Tried to pick with unrecognized size %d.\n", size);
155 }
156 }
157
158 inline int64_t signedPick(uint64_t from, int idx, int size) const
159 {
160 X86IntReg reg = from;
161 DPRINTF(X86, "Picking with size %d\n", size);
162 if (_srcRegIdx[idx].regIdx & IntFoldBit)
162 if (_srcRegIdx[idx].index() & IntFoldBit)
163 return reg.SH;
164 switch(size)
165 {
166 case 1:
167 return reg.SL;
168 case 2:
169 return reg.SX;
170 case 4:

--- 17 unchanged lines hidden ---
163 return reg.SH;
164 switch(size)
165 {
166 case 1:
167 return reg.SL;
168 case 2:
169 return reg.SX;
170 case 4:

--- 17 unchanged lines hidden ---