Home | History | Annotate | Download | only in sljit_src

Lines Matching defs:imm

370 	sljit_sw imm;
591 imm - a simple immediate value (cannot be used as a destination)
593 [imm] - absolute immediate memory address
594 [reg+imm] - indirect memory address
595 [reg+(reg<<imm)] - indirect indexed memory address (shift must be between 0 and 3)
620 x86: [reg+imm], -2^32+1 <= imm <= 2^32-1 (full address space on x86-32)
621 [reg+(reg<<imm)] is supported
622 [imm], -2^32+1 <= imm <= 2^32-1 is supported
624 arm: [reg+imm], -4095 <= imm <= 4095 or -255 <= imm <= 255 for signed
626 [reg+(reg<<imm)] is supported
628 arm-t2: [reg+imm], -255 <= imm <= 4095
629 [reg+(reg<<imm)] is supported
630 Write back is supported only for [reg+imm], where -255 <= imm <= 255
631 ppc: [reg+imm], -65536 <= imm <= 65535. 64 bit loads/stores and 32 bit
633 [reg+imm] is not supported for signed 8 bit values.
636 load with [reg+imm] addressing mode on 64 bit.
637 mips: [reg+imm], -65536 <= imm <= 65535
638 sparc: [reg+imm], -4096 <= imm <= 4095