| 2242 | |
| 2243 | |
| 2244 | uint32_t bswap32(uint32_t x) |
| 2245 | { |
| 2246 | return ((x & 0xff000000) >> 24) | |
| 2247 | ((x & 0x00ff0000) >> 8) | |
| 2248 | ((x & 0x0000ff00) << 8) | |
| 2249 | ((x & 0x000000ff) << 24); |
| 2250 | } |
| 2251 | |
| 2252 | class ArmElfRelocationHandler: public RelocationHandler |
| 2253 | { |