comparison src/cpu/zero/vm/bytecodeInterpreter_zero.hpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 4ca6dc0799b6
children
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
130 130
131 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)]) 131 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)])
132 #define LOCALS_ADDR(offset) ((address)locals[-(offset)]) 132 #define LOCALS_ADDR(offset) ((address)locals[-(offset)])
133 #define LOCALS_INT(offset) (*((jint*)&locals[-(offset)])) 133 #define LOCALS_INT(offset) (*((jint*)&locals[-(offset)]))
134 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)])) 134 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)]))
135 #define LOCALS_OBJECT(offset) ((oop)locals[-(offset)]) 135 #define LOCALS_OBJECT(offset) (cast_to_oop(locals[-(offset)]))
136 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d) 136 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d)
137 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l) 137 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l)
138 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)])) 138 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)]))
139 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[-((offset) + 1)])) 139 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[-((offset) + 1)]))
140 140