getSOImmTwoPartFirst - If V is a value that satisfies isSOImmTwoPartVal, return the first chunk of it.
| 215 | /// getSOImmTwoPartFirst - If V is a value that satisfies isSOImmTwoPartVal, |
| 216 | /// return the first chunk of it. |
| 217 | static inline unsigned getSOImmTwoPartFirst(unsigned V) |
| 218 | { |
| 219 | return rotr32(255U, getSOImmValRotate(V)) & V; |
| 220 | } |
| 221 | |
| 222 | /// getSOImmTwoPartSecond - If V is a value that satisfies isSOImmTwoPartVal, |
| 223 | /// return the second chunk of it. |
nothing calls this directly
no test coverage detected
searching dependent graphs…