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 const uint8_t reg_available[] = { 0 };
212 #define n_reg_available 0
213 #define reg_is_saved(r) 1
215 static bool attr_w gen_load_constant(struct codegen_context *ctx, unsigned reg, uint64_t c)
219 if (c >= (uint64_t)-4096) {
220 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
227 if (c >= 0x100000000ULL) {
228 int32_t cu = c >> 32;
229 if (cu < -4096 || cu >= 4096) {
230 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
231 gen_one(R_CONST_HELPER);
233 gen_eight(cu & 0xFFFFFC00UL);
236 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
237 gen_one(R_CONST_HELPER);
238 gen_one(R_CONST_HELPER);
243 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
244 gen_one(R_CONST_HELPER);
249 gen_insn(INSN_ROT, OP_SIZE_NATIVE, ROT_SHL, 0);
250 gen_one(R_CONST_HELPER);
251 gen_one(R_CONST_HELPER);
257 if (cl < 0 || cl >= 4096) {
258 gen_insn(INSN_MOV, OP_SIZE_NATIVE, 0, 0);
261 gen_eight(cl & 0xFFFFFC00UL);
264 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
271 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
278 if (c >= 0x100000000ULL) {
279 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_OR, 0);
282 gen_one(R_CONST_HELPER);
288 static bool attr_w gen_address(struct codegen_context *ctx, unsigned base, int64_t imm, unsigned purpose, unsigned size)
290 ctx->base_reg = base;
291 ctx->offset_imm = imm;
292 ctx->offset_reg = false;
294 case IMM_PURPOSE_LDR_OFFSET:
295 case IMM_PURPOSE_LDR_SX_OFFSET:
296 case IMM_PURPOSE_STR_OFFSET:
297 case IMM_PURPOSE_LDP_STP_OFFSET:
298 case IMM_PURPOSE_VLDR_VSTR_OFFSET:
299 case IMM_PURPOSE_MVI_CLI_OFFSET:
300 if (likely(imm >= -4096) && likely(imm < 4096))
304 internal(file_line, "gen_address: invalid purpose %u (imm %"PRIxMAX", size %u)", purpose, (uintmax_t)imm, size);
307 g(gen_load_constant(ctx, R_OFFSET_IMM, imm));
308 ctx->offset_reg = true;
312 static bool is_direct_const(int64_t imm, unsigned purpose, unsigned size)
315 case IMM_PURPOSE_STORE_VALUE:
319 case IMM_PURPOSE_ADD:
320 case IMM_PURPOSE_SUB:
321 case IMM_PURPOSE_CMP:
322 case IMM_PURPOSE_CMP_LOGICAL:
323 case IMM_PURPOSE_AND:
325 case IMM_PURPOSE_XOR:
326 case IMM_PURPOSE_ANDN:
327 case IMM_PURPOSE_TEST:
328 case IMM_PURPOSE_MUL:
329 if (likely(imm >= -4096) && likely(imm < 4096))
332 case IMM_PURPOSE_CMOV:
333 if (likely(imm >= -1024) && likely(imm < 1024))
336 case IMM_PURPOSE_MOVR:
337 if (likely(imm >= -512) && likely(imm < 512))
341 internal(file_line, "is_direct_const: invalid purpose %u (imm %"PRIxMAX", size %u)", purpose, (uintmax_t)imm, size);
346 static bool attr_w gen_imm(struct codegen_context *ctx, int64_t imm, unsigned purpose, unsigned size)
348 if (is_direct_const(imm, purpose, size)) {
349 ctx->const_imm = imm;
350 ctx->const_reg = false;
352 g(gen_load_constant(ctx, R_CONST_IMM, imm));
353 ctx->const_reg = true;
358 static bool attr_w gen_entry(struct codegen_context *ctx)
360 gen_insn(INSN_ALU, OP_SIZE_NATIVE, ALU_SAVE, 0);
364 gen_eight(-FRAME_SIZE);
366 gen_insn(INSN_JMP_INDIRECT, 0, 0, 0);
372 static bool attr_w gen_escape_arg(struct codegen_context *ctx, ip_t ip, uint32_t escape_label)
374 g(gen_load_constant(ctx, R_I1, ip));
376 gen_insn(INSN_JMP, 0, 0, 0);
377 gen_four(escape_label);
382 static bool attr_w gen_escape(struct codegen_context *ctx)
384 gen_insn(INSN_RET, 0, 0, 0);
389 static bool attr_w gen_upcall_argument(struct codegen_context attr_unused *ctx, unsigned attr_unused arg)
394 static bool attr_w gen_upcall(struct codegen_context *ctx, unsigned offset, unsigned n_args)
396 g(gen_address(ctx, R_UPCALL, offset, IMM_PURPOSE_LDR_OFFSET, OP_SIZE_ADDRESS));
397 gen_insn(INSN_MOV, OP_SIZE_ADDRESS, 0, 0);
398 gen_one(R_SCRATCH_NA_1);
399 gen_address_offset();
401 gen_insn(INSN_CALL_INDIRECT, OP_SIZE_NATIVE, 0, 0);
402 gen_one(R_SCRATCH_NA_1);
404 g(gen_upcall_end(ctx, n_args));
409 static bool attr_w gen_timestamp_test(struct codegen_context *ctx, uint32_t escape_label)
411 g(gen_address(ctx, R_UPCALL, offsetof(struct cg_upcall_vector_s, ts), IMM_PURPOSE_LDR_OFFSET, OP_SIZE_4));
412 gen_insn(INSN_MOV, OP_SIZE_4, 0, 0);
413 gen_one(R_SCRATCH_1);
414 gen_address_offset();
416 gen_insn(INSN_CMP, OP_SIZE_4, 0, 1);
417 gen_one(R_SCRATCH_1);
418 gen_one(R_TIMESTAMP);
420 gen_insn(INSN_JMP_COND, OP_SIZE_4, COND_NE, 0);
421 gen_four(escape_label);