comparison src/cpu/sparc/vm/bytecodeInterpreter_sparc.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents 018b357638aa
children 52b4284cb496
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
81 81
82 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)]) 82 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)])
83 #define LOCALS_ADDR(offset) ((address)locals[-(offset)]) 83 #define LOCALS_ADDR(offset) ((address)locals[-(offset)])
84 #define LOCALS_INT(offset) (*((jint*)&locals[-(offset)])) 84 #define LOCALS_INT(offset) (*((jint*)&locals[-(offset)]))
85 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)])) 85 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)]))
86 #define LOCALS_OBJECT(offset) (cast_to_oop(locals[-(offset)])) 86 #define LOCALS_OBJECT(offset) ((oop)locals[-(offset)])
87 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d) 87 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d)
88 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l) 88 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l)
89 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)])) 89 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)]))
90 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[-((offset) + 1)])) 90 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[-((offset) + 1)]))
91 91