Lines Matching refs:Binary
163 uint32_t Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in encodeInstruction() local
170 (Opcode != Mips::SLL_MM) && (Opcode != Mips::SLL_MMR6) && !Binary) in encodeInstruction()
192 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); in encodeInstruction()
198 Binary = (Binary & 0xFFFFFC7F) | (RegPair << 7); in encodeInstruction()
212 support::endian::write<uint16_t>(CB, Binary, Endian); in encodeInstruction()
214 support::endian::write<uint16_t>(CB, Binary >> 16, Endian); in encodeInstruction()
215 support::endian::write<uint16_t>(CB, Binary & 0xffff, Endian); in encodeInstruction()
217 support::endian::write<uint32_t>(CB, Binary, Endian); in encodeInstruction()
571 unsigned Binary = (MO.getImm() >> 2) & 0x0000ffff; in getSImm9AddiuspValue() local
572 return (((Binary & 0x8000) >> 7) | (Binary & 0x00ff)); in getSImm9AddiuspValue()
591 if (Kind == MCExpr::Binary) { in getExprOpValue()