comparison src/cpu/x86/vm/bytecodeInterpreter_x86.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
92 92
93 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)]) 93 #define LOCALS_SLOT(offset) ((intptr_t*)&locals[-(offset)])
94 #define LOCALS_ADDR(offset) ((address)locals[-(offset)]) 94 #define LOCALS_ADDR(offset) ((address)locals[-(offset)])
95 #define LOCALS_INT(offset) ((jint)(locals[-(offset)])) 95 #define LOCALS_INT(offset) ((jint)(locals[-(offset)]))
96 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)])) 96 #define LOCALS_FLOAT(offset) (*((jfloat*)&locals[-(offset)]))
97 #define LOCALS_OBJECT(offset) (cast_to_oop(locals[-(offset)])) 97 #define LOCALS_OBJECT(offset) ((oop)locals[-(offset)])
98 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d) 98 #define LOCALS_DOUBLE(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->d)
99 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l) 99 #define LOCALS_LONG(offset) (((VMJavaVal64*)&locals[-((offset) + 1)])->l)
100 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)])) 100 #define LOCALS_LONG_AT(offset) (((address)&locals[-((offset) + 1)]))
101 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[-((offset) + 1)])) 101 #define LOCALS_DOUBLE_AT(offset) (((address)&locals[-((offset) + 1)]))
102 102