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

/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.hpp82 unsigned char* code_array() const { return _code_array; } function in class:Relocator
101 Bytecodes::Code code_at(int bci) const { return (Bytecodes::Code) code_array()[bci]; }
102 void code_at_put(int bci, Bytecodes::Code code) { code_array()[bci] = (char) code; }
104 // get and set signed integers in the code_array
105 inline int int_at(int bci) const { return Bytes::get_Java_u4(&code_array()[bci]); }
106 inline void int_at_put(int bci, int value) { Bytes::put_Java_u4(&code_array()[bci], value); }
108 // get and set signed shorts in the code_array
109 inline short short_at(int bci) const { return (short)Bytes::get_Java_u2(&code_array()[bci]); }
110 inline void short_at_put(int bci, short value) { Bytes::put_Java_u2((address) &code_array()[bci], value); }
112 // get the address of in the code_array
[all...]
H A Drelocator.cpp159 code_array(), code_length(),
573 if (code_array() != NULL) {
574 memcpy(new_code_array, code_array(), code_length());
600 assert(((intptr_t)code_array() & 3) == 0, "check code alignment");

Completed in 33 milliseconds