Searched refs:to_offset (Results 1 - 5 of 5) sorted by relevance
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | interpreterRT_x86.hpp | 44 void move(int from_offset, int to_offset); 45 void box(int from_offset, int to_offset);
|
H A D | interpreterRT_x86_32.cpp | 59 void InterpreterRuntime::SignatureHandlerGenerator::move(int from_offset, int to_offset) { argument 61 __ movl(Address(to(), to_offset * wordSize), temp()); 65 void InterpreterRuntime::SignatureHandlerGenerator::box(int from_offset, int to_offset) { argument 72 __ movptr(Address(to(), to_offset * wordSize), temp());
|
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | bytecodeInterpreter.hpp | 583 static void copy_stack_slot(intptr_t *tos, int from_offset, int to_offset);
|
H A D | bytecodeInterpreter.cpp | 2993 int to_offset) { 2994 tos[Interpreter::expr_index_at(-to_offset)] = 2992 copy_stack_slot(intptr_t *tos, int from_offset, int to_offset) argument
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_LinearScan.cpp | 4175 int to_offset = (mode == LIR_OpVisitState::outputMode ? 0 : 1); local 4180 if (cur->from() <= op_id && op_id < cur->to() + to_offset) { 4196 if (tmp != result && tmp->from() <= op_id && op_id < tmp->to() + to_offset) {
|
Completed in 106 milliseconds