diff options
author | Jiong Wang <jiong.wang@netronome.com> | 2019-01-26 20:26:10 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-01-27 00:33:02 +0300 |
commit | 5f6459966d0abca8b799440f6e1b18dac153c54d (patch) | |
tree | 24690a84094e3b231f1d47682e612b063d703678 /arch/powerpc/include/asm/ppc-opcode.h | |
parent | b85062ac0df33a6a1dcaccd07fe7b1ca55194b25 (diff) | |
download | linux-5f6459966d0abca8b799440f6e1b18dac153c54d.tar.xz |
ppc: bpf: implement jitting of JMP32
This patch implements code-gen for new JMP32 instructions on ppc.
For JMP32 | JSET, instruction encoding for PPC_RLWINM_DOT is added to check
the result of ANDing low 32-bit of operands.
Cc: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
Cc: Sandipan Das <sandipan@linux.ibm.com>
Signed-off-by: Jiong Wang <jiong.wang@netronome.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'arch/powerpc/include/asm/ppc-opcode.h')
-rw-r--r-- | arch/powerpc/include/asm/ppc-opcode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/ppc-opcode.h b/arch/powerpc/include/asm/ppc-opcode.h index 19a8834e0398..f9513ad38fa6 100644 --- a/arch/powerpc/include/asm/ppc-opcode.h +++ b/arch/powerpc/include/asm/ppc-opcode.h @@ -337,6 +337,7 @@ #define PPC_INST_DIVWU 0x7c000396 #define PPC_INST_DIVD 0x7c0003d2 #define PPC_INST_RLWINM 0x54000000 +#define PPC_INST_RLWINM_DOT 0x54000001 #define PPC_INST_RLWIMI 0x50000000 #define PPC_INST_RLDICL 0x78000000 #define PPC_INST_RLDICR 0x78000004 |