asi.cc (3825:9b5e6c4d3ecb) asi.cc (3833:b5faabcf350e)
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;

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

180 (asi == ASI_LDTX_SL) ||
181 (asi == ASI_BLK_PL) ||
182 (asi == ASI_BLK_SL);
183 }
184
185 bool AsiIsTwin(ASI asi)
186 {
187 return
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;

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

180 (asi == ASI_LDTX_SL) ||
181 (asi == ASI_BLK_PL) ||
182 (asi == ASI_BLK_SL);
183 }
184
185 bool AsiIsTwin(ASI asi)
186 {
187 return
188 (asi == ASI_QUAD_LDD) ||
188 (asi == ASI_LDTX_AIUP) ||
189 (asi == ASI_LDTX_AIUS) ||
190 (asi == ASI_LDTX_REAL) ||
191 (asi == ASI_LDTX_N) ||
192 (asi == ASI_LDTX_AIUP_L) ||
193 (asi == ASI_LDTX_AIUS_L) ||
194 (asi == ASI_LDTX_REAL_L) ||
195 (asi == ASI_LDTX_NL) ||
196 (asi == ASI_LDTX_P) ||
197 (asi == ASI_LDTX_S) ||
198 (asi == ASI_LDTX_PL) ||
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) ||
199 (asi == ASI_LDTX_SL);
200 (asi == ASI_LDTX_SL) ||
201 (asi == ASI_LTX_L);
200 }
201
202 bool AsiIsPartialStore(ASI asi)
203 {
204 return
205 (asi == ASI_PST8_P) ||
206 (asi == ASI_PST8_S) ||
207 (asi == ASI_PST16_P) ||

--- 100 unchanged lines hidden ---
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 ---