You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

214 lines
6.4 KiB

/*
* jit-rules-arm.h - Rules that define the characteristics of the ARM.
*
* Copyright (C) 2004 Southern Storm Software, Pty Ltd.
* Copyright (C) 2008 Michele Tartara <mikyt@users.sourceforge.net>
*
* This file is part of the libjit library.
*
* The libjit library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 2.1 of
* the License, or (at your option) any later version.
*
* The libjit library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with the libjit library. If not, see
* <http://www.gnu.org/licenses/>.
*/
#ifndef _JIT_RULES_ARM_H
#define _JIT_RULES_ARM_H
#include "jit-apply-rules.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* Determine the kind of floating point unit that is being used (if any)
*/
#if defined(__VFP_FP__)
/* Vector floating point unit (used by EABI systems) */
# define JIT_ARM_HAS_VFP 1
#elif defined(__FPA_FP__)
/* Old floating point unit (used by OABI systems) */
# define JIT_ARM_HAS_FPA 1
#endif
/*
* Determine if this ARM core uses floating point registers available
*/
#if defined(JIT_ARM_HAS_FPA) || defined(JIT_ARM_HAS_VFP)
# define JIT_ARM_HAS_FLOAT_REGS 1
#endif
/*
* Information about all of the registers, in allocation order.
* We use r0-r5 for general-purpose values and r6-r8 for globals.
*
* The floating-point registers are only present on some ARM cores.
*
* The definitions of the used flags are in jit-rules.h
*/
#define JIT_REG_INFO \
{"r0", 0, 1, JIT_REG_WORD | JIT_REG_LONG | JIT_REG_CALL_USED}, \
{"r1", 1, -1, JIT_REG_WORD | JIT_REG_CALL_USED}, \
{"r2", 2, 3, JIT_REG_WORD | JIT_REG_LONG | JIT_REG_CALL_USED}, \
{"r3", 3, -1, JIT_REG_WORD | JIT_REG_CALL_USED}, \
{"r4", 4, -1, JIT_REG_WORD}, \
{"r5", 5, -1, JIT_REG_WORD}, \
{"r6", 6, -1, JIT_REG_WORD | JIT_REG_GLOBAL}, \
{"r7", 7, -1, JIT_REG_WORD | JIT_REG_GLOBAL}, \
{"r8", 8, -1, JIT_REG_WORD | JIT_REG_GLOBAL}, \
{"r9", 9, -1, JIT_REG_FIXED}, /* pic reg */ \
{"r10", 10, -1, JIT_REG_FIXED}, /* stack limit */ \
{"fp", 11, -1, JIT_REG_FIXED | JIT_REG_FRAME}, \
{"r12", 12, -1, JIT_REG_FIXED | JIT_REG_CALL_USED}, /* work reg */ \
{"sp", 13, -1, JIT_REG_FIXED | JIT_REG_STACK_PTR}, \
{"lr", 14, -1, JIT_REG_FIXED}, \
{"pc", 15, -1, JIT_REG_FIXED}, \
JIT_REG_INFO_FLOAT_REGS
/*
* Definitions in case of no floating point registers
*/
#ifndef JIT_ARM_HAS_FLOAT_REGS
#define JIT_REG_INFO_FLOAT_REGS
/* JIT_NUM_REGS is the total number of registers (general purpose) */
#define JIT_NUM_REGS 16
#endif /* JIT_ARM_HAS_FLOAT_REGS */
/*
* Definitions in case of FPA
*/
#ifdef JIT_ARM_HAS_FPA
#define JIT_REG_ARM_FLOAT \
(JIT_REG_FLOAT32 | JIT_REG_FLOAT64 | JIT_REG_NFLOAT | JIT_REG_CALL_USED)
#define JIT_REG_INFO_FLOAT_REGS \
{"f0", 0, -1, JIT_REG_ARM_FLOAT}, \
{"f1", 1, -1, JIT_REG_ARM_FLOAT}, \
{"f2", 2, -1, JIT_REG_ARM_FLOAT}, \
{"f3", 3, -1, JIT_REG_ARM_FLOAT},
/* JIT_NUM_REGS is the total number of registers (general purpose+floating point) */
#define JIT_NUM_REGS 20
#endif /* JIT_ARM_HAS_FPA */
/*
* Definitions in case of VFP
*/
#ifdef JIT_ARM_HAS_VFP
#define JIT_REG_ARM_FLOAT32 (JIT_REG_FLOAT32)
#define JIT_REG_ARM_FLOAT64 (JIT_REG_FLOAT64 | JIT_REG_NFLOAT)
#define JIT_REG_INFO_FLOAT_REGS \
{"s0", 0, -1, JIT_REG_ARM_FLOAT32}, \
{"s1", 1, -1, JIT_REG_ARM_FLOAT32}, \
{"s2", 2, -1, JIT_REG_ARM_FLOAT32}, \
{"s3", 3, -1, JIT_REG_ARM_FLOAT32}, \
{"s4", 4, -1, JIT_REG_ARM_FLOAT32}, \
{"s5", 5, -1, JIT_REG_ARM_FLOAT32}, \
{"s6", 6, -1, JIT_REG_ARM_FLOAT32}, \
{"s7", 7, -1, JIT_REG_ARM_FLOAT32}, \
{"s8", 8, -1, JIT_REG_ARM_FLOAT32}, \
{"s9", 9, -1, JIT_REG_ARM_FLOAT32}, \
{"s10", 10, -1, JIT_REG_ARM_FLOAT32}, \
{"s11", 11, -1, JIT_REG_ARM_FLOAT32}, \
{"s12", 12, -1, JIT_REG_ARM_FLOAT32}, \
{"s13", 13, -1, JIT_REG_ARM_FLOAT32}, \
{"s14", 14, -1, JIT_REG_ARM_FLOAT32}, \
{"s15", 15, -1, JIT_REG_ARM_FLOAT32}, \
{"d8", 8, -1, JIT_REG_ARM_FLOAT64}, \
{"d9", 9, -1, JIT_REG_ARM_FLOAT64}, \
{"d10", 10, -1, JIT_REG_ARM_FLOAT64}, \
{"d11", 11, -1, JIT_REG_ARM_FLOAT64}, \
{"d12", 12, -1, JIT_REG_ARM_FLOAT64}, \
{"d13", 13, -1, JIT_REG_ARM_FLOAT64}, \
{"d14", 14, -1, JIT_REG_ARM_FLOAT64}, \
{"d15", 15, -1, JIT_REG_ARM_FLOAT64},
/* JIT_NUM_REGS is the total number of registers (general purpose+floating point) */
#define JIT_NUM_REGS 40
#endif
/* The number of global registers */
#define JIT_NUM_GLOBAL_REGS 3
//Floating point registers are NOT handled like a stack
#undef JIT_REG_STACK
/*
* Define to 1 if we should always load values into registers
* before operating on them. i.e. the CPU does not have reg-mem
* and mem-reg addressing modes.
*/
#define JIT_ALWAYS_REG_REG 1
/*
* The maximum number of bytes to allocate for the prolog.
* This may be shortened once we know the true prolog size.
*/
#define JIT_PROLOG_SIZE 48
/*
* Preferred alignment for the start of functions.
*/
#define JIT_FUNCTION_ALIGNMENT 8
/*
* Define this to 1 if the platform allows reads and writes on
* any byte boundary. Define to 0 if only properly-aligned
* memory accesses are allowed.
*/
#define JIT_ALIGN_OVERRIDES 0
/*
* Extra state information that is added to the "jit_gencode" structure.
*/
#define JIT_ARM_MAX_CONSTANTS 32
#define jit_extra_gen_state \
int constants[JIT_ARM_MAX_CONSTANTS]; \
int *fixup_constants[JIT_ARM_MAX_CONSTANTS]; \
int num_constants; \
int align_constants; \
unsigned int *first_constant_use
#define jit_extra_gen_init(gen) \
do { \
(gen)->num_constants = 0; \
(gen)->align_constants = 0; \
(gen)->first_constant_use = 0; \
} while (0)
#define jit_extra_gen_cleanup(gen) do { ; } while (0)
/*
* Parameter passing rules. We start by assuming that lr, sp, fp,
* r8, r7, r6, r5, and r4 need to be saved in the local frame.
*/
#define JIT_CDECL_WORD_REG_PARAMS {0, 1, 2, 3, -1}
#define JIT_MAX_WORD_REG_PARAMS 4
#define JIT_INITIAL_STACK_OFFSET (sizeof(void *))
#define JIT_INITIAL_FRAME_SIZE (8 * sizeof(void *))
#define JIT_USE_PARAM_AREA 1
#ifdef __cplusplus
};
#endif
#endif /* _JIT_RULES_ARM_H */