Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.12 218 lines 6.7 kB view raw
1/* 2 * Just-In-Time compiler for BPF filters on 32bit ARM 3 * 4 * Copyright (c) 2011 Mircea Gherzan <mgherzan@gmail.com> 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License as published by the 8 * Free Software Foundation; version 2 of the License. 9 */ 10 11#ifndef PFILTER_OPCODES_ARM_H 12#define PFILTER_OPCODES_ARM_H 13 14#define ARM_R0 0 15#define ARM_R1 1 16#define ARM_R2 2 17#define ARM_R3 3 18#define ARM_R4 4 19#define ARM_R5 5 20#define ARM_R6 6 21#define ARM_R7 7 22#define ARM_R8 8 23#define ARM_R9 9 24#define ARM_R10 10 25#define ARM_FP 11 26#define ARM_IP 12 27#define ARM_SP 13 28#define ARM_LR 14 29#define ARM_PC 15 30 31#define ARM_COND_EQ 0x0 32#define ARM_COND_NE 0x1 33#define ARM_COND_CS 0x2 34#define ARM_COND_HS ARM_COND_CS 35#define ARM_COND_CC 0x3 36#define ARM_COND_LO ARM_COND_CC 37#define ARM_COND_MI 0x4 38#define ARM_COND_PL 0x5 39#define ARM_COND_VS 0x6 40#define ARM_COND_VC 0x7 41#define ARM_COND_HI 0x8 42#define ARM_COND_LS 0x9 43#define ARM_COND_GE 0xa 44#define ARM_COND_LT 0xb 45#define ARM_COND_GT 0xc 46#define ARM_COND_LE 0xd 47#define ARM_COND_AL 0xe 48 49/* register shift types */ 50#define SRTYPE_LSL 0 51#define SRTYPE_LSR 1 52#define SRTYPE_ASR 2 53#define SRTYPE_ROR 3 54 55#define ARM_INST_ADD_R 0x00800000 56#define ARM_INST_ADD_I 0x02800000 57 58#define ARM_INST_AND_R 0x00000000 59#define ARM_INST_AND_I 0x02000000 60 61#define ARM_INST_BIC_R 0x01c00000 62#define ARM_INST_BIC_I 0x03c00000 63 64#define ARM_INST_B 0x0a000000 65#define ARM_INST_BX 0x012FFF10 66#define ARM_INST_BLX_R 0x012fff30 67 68#define ARM_INST_CMP_R 0x01500000 69#define ARM_INST_CMP_I 0x03500000 70 71#define ARM_INST_EOR_R 0x00200000 72#define ARM_INST_EOR_I 0x02200000 73 74#define ARM_INST_LDRB_I 0x05d00000 75#define ARM_INST_LDRB_R 0x07d00000 76#define ARM_INST_LDRH_I 0x01d000b0 77#define ARM_INST_LDRH_R 0x019000b0 78#define ARM_INST_LDR_I 0x05900000 79 80#define ARM_INST_LDM 0x08900000 81 82#define ARM_INST_LSL_I 0x01a00000 83#define ARM_INST_LSL_R 0x01a00010 84 85#define ARM_INST_LSR_I 0x01a00020 86#define ARM_INST_LSR_R 0x01a00030 87 88#define ARM_INST_MOV_R 0x01a00000 89#define ARM_INST_MOV_I 0x03a00000 90#define ARM_INST_MOVW 0x03000000 91#define ARM_INST_MOVT 0x03400000 92 93#define ARM_INST_MUL 0x00000090 94 95#define ARM_INST_POP 0x08bd0000 96#define ARM_INST_PUSH 0x092d0000 97 98#define ARM_INST_ORR_R 0x01800000 99#define ARM_INST_ORR_I 0x03800000 100 101#define ARM_INST_REV 0x06bf0f30 102#define ARM_INST_REV16 0x06bf0fb0 103 104#define ARM_INST_RSB_I 0x02600000 105 106#define ARM_INST_SUB_R 0x00400000 107#define ARM_INST_SUB_I 0x02400000 108 109#define ARM_INST_STR_I 0x05800000 110 111#define ARM_INST_TST_R 0x01100000 112#define ARM_INST_TST_I 0x03100000 113 114#define ARM_INST_UDIV 0x0730f010 115 116#define ARM_INST_UMULL 0x00800090 117 118#define ARM_INST_MLS 0x00600090 119 120/* 121 * Use a suitable undefined instruction to use for ARM/Thumb2 faulting. 122 * We need to be careful not to conflict with those used by other modules 123 * (BUG, kprobes, etc) and the register_undef_hook() system. 124 * 125 * The ARM architecture reference manual guarantees that the following 126 * instruction space will produce an undefined instruction exception on 127 * all CPUs: 128 * 129 * ARM: xxxx 0111 1111 xxxx xxxx xxxx 1111 xxxx ARMv7-AR, section A5.4 130 * Thumb: 1101 1110 xxxx xxxx ARMv7-M, section A5.2.6 131 */ 132#define ARM_INST_UDF 0xe7fddef1 133 134/* register */ 135#define _AL3_R(op, rd, rn, rm) ((op ## _R) | (rd) << 12 | (rn) << 16 | (rm)) 136/* immediate */ 137#define _AL3_I(op, rd, rn, imm) ((op ## _I) | (rd) << 12 | (rn) << 16 | (imm)) 138 139#define ARM_ADD_R(rd, rn, rm) _AL3_R(ARM_INST_ADD, rd, rn, rm) 140#define ARM_ADD_I(rd, rn, imm) _AL3_I(ARM_INST_ADD, rd, rn, imm) 141 142#define ARM_AND_R(rd, rn, rm) _AL3_R(ARM_INST_AND, rd, rn, rm) 143#define ARM_AND_I(rd, rn, imm) _AL3_I(ARM_INST_AND, rd, rn, imm) 144 145#define ARM_BIC_R(rd, rn, rm) _AL3_R(ARM_INST_BIC, rd, rn, rm) 146#define ARM_BIC_I(rd, rn, imm) _AL3_I(ARM_INST_BIC, rd, rn, imm) 147 148#define ARM_B(imm24) (ARM_INST_B | ((imm24) & 0xffffff)) 149#define ARM_BX(rm) (ARM_INST_BX | (rm)) 150#define ARM_BLX_R(rm) (ARM_INST_BLX_R | (rm)) 151 152#define ARM_CMP_R(rn, rm) _AL3_R(ARM_INST_CMP, 0, rn, rm) 153#define ARM_CMP_I(rn, imm) _AL3_I(ARM_INST_CMP, 0, rn, imm) 154 155#define ARM_EOR_R(rd, rn, rm) _AL3_R(ARM_INST_EOR, rd, rn, rm) 156#define ARM_EOR_I(rd, rn, imm) _AL3_I(ARM_INST_EOR, rd, rn, imm) 157 158#define ARM_LDR_I(rt, rn, off) (ARM_INST_LDR_I | (rt) << 12 | (rn) << 16 \ 159 | (off)) 160#define ARM_LDRB_I(rt, rn, off) (ARM_INST_LDRB_I | (rt) << 12 | (rn) << 16 \ 161 | (off)) 162#define ARM_LDRB_R(rt, rn, rm) (ARM_INST_LDRB_R | (rt) << 12 | (rn) << 16 \ 163 | (rm)) 164#define ARM_LDRH_I(rt, rn, off) (ARM_INST_LDRH_I | (rt) << 12 | (rn) << 16 \ 165 | (((off) & 0xf0) << 4) | ((off) & 0xf)) 166#define ARM_LDRH_R(rt, rn, rm) (ARM_INST_LDRH_R | (rt) << 12 | (rn) << 16 \ 167 | (rm)) 168 169#define ARM_LDM(rn, regs) (ARM_INST_LDM | (rn) << 16 | (regs)) 170 171#define ARM_LSL_R(rd, rn, rm) (_AL3_R(ARM_INST_LSL, rd, 0, rn) | (rm) << 8) 172#define ARM_LSL_I(rd, rn, imm) (_AL3_I(ARM_INST_LSL, rd, 0, rn) | (imm) << 7) 173 174#define ARM_LSR_R(rd, rn, rm) (_AL3_R(ARM_INST_LSR, rd, 0, rn) | (rm) << 8) 175#define ARM_LSR_I(rd, rn, imm) (_AL3_I(ARM_INST_LSR, rd, 0, rn) | (imm) << 7) 176 177#define ARM_MOV_R(rd, rm) _AL3_R(ARM_INST_MOV, rd, 0, rm) 178#define ARM_MOV_I(rd, imm) _AL3_I(ARM_INST_MOV, rd, 0, imm) 179 180#define ARM_MOVW(rd, imm) \ 181 (ARM_INST_MOVW | ((imm) >> 12) << 16 | (rd) << 12 | ((imm) & 0x0fff)) 182 183#define ARM_MOVT(rd, imm) \ 184 (ARM_INST_MOVT | ((imm) >> 12) << 16 | (rd) << 12 | ((imm) & 0x0fff)) 185 186#define ARM_MUL(rd, rm, rn) (ARM_INST_MUL | (rd) << 16 | (rm) << 8 | (rn)) 187 188#define ARM_POP(regs) (ARM_INST_POP | (regs)) 189#define ARM_PUSH(regs) (ARM_INST_PUSH | (regs)) 190 191#define ARM_ORR_R(rd, rn, rm) _AL3_R(ARM_INST_ORR, rd, rn, rm) 192#define ARM_ORR_I(rd, rn, imm) _AL3_I(ARM_INST_ORR, rd, rn, imm) 193#define ARM_ORR_S(rd, rn, rm, type, rs) \ 194 (ARM_ORR_R(rd, rn, rm) | (type) << 5 | (rs) << 7) 195 196#define ARM_REV(rd, rm) (ARM_INST_REV | (rd) << 12 | (rm)) 197#define ARM_REV16(rd, rm) (ARM_INST_REV16 | (rd) << 12 | (rm)) 198 199#define ARM_RSB_I(rd, rn, imm) _AL3_I(ARM_INST_RSB, rd, rn, imm) 200 201#define ARM_SUB_R(rd, rn, rm) _AL3_R(ARM_INST_SUB, rd, rn, rm) 202#define ARM_SUB_I(rd, rn, imm) _AL3_I(ARM_INST_SUB, rd, rn, imm) 203 204#define ARM_STR_I(rt, rn, off) (ARM_INST_STR_I | (rt) << 12 | (rn) << 16 \ 205 | (off)) 206 207#define ARM_TST_R(rn, rm) _AL3_R(ARM_INST_TST, 0, rn, rm) 208#define ARM_TST_I(rn, imm) _AL3_I(ARM_INST_TST, 0, rn, imm) 209 210#define ARM_UDIV(rd, rn, rm) (ARM_INST_UDIV | (rd) << 16 | (rn) | (rm) << 8) 211 212#define ARM_UMULL(rd_lo, rd_hi, rn, rm) (ARM_INST_UMULL | (rd_hi) << 16 \ 213 | (rd_lo) << 12 | (rm) << 8 | rn) 214 215#define ARM_MLS(rd, rn, rm, ra) (ARM_INST_MLS | (rd) << 16 | (rn) | (rm) << 8 \ 216 | (ra) << 12) 217 218#endif /* PFILTER_OPCODES_ARM_H */