Searched refs:aligned_bcp (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp110 { address aligned_bcp = (address)round_to((intptr_t)bcp + 1, jintSize); local
111 if (end != NULL && aligned_bcp + 3*jintSize >= end) {
114 jlong lo = (jint)Bytes::get_Java_u4(aligned_bcp + 1*jintSize);
115 jlong hi = (jint)Bytes::get_Java_u4(aligned_bcp + 2*jintSize);
116 jlong len = (aligned_bcp - bcp) + (3 + hi - lo + 1)*jintSize;
125 { address aligned_bcp = (address)round_to((intptr_t)bcp + 1, jintSize); local
126 if (end != NULL && aligned_bcp + 2*jintSize >= end) {
129 jlong npairs = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
130 jlong len = (aligned_bcp - bcp) + (2 + 2*npairs)*jintSize;
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp2025 address aligned_bcp = (address) round_to((intptr_t)(bcp + 1), jintSize);
2029 while ((bcp + padding_offset) < aligned_bcp) {
2037 int default_offset = (int) Bytes::get_Java_u4(aligned_bcp);
2042 jint low = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
2043 jint high = (jint)Bytes::get_Java_u4(aligned_bcp + 2*jintSize);
2056 keys = (int)Bytes::get_Java_u4(aligned_bcp + jintSize);
2065 jint this_key = Bytes::get_Java_u4(aligned_bcp + (2+2*i)*jintSize);
2066 jint next_key = Bytes::get_Java_u4(aligned_bcp + (2+2*i+2)*jintSize);
2078 // moved, which means 'aligned_bcp' is no good and needs to be recalculated.
2079 aligned_bcp
[all...]

Completed in 34 milliseconds