Lines Matching refs:LogicOp
1033 struct LogicOp { struct
1034 LogicOp() = default;
1035 LogicOp(unsigned regSize, unsigned immLSB, unsigned immSize) in LogicOp() argument
1047 static LogicOp interpretAndImmediate(unsigned Opcode) { in interpretAndImmediate()
1049 case SystemZ::NILMux: return LogicOp(32, 0, 16); in interpretAndImmediate()
1050 case SystemZ::NIHMux: return LogicOp(32, 16, 16); in interpretAndImmediate()
1051 case SystemZ::NILL64: return LogicOp(64, 0, 16); in interpretAndImmediate()
1052 case SystemZ::NILH64: return LogicOp(64, 16, 16); in interpretAndImmediate()
1053 case SystemZ::NIHL64: return LogicOp(64, 32, 16); in interpretAndImmediate()
1054 case SystemZ::NIHH64: return LogicOp(64, 48, 16); in interpretAndImmediate()
1055 case SystemZ::NIFMux: return LogicOp(32, 0, 32); in interpretAndImmediate()
1056 case SystemZ::NILF64: return LogicOp(64, 0, 32); in interpretAndImmediate()
1057 case SystemZ::NIHF64: return LogicOp(64, 32, 32); in interpretAndImmediate()
1058 default: return LogicOp(); in interpretAndImmediate()
1084 if (LogicOp And = interpretAndImmediate(MI.getOpcode())) { in convertToThreeAddress()