src/cpu/x86/vm/cppInterpreter_x86.cpp

changeset 3969
1d7922586cf6
parent 3826
2fe087c3e814
child 4037
da91efe96a93
equal deleted inserted replaced
3944:aba91a731143 3969:1d7922586cf6
869 const Address field_address (rax, rcx, Address::times_1); 869 const Address field_address (rax, rcx, Address::times_1);
870 870
871 // Need to differentiate between igetfield, agetfield, bgetfield etc. 871 // Need to differentiate between igetfield, agetfield, bgetfield etc.
872 // because they are different sizes. 872 // because they are different sizes.
873 // Use the type from the constant pool cache 873 // Use the type from the constant pool cache
874 __ shrl(rdx, ConstantPoolCacheEntry::tosBits); 874 __ shrl(rdx, ConstantPoolCacheEntry::tos_state_shift);
875 // Make sure we don't need to mask rdx for tosBits after the above shift 875 // Make sure we don't need to mask rdx after the above shift
876 ConstantPoolCacheEntry::verify_tosBits(); 876 ConstantPoolCacheEntry::verify_tos_state_shift();
877 #ifdef _LP64 877 #ifdef _LP64
878 Label notObj; 878 Label notObj;
879 __ cmpl(rdx, atos); 879 __ cmpl(rdx, atos);
880 __ jcc(Assembler::notEqual, notObj); 880 __ jcc(Assembler::notEqual, notObj);
881 // atos 881 // atos

mercurial