Searched refs:displacement (Results 1 - 8 of 8) sorted by relevance
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | X86PCRelativeAddress.java | 44 long displacement = this.getDisplacement(); 45 return new Long(displacement).toString(); 48 //In intel assembly the displacement is from start of next instruction. 51 long displacement = super.getDisplacement() + (long)instrSize; 52 return displacement;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/ |
H A D | JumpData.java | 38 // plus a data displacement, used for realigning the data pointer to 64 int displacement() { method in class:JumpData 79 st.println("taken(" + taken() + ") displacement(" + displacement() + ")");
|
H A D | BranchData.java | 37 // It consists of taken and notTaken counts as well as a data displacement 72 st.println("taken(" + taken() + ") displacement(" + displacement() + ")");
|
/openjdk7/hotspot/src/os/windows/vm/ |
H A D | decoder_windows.cpp | 176 DWORD64 displacement; 177 if (_pfnSymGetSymFromAddr64(::GetCurrentProcess(), (DWORD64)addr, &displacement, pSymbol)) { 183 if(offset != NULL) *offset = (int)displacement;
|
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | methodDataOop.hpp | 569 // plus a data displacement, used for realigning the data pointer to 579 void set_displacement(int displacement) { 580 set_int_at(displacement_off_set, displacement); 617 int displacement() { 805 // target of the ret and cache a corresponding data displacement. 901 // It consists of taken and not_taken counts as well as a data displacement 910 void set_displacement(int displacement) { 911 set_int_at(displacement_off_set, displacement); 1028 // of (count, displacement) pairs, which count the number of times each 1043 void set_default_displacement(int displacement) { [all...] |
H A D | methodDataOop.cpp | 129 // plus a data displacement, used for realigning the data pointer to 150 st->print_cr("taken(%u) displacement(%d)", taken(), displacement()); 315 // target of the ret and cache a corresponding displacement. 343 // Barrier to ensure displacement is written before the bci; allows 344 // the interpreter to read displacement without fear of race condition. 365 st->print_cr("bci(%d: count(%u) displacement(%d))", 376 // It consists of taken and not_taken counts as well as a data displacement 391 st->print_cr("taken(%u) displacement(%d)", 392 taken(), displacement()); [all...] |
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | nativeInst_x86.cpp | 59 return return_address() + displacement(); 130 // call instruction at all times. If the displacement field is aligned
|
H A D | nativeInst_x86.hpp | 127 int displacement() const { return (jint) int_at(displacement_offset); } function in class:NativeCall
|
Completed in 561 milliseconds