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 #if !defined(ARCH_SPARC64)
20 #define SPARC_9 cpu_test_feature(CPU_FEATURE_sparc9)
21 #define FRAME_SIZE 0x60
22 #define OP_SIZE_NATIVE (SPARC_9 ? OP_SIZE_8 : OP_SIZE_4)
23 #define OP_SIZE_ADDRESS OP_SIZE_4
26 #define FRAME_SIZE 0xb0
27 #define OP_SIZE_NATIVE OP_SIZE_8
28 #define OP_SIZE_ADDRESS OP_SIZE_8
31 #define JMP_LIMIT JMP_LONG
33 #define UNALIGNED_TRAP 1
35 #define ALU_WRITES_FLAGS(alu, im) 0
36 #define ALU1_WRITES_FLAGS(alu) 0
37 #define ROT_WRITES_FLAGS(alu) 0
38 #define COND_IS_LOGICAL(cond) 0
40 #define ARCH_PARTIAL_ALU(size) 0
41 #define ARCH_IS_3ADDRESS 1
42 #define ARCH_HAS_FLAGS 1
43 #define ARCH_PREFERS_SX(size) 0
44 #define ARCH_HAS_BWX 1
45 #define ARCH_HAS_MUL SPARC_9
46 #define ARCH_HAS_DIV SPARC_9
47 #define ARCH_HAS_ANDN 1
48 #define ARCH_HAS_SHIFTED_ADD(bits) 0
49 #define ARCH_HAS_BTX(btx, size, cnst) 0
50 #define ARCH_SHIFT_SIZE OP_SIZE_4
51 #define ARCH_NEEDS_BARRIER 0
53 #define i_size(size) OP_SIZE_NATIVE
54 #define i_size_rot(size) maximum(size, OP_SIZE_4)
176 #define R_UPCALL R_I1
177 #define R_TIMESTAMP R_I2
179 #define R_SCRATCH_1 R_O1
180 #define R_SCRATCH_2 R_O0
181 #define R_SCRATCH_3 R_O3
182 #define R_SCRATCH_4 R_O2
184 #define R_SCRATCH_NA_1 R_O4
185 #define R_SCRATCH_NA_2 R_O5
186 #define R_SCRATCH_NA_3 R_O7
188 #define R_SAVED_1 R_L0
189 #define R_SAVED_2 R_L1
197 #define FR_SCRATCH_1 FDR_0
198 #define FR_SCRATCH_2 FDR_4
200 #define R_OFFSET_IMM R_G1
201 #define R_CONST_IMM R_G2
202 #define R_CONST_HELPER R_G3
204 #define SUPPORTED_FP 0x6
206 static bool reg_is_fp(unsigned reg)
208 return reg >= 0x20 && reg < 0x40;
211 static bool attr_w gen_load_constant(struct codegen_context *ctx, unsigned reg, uint64_t c)
215 if (c >= (uint64_t)-4096) {
216 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
223 if (c >= 0x100000000ULL) {
224 int32_t cu = c >> 32;
225 if (cu < -4096 || cu >= 4096) {
226 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
227 gen_one(R_CONST_HELPER);
229 gen_eight(cu & 0xFFFFFC00UL);
232 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
233 gen_one(R_CONST_HELPER);
234 gen_one(R_CONST_HELPER);
239 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
240 gen_one(R_CONST_HELPER);
245 gen_insn(INSN_ROT, OP_SIZE_NATIVE, ROT_SHL, 0);
246 gen_one(R_CONST_HELPER);
247 gen_one(R_CONST_HELPER);
253 if (cl < 0 || cl >= 4096) {
254 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
257 gen_eight(cl & 0xFFFFFC00UL);
260 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
267 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
274 if (c >= 0x100000000ULL) {
275 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
278 gen_one(R_CONST_HELPER);
284 static bool attr_w gen_address(struct codegen_context *ctx, unsigned base, int64_t imm, unsigned purpose, unsigned size)
286 ctx->base_reg = base;
287 ctx->offset_imm = imm;
288 ctx->offset_reg = false;
290 case IMM_PURPOSE_LDR_OFFSET:
291 case IMM_PURPOSE_LDR_SX_OFFSET:
292 case IMM_PURPOSE_STR_OFFSET:
293 case IMM_PURPOSE_LDP_STP_OFFSET:
294 case IMM_PURPOSE_VLDR_VSTR_OFFSET:
295 case IMM_PURPOSE_MVI_CLI_OFFSET:
296 if (likely(imm >= -4096) && likely(imm < 4096))
300 internal(file_line, "gen_address: invalid purpose %u (imm %"PRIxMAX", size %u)", purpose, (uintmax_t)imm, size);
303 g(gen_load_constant(ctx, R_OFFSET_IMM, imm));
304 ctx->offset_reg = true;
308 static bool is_direct_const(int64_t imm, unsigned purpose, unsigned size)
311 case IMM_PURPOSE_STORE_VALUE:
315 case IMM_PURPOSE_ADD:
316 case IMM_PURPOSE_SUB:
317 case IMM_PURPOSE_CMP:
318 case IMM_PURPOSE_CMP_LOGICAL:
319 case IMM_PURPOSE_AND:
321 case IMM_PURPOSE_XOR:
322 case IMM_PURPOSE_ANDN:
323 case IMM_PURPOSE_TEST:
324 case IMM_PURPOSE_MUL:
325 if (likely(imm >= -4096) && likely(imm < 4096))
328 case IMM_PURPOSE_CMOV:
329 if (likely(imm >= -1024) && likely(imm < 1024))
332 case IMM_PURPOSE_MOVR:
333 if (likely(imm >= -512) && likely(imm < 512))
337 internal(file_line, "is_direct_const: invalid purpose %u (imm %"PRIxMAX", size %u)", purpose, (uintmax_t)imm, size);
342 static bool attr_w gen_imm(struct codegen_context *ctx, int64_t imm, unsigned purpose, unsigned size)
344 if (is_direct_const(imm, purpose, size)) {
345 ctx->const_imm = imm;
346 ctx->const_reg = false;
348 g(gen_load_constant(ctx, R_CONST_IMM, imm));
349 ctx->const_reg = true;
354 static bool attr_w gen_entry(struct codegen_context *ctx)
356 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_SAVE, 0);
360 gen_eight(-FRAME_SIZE);
362 gen_insn(INSN_JMP_INDIRECT, 0, 0, 0);
368 static bool attr_w gen_escape_arg(struct codegen_context *ctx, ip_t ip, uint32_t escape_label)
370 g(gen_load_constant(ctx, R_I1, ip));
372 gen_insn(INSN_JMP, 0, 0, 0);
373 gen_four(escape_label);
378 static bool attr_w gen_escape(struct codegen_context *ctx)
380 gen_insn(INSN_RET, 0, 0, 0);
385 static bool attr_w gen_upcall_argument(struct codegen_context attr_unused *ctx, unsigned attr_unused arg)
390 static bool attr_w gen_upcall(struct codegen_context *ctx, unsigned offset, unsigned attr_unused n_args)
392 g(gen_address(ctx, R_UPCALL, offset, IMM_PURPOSE_LDR_OFFSET, OP_SIZE_ADDRESS));
393 gen_insn(INSN_MOV, OP_SIZE_ADDRESS, 0, 0);
394 gen_one(R_SCRATCH_NA_1);
395 gen_address_offset();
397 gen_insn(INSN_CALL_INDIRECT, OP_SIZE_NATIVE, 0, 0);
398 gen_one(R_SCRATCH_NA_1);
403 static bool attr_w gen_timestamp_test(struct codegen_context *ctx, uint32_t escape_label)
405 g(gen_address(ctx, R_UPCALL, offsetof(struct cg_upcall_vector_s, ts), IMM_PURPOSE_LDR_OFFSET, OP_SIZE_4));
406 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
407 gen_one(R_SCRATCH_1);
408 gen_address_offset();
410 gen_insn(INSN_CMP, OP_SIZE_4, 0, 1);
411 gen_one(R_SCRATCH_1);
412 gen_one(R_TIMESTAMP);
414 gen_insn(INSN_JMP_COND, OP_SIZE_4, COND_NE, 0);
415 gen_four(escape_label);