Searched refs:interpreterState (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterFrame_zero.hpp70 interpreterState interpreter_state() const {
71 return (interpreterState) addr_of_word(istate_off);
H A Dframe_zero.hpp56 inline interpreterState get_interpreterState() const;
H A DbytecodeInterpreter_zero.hpp38 interpreterState _self_link;
47 inline interpreterState self_link() {
50 inline void set_self_link(interpreterState new_self_link) {
53 inline interpreterState prev_link() {
56 inline void set_prev_link(interpreterState new_prev_link) {
H A DmethodHandles_zero.cpp37 interpreterState istate = frame->interpreter_state();
53 interpreterState istate = frame->interpreter_state();
68 interpreterState istate = frame->interpreter_state();
99 interpreterState istate = frame->interpreter_state();
133 interpreterState istate = frame->interpreter_state();
H A Dstack_zero.cpp49 interpreterState istate =
H A Dframe_zero.inline.hpp86 inline interpreterState frame::get_interpreterState() const {
H A DcppInterpreter_zero.cpp92 interpreterState istate = frame->interpreter_state();
209 interpreterState istate = frame->interpreter_state();
701 interpreterState istate =
702 (interpreterState) stack->alloc(sizeof(BytecodeInterpreter));
902 interpreterState istate =
903 (interpreterState) stack->alloc(sizeof(BytecodeInterpreter));
947 interpreterState istate = interpreter_frame->get_interpreterState();
966 void BytecodeInterpreter::layout_interpreterState(interpreterState istate,
988 interpreterState prev = caller->get_interpreterState();
H A Dframe_zero.cpp274 interpreterState istate = interpreter_state();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.inline.hpp95 interpreterState istate = get_interpreterState();
100 interpreterState istate = get_interpreterState();
105 interpreterState istate = get_interpreterState();
118 interpreterState istate = get_interpreterState();
142 interpreterState istate = get_interpreterState();
151 interpreterState istate = get_interpreterState();
156 interpreterState istate = get_interpreterState();
H A Dframe_sparc.hpp289 inline interpreterState get_interpreterState() const {
290 return ((interpreterState)sp_at(interpreter_state_ptr_offset));
H A DbytecodeInterpreter_sparc.hpp37 interpreterState _self_link; /* Previous interpreter state */ /* sometimes points to self??? */
42 static void pd_layout_interpreterState(interpreterState istate, address last_Java_pc, intptr_t* last_Java_fp);
H A DcppInterpreter_sparc.cpp58 extern "C" void RecursiveInterpreterActivation(interpreterState istate) {
2095 void BytecodeInterpreter::layout_interpreterState(interpreterState to_fill,
2145 interpreterState prev = caller->get_interpreterState();
2173 void BytecodeInterpreter::pd_layout_interpreterState(interpreterState istate, address last_Java_pc, intptr_t* last_Java_fp) {
2219 the interpreterState and the registers.
2230 /* Now fillin the interpreterState object */
2232 interpreterState cur_state = (interpreterState) ((intptr_t)interpreter_frame->fp() - sizeof(BytecodeInterpreter));
2249 interpreterState prev = caller->get_interpreterState();
H A Dframe_sparc.cpp750 interpreterState istate = get_interpreterState();
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.hpp211 inline interpreterState get_interpreterState() const;
H A Dframe_x86.inline.hpp150 inline interpreterState frame::get_interpreterState() const {
151 return ((interpreterState)addr_at( -((int)sizeof(BytecodeInterpreter))/wordSize ));
H A DbytecodeInterpreter_x86.hpp32 interpreterState _self_link; /* Previous interpreter state */ /* sometimes points to self??? */
H A DcppInterpreter_x86.cpp58 extern "C" void RecursiveInterpreterActivation(interpreterState istate )
410 // non-product builds and initialize this last local with the previous interpreterState as
421 // state == address of new interpreterState
744 // assumes state == rsi/r13 == pointer to current interpreterState
1003 // allocate and initialize new interpreterState and method expression stack
1007 // OUT (state) -> new interpreterState
1741 // allocate and initialize new interpreterState and method expression stack
1745 // OUT (state) -> new interpreterState
2033 // state == interpreterState object for method we are resuming
2264 sizeof(BytecodeInterpreter) + // interpreterState
[all...]
H A Dframe_x86.cpp606 // interpreterState object
607 interpreterState istate = get_interpreterState();
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp66 typedef class BytecodeInterpreter* interpreterState; typedef in typeref:class:BytecodeInterpreter
131 interpreterState _prev_link; // previous interpreter state
146 static void layout_interpreterState(interpreterState to_fill,
221 inline interpreterState prev() { return _prev_link; }
529 static void run(interpreterState istate);
531 static void runWithChecks(interpreterState istate);
H A DbytecodeInterpreter.cpp428 * BytecodeInterpreter::run(interpreterState istate)
429 * BytecodeInterpreter::runWithChecks(interpreterState istate)
440 BytecodeInterpreter::runWithChecks(interpreterState istate) {
443 BytecodeInterpreter::run(interpreterState istate) {
473 interpreterState l = istate;
480 interpreterState orig = istate;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp60 typedef class BytecodeInterpreter* interpreterState; typedef in typeref:class:BytecodeInterpreter
H A Dframe.cpp913 interpreterState istate = get_interpreterState();

Completed in 101 milliseconds