Lines Matching refs:offset

1066                   int16_t offset = (int16_t)Bytes::get_Java_u2(pc+4);
1068 SET_LOCALS_INT(LOCALS_INT(reg) + offset, reg);
1436 /* Goto pc at specified offset in switch table. */
2450 int16_t offset = (int16_t)Bytes::get_Java_u2(pc + 1);
2452 UPDATE_PC(offset);
2453 DO_BACKEDGE_CHECKS(offset, branch_pc);
2466 int32_t offset = Bytes::get_Java_u4(pc + 1);
2468 UPDATE_PC(offset);
2469 DO_BACKEDGE_CHECKS(offset, branch_pc);
2852 address BytecodeInterpreter::stack_slot(intptr_t *tos, int offset) {
2853 return (address) tos[Interpreter::expr_index_at(-offset)];
2856 jint BytecodeInterpreter::stack_int(intptr_t *tos, int offset) {
2857 return *((jint*) &tos[Interpreter::expr_index_at(-offset)]);
2860 jfloat BytecodeInterpreter::stack_float(intptr_t *tos, int offset) {
2861 return *((jfloat *) &tos[Interpreter::expr_index_at(-offset)]);
2864 oop BytecodeInterpreter::stack_object(intptr_t *tos, int offset) {
2865 return (oop)tos [Interpreter::expr_index_at(-offset)];
2868 jdouble BytecodeInterpreter::stack_double(intptr_t *tos, int offset) {
2869 return ((VMJavaVal64*) &tos[Interpreter::expr_index_at(-offset)])->d;
2872 jlong BytecodeInterpreter::stack_long(intptr_t *tos, int offset) {
2873 return ((VMJavaVal64 *) &tos[Interpreter::expr_index_at(-offset)])->l;
2878 int offset) {
2879 *((address *)&tos[Interpreter::expr_index_at(-offset)]) = value;
2883 int offset) {
2884 *((jint *)&tos[Interpreter::expr_index_at(-offset)]) = value;
2888 int offset) {
2889 *((jfloat *)&tos[Interpreter::expr_index_at(-offset)]) = value;
2893 int offset) {
2894 *((oop *)&tos[Interpreter::expr_index_at(-offset)]) = value;
2899 int offset) {
2900 ((VMJavaVal64*)&tos[Interpreter::expr_index_at(-offset)])->d = value;
2904 address addr, int offset) {
2905 (((VMJavaVal64*)&tos[Interpreter::expr_index_at(-offset)])->d =
2910 int offset) {
2911 ((VMJavaVal64*)&tos[Interpreter::expr_index_at(-offset+1)])->l = 0xdeedbeeb;
2912 ((VMJavaVal64*)&tos[Interpreter::expr_index_at(-offset)])->l = value;
2916 address addr, int offset) {
2917 ((VMJavaVal64*)&tos[Interpreter::expr_index_at(-offset+1)])->l = 0xdeedbeeb;
2918 ((VMJavaVal64*)&tos[Interpreter::expr_index_at(-offset)])->l =
2924 address BytecodeInterpreter::locals_slot(intptr_t* locals, int offset) {
2925 return (address)locals[Interpreter::local_index_at(-offset)];
2927 jint BytecodeInterpreter::locals_int(intptr_t* locals, int offset) {
2928 return (jint)locals[Interpreter::local_index_at(-offset)];
2930 jfloat BytecodeInterpreter::locals_float(intptr_t* locals, int offset) {
2931 return (jfloat)locals[Interpreter::local_index_at(-offset)];
2933 oop BytecodeInterpreter::locals_object(intptr_t* locals, int offset) {
2934 return (oop)locals[Interpreter::local_index_at(-offset)];
2936 jdouble BytecodeInterpreter::locals_double(intptr_t* locals, int offset) {
2937 return ((VMJavaVal64*)&locals[Interpreter::local_index_at(-(offset+1))])->d;
2939 jlong BytecodeInterpreter::locals_long(intptr_t* locals, int offset) {
2940 return ((VMJavaVal64*)&locals[Interpreter::local_index_at(-(offset+1))])->l;
2944 address BytecodeInterpreter::locals_long_at(intptr_t* locals, int offset) {
2945 return ((address)&locals[Interpreter::local_index_at(-(offset+1))]);
2947 address BytecodeInterpreter::locals_double_at(intptr_t* locals, int offset) {
2948 return ((address)&locals[Interpreter::local_index_at(-(offset+1))]);
2953 address value, int offset) {
2954 *((address*)&locals[Interpreter::local_index_at(-offset)]) = value;
2957 jint value, int offset) {
2958 *((jint *)&locals[Interpreter::local_index_at(-offset)]) = value;
2961 jfloat value, int offset) {
2962 *((jfloat *)&locals[Interpreter::local_index_at(-offset)]) = value;
2965 oop value, int offset) {
2966 *((oop *)&locals[Interpreter::local_index_at(-offset)]) = value;
2969 jdouble value, int offset) {
2970 ((VMJavaVal64*)&locals[Interpreter::local_index_at(-(offset+1))])->d = value;
2973 jlong value, int offset) {
2974 ((VMJavaVal64*)&locals[Interpreter::local_index_at(-(offset+1))])->l = value;
2977 address addr, int offset) {
2978 ((VMJavaVal64*)&locals[Interpreter::local_index_at(-(offset+1))])->d = ((VMJavaVal64*)addr)->d;
2981 address addr, int offset) {
2982 ((VMJavaVal64*)&locals[Interpreter::local_index_at(-(offset+1))])->l = ((VMJavaVal64*)addr)->l;