Searched defs:addr_at (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp189 intptr_t* addr_at(int index) const { return &fp()[index]; } function in class:VALUE_OBJ_CLASS_SPEC
190 intptr_t at(int index) const { return *addr_at(index); }
199 oop* obj_at_addr(int offset) const { return (oop*) addr_at(offset); }
204 jint* int_at_addr(int offset) const { return (jint*) addr_at(offset); }
H A Drelocator.hpp113 inline char* addr_at(int bci) const { return (char*) &code_array()[bci]; } function in class:Relocator
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp59 address addr_at (int offset) const { return (address)_bcp + offset; } function in class:Bytecode
60 u_char byte_at(int offset) const { return *addr_at(offset); }
61 address aligned_addr_at (int offset) const { return (address)round_to((intptr_t)addr_at(offset), jintSize); }
62 int aligned_offset (int offset) const { return aligned_addr_at(offset) - addr_at(0); }
65 int get_Java_u2_at (int offset) const { return Bytes::get_Java_u2(addr_at(offset)); }
66 int get_Java_u4_at (int offset) const { return Bytes::get_Java_u4(addr_at(offset)); }
67 int get_native_u2_at (int offset) const { return Bytes::get_native_u2(addr_at(offset)); }
68 int get_native_u4_at (int offset) const { return Bytes::get_native_u4(addr_at(offset)); }
71 Bytecode(methodOop method, address bcp): _bcp(bcp), _code(Bytecodes::code_at(method, addr_at(0))) {
88 return *(jubyte*)addr_at(
149 address addr_at (int offset) const { return _bcp + offset; } function in class:VALUE_OBJ_CLASS_SPEC
[all...]
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.hpp210 address addr_at(int pos) const { return _code_begin + pos; } function in class:AbstractAssembler
/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.hpp72 address addr_at(int offset) const { return address(this) + offset; } function in class:VALUE_OBJ_CLASS_SPEC
74 s_char sbyte_at(int offset) const { return *(s_char*) addr_at(offset); }
75 u_char ubyte_at(int offset) const { return *(u_char*) addr_at(offset); }
77 jint int_at(int offset) const { return *(jint*) addr_at(offset); }
79 intptr_t ptr_at(int offset) const { return *(intptr_t*) addr_at(offset); }
81 oop oop_at (int offset) const { return *(oop*) addr_at(offset); }
84 void set_char_at(int offset, char c) { *addr_at(offset) = (u_char)c; wrote(offset); }
85 void set_int_at(int offset, jint i) { *(jint*)addr_at(offset) = i; wrote(offset); }
86 void set_ptr_at (int offset, intptr_t ptr) { *(intptr_t*) addr_at(offset) = ptr; wrote(offset); }
87 void set_oop_at (int offset, oop o) { *(oop*) addr_at(offse
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.hpp162 address addr_at(int offset) const { return address(this) + offset; } function in class:VALUE_OBJ_CLASS_SPEC
163 int long_at(int offset) const { return *(int*)addr_at(offset); }
168 address instruction_address() const { return addr_at(0); }
169 address next_instruction_address() const { return addr_at(BytesPerInstWord); }
357 address instruction_address() const { return addr_at(0); }
358 address next_instruction_address() const { return addr_at(instruction_size); }
359 address return_address() const { return addr_at(return_address_offset); }
362 address displacement_address() const { return addr_at(displacement_offset); }
380 assert(call->addr_at(2 * BytesPerInstWord) - instr == instruction_size, "instruction size");
459 address instruction_address() const { return addr_at(
[all...]

Completed in 69 milliseconds