* Removed all Id tags.
[cacao.git] / src / vm / jit / verify / typecheck-builtins.inc
index cb69b4afa835241196dbdf72d1e5674e516f970a..5ca682273764fd8b3c6713b834ff23fbec36730e 100644 (file)
@@ -1,65 +1,94 @@
+/* src/vm/jit/verify/typecheck-builtins.inc - type checking for ICMD_BUILTIN
+
+   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.
+
+*/
+
+
+#define ISBUILTIN(v)   (bte->fp == (functionptr) (v))
+
 {
        builtintable_entry *bte;
-    classref_or_classinfo cls;
-    varinfo *dv;               /* output variable of current instruction */
-       jitdata *jd = state->jd;
 
        bte = state->iptr->sx.s23.s3.bte;
-       dv = VAROP(state->iptr->dst);
 
        /* XXX this is an ugly if-chain but twisti did not want a function */
        /* pointer in builtintable_entry for this, so here you go.. ;)     */
 
        if (ISBUILTIN(BUILTIN_new)) {
+               dv->type = TYPE_ADR;
+#if defined(TYPECHECK_TYPEINFERER)
+               assert(state->iptr[-1].opc == ICMD_ACONST);
+               typeinfo_init_class(&(dv->typeinfo), state->iptr[-1].sx.val.c);
+#else
                if (state->iptr[-1].opc != ICMD_ACONST)
                        TYPECHECK_VERIFYERROR_bool("illegal instruction: builtin_new without class");
-               cls = state->iptr[-1].sx.val.c;
-               dv->type = TYPE_ADR;
                TYPEINFO_INIT_NEWOBJECT(dv->typeinfo,state->iptr);
+#endif
        }
        else if (ISBUILTIN(BUILTIN_newarray_boolean)) {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                dv->type = TYPE_ADR;
                TYPEINFO_INIT_PRIMITIVE_ARRAY(dv->typeinfo,ARRAYTYPE_BOOLEAN);
        }
        else if (ISBUILTIN(BUILTIN_newarray_char)) {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                dv->type = TYPE_ADR;
                TYPEINFO_INIT_PRIMITIVE_ARRAY(dv->typeinfo,ARRAYTYPE_CHAR);
        }
        else if (ISBUILTIN(BUILTIN_newarray_float)) {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                dv->type = TYPE_ADR;
                TYPEINFO_INIT_PRIMITIVE_ARRAY(dv->typeinfo,ARRAYTYPE_FLOAT);
        }
        else if (ISBUILTIN(BUILTIN_newarray_double)) {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                dv->type = TYPE_ADR;
                TYPEINFO_INIT_PRIMITIVE_ARRAY(dv->typeinfo,ARRAYTYPE_DOUBLE);
        }
        else if (ISBUILTIN(BUILTIN_newarray_byte)) {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                dv->type = TYPE_ADR;
                TYPEINFO_INIT_PRIMITIVE_ARRAY(dv->typeinfo,ARRAYTYPE_BYTE);
        }
        else if (ISBUILTIN(BUILTIN_newarray_short)) {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                dv->type = TYPE_ADR;
                TYPEINFO_INIT_PRIMITIVE_ARRAY(dv->typeinfo,ARRAYTYPE_SHORT);
        }
        else if (ISBUILTIN(BUILTIN_newarray_int)) {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                dv->type = TYPE_ADR;
                TYPEINFO_INIT_PRIMITIVE_ARRAY(dv->typeinfo,ARRAYTYPE_INT);
        }
        else if (ISBUILTIN(BUILTIN_newarray_long)) {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                dv->type = TYPE_ADR;
                TYPEINFO_INIT_PRIMITIVE_ARRAY(dv->typeinfo,ARRAYTYPE_LONG);
        }
        else if (ISBUILTIN(BUILTIN_newarray))
        {
-               TYPECHECK_INT(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_INT(OP1);
                if (state->iptr[-1].opc != ICMD_ACONST)
                        TYPECHECK_VERIFYERROR_bool("illegal instruction: builtin_newarray without class");
                /* XXX check that it is an array class(ref) */
@@ -68,7 +97,7 @@
        }
        else if (ISBUILTIN(BUILTIN_arrayinstanceof))
        {
-               TYPECHECK_ADR(state->iptr->sx.s23.s2.args[0]);
+               TYPECHECK_ADR(OP1);
                if (state->iptr[-1].opc != ICMD_ACONST)
                        TYPECHECK_VERIFYERROR_bool("illegal instruction: builtin_arrayinstanceof without class");
                dv->type = TYPE_INT;
        }
        else {
                methoddesc *md;
-               s4 i;
                u1 rtype;
-               varinfo *av;
+#if !defined(TYPECHECK_TYPEINFERER)
+               s4 i;
+#endif
+#if defined(TYPECHECK_STACKBASED)
+               typedescriptor *av;
+#endif
 
                /* verify a generic builtin call */
 
                TYPECHECK_COUNT(stat_ins_builtin_gen);
 
                md = bte->md;
+#if !defined(TYPECHECK_TYPEINFERER)
                i = md->paramcount;
 
                /* check the types of the arguments on the stack */
 
+#if defined(TYPECHECK_STACKBASED)
+               av = stack - (md->paramslots - 1);
+#endif
+
                for (i--; i >= 0; i--) {
-                       av = VAR(state->iptr->sx.s23.s2.args[i]);
+#if defined(TYPECHECK_VARIABLESBASED)
+                       varinfo *av = VAR(state->iptr->sx.s23.s2.args[i]);
+#endif
 
                        if (av->type != md->paramtypes[i].type) {
                                TYPECHECK_VERIFYERROR_bool("parameter type mismatch for builtin method");
 #ifdef TYPECHECK_DEBUG
                        /* generic builtins may only take primitive types and java.lang.Object references */
                        if (av->type == TYPE_ADR && md->paramtypes[i].classref->name != utf_java_lang_Object) {
-                               *exceptionptr = new_internalerror("generic builtin method with non-generic reference parameter");
+                               exceptions_throw_internalerror("generic builtin method with non-generic reference parameter");
                                return false;
                        }
 #endif
+
+#if defined(TYPECHECK_STACKBASED)
+                       av += (IS_2_WORD_TYPE(av->type)) ? 2 : 1;
+#endif
                }
+#endif /* !defined(TYPECHECK_TYPEINFERER) */
 
                /* set the return type */
 
                rtype = md->returntype.type;
                if (rtype != TYPE_VOID) {
-                       varinfo *dv;
-
-                       dv = VAROP(state->iptr->dst);
                        dv->type = rtype;
                        if (!typeinfo_init_from_typedesc(&(md->returntype),NULL,&(dv->typeinfo)))
                                return false;
                }
-
-               return true;
        }
 }
 
+#undef ISBUILTIN
+
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where