comparison src/cpu/x86/vm/bytecodeInterpreter_x86.hpp @ 14433:018b357638aa

8028514: PPC64: Fix C++ Interpreter after '7195622: CheckUnhandledOops has limited usefulness now' Summary: fix CPP-interpreter after CheckUnhandledOops was re-enabled in the fastdebug build Reviewed-by: kvn, dholmes, lfoltan
author simonis
date Tue, 19 Nov 2013 11:53:58 -0800
parents f95d63e2154a
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14432:935bf3340572 14433:018b357638aa
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) ((oop)locals[-(offset)]) 97 #define LOCALS_OBJECT(offset) (cast_to_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