asi.cc (3833:b5faabcf350e) asi.cc (3926:c57925da8d38)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

174 (asi == ASI_PST32_SL) ||
175 (asi == ASI_FL8_PL) ||
176 (asi == ASI_FL8_SL) ||
177 (asi == ASI_FL16_PL) ||
178 (asi == ASI_FL16_SL) ||
179 (asi == ASI_LDTX_PL) ||
180 (asi == ASI_LDTX_SL) ||
181 (asi == ASI_BLK_PL) ||
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

174 (asi == ASI_PST32_SL) ||
175 (asi == ASI_FL8_PL) ||
176 (asi == ASI_FL8_SL) ||
177 (asi == ASI_FL16_PL) ||
178 (asi == ASI_FL16_SL) ||
179 (asi == ASI_LDTX_PL) ||
180 (asi == ASI_LDTX_SL) ||
181 (asi == ASI_BLK_PL) ||
182 (asi == ASI_BLK_SL);
182 (asi == ASI_BLK_SL) ||
183 (asi == ASI_LTX_L);
183 }
184
185 bool AsiIsTwin(ASI asi)
186 {
187 return
184 }
185
186 bool AsiIsTwin(ASI asi)
187 {
188 return
188 (asi == ASI_QUAD_LDD) ||
189 (asi == ASI_LDTX_AIUP) ||
190 (asi == ASI_LDTX_AIUS) ||
191 (asi == ASI_LDTX_REAL) ||
192 (asi == ASI_LDTX_N) ||
193 (asi == ASI_LDTX_AIUP_L) ||
194 (asi == ASI_LDTX_AIUS_L) ||
195 (asi == ASI_LDTX_REAL_L) ||
196 (asi == ASI_LDTX_NL) ||
197 (asi == ASI_LDTX_P) ||
198 (asi == ASI_LDTX_S) ||
199 (asi == ASI_LDTX_PL) ||
200 (asi == ASI_LDTX_SL) ||
201 (asi == ASI_LTX_L);
189 (asi >= ASI_LDTX_AIUP &&
190 asi <= ASI_LDTX_N &&
191 asi != ASI_QUEUE) ||
192 (asi >= ASI_LDTX_AIUP_L &&
193 asi <= ASI_LDTX_NL &&
194 asi != 0x2D) ||
195 asi == ASI_LDTX_P ||
196 asi == ASI_LDTX_S ||
197 asi == ASI_LDTX_PL ||
198 asi == ASI_LDTX_SL;
202 }
203
204 bool AsiIsPartialStore(ASI asi)
205 {
206 return
207 (asi == ASI_PST8_P) ||
208 (asi == ASI_PST8_S) ||
209 (asi == ASI_PST16_P) ||

--- 100 unchanged lines hidden ---
199 }
200
201 bool AsiIsPartialStore(ASI asi)
202 {
203 return
204 (asi == ASI_PST8_P) ||
205 (asi == ASI_PST8_S) ||
206 (asi == ASI_PST16_P) ||

--- 100 unchanged lines hidden ---