Searched refs:table_for (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.hpp73 address* table_for(TosState state) { return _table[state]; } function in class:VALUE_OBJ_CLASS_SPEC
74 address* table_for() { return table_for((TosState)0); } function in class:VALUE_OBJ_CLASS_SPEC
75 int distance_from(address *table) { return table - table_for(); }
76 int distance_from(TosState state) { return distance_from(table_for(state)); }
157 static address* dispatch_table(TosState state) { return _active_table.table_for(state); }
158 static address* dispatch_table() { return _active_table.table_for(); }
160 static address* normal_table(TosState state) { return _normal_table.table_for(state); }
161 static address* normal_table() { return _normal_table.table_for(); }
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp329 __ dispatch_via(vtos, Interpreter::_normal_table.table_for(vtos));
H A DtemplateInterpreter_x86_64.cpp280 __ dispatch_via(vtos, Interpreter::_normal_table.table_for(vtos));

Completed in 40 milliseconds