/* src/vm/jit/arm/emit.c - Arm code emitter functions Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger, Institut f. Computersprachen - TU Wien This file is part of CACAO. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. $Id: emit.c 4398 2006-01-31 23:43:08Z twisti $ */ #include "config.h" #include #include #include "vm/types.h" #include "md-abi.h" #include "vm/jit/arm/codegen.h" #include "mm/memory.h" #include "threads/lock-common.h" #include "vm/builtin.h" #include "vm/exceptions.h" #include "vm/global.h" #include "vm/jit/abi.h" #include "vm/jit/asmpart.h" #include "vm/jit/emit-common.h" #include "vm/jit/jit.h" #include "vm/jit/patcher-common.h" #include "vm/jit/replace.h" #include "toolbox/logging.h" /* XXX for debugging only */ /* emit_load ******************************************************************* Emits a possible load of an operand. *******************************************************************************/ s4 emit_load(jitdata *jd, instruction *iptr, varinfo *src, s4 tempreg) { codegendata *cd; s4 disp; s4 reg; /* get required compiler data */ cd = jd->cd; if (src->flags & INMEMORY) { COUNT_SPILLS; disp = src->vv.regoff; #if defined(ENABLE_SOFTFLOAT) switch (src->type) { case TYPE_INT: case TYPE_FLT: case TYPE_ADR: M_ILD(tempreg, REG_SP, disp); break; case TYPE_LNG: case TYPE_DBL: M_LLD(tempreg, REG_SP, disp); break; default: vm_abort("emit_load: unknown type %d", src->type); } #else switch (src->type) { case TYPE_INT: case TYPE_ADR: M_ILD(tempreg, REG_SP, disp); break; case TYPE_LNG: M_LLD(tempreg, REG_SP, disp); break; case TYPE_FLT: M_FLD(tempreg, REG_SP, disp); break; case TYPE_DBL: M_DLD(tempreg, REG_SP, disp); break; default: vm_abort("emit_load: unknown type %d", src->type); } #endif reg = tempreg; } else reg = src->vv.regoff; return reg; } /* emit_load_low *************************************************************** Emits a possible load of the low 32-bits of a long source operand. *******************************************************************************/ s4 emit_load_low(jitdata *jd, instruction *iptr, varinfo *src, s4 tempreg) { codegendata *cd; s4 disp; s4 reg; assert(src->type == TYPE_LNG); /* get required compiler data */ cd = jd->cd; if (src->flags & INMEMORY) { COUNT_SPILLS; disp = src->vv.regoff; #if defined(__ARMEL__) M_ILD(tempreg, REG_SP, disp); #else M_ILD(tempreg, REG_SP, disp + 4); #endif reg = tempreg; } else reg = GET_LOW_REG(src->vv.regoff); return reg; } /* emit_load_high ************************************************************** Emits a possible load of the high 32-bits of a long source operand. *******************************************************************************/ s4 emit_load_high(jitdata *jd, instruction *iptr, varinfo *src, s4 tempreg) { codegendata *cd; s4 disp; s4 reg; assert(src->type == TYPE_LNG); /* get required compiler data */ cd = jd->cd; if (src->flags & INMEMORY) { COUNT_SPILLS; disp = src->vv.regoff; #if defined(__ARMEL__) M_ILD(tempreg, REG_SP, disp + 4); #else M_ILD(tempreg, REG_SP, disp); #endif reg = tempreg; } else reg = GET_HIGH_REG(src->vv.regoff); return reg; } /* emit_store ****************************************************************** Emits a possible store to a variable. *******************************************************************************/ void emit_store(jitdata *jd, instruction *iptr, varinfo *dst, s4 d) { codegendata *cd; s4 disp; /* get required compiler data */ cd = jd->cd; if (dst->flags & INMEMORY) { COUNT_SPILLS; disp = dst->vv.regoff; #if defined(ENABLE_SOFTFLOAT) switch (dst->type) { case TYPE_INT: case TYPE_FLT: case TYPE_ADR: M_IST(d, REG_SP, disp); break; case TYPE_LNG: case TYPE_DBL: M_LST(d, REG_SP, disp); break; default: vm_abort("emit_store: unknown type %d", dst->type); } #else switch (dst->type) { case TYPE_INT: case TYPE_ADR: M_IST(d, REG_SP, disp); break; case TYPE_LNG: M_LST(d, REG_SP, disp); break; case TYPE_FLT: M_FST(d, REG_SP, disp); break; case TYPE_DBL: M_DST(d, REG_SP, disp); break; default: vm_abort("emit_store: unknown type %d", dst->type); } #endif } } /* emit_copy ******************************************************************* Generates a register/memory to register/memory copy. *******************************************************************************/ void emit_copy(jitdata *jd, instruction *iptr) { codegendata *cd; varinfo *src; varinfo *dst; s4 s1, d; /* get required compiler data */ cd = jd->cd; /* get source and destination variables */ src = VAROP(iptr->s1); dst = VAROP(iptr->dst); /* XXX dummy call, removed me!!! */ d = codegen_reg_of_var(iptr->opc, dst, REG_ITMP1); if ((src->vv.regoff != dst->vv.regoff) || ((src->flags ^ dst->flags) & INMEMORY)) { if ((src->type == TYPE_RET) || (dst->type == TYPE_RET)) { /* emit nothing, as the value won't be used anyway */ return; } /* If one of the variables resides in memory, we can eliminate the register move from/to the temporary register with the order of getting the destination register and the load. */ if (IS_INMEMORY(src->flags)) { #if !defined(ENABLE_SOFTFLOAT) if (IS_FLT_DBL_TYPE(src->type)) d = codegen_reg_of_var(iptr->opc, dst, REG_FTMP1); else #endif { if (IS_2_WORD_TYPE(src->type)) d = codegen_reg_of_var(iptr->opc, dst, REG_ITMP12_PACKED); else d = codegen_reg_of_var(iptr->opc, dst, REG_ITMP1); } s1 = emit_load(jd, iptr, src, d); } else { #if !defined(ENABLE_SOFTFLOAT) if (IS_FLT_DBL_TYPE(src->type)) s1 = emit_load(jd, iptr, src, REG_FTMP1); else #endif { if (IS_2_WORD_TYPE(src->type)) s1 = emit_load(jd, iptr, src, REG_ITMP12_PACKED); else s1 = emit_load(jd, iptr, src, REG_ITMP1); } d = codegen_reg_of_var(iptr->opc, dst, s1); } if (s1 != d) { #if defined(ENABLE_SOFTFLOAT) switch (src->type) { case TYPE_INT: case TYPE_FLT: case TYPE_ADR: /* XXX grrrr, wrong direction! */ M_MOV(d, s1); break; case TYPE_LNG: case TYPE_DBL: /* XXX grrrr, wrong direction! */ M_MOV(GET_LOW_REG(d), GET_LOW_REG(s1)); M_MOV(GET_HIGH_REG(d), GET_HIGH_REG(s1)); break; default: vm_abort("emit_copy: unknown type %d", src->type); } #else switch (src->type) { case TYPE_INT: case TYPE_ADR: /* XXX grrrr, wrong direction! */ M_MOV(d, s1); break; case TYPE_LNG: /* XXX grrrr, wrong direction! */ M_MOV(GET_LOW_REG(d), GET_LOW_REG(s1)); M_MOV(GET_HIGH_REG(d), GET_HIGH_REG(s1)); break; case TYPE_FLT: M_FMOV(s1, d); break; case TYPE_DBL: M_DMOV(s1, d); break; default: vm_abort("emit_copy: unknown type %d", src->type); } #endif } emit_store(jd, iptr, dst, d); } } /* emit_iconst ***************************************************************** XXX *******************************************************************************/ void emit_iconst(codegendata *cd, s4 d, s4 value) { s4 disp; if (IS_IMM(value)) M_MOV_IMM(d, value); else { disp = dseg_add_s4(cd, value); M_DSEG_LOAD(d, disp); } } /* emit_branch ***************************************************************** Emits the code for conditional and unconditional branchs. *******************************************************************************/ void emit_branch(codegendata *cd, s4 disp, s4 condition, s4 reg, u4 opt) { s4 checkdisp; s4 branchdisp; /* calculate the different displacements */ checkdisp = (disp - 8); branchdisp = (disp - 8) >> 2; /* check which branch to generate */ if (condition == BRANCH_UNCONDITIONAL) { /* check displacement for overflow */ if ((checkdisp < (s4) 0xff000000) || (checkdisp > (s4) 0x00ffffff)) { /* if the long-branches flag isn't set yet, do it */ if (!CODEGENDATA_HAS_FLAG_LONGBRANCHES(cd)) { cd->flags |= (CODEGENDATA_FLAG_ERROR | CODEGENDATA_FLAG_LONGBRANCHES); } vm_abort("emit_branch: emit unconditional long-branch code"); } else { M_B(branchdisp); } } else { /* and displacement for overflow */ if ((checkdisp < (s4) 0xff000000) || (checkdisp > (s4) 0x00ffffff)) { /* if the long-branches flag isn't set yet, do it */ if (!CODEGENDATA_HAS_FLAG_LONGBRANCHES(cd)) { cd->flags |= (CODEGENDATA_FLAG_ERROR | CODEGENDATA_FLAG_LONGBRANCHES); } vm_abort("emit_branch: emit conditional long-branch code"); } else { switch (condition) { case BRANCH_EQ: M_BEQ(branchdisp); break; case BRANCH_NE: M_BNE(branchdisp); break; case BRANCH_LT: M_BLT(branchdisp); break; case BRANCH_GE: M_BGE(branchdisp); break; case BRANCH_GT: M_BGT(branchdisp); break; case BRANCH_LE: M_BLE(branchdisp); break; case BRANCH_UGT: M_BHI(branchdisp); break; default: vm_abort("emit_branch: unknown condition %d", condition); } } } } /* emit_arithmetic_check ******************************************************* Emit an ArithmeticException check. *******************************************************************************/ void emit_arithmetic_check(codegendata *cd, instruction *iptr, s4 reg) { if (INSTRUCTION_MUST_CHECK(iptr)) { CHECK_INT_REG(reg); M_TEQ_IMM(reg, 0); M_TRAPEQ(0, EXCEPTION_HARDWARE_ARITHMETIC); } } /* emit_nullpointer_check ****************************************************** Emit a NullPointerException check. *******************************************************************************/ void emit_nullpointer_check(codegendata *cd, instruction *iptr, s4 reg) { if (INSTRUCTION_MUST_CHECK(iptr)) { M_TST(reg, reg); M_TRAPEQ(0, EXCEPTION_HARDWARE_NULLPOINTER); } } void emit_nullpointer_check_force(codegendata *cd, instruction *iptr, s4 reg) { M_TST(reg, reg); M_TRAPEQ(0, EXCEPTION_HARDWARE_NULLPOINTER); } /* emit_arrayindexoutofbounds_check ******************************************** Emit a ArrayIndexOutOfBoundsException check. *******************************************************************************/ void emit_arrayindexoutofbounds_check(codegendata *cd, instruction *iptr, s4 s1, s4 s2) { if (INSTRUCTION_MUST_CHECK(iptr)) { M_ILD_INTERN(REG_ITMP3, s1, OFFSET(java_arrayheader, size)); M_CMP(s2, REG_ITMP3); M_TRAPHS(s2, EXCEPTION_HARDWARE_ARRAYINDEXOUTOFBOUNDS); } } /* emit_classcast_check ******************************************************** Emit a ClassCastException check. *******************************************************************************/ void emit_classcast_check(codegendata *cd, instruction *iptr, s4 condition, s4 reg, s4 s1) { if (INSTRUCTION_MUST_CHECK(iptr)) { switch (condition) { case BRANCH_EQ: M_TRAPEQ(s1, EXCEPTION_HARDWARE_CLASSCAST); break; case BRANCH_LE: M_TRAPLE(s1, EXCEPTION_HARDWARE_CLASSCAST); break; case BRANCH_UGT: M_TRAPHI(s1, EXCEPTION_HARDWARE_CLASSCAST); break; default: vm_abort("emit_classcast_check: unknown condition %d", condition); } } } /* emit_exception_check ******************************************************** Emit an Exception check. *******************************************************************************/ void emit_exception_check(codegendata *cd, instruction *iptr) { if (INSTRUCTION_MUST_CHECK(iptr)) { M_TST(REG_RESULT, REG_RESULT); M_TRAPEQ(0, EXCEPTION_HARDWARE_EXCEPTION); } } /* emit_trap ******************************************************************* Emit a trap instruction and return the original machine code. *******************************************************************************/ uint32_t emit_trap(codegendata *cd) { uint32_t mcode; /* Get machine code which is patched back in later. The trap is 1 instruction word long. */ mcode = *((u4 *) cd->mcodeptr); M_TRAP(0, EXCEPTION_HARDWARE_PATCHER); return mcode; } /* emit_verbosecall_enter ****************************************************** Generates the code for the call trace. *******************************************************************************/ #if !defined(NDEBUG) void emit_verbosecall_enter(jitdata *jd) { methodinfo *m; codegendata *cd; registerdata *rd; methoddesc *md; s4 stackframesize; s4 disp; s4 i, t, s1, s2; /* get required compiler data */ m = jd->m; cd = jd->cd; rd = jd->rd; md = m->parseddesc; /* stackframesize is changed below */ stackframesize = cd->stackframesize; /* mark trace code */ M_NOP; /* Save argument registers to stack (including LR and PV). Keep stack 8-byte aligned. */ M_STMFD(BITMASK_ARGS | (1<paramcount - 1; if (i > 3) i = 3; for (; i >= 0; i--) { t = md->paramtypes[i].type; /* load argument into register (s1) and make it of TYPE_LNG */ if (!md->params[i].inmemory) { s1 = md->params[i].regoff; if (!IS_2_WORD_TYPE(t)) { M_MOV_IMM(REG_ITMP1, 0); s1 = PACK_REGS(s1, REG_ITMP1); } } else { s1 = REG_ITMP12_PACKED; s2 = md->params[i].regoff + stackframesize; if (IS_2_WORD_TYPE(t)) M_LLD(s1, REG_SP, s2); else { M_ILD(GET_LOW_REG(s1), REG_SP, s2); M_MOV_IMM(GET_HIGH_REG(s1), 0); } } /* place argument for tracer */ if (i < 2) { #if defined(__ARMEL__) s2 = PACK_REGS(abi_registers_integer_argument[i * 2], abi_registers_integer_argument[i * 2 + 1]); #else /* defined(__ARMEB__) */ s2 = PACK_REGS(abi_registers_integer_argument[i * 2 + 1], abi_registers_integer_argument[i * 2]); #endif M_LNGMOVE(s1, s2); } else { s2 = (i - 2) * 2; M_LST(s1, REG_SP, s2 * 4); } } /* prepare methodinfo pointer for tracer */ disp = dseg_add_address(cd, m); M_DSEG_LOAD(REG_ITMP1, disp); M_STR_INTERN(REG_ITMP1, REG_SP, 16); /* call tracer here (we use a long branch) */ M_LONGBRANCH(builtin_verbosecall_enter); /* Restore argument registers from stack. Keep stack 8-byte aligned. */ M_ADD_IMM(REG_SP, REG_SP, (2 + 2 + 1 + 1) * 4); /* free argument stack */ M_LDMFD(BITMASK_ARGS | (1<m; cd = jd->cd; rd = jd->rd; md = m->parseddesc; /* mark trace code */ M_NOP; /* Keep stack 8-byte aligned. */ M_STMFD(BITMASK_RESULT | (1<returntype.type) { case TYPE_ADR: case TYPE_INT: M_INTMOVE(REG_RESULT, GET_LOW_REG(REG_A0_A1_PACKED)); M_MOV_IMM(GET_HIGH_REG(REG_A0_A1_PACKED), 0); break; case TYPE_LNG: M_LNGMOVE(REG_RESULT_PACKED, REG_A0_A1_PACKED); break; case TYPE_FLT: M_IST(REG_RESULT, REG_SP, 0 * 4); break; case TYPE_DBL: M_LNGMOVE(REG_RESULT_PACKED, REG_A2_A3_PACKED); break; } disp = dseg_add_address(cd, m); M_DSEG_LOAD(REG_ITMP1, disp); M_AST(REG_ITMP1, REG_SP, 1 * 4); M_LONGBRANCH(builtin_verbosecall_exit); /* Keep stack 8-byte aligned. */ M_ADD_IMM(REG_SP, REG_SP, (1 + 1) * 4); /* free argument stack */ M_LDMFD(BITMASK_RESULT | (1<