Searched refs:tos_in (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.hpp77 void initialize(int flags, TosState tos_in, TosState tos_out, generator gen, int arg);
88 TosState tos_in() const { return _tos_in; } function in class:VALUE_OBJ_CLASS_SPEC
337 static void transition(TosState tos_in, TosState tos_out);// checks if in/out states expected by template generator correspond to table entries
H A DtemplateInterpreter.cpp465 assert(t->tos_in() == vtos, "only vtos tos_in supported for wide instructions");
472 switch (t->tos_in()) {
499 __ verify_FPU(1, t->tos_in());
H A DtemplateTable.cpp42 void Template::initialize(int flags, TosState tos_in, TosState tos_out, generator gen, int arg) { argument
44 _tos_in = tos_in;
162 void TemplateTable::transition(TosState tos_in, TosState tos_out) { argument
163 assert(_desc->tos_in() == tos_in , "inconsistent tos_in information");
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp1861 assert(t->is_valid() && t->tos_in() == vtos, "illegal template");
1932 assert(Interpreter::trace_code(t->tos_in()) != NULL,
1934 __ call(RuntimeAddress(Interpreter::trace_code(t->tos_in())));
H A DtemplateInterpreter_x86_64.cpp1895 assert(t->is_valid() && t->tos_in() == vtos, "illegal template");
1974 assert(Interpreter::trace_code(t->tos_in()) != NULL,
1978 __ call(RuntimeAddress(Interpreter::trace_code(t->tos_in())));
H A DtemplateTable_x86_32.cpp1423 { TosState tos_in = ilgl; local
1431 case Bytecodes::_i2s: tos_in = itos; break;
1434 case Bytecodes::_l2d: tos_in = ltos; break;
1437 case Bytecodes::_f2d: tos_in = ftos; break;
1440 case Bytecodes::_d2f: tos_in = dtos; break;
1461 transition(tos_in, tos_out);
H A DtemplateTable_x86_64.cpp1433 TosState tos_in = ilgl; local
1441 case Bytecodes::_i2s: tos_in = itos; break;
1444 case Bytecodes::_l2d: tos_in = ltos; break;
1447 case Bytecodes::_f2d: tos_in = ftos; break;
1450 case Bytecodes::_d2f: tos_in = dtos; break;
1471 transition(tos_in, tos_out);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateTable_sparc.cpp1397 TosState tos_in = ilgl;
1405 case Bytecodes::_i2s: tos_in = itos; break;
1408 case Bytecodes::_l2d: tos_in = ltos; break;
1411 case Bytecodes::_f2d: tos_in = ftos; break;
1414 case Bytecodes::_d2f: tos_in = dtos; break;
1435 transition(tos_in, tos_out);
H A DtemplateInterpreter_sparc.cpp1969 assert(t->is_valid() && t->tos_in() == vtos, "illegal template");
2053 address entry = Interpreter::trace_code(t->tos_in());

Completed in 1362 milliseconds