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_SAVED_2
143 #define R_SAVED_1 R_6
144 #define R_SAVED_2 R_7
146 #define R_OFFSET_IMM R_LR
147 #define R_CONST_IMM R_IP
149 #define R_SCRATCH_NA_1 R_10
150 #define R_SCRATCH_NA_2 R_FP
151 #ifdef HAVE_BITWISE_FRAME
152 #define R_SCRATCH_NA_3 R_8
161 #define FR_SCRATCH_1 FDR_0
162 #define FR_SCRATCH_2 FDR_2
164 #define SUPPORTED_FP (cpu_test_feature(CPU_FEATURE_vfp) * 0x6)
165 #define SUPPORTED_FP_HALF_CVT (cpu_test_feature(CPU_FEATURE_half) * 0x1)
167 static bool reg_is_fp(unsigned reg)
169 return reg >= 0x20 && reg < 0x40;
172 static const uint8_t regs_saved[] = {
173 #ifndef HAVE_BITWISE_FRAME
177 static const uint8_t regs_volatile[] = { R_3 };
178 static const uint8_t fp_saved[] = { 0 };
179 #define n_fp_saved 0U
180 static const uint8_t fp_volatile[] = { FDR_4, FDR_6, FDR_8, FDR_10, FDR_12, FDR_14 };
181 #define reg_is_saved(r) ((r) == R_8 || (r) == R_9)
183 static int gen_imm12(uint32_t c)
186 for (rot = 0; rot < 32; rot += 2) {
187 uint32_t val = c << rot | c >> (-rot & 31);
189 return val | (rot << 7);
194 static bool attr_w gen_load_constant(struct codegen_context *ctx, unsigned reg, uint32_t c)
196 if (gen_imm12(c) >= 0 || gen_imm12(~c) >= 0) {
197 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
203 if (likely(cpu_test_feature(CPU_FEATURE_armv6t2))) {
204 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
207 gen_eight(c & 0xffff);
209 gen_insn(INSN_MOV_MASK, OP_SIZE_4, MOV_MASK_16_32, 0);
216 bool need_init = true;
218 for (p = 0; p < 32; p += 8) {
219 if ((c >> p) & 0xff) {
221 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
224 gen_eight(c & (0xff << p));
227 gen_insn(INSN_ALU, OP_SIZE_4, ALU_OR, 0);
231 gen_eight(c & (0xff << p));
236 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
245 static bool attr_w gen_address(struct codegen_context *ctx, unsigned base, int64_t imm, unsigned purpose, unsigned size)
247 ctx->base_reg = base;
248 ctx->offset_imm = imm;
249 ctx->offset_reg = false;
251 case IMM_PURPOSE_LDR_OFFSET:
252 case IMM_PURPOSE_STR_OFFSET:
253 case IMM_PURPOSE_MVI_CLI_OFFSET:
254 if (size == OP_SIZE_2) {
255 if (imm >= -255 && imm <= 255)
258 if (imm >= -4095 && imm <= 4095)
262 case IMM_PURPOSE_LDR_SX_OFFSET:
263 case IMM_PURPOSE_LDP_STP_OFFSET:
264 if (imm >= -255 && imm <= 255)
267 case IMM_PURPOSE_VLDR_VSTR_OFFSET:
268 if (size < OP_SIZE_4 && imm != 0)
270 if (unlikely((imm & 3) != 0))
272 if (imm >= -1023 && imm <= 1023)
276 internal(file_line, "gen_address: invalid purpose %d", purpose);
278 if (purpose == IMM_PURPOSE_VLDR_VSTR_OFFSET) {
279 if (gen_imm12(imm) >= 0) {
280 gen_insn(INSN_ALU, OP_SIZE_ADDRESS, ALU_ADD, 0);
281 gen_one(R_OFFSET_IMM);
286 g(gen_load_constant(ctx, R_OFFSET_IMM, imm));
287 gen_insn(INSN_ALU, OP_SIZE_ADDRESS, ALU_ADD, 0);
288 gen_one(R_OFFSET_IMM);
289 gen_one(R_OFFSET_IMM);
292 ctx->base_reg = R_OFFSET_IMM;
296 g(gen_load_constant(ctx, R_OFFSET_IMM, imm));
297 ctx->offset_reg = true;
301 static bool is_direct_const(int64_t imm, unsigned purpose, unsigned size)
305 case IMM_PURPOSE_STORE_VALUE:
307 case IMM_PURPOSE_ADD:
308 case IMM_PURPOSE_SUB:
309 case IMM_PURPOSE_CMP:
310 case IMM_PURPOSE_CMP_LOGICAL:
311 case IMM_PURPOSE_AND:
313 case IMM_PURPOSE_XOR:
314 case IMM_PURPOSE_ANDN:
315 case IMM_PURPOSE_TEST:
316 imm12 = gen_imm12(imm);
317 if (unlikely(imm12 == -1))
320 case IMM_PURPOSE_CMOV:
321 if (gen_imm12(imm) >= 0 || gen_imm12(~imm) >= 0)
323 if ((uint32_t)imm < 0x10000 && likely(cpu_test_feature(CPU_FEATURE_armv6t2)))
326 case IMM_PURPOSE_MUL:
329 internal(file_line, "is_direct_const: invalid purpose %u (imm %"PRIxMAX", size %u)", purpose, (uintmax_t)imm, size);
334 static bool attr_w gen_imm(struct codegen_context *ctx, int64_t imm, unsigned purpose, unsigned size)
336 if (is_direct_const(imm, purpose, size)) {
337 ctx->const_imm = imm;
338 ctx->const_reg = false;
340 g(gen_load_constant(ctx, R_CONST_IMM, imm));
341 ctx->const_reg = true;
346 static bool attr_w gen_entry(struct codegen_context *ctx)
348 gen_insn(INSN_ARM_PUSH, OP_SIZE_NATIVE, 0, 0);
350 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
354 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
358 gen_insn(INSN_JMP_INDIRECT, 0, 0, 0);
364 static bool attr_w gen_escape_arg(struct codegen_context *ctx, ip_t ip, uint32_t escape_label)
366 g(gen_load_constant(ctx, R_ARG1, ip));
368 gen_insn(INSN_JMP, 0, 0, 0);
369 gen_four(escape_label);
374 static bool attr_w gen_escape(struct codegen_context *ctx)
376 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
380 gen_insn(INSN_ARM_POP, OP_SIZE_NATIVE, 0, 0);
385 static bool attr_w gen_upcall_argument(struct codegen_context attr_unused *ctx, unsigned attr_unused arg)
387 if (unlikely(arg >= 4))
388 internal(file_line, "gen_upcall_argument: only 4 arguments supported");
392 static bool attr_w gen_upcall(struct codegen_context *ctx, unsigned offset, unsigned n_args)
394 g(gen_address(ctx, R_UPCALL, offset, IMM_PURPOSE_LDR_OFFSET, OP_SIZE_4));
395 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
396 gen_one(R_SCRATCH_NA_1);
397 gen_address_offset();
399 gen_insn(INSN_CALL_INDIRECT, OP_SIZE_4, 0, 0);
400 gen_one(R_SCRATCH_NA_1);
402 g(gen_upcall_end(ctx, n_args));
407 static bool attr_w gen_timestamp_test(struct codegen_context *ctx, uint32_t escape_label)
409 g(gen_address(ctx, R_UPCALL, offsetof(struct cg_upcall_vector_s, ts), IMM_PURPOSE_LDR_OFFSET, OP_SIZE_4));
410 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
411 gen_one(R_SCRATCH_1);
412 gen_address_offset();
414 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
415 gen_one(R_SCRATCH_2);
416 gen_one(ARG_ADDRESS_1);
420 gen_insn(INSN_CMP, OP_SIZE_4, 0, 1);
421 gen_one(R_SCRATCH_1);
422 gen_one(R_SCRATCH_2);
424 gen_insn(INSN_JMP_COND, OP_SIZE_4, COND_NE, 0);
425 gen_four(escape_label);