Searched refs:_return_type (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dsignature.cpp73 case 'B': do_byte (); if (_parameter_index < 0 ) _return_type = T_BYTE;
75 case 'C': do_char (); if (_parameter_index < 0 ) _return_type = T_CHAR;
77 case 'D': do_double(); if (_parameter_index < 0 ) _return_type = T_DOUBLE;
79 case 'F': do_float (); if (_parameter_index < 0 ) _return_type = T_FLOAT;
81 case 'I': do_int (); if (_parameter_index < 0 ) _return_type = T_INT;
83 case 'J': do_long (); if (_parameter_index < 0 ) _return_type = T_LONG;
85 case 'S': do_short (); if (_parameter_index < 0 ) _return_type = T_SHORT;
87 case 'Z': do_bool (); if (_parameter_index < 0 ) _return_type = T_BOOLEAN;
89 case 'V': do_void (); if (_parameter_index < 0 ) _return_type = T_VOID;
97 if (_parameter_index < 0 ) _return_type
[all...]
H A Dsignature.hpp53 BasicType _return_type; member in class:SignatureIterator
101 BasicType get_ret_type() const { return _return_type; }
170 _return_type = T_ILLEGAL;
202 void set(int size, BasicType type) { _return_type = type; }
204 BasicType type() { lazy_iterate_return(); return _return_type; }
H A Ddeoptimization.hpp141 BasicType _return_type; // Tells if we have to restore double or long return value member in class:Deoptimization::UnrollBlock
187 static int return_type_offset_in_bytes() { return offset_of(UnrollBlock, _return_type); }
193 BasicType return_type() const { return _return_type; }
H A DjavaCalls.cpp458 BasicType _return_type; member in class:SignatureChekker
468 _return_type = return_type;
485 guarantee(_is_return && t == _return_type, "return type does not match");
H A Ddeoptimization.cpp105 _return_type = return_type;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkNativeWrapper.hpp61 _return_type(return_type),
70 BasicType _return_type; member in class:SharkNativeWrapper
93 return _return_type;
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp1100 this->_return_type = T_ILLEGAL;
1168 _return_type = (BasicType)((fingerprint >> static_feature_size) &
1239 _return_type = (BasicType)((fingerprint >> static_feature_size) &

Completed in 69 milliseconds