Searched refs:BasicType_as_index (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DcppInterpreter.cpp95 if (!is_generated[Interpreter::BasicType_as_index(type)]++) {
96 Interpreter::_native_abi_to_tosca[Interpreter::BasicType_as_index(type)] = generate_result_handler_for(type);
98 if (!_tosca_to_stack_is_generated[Interpreter::BasicType_as_index(type)]++) {
99 Interpreter::_tosca_to_stack[Interpreter::BasicType_as_index(type)] = generate_tosca_to_stack_converter(type);
101 if (!_stack_to_stack_is_generated[Interpreter::BasicType_as_index(type)]++) {
102 Interpreter::_stack_to_stack[Interpreter::BasicType_as_index(type)] = generate_stack_to_stack_converter(type);
104 if (!_stack_to_native_abi_is_generated[Interpreter::BasicType_as_index(type)]++) {
105 Interpreter::_stack_to_native_abi[Interpreter::BasicType_as_index(type)] = generate_stack_to_native_abi_converter(type);
H A DabstractInterpreter.hpp235 static address result_handler(BasicType type) { return _native_abi_to_tosca[BasicType_as_index(type)]; }
236 static int BasicType_as_index(BasicType type); // computes index into result_handler_by_index table
H A DtemplateInterpreter.cpp295 if (!is_generated[Interpreter::BasicType_as_index(type)]++) {
296 Interpreter::_native_abi_to_tosca[Interpreter::BasicType_as_index(type)] = generate_result_handler_for(type);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterpreter_sparc.cpp67 int AbstractInterpreter::BasicType_as_index(BasicType type) { function in class:AbstractInterpreter
H A DcppInterpreter_sparc.cpp1299 __ delayed()->set(AbstractInterpreter::BasicType_as_index(T_OBJECT), L3_scratch); // Result stub address array index
1307 __ delayed()->set(AbstractInterpreter::BasicType_as_index(T_BOOLEAN), L3_scratch); // Result stub address array index
1314 __ delayed()->set(AbstractInterpreter::BasicType_as_index(T_INT), L3_scratch); // Result stub address array index
1334 __ delayed()->set(AbstractInterpreter::BasicType_as_index(T_LONG), L3_scratch); // Result stub address array index
1341 __ delayed()->set(AbstractInterpreter::BasicType_as_index(T_FLOAT), L3_scratch); // Result stub address array index
1348 __ delayed()->set(AbstractInterpreter::BasicType_as_index(T_DOUBLE), L3_scratch); // Result stub address array index
1354 __ set(AbstractInterpreter::BasicType_as_index(T_VOID), L3_scratch);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp92 int AbstractInterpreter::BasicType_as_index(BasicType type) { function in class:AbstractInterpreter
1496 __ movl(rcx, AbstractInterpreter::BasicType_as_index(T_OBJECT)); // Result stub address array index
1504 __ movl(rcx, AbstractInterpreter::BasicType_as_index(T_BOOLEAN)); // Result stub address array index
1511 __ movl(rcx, AbstractInterpreter::BasicType_as_index(T_INT)); // Result stub address array index
1518 __ movl(rcx, AbstractInterpreter::BasicType_as_index(T_LONG)); // Result stub address array index
1525 __ movl(rcx, AbstractInterpreter::BasicType_as_index(T_FLOAT)); // Result stub address array index
1532 __ movl(rcx, AbstractInterpreter::BasicType_as_index(T_DOUBLE)); // Result stub address array index
1538 __ movl(rcx, AbstractInterpreter::BasicType_as_index(T_VOID));
1914 __ cmpl(rcx, AbstractInterpreter::BasicType_as_index(T_FLOAT)); // Result stub address array index
1916 __ cmpl(rcx, AbstractInterpreter::BasicType_as_index(T_DOUBL
[all...]
H A DtemplateInterpreter_x86_32.cpp259 int AbstractInterpreter::BasicType_as_index(BasicType type) { function in class:AbstractInterpreter
H A DtemplateInterpreter_x86_64.cpp227 int AbstractInterpreter::BasicType_as_index(BasicType type) { function in class:AbstractInterpreter
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp738 int AbstractInterpreter::BasicType_as_index(BasicType type) { function in class:AbstractInterpreter
774 assert(AbstractInterpreter::BasicType_as_index(t) == method->result_index(),
775 "out of step with AbstractInterpreter::BasicType_as_index");
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp344 _result_index = Interpreter::BasicType_as_index(type);

Completed in 78 milliseconds