Lines Matching full:bits
111 uint64_t Bits = getBinaryCodeForInstr(MI, Fixups, STI);
118 OS << (char)(Bits);
119 OS << (char)(Bits >> 8);
120 OS << (char)(Bits >> 16);
121 OS << (char)(Bits >> 24);
123 OS << (char)(Bits >> 24);
124 OS << (char)(Bits >> 16);
125 OS << (char)(Bits >> 8);
126 OS << (char)(Bits);
131 // always in the top 32 bits, even on little-endian.
133 OS << (char)(Bits >> 32);
134 OS << (char)(Bits >> 40);
135 OS << (char)(Bits >> 48);
136 OS << (char)(Bits >> 56);
137 OS << (char)(Bits);
138 OS << (char)(Bits >> 8);
139 OS << (char)(Bits >> 16);
140 OS << (char)(Bits >> 24);
142 OS << (char)(Bits >> 56);
143 OS << (char)(Bits >> 48);
144 OS << (char)(Bits >> 40);
145 OS << (char)(Bits >> 32);
146 OS << (char)(Bits >> 24);
147 OS << (char)(Bits >> 16);
148 OS << (char)(Bits >> 8);
149 OS << (char)(Bits);
235 // Encode (imm, reg) as a memri, which has the low 16-bits as the
236 // displacement and the next 5 bits as the register #.
254 // Encode (imm, reg) as a memrix, which has the low 14-bits as the
255 // displacement and the next 5 bits as the register #.
274 // Encode (imm, reg) as a spe8dis, which has the low 5-bits of (imm / 8)
275 // as the displacement and the next 5 bits as the register #.
290 // Encode (imm, reg) as a spe4dis, which has the low 5-bits of (imm / 4)
291 // as the displacement and the next 5 bits as the register #.
306 // Encode (imm, reg) as a spe2dis, which has the low 5-bits of (imm / 2)
307 // as the displacement and the next 5 bits as the register #.