Lines Matching refs:Field
285 using Field = decltype(Insn); in DecodeMoveHRegInstruction() typedef
286 Field H = fieldFromInstruction(Insn, 5, 3) | in DecodeMoveHRegInstruction()
288 Field G = fieldFromInstruction(Insn, 8, 3) | in DecodeMoveHRegInstruction()
291 auto DecodeRegisterOrImm = [&Inst, Address, Decoder](Field RegNum, in DecodeMoveHRegInstruction()
292 Field Value) { in DecodeMoveHRegInstruction()
314 using Field = decltype(Insn); in DecodeCCRU6Instruction() typedef
315 Field U6Field = fieldFromInstruction(Insn, 6, 6); in DecodeCCRU6Instruction()
317 Field CCField = fieldFromInstruction(Insn, 0, 4); in DecodeCCRU6Instruction()
327 using Field = decltype(Insn); in DecodeSOPwithRU6() typedef
328 Field U6 = fieldFromInstruction(Insn, 6, 6); in DecodeSOPwithRU6()
338 using Field = decltype(Insn); in DecodeSOPwithRS12() typedef
339 Field Lower = fieldFromInstruction(Insn, 6, 6); in DecodeSOPwithRS12()
340 Field Upper = fieldFromInstruction(Insn, 0, 5); in DecodeSOPwithRS12()
341 Field Sign = fieldFromInstruction(Insn, 5, 1) ? -1 : 1; in DecodeSOPwithRS12()
342 Field Result = Sign * ((Upper << 6) + Lower); in DecodeSOPwithRS12()