Home
last modified time | relevance | path

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

/linux-5.19.10/arch/arm/mm/
Dalignment.c608 thumb2arm(u16 tinstr) in thumb2arm() argument
610 u32 L = (tinstr & (1<<11)) >> 11; in thumb2arm()
612 switch ((tinstr & 0xf800) >> 11) { in thumb2arm()
619 ((tinstr & (1<<12)) << (22-12)) | /* fixup */ in thumb2arm()
621 ((tinstr & (7<<0)) << (12-0)) | /* Rd */ in thumb2arm()
622 ((tinstr & (7<<3)) << (16-3)) | /* Rn */ in thumb2arm()
623 ((tinstr & (31<<6)) >> /* immed_5 */ in thumb2arm()
624 (6 - ((tinstr & (1<<12)) ? 0 : 2))); in thumb2arm()
629 ((tinstr & (7<<0)) << (12-0)) | /* Rd */ in thumb2arm()
630 ((tinstr & (7<<3)) << (16-3)) | /* Rn */ in thumb2arm()
[all …]
/linux-5.19.10/arch/csky/abiv2/
Dfpu.c25 unsigned long tinstr = 0; in fpu_libc_helper() local
40 tinstr = instr_hi | ((unsigned long)instr_low << 16); in fpu_libc_helper()
42 if (((tinstr >> 21) & 0x1F) != 2) in fpu_libc_helper()
45 if ((tinstr & MTCR_MASK) == MTCR_DIST) { in fpu_libc_helper()
46 index = (tinstr >> 16) & 0x1F; in fpu_libc_helper()
50 tmp = tinstr & 0x1F; in fpu_libc_helper()
67 if ((tinstr & MFCR_MASK) == MFCR_DIST) { in fpu_libc_helper()
68 index = tinstr & 0x1F; in fpu_libc_helper()
72 tmp = ((tinstr >> 16) & 0x1F); in fpu_libc_helper()