2 * Copyright (C) 2024 Mikulas Patocka
4 * This file is part of Ajla.
6 * Ajla is free software: you can redistribute it and/or modify it under the
7 * terms of the GNU General Public License as published by the Free Software
8 * Foundation, either version 3 of the License, or (at your option) any later
11 * Ajla is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along with
16 * Ajla. If not, see <https://www.gnu.org/licenses/>.
19 #define OP_SIZE_NATIVE OP_SIZE_4
20 #define OP_SIZE_ADDRESS OP_SIZE_4
22 #define JMP_LIMIT JMP_SHORTEST
24 #ifndef __ARM_FEATURE_UNALIGNED
25 #define UNALIGNED_TRAP 1
27 #define UNALIGNED_TRAP 0
30 #define ALU_WRITES_FLAGS(alu, im) 0
31 #define ALU1_WRITES_FLAGS(alu) 0
32 #define ROT_WRITES_FLAGS(alu) 0
33 #define COND_IS_LOGICAL(cond) 0
35 #define ARCH_PARTIAL_ALU(size) 0
36 #define ARCH_IS_3ADDRESS 1
37 #define ARCH_HAS_FLAGS 1
38 #define ARCH_PREFERS_SX(size) 0
39 #define ARCH_HAS_BWX 1
40 #define ARCH_HAS_MUL 1
41 #define ARCH_HAS_DIV cpu_test_feature(CPU_FEATURE_idiv)
42 #define ARCH_HAS_ANDN 1
43 #define ARCH_HAS_SHIFTED_ADD(bits) 1
44 #define ARCH_HAS_BTX(btx, size, cnst) 0
45 #define ARCH_SHIFT_SIZE 32
46 #define ARCH_NEEDS_BARRIER 0
48 #define i_size(size) OP_SIZE_4
49 #define i_size_rot(size) OP_SIZE_4
138 #define R_SCRATCH_1 R_0
139 #define R_SCRATCH_2 R_1
140 #define R_SCRATCH_3 R_2
141 #define R_SCRATCH_4 R_3
143 #define R_SAVED_1 R_6
144 #define R_SAVED_2 R_7
146 #define R_OFFSET_IMM R_8
147 #define R_CONST_IMM R_IP
149 #define R_SCRATCH_NA_1 R_10
150 #define R_SCRATCH_NA_2 R_FP
151 #define R_SCRATCH_NA_3 R_LR
159 #define FR_SCRATCH_1 FQR_0
160 #define FR_SCRATCH_2 FQR_4
162 #define SUPPORTED_FP (cpu_test_feature(CPU_FEATURE_vfp) * 0x6)
163 #define SUPPORTED_FP_HALF_CVT (cpu_test_feature(CPU_FEATURE_half) * 0x1)
165 static bool reg_is_fp(unsigned reg)
167 return reg >= 0x20 && reg < 0x40;
170 static int gen_imm12(uint32_t c)
173 for (rot = 0; rot < 32; rot += 2) {
174 uint32_t val = c << rot | c >> (-rot & 31);
176 return val | (rot << 7);
181 static bool attr_w gen_load_constant(struct codegen_context *ctx, unsigned reg, uint32_t c)
183 if (gen_imm12(c) >= 0 || gen_imm12(~c) >= 0) {
184 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
190 if (likely(cpu_test_feature(CPU_FEATURE_armv6t2))) {
191 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
194 gen_eight(c & 0xffff);
196 gen_insn(INSN_MOV_MASK, OP_SIZE_4, MOV_MASK_16_32, 0);
203 bool need_init = true;
205 for (p = 0; p < 32; p += 8) {
206 if ((c >> p) & 0xff) {
208 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
211 gen_eight(c & (0xff << p));
214 gen_insn(INSN_ALU, OP_SIZE_4, ALU_OR, 0);
218 gen_eight(c & (0xff << p));
223 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
232 static bool attr_w gen_address(struct codegen_context *ctx, unsigned base, int64_t imm, unsigned purpose, unsigned size)
234 ctx->base_reg = base;
235 ctx->offset_imm = imm;
236 ctx->offset_reg = false;
238 case IMM_PURPOSE_LDR_OFFSET:
239 case IMM_PURPOSE_STR_OFFSET:
240 case IMM_PURPOSE_MVI_CLI_OFFSET:
241 if (size == OP_SIZE_2) {
242 if (imm >= -255 && imm <= 255)
245 if (imm >= -4095 && imm <= 4095)
249 case IMM_PURPOSE_LDR_SX_OFFSET:
250 case IMM_PURPOSE_LDP_STP_OFFSET:
251 if (imm >= -255 && imm <= 255)
254 case IMM_PURPOSE_VLDR_VSTR_OFFSET:
255 if (size < OP_SIZE_4 && imm != 0)
257 if (unlikely((imm & 3) != 0))
259 if (imm >= -1023 && imm <= 1023)
263 internal(file_line, "gen_address: invalid purpose %d", purpose);
265 if (purpose == IMM_PURPOSE_VLDR_VSTR_OFFSET) {
266 if (gen_imm12(imm) >= 0) {
267 gen_insn(INSN_ALU, OP_SIZE_ADDRESS, ALU_ADD, 0);
268 gen_one(R_OFFSET_IMM);
273 g(gen_load_constant(ctx, R_OFFSET_IMM, imm));
274 gen_insn(INSN_ALU, OP_SIZE_ADDRESS, ALU_ADD, 0);
275 gen_one(R_OFFSET_IMM);
276 gen_one(R_OFFSET_IMM);
279 ctx->base_reg = R_OFFSET_IMM;
283 g(gen_load_constant(ctx, R_OFFSET_IMM, imm));
284 ctx->offset_reg = true;
288 static bool is_direct_const(int64_t imm, unsigned purpose, unsigned size)
292 case IMM_PURPOSE_STORE_VALUE:
294 case IMM_PURPOSE_ADD:
295 case IMM_PURPOSE_SUB:
296 case IMM_PURPOSE_CMP:
297 case IMM_PURPOSE_CMP_LOGICAL:
298 case IMM_PURPOSE_AND:
300 case IMM_PURPOSE_XOR:
301 case IMM_PURPOSE_ANDN:
302 case IMM_PURPOSE_TEST:
303 imm12 = gen_imm12(imm);
304 if (unlikely(imm12 == -1))
307 case IMM_PURPOSE_CMOV:
308 if (gen_imm12(imm) >= 0 || gen_imm12(~imm) >= 0)
310 if ((uint32_t)imm < 0x10000 && likely(cpu_test_feature(CPU_FEATURE_armv6t2)))
313 case IMM_PURPOSE_MUL:
316 internal(file_line, "is_direct_const: invalid purpose %u (imm %"PRIxMAX", size %u)", purpose, (uintmax_t)imm, size);
321 static bool attr_w gen_imm(struct codegen_context *ctx, int64_t imm, unsigned purpose, unsigned size)
323 if (is_direct_const(imm, purpose, size)) {
324 ctx->const_imm = imm;
325 ctx->const_reg = false;
327 g(gen_load_constant(ctx, R_CONST_IMM, imm));
328 ctx->const_reg = true;
333 static bool attr_w gen_entry(struct codegen_context *ctx)
335 gen_insn(INSN_ARM_PUSH, OP_SIZE_NATIVE, 0, 0);
337 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
341 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
348 static bool attr_w gen_escape_arg(struct codegen_context *ctx, ip_t ip, uint32_t escape_label)
350 g(gen_load_constant(ctx, R_ARG1, ip));
352 gen_insn(INSN_JMP, 0, 0, 0);
353 gen_four(escape_label);
358 static bool attr_w gen_escape(struct codegen_context *ctx)
360 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
364 gen_insn(INSN_ARM_POP, OP_SIZE_NATIVE, 0, 0);
369 static bool attr_w gen_upcall_argument(struct codegen_context attr_unused *ctx, unsigned attr_unused arg)
371 if (unlikely(arg >= 4))
372 internal(file_line, "gen_upcall_argument: only 4 arguments supported");
376 static bool attr_w gen_upcall(struct codegen_context *ctx, unsigned offset, unsigned attr_unused n_args)
378 g(gen_address(ctx, R_UPCALL, offset, IMM_PURPOSE_LDR_OFFSET, OP_SIZE_4));
379 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
380 gen_one(R_SCRATCH_NA_1);
381 gen_address_offset();
383 gen_insn(INSN_CALL_INDIRECT, OP_SIZE_4, 0, 0);
384 gen_one(R_SCRATCH_NA_1);
389 static bool attr_w gen_timestamp_test(struct codegen_context *ctx, uint32_t label_id)
391 g(gen_address(ctx, R_UPCALL, offsetof(struct cg_upcall_vector_s, ts), IMM_PURPOSE_LDR_OFFSET, OP_SIZE_4));
392 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
393 gen_one(R_SCRATCH_1);
394 gen_address_offset();
396 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
397 gen_one(R_SCRATCH_2);
398 gen_one(ARG_ADDRESS_1);
402 gen_insn(INSN_CMP, OP_SIZE_4, 0, 1);
403 gen_one(R_SCRATCH_1);
404 gen_one(R_SCRATCH_2);
406 gen_insn(INSN_JMP_COND, OP_SIZE_4, COND_E, 0);