Home
last modified time | relevance | path

Searched refs:PUW (Results 1 – 1 of 1) sorted by relevance

/art/compiler/utils/arm/
Dassembler_arm.cc207 uint32_t PUW = am >> 21; // Move down to bottom of word. in encodingThumb() local
208 PUW = (PUW >> 1) | (PUW & 1); // Bits 3, 2 and 0. in encodingThumb()
210 if ((PUW & 4U /* 0b100 */) == 0) { in encodingThumb()
211 PUW |= 1U /* 0b1 */; in encodingThumb()
213 encoding |= B11 | PUW << 8 | offset; in encodingThumb()