Deleted Added
sdiff udiff text old ( 3833:b5faabcf350e ) new ( 3926:c57925da8d38 )
full compact
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) ||
183 (asi == ASI_LTX_L);
184 }
185
186 bool AsiIsTwin(ASI asi)
187 {
188 return
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;
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 ---